* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  outline: none;
  font-family: "Montserrat", sans-serif;
}

a {
  text-decoration: none;
}

body {
  overflow-x: hidden;
}

body .preloader {
  position: fixed;
  top: 0;
  left: 0;
  background: black;
  min-width: 100%;
  height: 100vh;
  min-height: 600px;
  z-index: 3;
  text-align: center;
  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;
}

body .preloader h1 {
  color: white;
  font-size: 50px;
  font-weight: 500;
}

body .preloader p {
  color: white;
  font-size: 20px;
}

body .header {
  width: 100%;
  border-bottom: 1px solid black;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 10px 20px;
  position: fixed;
  z-index: 1;
  background: white;
}

body .header h2 {
  font-weight: 500;
  font-size: 24px;
}

body .header h2 a {
  color: black;
}

body .header ul {
  position: absolute;
  right: 0;
  top: 50px;
  width: 100%;
  height: 90vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  list-style: none;
  background: black;
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
  -webkit-transition: -webkit-transform 0.6s ease-in-out;
  transition: -webkit-transform 0.6s ease-in-out;
  transition: transform 0.6s ease-in-out;
  transition: transform 0.6s ease-in-out, -webkit-transform 0.6s ease-in-out;
}

body .header ul li {
  margin: 15px 40px;
  -webkit-transition: 0.3s all ease-in-out;
  transition: 0.3s all ease-in-out;
  position: relative;
  font-size: 16px;
  opacity: 0;
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
  pointer-events: none;
}

body .header ul li a {
  color: #f5f5f7;
  opacity: 0.8;
  -webkit-transition: 0.3s all ease-in-out;
  transition: 0.3s all ease-in-out;
}

body .header ul li a:hover {
  opacity: 1;
}

body .header ul li:first-child {
  margin-top: 40px;
}

body .header ul li::after {
  content: "";
  position: absolute;
  top: 30px;
  left: 0;
  width: 100%;
  height: 1px;
  background: #747477;
}

body .header ul li:last-child {
  font-size: 18px;
}

body .header ul li:last-child:after {
  display: none;
}

body .header ul .active-link a {
  color: #2d89df;
}

