*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
html {
  font-size: 100%;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family: 'Sora', system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  line-height: 1.2;
  background-color: #FFFFFF;
  color: #333333;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}
button {
  font-family: 'Sora', system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  border: none;
  background: none;
  cursor: pointer;
}
ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}
a {
  color: inherit;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}
h1,
h2,
h3 {
  font-family: 'Sora', system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  font-weight: 700;
  margin: 0 0 1rem;
  line-height: 1.2;
  color: #2F55A1;
}
@media (prefers-reduced-motion: reduce) {
  * {
    -webkit-animation-duration: 0.01ms !important;
            animation-duration: 0.01ms !important;
    -webkit-animation-iteration-count: 1 !important;
            animation-iteration-count: 1 !important;
    -webkit-transition-duration: 0.01ms !important;
            transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
.container {
  width: min(90%, 1440px);
  margin-inline: auto;
  padding: 2rem 0;
}
.btn {
  display: inline-block;
  padding: 1rem 1.5rem;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  color: #FFFFFF;
  background-color: #2F55A1;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  -webkit-transition: background-color 0.2s ease-in-out;
  transition: background-color 0.2s ease-in-out;
}
.btn:hover {
  background-color: #23407a;
}
.title-section {
  color: #2F55A1;
  font-size: 2.5rem;
  font-weight: 300;
  padding-bottom: 3rem;
}
.title-section b {
  font-weight: 600;
}
.break-desktop {
  display: inline;
}
@media (min-width: 768px) {
  .break-desktop {
    display: block;
  }
}
.header {
  background-color: #FFFFFF;
}
.header a {
  display: inline-block;
}
.header .container {
  padding: 1rem 0;
}
.hero {
  padding: 3rem 0 0;
  background-color: #EEEEEE;
  background-image: url("../img/mobile/vector-banner.png");
  background-position: bottom center;
  background-repeat: no-repeat;
  background-size: contain;
}
.hero__inner {
  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;
  gap: 2rem;
  padding-bottom: 0;
}
@media (min-width: 768px) {
  .hero__inner {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.hero__content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media (min-width: 768px) {
  .hero__content {
    text-align: left;
    max-width: 50%;
  }
}
.hero__content h1 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  font-weight: 700;
  letter-spacing: -2%;
}
@media (min-width: 768px) {
  .hero__content h1 {
    font-size: 3.5rem;
  }
}
.hero__content p {
  font-size: 1.875rem;
  margin-bottom: 1.5rem;
  font-weight: 300;
  letter-spacing: 0;
  line-height: 1.2;
  color: #2F55A1;
}
@media (min-width: 768px) {
  .hero__content p {
    font-size: 2rem;
  }
}
.hero__image {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  max-width: 500px;
}
.hero__image img {
  width: 100%;
  height: auto;
  border-radius: 16px;
}
@media (min-width: 768px) {
  .hero {
    background-image: url("../img/desktop/vector-banner.png");
    background-position: bottom right;
    background-size: contain;
    padding: 3rem 0;
  }
}
.btn__actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 1rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media (min-width: 768px) {
  .btn__actions {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.btn__actions .contact__tlf {
  font-weight: 300;
  font-size: 1.25rem;
  line-height: 1;
}
.btn__actions .contact__tlf .link {
  color: #87FF9D;
  font-weight: 600;
}
@media (min-width: 768px) {
  .btn__actions .contact__tlf {
    text-align: right;
  }
}
@media (min-width: 768px) {
  .btn__actions {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
}
.btn-ws {
  background: -webkit-gradient(linear, left top, left bottom, from(#333333), to(#1E1E1E));
  background: linear-gradient(180deg, #333333 0%, #1E1E1E 100%);
  border-radius: 16px;
  -webkit-box-shadow: 0px 2px 2px 0px #FFFFFF99;
          box-shadow: 0px 2px 2px 0px #FFFFFF99;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1;
  padding: 0.5rem 1rem 0.5rem 0.5rem;
}
.btn-ws b {
  color: #87FF9D;
}
.btn-ws:hover {
  background: -webkit-gradient(linear, left top, left bottom, from(#1a1a1a), to(#040404));
  background: linear-gradient(180deg, #1a1a1a 0%, #040404 100%);
}
.btn-ws img {
  display: inline-block;
  vertical-align: middle;
  width: 36px;
  margin-right: 2px;
}
@media (min-width: 376px) {
  .btn-ws img {
    margin-right: 8px;
  }
}
@media (min-width: 768px) {
  .btn-ws img {
    font-size: 3.5rem;
    width: 50px;
  }
}
@media (min-width: 768px) {
  .btn-ws {
    padding: 10px 1rem 10px 7px;
  }
}
.features {
  padding: 3rem 0;
}
.features__grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .features__grid {
    -ms-grid-columns: (1fr)[3];
    grid-template-columns: repeat(3, 1fr);
  }
}
.feature-box {
  color: #333333;
  padding: 2.5rem;
  border-radius: 20px;
  font-weight: 600;
  min-height: 230px;
  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: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 28px;
}
.feature-box p {
  color: #2F55A1;
  font-size: 1.875rem;
  font-weight: 300;
  margin: 0;
}
.feature-box p b {
  font-weight: 600;
}
.feature-box p:not(:first-of-type) {
  font-size: 1.25rem;
}
@media (min-width: 768px) {
  .feature-box {
    min-height: 240px;
  }
}
.feature-box:nth-child(1) {
  background-color: #ECFF83;
}
.feature-box:nth-child(2) {
  background-color: #FFC6C1;
}
.feature-box:nth-child(3) {
  background-color: #BEF1FF;
}
.feature-box:nth-child(4) {
  background-color: #F2F2F2;
}
.feature-box:nth-child(5) {
  background-color: #FFF597;
}
.feature-box:nth-child(6) {
  background-color: #87FF9D;
}
.alliance {
  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;
  padding: 100px 0;
}
.alliance img {
  width: 234px;
}
@media (min-width: 768px) {
  .alliance img {
    width: 582px;
  }
}
.cta {
  background-color: #2F55A1;
  color: #FFFFFF;
  padding: 3rem 0;
  background-image: url("../img/mobile/vector-cta-1.png");
  background-position: bottom center;
  background-size: contain;
  background-repeat: no-repeat;
}
.cta__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2rem;
}
.cta__content .title-section {
  color: #FFFFFF;
}
@media (min-width: 768px) {
  .cta__content {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .cta__content .title-section {
    font-size: 45px;
    padding-bottom: 0;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 40%;
            flex: 0 0 40%;
    max-width: 40%;
  }
  .cta__content .btn__actions {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 60%;
            flex: 0 0 60%;
    max-width: 60%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 1.5rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.cta .btn-ws {
  width: 100%;
}
@media (min-width: 768px) {
  .cta .btn-ws {
    width: auto;
    margin: 0;
  }
}
.cta .contact__tlf {
  color: #FFFFFF;
}
.cta .contact__tlf .link {
  color: #33C1E9;
}
@media (min-width: 768px) {
  .cta .contact__tlf {
    margin: 0;
  }
}
@media (min-width: 768px) {
  .cta {
    background-image: url("../img/desktop/vector-cta-1.png");
    background-position: bottom right;
  }
}
.faq {
  padding: 3rem 0;
}
.faq h3 {
  margin-bottom: 0;
}
.faq .accordion-item {
  border-top: 1px solid #CCCCCC;
}
.faq .accordion-item:last-child {
  border-bottom: 1px solid #CCCCCC;
}
.faq .accordion-header {
  width: 100%;
  padding: 1.5rem;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.5rem;
  color: #2F55A1;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
.faq .accordion-header__text {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.4;
  margin-right: 1.5rem;
}
.faq .accordion-header .icon {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 20px;
  height: 20px;
  fill: currentColor;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.faq .accordion-header[aria-expanded="true"] {
  color: #2F55A1;
}
.faq .accordion-header[aria-expanded="true"] .icon {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.faq .accordion-header:hover {
  color: #2F55A1;
}
.faq .accordion-content {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  -webkit-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.faq .accordion-content p {
  margin: 0;
  padding-bottom: 1.5rem;
  padding-left: 0.5rem;
  font-size: 1rem;
  color: #2F55A1;
  font-weight: 300;
}
.faq .accordion-content.active {
  max-height: -webkit-fit-content;
  max-height: -moz-fit-content;
  max-height: fit-content;
  opacity: 1;
  padding: 0 16px 0 4px;
}
@media (min-width: 768px) {
  .faq .accordion-header {
    font-size: 1.25rem;
    padding: 1rem;
  }
  .faq .accordion-content p {
    font-size: 1.125rem;
    padding-left: 0;
  }
  .faq .accordion-content.active {
    padding: 0 16px 0 24px;
  }
}
.cta-2 {
  background-color: #F1F1F1;
  color: #2F55A1;
  background-image: url("../img/mobile/vector-cta-2.png");
}
.cta-2 .cta__content .title-section {
  color: #2F55A1;
}
.cta-2 .contact__tlf {
  color: #2F55A1;
}
.cta-2 .contact__tlf .link {
  color: #87FF9D;
}
@media (min-width: 768px) {
  .cta-2 {
    background-image: none;
    background-color: #FFFFFF;
  }
  .cta-2 .cta__content {
    padding: 3rem;
    background-color: #F1F1F1;
    background-image: url("../img/desktop/vector-cta-2.png");
    background-position: bottom right;
    background-size: contain;
    background-repeat: no-repeat;
    border-radius: 20px;
  }
}
.address {
  padding: 3rem 0 0;
  background-color: #FFFFFF;
}
.address .container {
  width: 100%;
}
.address .address__title {
  font-size: 1.875rem;
  margin-bottom: 1rem;
  font-weight: 600;
  color: #FFFFFF;
}
.address__wrap {
  background-color: #2F55A1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media (min-width: 768px) {
  .address__wrap {
    -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;
  }
}
.address__content {
  width: 100%;
  padding: 3rem;
}
.address__content p {
  font-size: 1.25rem;
  color: #FFFFFF;
  font-weight: 300;
  margin-bottom: 1.5rem;
}
.address__content .link-maps {
  color: #33C1E9;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5rem;
}
.address__content .link-maps svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}
@media (min-width: 768px) {
  .address__content {
    padding: 3% 95px 0;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 60%;
            flex: 0 0 60%;
    max-width: 60%;
  }
}
.address__map {
  width: 100%;
  overflow: hidden;
}
.address__map img {
  width: 100%;
  max-height: 280px;
}
@media (min-width: 768px) {
  .address__map {
    max-height: 300px;
  }
}
@media (min-width: 768px) {
  .address .container {
    width: min(90%, 1440px);
  }
  .address__wrap {
    border-radius: 20px;
  }
}
.terms-conditions {
  padding-bottom: 2rem;
}
.terms-conditions .btn-terms {
  color: #333333;
  font-weight: 300;
  background-color: #F2F2F2;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 16px;
  gap: 3rem;
}
.terms-conditions .btn-terms svg {
  width: 16px;
  height: 16px;
  fill: #2F55A1;
}
footer {
  background-color: #2F55A1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 1rem 3rem;
}
