@import url("https://fonts.googleapis.com/css?family=Josefin+Sans:100,100i,200,200i,300,300i,400,400i,500,500i,600,600i,700,700i|Open+Sans:300,300i,400,400i,600,600i,700,700i,800,800i&display=swap");
@-webkit-keyframes bounce {
  0% {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px); }
  50% {
    -webkit-transform: translateY(10px);
    transform: translateY(10px); }
  100% {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px); } }
@keyframes bounce {
  0% {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px); }
  50% {
    -webkit-transform: translateY(10px);
    transform: translateY(10px); }
  100% {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px); } }

@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg); }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg); } }

@keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg); }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg); } }

body {
  font-family: "Open Sans", sans-serif; }

html {
  scroll-behavior: smooth; }

h1, h2, h3 {
  font-family: "Josefin Sans", sans-serif; }

a {
  display: inline-block;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s; }
  a:hover {
    text-decoration: none; }

.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  z-index: 999; }
  .preloader .loader {
    width: 100px;
    height: 100px;
    border: 50px solid transparent;
    border-top-color: #4C42C5;
    border-bottom-color: #4C42C5;
    border-radius: 50%;
    -webkit-animation: 2s spin linear infinite;
    animation: 2s spin linear infinite; }

.my-btn {
  height: 50px;
  line-height: 55px;
  padding: 0 30px;
  background: -webkit-linear-gradient(45deg, #4486ff, #4C42C5);
  background: -o-linear-gradient(45deg, #4486ff, #4C42C5);
  background: linear-gradient(45deg, #4486ff, #4C42C5);
  color: #fff;
  border-radius: 25px;
  font-family: "Josefin Sans", sans-serif;
  font-size: 18px;
  font-weight: 600;
  text-transform: capitalize;
  position: relative;
  z-index: 2; }
  .my-btn:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: -webkit-linear-gradient(135deg, #4486ff, #4C42C5);
    background: -o-linear-gradient(135deg, #4486ff, #4C42C5);
    background: linear-gradient(-45deg, #4486ff, #4C42C5);
    border-radius: 25px;
    opacity: 0;
    -webkit-transition: 0.6s;
    -o-transition: 0.6s;
    transition: 0.6s;
    z-index: -1; }
  .my-btn:hover {
    color: #fff; }
    .my-btn:hover:after {
      opacity: 1; }

.banner {
  background: url(../images/banner.jpg) center center no-repeat;
  background-size: cover;
  position: relative;
  z-index: 2; }
  .banner:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(../demo/assets/images/banner-2.jpg) center center no-repeat;
    background-size: cover;
    opacity: 0.9;
    z-index: -1; }
  .banner .part-txt {
    padding: 200px 0;
    text-align: center;
    position: relative; }
    .banner .part-txt h1 {
      font-size: 50px;
      line-height: 65px;
      font-weight: 700;
      text-transform: capitalize;
      color: #fff;
      margin-top: -7px;
      margin-bottom: 20px; }
    .banner .part-txt p {
      font-size: 16px;
      line-height: 30px;
      color: #EFF3FC;
      margin-bottom: 15px; }
    .banner .part-txt .my-btn {
      line-height: 53px;
      border: 1px solid #fff;
      margin-top: 10px; }
    .banner .part-txt .scroll-btn {
      position: absolute;
      bottom: 20px;
      left: 50%;
      -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
      transform: translateX(-50%);
      background: transparent;
      border: 0;
      outline: 0;
      font-size: 25px;
      color: #fff;
      -webkit-animation: 1s bounce linear infinite;
      animation: 1s bounce linear infinite; }

.demo {
  padding-top: 120px;
  padding-bottom: 50px; }
  .demo .home-demo {
    padding-bottom: 120px; }
    .demo .home-demo h2 {
      text-align: center;
      font-size: 45px;
      line-height: 60px;
      font-weight: 700;
      text-transform: capitalize;
      color: #4C42C5;
      margin-top: -10px;
      margin-bottom: 50px; }
    .demo .home-demo .demo-box {
      position: relative; }
      .demo .home-demo .demo-box .part-img {
        height: 520px;
        -webkit-box-shadow: 0px 4px 10px 2px rgba(0, 0, 0, 0.1);
        box-shadow: 0px 4px 10px 2px rgba(0, 0, 0, 0.1);
        margin-bottom: 20px;
        overflow: hidden; }
        .demo .home-demo .demo-box .part-img img {
          width: 100%; }
      .demo .home-demo .demo-box .preview-btn {
        display: block;
        text-align: center;
        background: #fff;
        -webkit-box-shadow: 0px 4px 10px 2px rgba(0, 0, 0, 0.1);
        box-shadow: 0px 4px 10px 2px rgba(0, 0, 0, 0.1);
        font-family: "Josefin Sans", sans-serif;
        font-size: 20px;
        text-transform: capitalize;
        font-weight: 600;
        padding: 20px 0;
        color: #4C42C5; }
        .demo .home-demo .demo-box .preview-btn:hover {
          background: #4C42C5;
          color: #fff; }
  .demo .inner-demo h2 {
    text-align: center;
    font-size: 45px;
    line-height: 60px;
    font-weight: 700;
    text-transform: capitalize;
    color: #4C42C5;
    margin-top: -10px;
    margin-bottom: 50px; }
  .demo .inner-demo .demo-box {
    position: relative;
    margin-bottom: 70px; }
    .demo .inner-demo .demo-box .part-img {
      height: 450px;
      -webkit-box-shadow: 0px 4px 10px 2px rgba(0, 0, 0, 0.1);
      box-shadow: 0px 4px 10px 2px rgba(0, 0, 0, 0.1);
      margin-bottom: 20px;
      overflow: hidden; }
      .demo .inner-demo .demo-box .part-img img {
        width: 100%; }
    .demo .inner-demo .demo-box .preview-btn {
      display: block;
      text-align: center;
      background: #fff;
      -webkit-box-shadow: 0px 4px 10px 2px rgba(0, 0, 0, 0.1);
      box-shadow: 0px 4px 10px 2px rgba(0, 0, 0, 0.1);
      font-family: "Josefin Sans", sans-serif;
      font-size: 20px;
      text-transform: capitalize;
      font-weight: 600;
      padding: 20px 0;
      color: #4C42C5; }
      .demo .inner-demo .demo-box .preview-btn:hover {
        background: #4C42C5;
        color: #fff; }

.features {
  padding-bottom: 70px; }
  .features h2 {
    text-align: center;
    font-size: 45px;
    line-height: 60px;
    font-weight: 700;
    text-transform: capitalize;
    color: #4C42C5;
    margin-top: -10px;
    margin-bottom: 50px; }
  .features .single-feature {
    padding: 70px 0;
    background: -webkit-linear-gradient(135deg, #4486ff, #4C42C5);
    background: -o-linear-gradient(135deg, #4486ff, #4C42C5);
    background: linear-gradient(-45deg, #4486ff, #4C42C5);
    -webkit-box-shadow: 0px 4px 10px 2px rgba(0, 0, 0, 0.2);
    box-shadow: 0px 4px 10px 2px rgba(0, 0, 0, 0.2);
    margin-bottom: 50px;
    border-radius: 5px;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s; }
    .features .single-feature h3 {
      text-align: center;
      font-size: 25px;
      line-height: 40px;
      font-weight: 700;
      text-transform: capitalize;
      color: #EFF3FC; }
    .features .single-feature:hover {
      -webkit-box-shadow: 0px 4px 15px 2px rgba(0, 0, 0, 0.5);
      box-shadow: 0px 4px 15px 2px rgba(0, 0, 0, 0.5); }

.footer {
  background: #000;
  padding: 40px 0; }
  .footer p {
    font-size: 16px;
    font-weight: 600;
    text-transform: capitalize;
    color: #EFF3FC;
    margin-bottom: 0; }