body .header .toggled-nav {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

body .header .hamburger .line {
  height: 2px;
  width: 20px;
  background: black;
  margin: 5px 0;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

body .header .close-btn .line1 {
  -webkit-transform: rotate(45deg) translate(-1px, 6px);
          transform: rotate(45deg) translate(-1px, 6px);
}

body .header .close-btn .line2 {
  -webkit-transform: rotate(-45deg) translate(-1px, -6px);
          transform: rotate(-45deg) translate(-1px, -6px);
}

@media screen and (min-width: 768px) {
  body .header .hamburger {
    display: none;
  }
  body .header ul {
    position: relative;
    background: none;
    -webkit-transform: translateX(0);
            transform: translateX(0);
    right: 0;
    top: 0;
    width: auto;
    height: auto;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  body .header ul li {
    margin: 0 20px;
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
    pointer-events: all;
  }
  body .header ul li a {
    color: #3f3c3c;
    opacity: 0.8;
  }
  body .header ul li:not(.active-link)::after {
    display: none;
  }
  body .header ul li:first-child {
    margin-top: 0;
  }
  body .header ul li:last-child {
    font-size: 16px;
    border: 1px solid #3f3c3c;
    padding: 8px 25px;
    border-radius: 30px;
    cursor: pointer;
  }
  body .header ul li:last-child:hover {
    background: #1f4287;
    border-color: #1f4287;
  }
  body .header ul li:last-child:hover a {
    color: white;
    opacity: 1;
  }
  body .header ul .active-link {
    border-bottom: none;
  }
  body .header ul .active-link::before, body .header ul .active-link::after {
    content: "";
    position: absolute;
    top: 20px;
    width: 0%;
    height: 1px;
    background-color: #2d89df;
    -webkit-animation: start 0.5s forwards ease-in-out;
            animation: start 0.5s forwards ease-in-out;
  }
  body .header ul .active-link::before {
    left: 0;
  }
  body .header ul .active-link::after {
    right: 0;
    left: auto;
  }
}

body .banner {
  text-align: center;
  min-height: 670px;
  height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: url("./Images/banner.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

body .banner .banner-content {
  max-width: 90%;
  position: relative;
  min-height: 670px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

body .banner .banner-content h1 {
  font-size: 25px;
  color: white;
  margin: 0 0 15px;
  font-weight: 600;
}

body .banner .banner-content h3 {
  font-size: 15px;
  color: #c8c8ca;
  font-weight: 500;
  margin: 5px 0;
}

body .banner .banner-content .big {
  font-size: 30px;
  color: white;
}

body .banner .banner-content .big span {
  font-size: 40px;
  font-weight: bold;
}

body .banner .banner-content .cta-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

body .banner .banner-content .cta-buttons .cta {
  margin: 20px 10px 0;
  padding: 10px 30px;
  font-size: 16px;
  border-radius: 30px;
  color: #fff;
  border: none;
  border: 2px solid #1f4287;
  background: #1f4287;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
}

body .banner .banner-content .cta-buttons .cta svg {
  margin-left: 10px;
  width: 10px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

body .banner .banner-content .cta-buttons .cta:hover svg {
  -webkit-transform: translateX(5px);
          transform: translateX(5px);
}

body .banner .banner-content .cta-buttons .buy {
  background: none;
  color: #ffffff;
  border-color: #ffffff;
}

body .banner .banner-content a {
  font-size: 14px;
  color: gray;
  margin: 0 0.5em;
}

body .banner .banner-content a span {
  font-size: 16px;
  color: #f5f5f7;
  font-weight: 500;
}

body .banner .banner-content a:hover span {
  text-decoration: underline;
}

body .banner .banner-content p {
  margin: 24px 0 15px;
  color: #bfbfc5;
  font-weight: 500;
}

body .banner .banner-content .with {
  font-size: 14px;
  margin: 5px;
}

body .banner .banner-content .advantage {
  font-size: 20px;
  color: white;
  font-weight: 600;
  margin: 15px 0;
}

body .banner .banner-content .links {
  background: rgba(27, 27, 27, 0.9);
  padding: 10px;
  margin: 24px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

body .banner .banner-content .links p {
  margin: 0;
}

body .banner .banner-content .oval {
  position: absolute;
  bottom: 30px;
  border-radius: 50px;
  width: 30px;
  height: 55px;
  border: 2px solid white;
  padding: 10px 0;
}

body .banner .banner-content .oval .line {
  width: 4px;
  margin: 0 auto;
  height: 10px;
  border-radius: 10px;
  background: white;
  -webkit-animation: slide 1.5s ease-in-out infinite;
          animation: slide 1.5s ease-in-out infinite;
}

@media screen and (min-width: 768px) {
  body .banner .banner-content .cta-buttons {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  body .banner .banner-content h1 {
    font-size: 30px;
  }
  body .banner .banner-content h3 {
    font-size: 16px;
  }
  body .banner .banner-content .big {
    font-size: 40px;
  }
  body .banner .banner-content .big span {
    font-size: 50px;
  }
  body .banner .banner-content .advantage {
    font-size: 22px;
  }
  body .banner .banner-content .with {
    font-size: 15px;
  }
}

@media screen and (max-width: 520px) {
  body .banner .banner-content h1 {
    font-size: 22px;
  }
  body .banner .banner-content .cta-buttons .cta {
    font-size: 15px;
  }
  body .banner .banner-content .big {
    font-size: 25px;
  }
  body .banner .banner-content .big span {
    font-size: 35px;
  }
  body .banner .banner-content p {
    font-size: 15px;
  }
  body .banner .banner-content .advantage {
    font-size: 17px;
  }
  body .banner .banner-content .links {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    background: none;
  }
  body .banner .banner-content a,
  body .banner .banner-content p {
    margin: 10px 0;
  }
}

@media screen and (max-width: 370px) {
  body .banner .banner-content h1 {
    font-size: 18px;
  }
  body .banner .banner-content h3 {
    font-size: 14px;
  }
  body .banner .banner-content .cta-buttons .cta {
    font-size: 14px;
  }
  body .banner .banner-content p {
    font-size: 15px;
  }
  body .banner .banner-content .advantage {
    font-size: 16px;
  }
  body .banner .banner-content a span {
    font-size: 15px;
  }
}

body .sign-in-banner {
  background-image: url("./Images/sign-in.jpg");
  min-height: 600px;
}

body .sign-in-banner .banner-content {
  width: 100%;
  min-height: 600px;
  max-width: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  padding: 0 30px;
}

body .sign-in-banner .banner-content .left-text {
  margin: 0 30px;
  text-align: left;
}

body .sign-in-banner .banner-content .left-text h2 {
  font-size: 30px;
  color: #eaeaec;
  font-weight: 500;
}

body .sign-in-banner .banner-content .left-text p {
  font-size: 16px;
  color: #cccccc;
  margin: 20px 0;
}

body .sign-in-banner .banner-content .left-text a {
  color: #dddddd;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

body .sign-in-banner .banner-content .left-text a:hover {
  border-bottom: 1px solid #dddddd;
}

body .sign-in-banner .banner-content .right-main {
  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: start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding: 0 20px;
  margin: 30px 0;
  min-height: 600px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: white;
  min-width: 500px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 6px;
}

body .sign-in-banner .banner-content .right-main .sign-in-head {
  text-align: left;
  -ms-flex-item-align: start;
      align-self: flex-start;
  margin: 10px 0 0 30px;
}

body .sign-in-banner .banner-content .right-main .sign-in-head h1 {
  font-size: 40px;
  color: black;
  margin: 10px 0;
  font-weight: 600;
}

body .sign-in-banner .banner-content .right-main .sign-in-head p {
  color: #333333;
  font-weight: 500;
  font-size: 14px;
  margin: 5px 0 20px;
}

body .sign-in-banner .banner-content .right-main .sign-in-head p a {
  color: #2d6cdf;
}

body .sign-in-banner .banner-content .right-main .sign-in-head .logo {
  display: none;
}

body .sign-in-banner .banner-content .right-main .sign-in-form {
  min-width: 92%;
  margin-left: 30px;
}

body .sign-in-banner .banner-content .right-main .sign-in-form form .input {
  margin: 10px 0;
  text-align: left;
  width: 100%;
}

body .sign-in-banner .banner-content .right-main .sign-in-form form .input label {
  display: block;
  font-size: 16px;
  color: #747477;
  font-weight: 500;
  opacity: 0.8;
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
  -webkit-transform-origin: left;
          transform-origin: left;
  pointer-events: none;
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}

body .sign-in-banner .banner-content .right-main .sign-in-form form .input input {
  display: block;
  border: none;
  border-bottom: 1.5px solid #dddddd;
  padding: 10px 10px 10px 0;
  color: black;
  width: 100%;
  margin-bottom: 10px;
  font-size: 16px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

body .sign-in-banner .banner-content .right-main .sign-in-form form .input input:hover, body .sign-in-banner .banner-content .right-main .sign-in-form form .input input:focus {
  border-bottom-color: #2d89df;
}

body .sign-in-banner .banner-content .right-main .sign-in-form form .input:last-child {
  margin: 40px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

body .sign-in-banner .banner-content .right-main .sign-in-form form .input input[type="submit"] {
  max-width: 150px;
  background: #2d6cdf;
  color: white;
  border-radius: 30px;
  font-weight: 500;
  text-align: center;
  margin-bottom: 0;
  cursor: pointer;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

body .sign-in-banner .banner-content .right-main .sign-in-form form .input input[type="submit"]:hover {
  background: #1f4287;
}

body .sign-in-banner .banner-content .right-main .sign-in-form form .input input[type="submit"], body .sign-in-banner .banner-content .right-main .sign-in-form form .input input[type="submit"]:hover, body .sign-in-banner .banner-content .right-main .sign-in-form form .input input[type="submit"]:focus {
  border-bottom: none;
}

body .sign-in-banner .banner-content .right-main .sign-in-form form .input .toggled-label {
  -webkit-transform: translateY(0) scale(0.8);
          transform: translateY(0) scale(0.8);
}

body .sign-in-banner .banner-content .right-main .sign-in-form .or {
  color: #555555;
  font-size: 14px;
  position: relative;
  margin-bottom: 10px;
}

body .sign-in-banner .banner-content .right-main .sign-in-form .or::before, body .sign-in-banner .banner-content .right-main .sign-in-form .or::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 200px;
  max-width: 200px;
  height: 1px;
  background-color: #cccccc;
}

body .sign-in-banner .banner-content .right-main .sign-in-form .or::before {
  left: 0;
}

body .sign-in-banner .banner-content .right-main .sign-in-form .or::after {
  right: 0;
}

body .sign-in-banner .banner-content .right-main .sign-in-form .other div {
  padding: 15px 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 30px;
  cursor: pointer;
  border: 2px solid #dddddd;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  margin: 15px 0;
}

body .sign-in-banner .banner-content .right-main .sign-in-form .other div a {
  font-weight: 600;
  font-size: 15px;
}

body .sign-in-banner .banner-content .right-main .sign-in-form .other div svg {
  width: 20px;
  margin: 0 12px;
}

body .sign-in-banner .banner-content .right-main .sign-in-form .other div:first-child {
  border-color: #dddddd;
  margin-top: 30px;
}

body .sign-in-banner .banner-content .right-main .sign-in-form .other div:first-child a {
  color: #444444;
}

body .sign-in-banner .banner-content .right-main .sign-in-form .other div:first-child:hover {
  border-color: #bbbbbb;
}

body .sign-in-banner .banner-content .right-main .sign-in-form .other div:nth-child(2) a, body .sign-in-banner .banner-content .right-main .sign-in-form .other div:nth-child(3) a {
  color: #ffffff;
}

body .sign-in-banner .banner-content .right-main .sign-in-form .other div:nth-child(2) svg path, body .sign-in-banner .banner-content .right-main .sign-in-form .other div:nth-child(3) svg path {
  fill: #ffffff;
}

body .sign-in-banner .banner-content .right-main .sign-in-form .other div:nth-child(2) {
  background-color: #3b5998;
  border-color: #3b5998;
}

body .sign-in-banner .banner-content .right-main .sign-in-form .other div:nth-child(3) {
  background-color: black;
  border-color: black;
  margin-bottom: 30px;
}

@media screen and (max-width: 1024px) {
  body .sign-in-banner .banner-content .left-text {
    display: none;
  }
  body .sign-in-banner .banner-content .right-main {
    min-height: 700px;
  }
  body .sign-in-banner .banner-content .right-main .sign-in-head {
    position: relative;
  }
  body .sign-in-banner .banner-content .right-main .sign-in-head .logo {
    display: block;
    font-size: 18px;
    color: #888888;
    margin: 5px 0 0;
  }
}

@media screen and (max-width: 430px) {
  body .sign-in-banner .banner-content {
    padding: 0 10px;
    display: block;
  }
  body .sign-in-banner .banner-content .right-main {
    padding: 0 5px;
    min-height: 700px;
  }
  body .sign-in-banner .banner-content .right-main .sign-in-head {
    margin-left: 0;
    -ms-flex-item-align: center;
        -ms-grid-row-align: center;
        align-self: center;
    text-align: center;
  }
  body .sign-in-banner .banner-content .right-main .sign-in-head::before {
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  body .sign-in-banner .banner-content .right-main .sign-in-form {
    margin-left: 0;
  }
  body .sign-in-banner .banner-content .right-main .sign-in-form .other div a {
    font-size: 14px;
  }
}

@media screen and (max-width: 768px) {
  body .sign-in-banner {
    background: none;
  }
  body .sign-in-banner .banner-content {
    background: none;
  }
  body .sign-in-banner .banner-content .right-main {
    min-width: 100%;
  }
  body .sign-in-banner .banner-content .right-main .sign-in-form .or::before, body .sign-in-banner .banner-content .right-main .sign-in-form .or::after {
    width: 45%;
    max-width: 45%;
  }
}

@media screen and (max-width: 430px) {
  body .sign-in-banner {
    min-height: 700px;
  }
}

body .features {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

body .features .features-content {
  max-width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

body .features .features-content .set {
  max-width: 100%;
  padding: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
}

body .features .features-content .set .features-text .feature {
  margin: 10px 0;
}

body .features .features-content .set .features-text .feature h2 {
  margin: 15px 0;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 1px;
}

body .features .features-content .set .features-text .feature p {
  font-size: 17px;
  line-height: 27px;
  margin-bottom: 20px;
  color: #696969;
}

body .features .features-content .set .features-img {
  width: 100%;
  margin-bottom: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

body .features .features-content .set .features-img img {
  width: 100%;
  max-width: 780px;
}

body .features .features-content .set1 {
  background: #fff;
}

body .features .features-content .set2 {
  background: #eaeaec;
}

@media screen and (min-width: 1024px) {
  body .features .features-content .set .features-text {
    width: 35%;
    margin: 0 5%;
  }
  body .features .features-content .set .features-img {
    min-width: 600px;
    max-width: 1100px;
    width: 100%;
  }
  body .features .features-content .set .features-img img {
    max-width: 1100px;
  }
  body .features .features-content .set1 {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  body .features .features-content .set1 .features-text {
    margin: 0 50px 0 5%;
  }
  body .features .features-content .set2 {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
  body .features .features-content .set2 .features-text {
    margin: 0 5% 0 50px;
  }
}

body .why {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: url(./Images/whyBg.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

body .why::after {
  position: absolute;
}

body .why .why-content {
  min-height: 400px;
  min-width: 100%;
  background: rgba(0, 0, 0, 0.8);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

body .why .why-content .why-head {
  margin: 20px 0 40px;
}

body .why .why-content .why-head h2 {
  font-size: 25px;
  font-weight: 500;
  color: white;
}

body .why .why-content .why-details {
  max-width: 70%;
}

body .why .why-content .why-details ul {
  list-style: none;
}

body .why .why-content .why-details ul li {
  font-size: 16px;
  margin: 8px 0;
  color: #eaeaec;
  position: relative;
}

body .why .why-content .why-details ul li::before {
  content: "";
  position: absolute;
  top: 7px;
  left: -20px;
  width: 0.5em;
  height: 2px;
  background: #cccccc;
}

body .why .why-content .why-details ul li:nth-child(2) ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  list-style-type: disc;
}

body .why .why-content .why-details ul li:nth-child(2) ul li {
  margin: 3px 15px;
}

body .why .why-content .why-details ul li:nth-child(2) ul li::before {
  display: none;
}

@media screen and (max-width: 630px) {
  body .why .why-content {
    min-height: 500px;
  }
  body .why .why-content .why-details {
    max-width: 80%;
  }
}

body .pricing {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

body .pricing .pricing-content {
  min-width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin: 20px 0;
}

body .pricing .pricing-content .price-head {
  margin: 20px 0;
  text-align: center;
}

body .pricing .pricing-content .price-head h1 {
  font-size: 30px;
}

body .pricing .pricing-content .tabs {
  width: 100%;
  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-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

body .pricing .pricing-content .tabs .tab-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

body .pricing .pricing-content .tabs .tab-header h4 {
  font-size: 20px;
  margin: 20px 20px 0;
  color: #747477;
  border-bottom: 1px solid white;
  padding: 0 2px 10px;
  -webkit-transition: 0.2s all ease-in-out;
  transition: 0.2s all ease-in-out;
  cursor: pointer;
}

body .pricing .pricing-content .tabs .tab-header h4:hover {
  color: black;
  border-bottom: 1px solid black;
}

body .pricing .pricing-content .tabs .tab-header h4:first-child span {
  font-size: 13px;
  color: #747477;
  font-weight: 500;
}

body .pricing .pricing-content .tabs .tab-header .active-tab-head,
body .pricing .pricing-content .tabs .tab-header .active-tab-head:hover {
  color: #2d6cdf;
  border-color: #2d6cdf;
}

body .pricing .pricing-content .tabs .tab-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-height: 400px;
  min-width: 100%;
  background: #eaeaec;
  border-top: 1px solid #cccccc;
  display: none;
}

body .pricing .pricing-content .tabs .tab-content .card {
  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-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 400px;
  margin: 40px 30px 20px;
  background-color: white;
  text-align: center;
  border-radius: 12px;
  padding: 20px;
  -webkit-box-shadow: 1px 1px 20px rgba(30, 30, 30, 0.1);
          box-shadow: 1px 1px 20px rgba(30, 30, 30, 0.1);
}

body .pricing .pricing-content .tabs .tab-content .card h3 {
  font-size: 18px;
  color: #333333;
  margin: 30px 0 20px;
  font-weight: 500;
}

body .pricing .pricing-content .tabs .tab-content .card p {
  font-size: 15px;
  margin: 10px 0;
}

body .pricing .pricing-content .tabs .tab-content .card .price {
  color: black;
  font-size: 20px;
  font-weight: 600;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

body .pricing .pricing-content .tabs .tab-content .card .price span {
  font-size: 60px;
  font-weight: bold;
}

body .pricing .pricing-content .tabs .tab-content .card ul {
  list-style: none;
}

body .pricing .pricing-content .tabs .tab-content .card ul li {
  position: relative;
  margin: 30px 0;
  color: #333333;
  font-weight: 500;
}

body .pricing .pricing-content .tabs .tab-content .card ul li::before {
  content: "";
  position: absolute;
  top: 0px;
  margin: -15px 0 15px;
  left: 0;
  width: 100%;
  height: 1px;
  background: #ccc;
}

body .pricing .pricing-content .tabs .tab-content .card .card-btn {
  padding: 10px 15px;
  background: #2d6cdf;
  font-size: 15px;
  font-weight: 500;
  color: white;
  border: none;
  border-radius: 30px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}

body .pricing .pricing-content .tabs .tab-content .card .card-btn:hover {
  background: #184597;
}

body .pricing .pricing-content .tabs .active-tab {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media screen and (max-width: 1000px) {
  body .pricing .pricing-content .tabs .tab-content .card {
    margin: 40px 10px 20px;
  }
}

@media screen and (max-width: 800px) {
  body .pricing .pricing-content .tabs .tab-content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

@media screen and (max-width: 510px) {
  body .pricing .pricing-content .tabs .tab-header h4:first-child span {
    display: none;
  }
  body .pricing .pricing-content .tabs .tab-header h4:first-child {
    position: relative;
  }
  body .pricing .pricing-content .tabs .tab-header h4:first-child::before {
    content: "Save 2 months";
    position: absolute;
    top: -19px;
    left: 17px;
    color: #747477;
    font-size: 13px;
    font-weight: 500;
  }
}

@media screen and (max-width: 450px) {
  body .pricing .pricing-content .price-head {
    margin-bottom: 10px;
  }
  body .pricing .pricing-content .price-head h1 {
    font-size: 25px;
  }
  body .pricing .pricing-content .tabs .tab-header {
    margin: 20px 0px 0;
  }
  body .pricing .pricing-content .tabs .tab-header h4 {
    font-size: 17px;
    margin: 20px 10px 0;
  }
  body .pricing .pricing-content .tabs .tab-content .card {
    max-width: 350px;
  }
  body .pricing .pricing-content .tabs .tab-content .card ul li {
    font-size: 15px;
  }
}

body .contact .contact-content {
  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-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  max-width: 100%;
}

body .contact .contact-content .contact-head {
  text-align: center;
  margin: 20px 0;
}

body .contact .contact-content .contact-head h1 {
  font-size: 30px;
  margin-bottom: 8px;
}

body .contact .contact-content .contact-head h3 {
  font-size: 18px;
  color: #696969;
  font-weight: 600;
}

body .contact .contact-content .contact-body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
}

body .contact .contact-content .contact-body .contact-form {
  margin: 10px auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 90%;
  max-width: 680px;
}

body .contact .contact-content .contact-body .contact-form form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  min-width: 100%;
}

body .contact .contact-content .contact-body .contact-form form .input {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-bottom: 10px;
  width: 95%;
}

body .contact .contact-content .contact-body .contact-form form .input label {
  font-size: 16px;
  margin: 10px 0;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
}

body .contact .contact-content .contact-body .contact-form form .input label::after {
  content: "*";
  position: absolute;
  top: 0;
  right: -10px;
  color: red;
}

body .contact .contact-content .contact-body .contact-form form .input input,
body .contact .contact-content .contact-body .contact-form form .input textarea {
  display: inline-block;
  font-size: 16px;
  width: 100%;
  padding: 8px 13px;
  border: 1px solid #747477;
  border-radius: 8px;
}

body .contact .contact-content .contact-body .contact-form form .input input:hover, body .contact .contact-content .contact-body .contact-form form .input input:focus,
body .contact .contact-content .contact-body .contact-form form .input textarea:hover,
body .contact .contact-content .contact-body .contact-form form .input textarea:focus {
  border-color: #363638;
}

body .contact .contact-content .contact-body .contact-form form .input textarea {
  resize: vertical;
}

body .contact .contact-content .contact-body .contact-form form .input input[type="submit"] {
  margin: 25px 0;
  font-size: 18px;
  background: #2d6cdf;
  color: white;
  font-weight: 500;
  border-radius: 30px;
  padding: 20px;
  cursor: pointer;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

body .contact .contact-content .contact-body .contact-form form .input input[type="submit"]:hover {
  background: #184597;
}

body .contact .contact-content .contact-body .contact-illustration {
  width: 90%;
  max-width: 500px;
  margin: 30px auto;
}

body .contact .contact-content .contact-body .contact-illustration img {
  width: 100%;
}

@media screen and (min-width: 810px) {
  body .contact .contact-content .contact-body .contact-form {
    margin: 10px 0 10px 70px;
  }
  body .contact .contact-content .contact-body .contact-form .input input[type="submit"] {
    width: 300px;
  }
  body .contact .contact-content .contact-body .contact-illustration {
    margin: 30px 0 30px 70px;
  }
}

@media screen and (min-width: 1000px) {
  body .contact .contact-content .contact-body {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  body .contact .contact-content .contact-body .contact-form {
    margin: 10px 10px 10px 30px;
  }
  body .contact .contact-content .contact-body .contact-illustration {
    margin: 80px 30px 30px 10px;
  }
}

body .footer {
  background-color: black;
  min-height: 130px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

body .footer .logo {
  font-size: 30px;
  color: white;
  font-weight: 600;
  margin: 0 50px;
}

body .footer .social {
  margin-left: 20px;
}

body .footer .social a {
  color: #696969;
  margin: 0 5px;
  font-size: 20px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

body .footer .social a:hover {
  color: white;
}

body .footer .direct-contact {
  margin: 0 70px;
}

body .footer .direct-contact p a {
  display: inline-block;
  color: #86868b;
  margin: 5px 0;
  font-size: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
}

body .footer .direct-contact p a i {
  margin: 0 10px 0 0;
  font-size: 20px;
}

body .footer .direct-contact p a svg {
  margin: 0 10px 0 0;
}

body .footer .direct-contact p a svg path {
  fill: #868688;
  -webkit-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
}

body .footer .direct-contact p a:hover {
  color: #eaeaea;
}

body .footer .direct-contact p a:hover svg path {
  fill: #eaeaea;
}

body .footer .footer-info {
  color: #696969;
  font-size: 13px;
  position: absolute;
  right: 50px;
}

body .footer .footer-info p {
  margin: 5px 0;
}

@media screen and (max-width: 1200px) {
  body .footer {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    min-height: 290px;
  }
  body .footer .logo {
    margin: 20px;
  }
  body .footer .direct-contact {
    margin: 20px 0;
  }
  body .footer .social {
    margin: 0;
  }
  body .footer .footer-info {
    margin: 10px 0 0;
    bottom: 30px;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}

@media screen and (max-width: 530px) {
  body .footer .footer-info {
    width: 80%;
  }
}

@-webkit-keyframes fade-in {
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
    pointer-events: all;
  }
}

@keyframes fade-in {
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
    pointer-events: all;
  }
}

@-webkit-keyframes fade {
  from {
    opacity: 0;
    pointer-events: none;
  }
  to {
    opacity: 1;
    pointer-events: all;
  }
}

@keyframes fade {
  from {
    opacity: 0;
    pointer-events: none;
  }
  to {
    opacity: 1;
    pointer-events: all;
  }
}

@-webkit-keyframes slide {
  from {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  to {
    opacity: 0;
    -webkit-transform: translateY(22px);
            transform: translateY(22px);
  }
}

@keyframes slide {
  from {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  to {
    opacity: 0;
    -webkit-transform: translateY(22px);
            transform: translateY(22px);
  }
}

@-webkit-keyframes start {
  to {
    width: 50%;
  }
}

@keyframes start {
  to {
    width: 50%;
  }
}

@-webkit-keyframes fade-up {
  to {
    height: 0;
    min-height: 0;
  }
}

@keyframes fade-up {
  to {
    height: 0;
    min-height: 0;
  }
}

@-webkit-keyframes fade-out {
  to {
    opacity: 0;
    pointer-events: none;
    -webkit-transform: scale(0.25);
            transform: scale(0.25);
  }
}

@keyframes fade-out {
  to {
    opacity: 0;
    pointer-events: none;
    -webkit-transform: scale(0.25);
            transform: scale(0.25);
  }
}
/*# sourceMappingURL=main.css.map */