*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box; }

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
  overflow-x: hidden; }
  @media only screen and (max-width: 75em) {
    html {
      font-size: 56.25%; } }
  @media only screen and (max-width: 48em) {
    html {
      font-size: 50%; } }

body {
  font-family: "Open Sans", sans-serif;
  line-height: 1.6;
  overflow-x: hidden; }

.container {
  max-width: 130rem;
  padding: 0 2rem;
  margin: 0 auto; }
  @media only screen and (max-width: 75em) {
    .container {
      max-width: 120rem; } }

.btn, .btn:link, .btn:visited {
  color: #fafafa;
  font-size: 1.6rem;
  font-weight: 600;
  background-color: #6741d9;
  text-decoration: none;
  text-transform: uppercase;
  padding: 1.2rem 2rem;
  border-radius: 1rem;
  transition: all 0.3s ease;
  cursor: pointer; }
  .btn:hover, .btn:active, .btn:link:hover, .btn:link:active, .btn:visited:hover, .btn:visited:active {
    background-color: #9473f5; }

.mb-small {
  margin-bottom: 2rem; }

.mb-medium {
  margin-bottom: 3rem; }

.mb-big {
  margin-bottom: 4rem; }

.mb-huge {
  margin-bottom: 8rem; }

.heading--primary, .heading--secondary, .heading--tertiary {
  font-weight: 700;
  font-family: "Nunito", sans-serif;
  line-height: 1.2;
  text-transform: uppercase; }

.heading--primary {
  font-size: 4.8rem;
  color: #6741d9;
  letter-spacing: 1px; }
  @media only screen and (max-width: 55em) {
    .heading--primary {
      font-size: 4.4rem; } }

.heading--secondary {
  font-size: 3.2rem;
  margin-left: 2rem;
  color: #6741d9;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  display: inline-block;
  cursor: pointer; }
  .heading--secondary:hover {
    transform: translateY(-0.3rem);
    -webkit-transform: translateY(-0.3rem); }
  .heading--secondary::after {
    content: '\2192';
    margin-left: 2rem; }

.heading--tertiary {
  font-size: 4rem;
  color: #6741d9; }

.text-c {
  text-align: center; }

.header {
  height: 8rem;
  width: 100%;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #fff;
  position: relative; }
  .header .logo {
    max-height: 3rem; }

.sticky .header {
  position: fixed;
  top: 0;
  z-index: 99;
  box-shadow: 0 0.5rem 2rem rgba(0, 0, 0, 0.03); }

.nav__list {
  list-style: none;
  display: flex;
  gap: 1rem; }
  @media only screen and (max-width: 59.37em) {
    .nav__list {
      margin-top: 10rem;
      flex-direction: column;
      gap: 3rem;
      opacity: 0;
      transform: translateX(100%);
      transition: all 0.5s cubic-bezier(1, 0, 0.17, 1.3) 0.4s;
      align-items: center; } }

.nav__link:link, .nav__link:visited {
  font-size: 1.6rem;
  text-transform: capitalize;
  font-weight: 600;
  text-decoration: none;
  color: #333333;
  padding: 1.2rem 2rem;
  transition: all 0.3s;
  position: relative;
  border-radius: 0.5rem; }
  @media only screen and (max-width: 59.37em) {
    .nav__link:link, .nav__link:visited {
      color: #fff;
      font-size: 2.2rem; } }

.nav__link:hover, .nav__link:active {
  color: #7950f2; }
  @media only screen and (max-width: 59.37em) {
    .nav__link:hover, .nav__link:active {
      background-color: #9473f5;
      color: #fff; } }

.nav__link--login:link, .nav__link--login:visited {
  text-transform: uppercase;
  color: #fafafa;
  background-color: #6741d9;
  transition: all 0.2s ease-in-out; }
  @media only screen and (max-width: 59.37em) {
    .nav__link--login:link, .nav__link--login:visited {
      background-color: #fff;
      color: #6741d9; } }

@media only screen and (max-width: 59.37em) {
  .nav__link--login:hover, .nav__link--login:active {
    background-color: #9473f5;
    color: #fff; } }

@media only screen and (max-width: 59.37em) {
  .nav {
    padding: 2rem;
    position: absolute;
    border-radius: 0 0 0 1rem;
    top: 100%;
    right: 0;
    height: 100vh;
    width: 100%;
    background-color: #6741d9;
    visibility: hidden;
    opacity: 1;
    transform: translateX(100%);
    transition: all 0.5s ease-in-out;
    z-index: 100;
    display: flex;
    justify-content: center; } }

.btn__nav {
  position: relative;
  margin-right: 2rem;
  transition: all 0.3s;
  z-index: 199;
  cursor: pointer; }
  .btn__nav, .btn__nav::after, .btn__nav::before {
    width: 3rem;
    height: 2px;
    background-color: #6741d9;
    display: none; }
    @media only screen and (max-width: 59.37em) {
      .btn__nav, .btn__nav::after, .btn__nav::before {
        display: inline-block; } }
  .btn__nav::after, .btn__nav::before {
    content: '';
    position: absolute;
    left: 0;
    transition: all 0.3s; }
  .btn__nav::after {
    top: 0.8rem; }
  .btn__nav::before {
    top: -0.8rem; }

.active .btn__nav {
  background-color: transparent; }
  .active .btn__nav::after {
    transform: rotate(-135deg);
    top: 0; }
  .active .btn__nav::before {
    transform: rotate(135deg);
    top: 0; }

.active .nav {
  visibility: visible;
  opacity: 1;
  transform: translateX(0); }
  .active .nav__list {
    transform: translateX(0);
    opacity: 1; }

.sticky .section-hero {
  margin-top: 8rem; }

.section-hero {
  padding: 4rem 0;
  background-image: linear-gradient(rgba(228, 220, 252, 0.85), rgba(228, 220, 252, 0.85));
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top; }

.hero {
  margin: 0 auto;
  max-width: 130rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 6rem;
  align-items: center;
  justify-content: center; }
  @media only screen and (max-width: 75em) {
    .hero {
      max-width: 120rem; } }
  @media only screen and (max-width: 48em) {
    .hero {
      grid-template-columns: 1fr;
      gap: 2rem; } }
  .hero-text-box {
    padding: 3rem; }
    @media only screen and (max-width: 48em) {
      .hero-text-box {
        margin-top: 8rem;
        padding: 6rem;
        text-align: center; } }
  .hero__text {
    font-size: 2rem;
    margin-bottom: 4rem; }
    @media only screen and (max-width: 55em) {
      .hero__text {
        font-size: 1.8rem; } }
  .hero-img-box {
    text-align: center; }
  .hero__img {
    width: 80%; }
    @media only screen and (max-width: 48em) {
      .hero__img {
        width: 75%; } }

.section-video {
  padding: 8rem 0; }

.video-box {
  transform: scale(0.8);
  max-width: 100%;
  z-index: 999;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease-in-out; }
  .video-box__video {
    width: 80%;
    border-radius: 1rem; }
    @media only screen and (max-width: 55em) {
      .video-box__video {
        width: 90%; } }

.video-box.playing {
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(1rem);
  transform: scale(1);
  position: fixed; }
  .video-box.playing .btn-close {
    display: block; }
  .video-box.playing .btn-play {
    display: none; }

.btn-play {
  border: none;
  border-radius: 1rem;
  height: 6rem;
  width: 6rem;
  font-size: 1.6rem;
  position: absolute;
  line-height: 1;
  background-color: #7950f2;
  border: 1px solid #7950f2;
  margin-left: 1rem;
  transition: transform 0.2s; }
  .btn-play .fa-play {
    font-size: 1.6rem;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center; }
  .btn-play:hover {
    background-color: #6741d9; }

.btn-close {
  border: none;
  position: absolute;
  top: 2rem;
  right: 2rem;
  display: none; }

.section-features {
  padding: 8rem 0;
  background-color: #f2edff; }

.feature-box {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4rem;
  padding: 0 4rem; }
  @media only screen and (max-width: 59.37em) {
    .feature-box {
      grid-template-columns: repeat(2, 1fr); } }
  @media only screen and (max-width: 42.5em) {
    .feature-box {
      grid-template-columns: 1fr;
      gap: 2rem; } }

.feature {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 4rem 3rem;
  border-radius: 1rem;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transition: all 0.3s ease;
  cursor: pointer; }
  @media only screen and (max-width: 42.5em) {
    .feature {
      margin: 0 auto;
      max-width: 80%;
      padding: 2.5rem 2rem; } }
  .feature:hover {
    box-shadow: 0 2rem 3rem rgba(148, 115, 245, 0.05);
    background-color: #fafafa;
    transform: translateY(-0.3rem) translateZ(0); }
  .feature__icon {
    font-size: 4.8rem;
    line-height: 1;
    color: #7950f2;
    text-align: center;
    margin-bottom: 2rem; }
  .feature__heading {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    text-align: center; }
    @media only screen and (max-width: 75em) {
      .feature__heading {
        font-size: 1.8rem; } }
  .feature__text {
    font-size: 1.6rem; }

.section-testimonial {
  padding: 8rem 0; }

.swiper {
  margin: 0 auto;
  width: 100%;
  height: 100%; }

.swiper-slide {
  padding: 0 4rem;
  text-align: center;
  font-size: 1.8rem;
  background: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  cursor: pointer; }
  @media only screen and (max-width: 59.37em) {
    .swiper-slide {
      padding: 0 3rem; } }
  @media only screen and (max-width: 55em) {
    .swiper-slide {
      padding: 0 1rem; } }

.swiper-pagination-bullet-active {
  background-color: #8ce99a; }

.testimonial {
  padding: 4rem 2rem;
  border-radius: 1rem;
  position: relative; }
  .testimonial__text {
    padding: 5rem 8rem;
    margin-bottom: 5rem;
    border-radius: 1rem;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.06); }
    @media only screen and (max-width: 59.37em) {
      .testimonial__text {
        padding: 4rem 6rem; } }
  .testimonial__text {
    position: relative; }
    .testimonial__text::before, .testimonial__text::after {
      position: absolute;
      font-size: 5rem;
      font-family: 'Font Awesome 6 Free';
      font-weight: 900;
      color: #9473f5; }
      @media only screen and (max-width: 59.37em) {
        .testimonial__text::before, .testimonial__text::after {
          font-size: 4.2rem; } }
    .testimonial__text::before {
      content: '\f10d';
      top: 0;
      left: 2rem; }
      @media only screen and (max-width: 59.37em) {
        .testimonial__text::before {
          left: 1rem; } }
    .testimonial__text::after {
      content: '\f10e';
      bottom: 0;
      right: 2rem; }
      @media only screen and (max-width: 59.37em) {
        .testimonial__text::after {
          right: 1rem; } }
  .testimonial__btn {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 50%;
    transform: translateY(-50%);
    z-index: 99;
    background-color: #fff;
    font-size: 2rem;
    border: 2px solid #2f9e44;
    height: 4rem;
    width: 4rem;
    color: #2f9e44;
    border-radius: 50%;
    cursor: pointer; }
    @media only screen and (max-width: 55em) {
      .testimonial__btn {
        display: none; } }
    .testimonial__btn-right {
      right: 0.5rem; }
    .testimonial__btn-left {
      left: 0.5rem; }

.author {
  display: flex;
  align-items: center;
  gap: 2rem;
  text-align: left;
  position: relative; }
  .author__name {
    font-weight: 600; }
  .author__org {
    font-style: italic; }
  .author::before {
    content: '';
    position: absolute;
    top: -5rem;
    left: 50%;
    transform: translateX(-50%);
    border: 3rem solid transparent;
    border-top-color: #d3f9d8; }
  .author__img {
    max-width: 7rem;
    box-sizing: content-box;
    height: 7rem;
    padding: 0.2rem;
    border-radius: 50%;
    border: 0.3rem solid #8ce99a; }

.section-faq {
  padding: 8rem 0; }

.faq {
  padding: 1.6rem;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  align-items: start;
  backface-visibility: hidden;
  gap: 3rem; }
  @media only screen and (max-width: 42.5em) {
    .faq {
      grid-template-columns: 1fr; } }
  .faq__heading {
    font-size: 3.6rem;
    color: #7950f2;
    line-height: 1.1;
    margin-bottom: 2rem; }
    @media only screen and (max-width: 42.5em) {
      .faq__heading {
        font-size: 3.2rem; } }
  .faq__img-box {
    display: flex;
    align-items: center;
    justify-content: center; }
  .faq__img {
    max-width: 80%; }
    @media only screen and (max-width: 42.5em) {
      .faq__img {
        max-width: 40%; } }
  .faq__text {
    font-size: 1.6rem;
    color: #555555; }
  .faq__title {
    font-size: 1.8rem;
    padding: 1.4rem 2.4rem 1.4rem 1.6rem;
    border-radius: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    position: relative;
    display: flex;
    justify-content: space-between;
    transition: all 0.2s;
    background-color: #e4dcfc; }
    .faq__title:hover {
      background-color: #6741d9;
      color: #fff; }
    .faq__title::after {
      content: '\f078';
      color: currentColor;
      font-size: inherit;
      font-family: 'Font Awesome 6 Free';
      font-weight: 600;
      transition: transform 0.3s;
      display: flex;
      align-items: center;
      justify-content: center;
      backface-visibility: hidden; }
  .faq__title.active {
    background-color: #6741d9;
    color: #fff; }
    .faq__title.active::after {
      transform: rotate(-180deg);
      transform-origin: center; }
  .faq__details {
    font-size: 1.6rem;
    color: #495057;
    padding: 2rem 3rem;
    display: none; }
  .faq__item {
    margin-bottom: 1.4rem;
    border-radius: 1rem;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.05); }
  .faq__item:first-child .faq__details {
    display: block; }

.section-partners {
  padding: 4rem 0; }

.partner__heading {
  font-size: 2.4rem;
  text-align: center;
  margin-bottom: 4rem;
  color: #495057; }

.partner__img {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  flex-wrap: wrap;
  gap: 3rem; }
  .partner__img img {
    max-height: 2.6rem;
    cursor: pointer;
    filter: contrast(0);
    transition: transform 0.2s;
    transform: translateZ(0);
    backface-visibility: hidden;
    -webkit-perspective: 1000;
    -webkit-transform-style: preserve-3d;
    -webkit-backface-visibility: hidden; }
    .partner__img img:hover {
      filter: contrast(1);
      transform: scale(1.2); }
    @media only screen and (max-width: 55em) {
      .partner__img img {
        max-height: 2rem; } }

.section-contact {
  padding: 8rem 0;
  font-family: "Nunito", sans-serif; }

.contact {
  display: grid;
  align-items: center;
  grid-template-columns: 1fr 1fr;
  border-radius: 1rem;
  gap: 6rem; }
  @media only screen and (max-width: 42.5em) {
    .contact {
      grid-template-columns: 1fr; } }
  .contact-box {
    padding: 4rem;
    width: 80%;
    transition: transform 0.3s;
    box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.06);
    cursor: pointer; }
    @media only screen and (max-width: 59.37em) {
      .contact-box {
        width: 85%; } }
    @media only screen and (max-width: 55em) {
      .contact-box {
        width: 90%; } }
    .contact-box-1 {
      background-color: #fff;
      justify-self: flex-end; }
      @media only screen and (max-width: 42.5em) {
        .contact-box-1 {
          justify-self: center; } }
    .contact-box-2 {
      padding-left: 4rem;
      background-image: url(/img/Frame.svg);
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
      height: 100%;
      display: flex;
      flex-direction: column;
      justify-content: center; }
      @media only screen and (max-width: 42.5em) {
        .contact-box-2 {
          height: 60rem;
          justify-self: center; } }
    .contact-box:hover {
      transform: translateY(-1rem);
      box-shadow: 0 2rem 2rem rgba(0, 0, 0, 0.06); }
  .contact__form {
    font-size: 1.4rem;
    font-family: inherit; }
  .contact__label, .contact__input {
    display: block; }
  .contact__label {
    color: #555555;
    font-size: 1.6rem;
    font-weight: 500;
    cursor: pointer;
    transform: translateY(-10rem); }
    .contact__label-message {
      transform: translateY(-19rem); }
  .contact__input {
    width: 100%;
    padding: 1rem;
    margin-bottom: 3rem;
    border: none;
    background-color: transparent;
    font-size: 1.4rem;
    box-shadow: 0 0 0.5rem 0.2rem rgba(0, 0, 0, 0.08); }
    .contact__input:focus {
      outline: none;
      box-shadow: 0 0 0.2rem 0.2rem rgba(140, 233, 154, 0.5); }
      .contact__input:focus:invalid {
        box-shadow: 0 0 0.2rem 0.2rem rgba(255, 169, 77, 0.5); }
    .contact__input::placeholder {
      color: #bebebe;
      font-family: "Nunito", sans-serif; }
  .contact__input-message {
    height: 15rem;
    overflow: auto;
    resize: none;
    margin-bottom: 0; }
  .contact__heading {
    font-size: 3.2rem;
    color: #6741d9;
    margin-bottom: 1.2rem;
    display: flex;
    align-items: center;
    gap: 2rem;
    line-height: 1.3; }
    @media only screen and (max-width: 55em) {
      .contact__heading {
        font-size: 2.6rem;
        gap: 1rem; } }
  .contact__text {
    font-size: 2rem;
    margin-bottom: 1.5rem; }
    @media only screen and (max-width: 55em) {
      .contact__text {
        font-size: 1.8rem; } }

.contact__btn {
  background-color: #7950f2;
  color: #fff;
  border-radius: 0.4rem;
  padding: 1.2rem 2.5rem;
  font-size: 1.8rem;
  font-weight: 600;
  border: none;
  text-transform: uppercase;
  font-family: inherit;
  transition: all 0.3s;
  cursor: pointer;
  letter-spacing: 1.4px; }
  .contact__btn:hover {
    background-color: #6741d9; }

.info {
  list-style: none;
  padding: 1rem 0 3rem; }
  .info__item:not(:last-of-type) {
    margin-bottom: 2rem; }
  .info__link:link, .info__link:visited {
    text-decoration: none;
    font-size: 1.6rem;
    color: #333333;
    display: flex;
    gap: 1.5rem;
    align-items: center; }
  .info__address {
    font-size: 1.6rem;
    color: #333333;
    display: flex;
    align-items: center;
    gap: 1.5rem; }
  .info__icon {
    color: #7950f2; }

.contact__input:focus + .contact__label {
  color: #6741d9; }

.footer {
  padding: 6rem 0 3rem;
  background-color: #6741d9; }
  .footer__logo {
    max-width: 20rem;
    filter: brightness(150%);
    display: flex; }
    @media only screen and (max-width: 42.5em) {
      .footer__logo {
        justify-content: center;
        align-items: center;
        margin: 0 auto;
        margin-bottom: 4rem; } }
  .footer__border {
    height: 1px;
    width: 100%;
    background-color: #fff;
    grid-column: 1/-1; }
    @media only screen and (max-width: 42.5em) {
      .footer__border {
        grid-row: 4/5; } }
  .footer__heading {
    font-size: 2rem;
    color: #fafafa; }
  .footer__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    row-gap: 3rem;
    align-items: center;
    margin-bottom: 3rem; }
    @media only screen and (max-width: 42.5em) {
      .footer__grid {
        grid-template-columns: 1fr;
        row-gap: 1rem; } }
  .footer__list {
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 1rem; }
    @media only screen and (max-width: 42.5em) {
      .footer__list {
        justify-content: center; } }
  .footer__link:link, .footer__link:visited {
    display: inline-block;
    text-decoration: none;
    font-size: 1.6rem;
    color: #fafafa;
    font-weight: 500;
    text-transform: uppercase;
    padding: 1rem 2rem;
    transition: all 0.2s;
    border-radius: 0.4rem; }
    @media only screen and (max-width: 59.37em) {
      .footer__link:link, .footer__link:visited {
        padding: 0.8rem 1.4rem; } }
  .footer__link:hover {
    background-color: #fff;
    color: #6741d9;
    transform: translateY(-2px); }
  .footer__copyright {
    font-size: 1.4rem;
    color: #dee2e6; }
    @media only screen and (max-width: 42.5em) {
      .footer__copyright {
        grid-row: 5/6;
        text-align: center; } }

.social__list {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 2rem; }
  @media only screen and (max-width: 42.5em) {
    .social__list {
      justify-content: center; } }

.social__link:link, .social__link:visited {
  text-decoration: none;
  font-size: 3rem;
  color: #fff; }

.social__link .fa-brands {
  transition: transform 0.2s; }
  .social__link .fa-brands:hover {
    transform: scale(1.3); }
