:root {
  --white-color: #fff !important;
  --black-color: #313131 !important;
  --grey-color: #676767;
  --primary-color: #EA503C;
  --primary-color-hover: #D8402C;
  --secondary-color: #E0482A;
  --secondary-color-hover: #FF5C3A;
  --bg-color: #f2f1ed;
  --border-color: #CBC9C2;
  --font-family: "DM Sans", sans-serif;
  --font-awesome: "Font Awesome 6 Free";
  --font-size-default: 16px;
  --font-weight-default: 400;
  --font-size-theme: 17px;
  --line-height-theme: 1.6;
  --font-weight-theme: 700;
  --button-height: 59px;
  --header-height: 120px; }
  @media (max-width: 1199px) {
    :root {
      --button-height: 51px; } }
  @media (max-width: 991px) {
    :root {
      --header-height: 64px;
      --button-height: 46px; } }

body {
  background-color: var(--bg-color);
  color: var(--black-color);
  font-family: var(--font-family);
  font-size: var(--font-size-theme);
  font-weight: var(--font-weight-default);
  line-height: var(--line-height-theme); }

h1 {
  font-family: var(--font-family);
  font-size: 80px;
  font-weight: var(--font-weight-theme);
  line-height: 1.15em; }
  @media (max-width: 1199px) {
    h1 {
      font-size: 6vw; } }
  @media (max-width: 575px) {
    h1 {
      font-size: 8.1vw; } }

h2 {
  font-family: var(--font-family);
  font-size: 3.353em;
  font-weight: var(--font-weight-theme);
  line-height: 1em; }
  h2:not(:last-child) {
    margin-bottom: 25px; }
  @media (max-width: 1199px) {
    h2 {
      font-size: 46px; } }
  @media (max-width: 767px) {
    h2 {
      font-size: 30px; } }

h3 {
  font-family: var(--font-family);
  font-size: 2.059em;
  font-weight: var(--font-weight-theme);
  line-height: 1.086em; }
  @media (max-width: 1199px) {
    h3 {
      font-size: 28px; } }
  h3.style-2 {
    font-size: 2.765em;
    line-height: 1.021em; }
    @media (max-width: 1199px) {
      h3.style-2 {
        font-size: 36px; } }
  h3:not(:last-child) {
    margin-bottom: 25px; }

h4 {
  font-family: var(--font-family);
  font-size: 1.556em;
  font-weight: var(--font-weight-theme);
  line-height: 1.2em; }
  @media (max-width: 1199px) {
    h4 {
      font-size: 1.4em; } }

h5 {
  font-family: var(--font-family);
  font-size: 1.412em;
  font-weight: var(--font-weight-theme);
  line-height: 1.2; }
  @media (max-width: 1199px) {
    h5 {
      font-size: 20px; } }

h6 {
  font-family: var(--font-family);
  font-size: 14px;
  font-weight: var(--font-weight-theme);
  line-height: var(--line-height-theme); }
  h6:not(.style-2) {
    letter-spacing: 1.8px;
    text-transform: uppercase;
    opacity: .9; }
  h6.style-2 {
    font-size: var(--font-size-default);
    font-weight: var(--font-weight-default);
    line-height: 25px; }
  h6:not(:last-child) {
    margin-bottom: 20px; }

p,
main li,
ol li::marker {
  color: var(--grey-color);
  font-family: var(--font-family);
  font-size: var(--font-size-theme);
  font-weight: var(--font-weight-default);
  line-height: var(--line-height-theme); }

p.small {
  color: #747474;
  font-size: 15px; }
p:not(:last-child) {
  margin-bottom: 20px; }

strong {
  font-weight: var(--font-weight-theme); }

main input[type=text],
main input[type=email],
main textarea {
  --border-width: 1px;
  width: 100%;
  background-color: transparent;
  color: var(--black-color);
  font-family: var(--font-family);
  font-size: var(--font-size-default);
  font-weight: var(--font-weight-default);
  line-height: var(--line-height-theme);
  border-top: none !important;
  border-left: none !important;
  border-right: none !important;
  border-bottom: var(--border-width) solid #c2c5cb;
  border-width: var(--border-width);
  padding-block: 12px;
  outline: none; }
  main input[type=text]::placeholder,
  main input[type=email]::placeholder,
  main textarea::placeholder {
    color: var(--grey-color);
    font-family: var(--font-family);
    text-transform: capitalize; }

main textarea {
  display: block;
  height: 120px;
  resize: none; }

.button:not(.unshow) {
  display: inline-flex;
  align-items: center;
  gap: 0 8px;
  height: var(--button-height);
  background-color: var(--primary-color);
  color: var(--white-color);
  font-family: var(--font-family);
  font-size: 15px;
  font-weight: var(--font-weight-theme);
  line-height: 21px;
  padding-inline: 42px;
  transition: background-color .3s ease, color .3s ease; }
  @media (max-width: 1199px) {
    .button:not(.unshow) {
      padding-inline: 35px; } }
  .button:not(.unshow):hover {
    background-color: var(--primary-color-hover); }
  .button:not(.unshow).style-2 {
    background-color: var(--secondary-color); }
    .button:not(.unshow).style-2:hover {
      background-color: var(--secondary-color-hover); }
  .button:not(.unshow).style-3 {
    background-color: transparent;
    color: var(--white-color);
    box-shadow: inset 0 0 0 2px var(--white-color); }
    .button:not(.unshow).style-3:hover {
      background-color: var(--white-color);
      color: var(--secondary-color); }

.btn-wrap {
  margin-top: 30px; }

.swiper {
  --swiper-pagination-bottom: 0;
  --swiper-pagination-color: var(--secondary-color);
  padding-bottom: var(--swiper-padding-bottom, 0); }
  .swiper-pagination-bullet {
    transition: all .3s ease; }
    .swiper-pagination-bullet:hover {
      background-color: var(--swiper-pagination-color);
      opacity: 1; }
  .swiper-button-prev, .swiper-button-next {
    color: var(--black-color);
    font-size: 30px;
    z-index: 1; }
    .swiper-button-prev::after, .swiper-button-next::after {
      display: none; }

.line {
  --line-width: 0px;
  overflow: hidden; }
  .line .d-flex {
    flex-wrap: nowrap; }
  .line .text-wrap {
    white-space: nowrap; }
    .line .text-wrap span {
      font-size: 170px;
      font-weight: 500;
      line-height: 1em; }
      @media (max-width: 1199px) {
        .line .text-wrap span {
          font-size: 140px; } }
      @media (max-width: 767px) {
        .line .text-wrap span {
          font-size: 50px; } }
  .line .icon-wrap {
    font-size: 34px;
    margin-inline: 60px;
    transform: translateY(25%); }
    @media (max-width: 1199px) {
      .line .icon-wrap {
        font-size: 30px; } }
    @media (max-width: 767px) {
      .line .icon-wrap {
        font-size: 20px;
        margin-inline: 30px;
        transform: translateY(0); } }

@keyframes slide-line {
  0% {
    transform: translateX(0%); }
  100% {
    transform: translateX(calc(-1 * var(--line-width))); } }
@media (min-width: 992px) {
  .pl-100 {
    padding-left: 50px; }

  .pr-100 {
    padding-right: 50px; } }
@media (min-width: 1200px) {
  .pl-100 {
    padding-left: 100px; }

  .pr-100 {
    padding-right: 100px; } }
@media (max-width: 991px) {
  .pt-100 {
    padding-top: 80px; }

  .pb-100 {
    padding-bottom: 80px; }

  .mt-100 {
    padding-top: 80px; }

  .mb-100 {
    margin-bottom: 80px; } }
@media (max-width: 991px) {
  .d-flex.content.columns-2,
  .content > .d-flex.columns-2,
  #footer .d-flex.columns-2 {
    --columns: 1; }
    .d-flex.content.columns-2.toLeft > .item, .d-flex.content.columns-2.toRight > .item,
    .content > .d-flex.columns-2.toLeft > .item,
    .content > .d-flex.columns-2.toRight > .item,
    #footer .d-flex.columns-2.toLeft > .item,
    #footer .d-flex.columns-2.toRight > .item {
      width: 100% !important; }
  .d-flex.content.columns-3,
  .content > .d-flex.columns-3,
  #footer .d-flex.columns-3 {
    --columns: 2;
    justify-content: center; }
  .d-flex.content.columns-4,
  .content > .d-flex.columns-4,
  #footer .d-flex.columns-4 {
    --columns: 2; } }
@media (max-width: 767px) {
  .d-flex.content.columns-3, .d-flex.content.columns-4,
  .content > .d-flex.columns-3,
  .content > .d-flex.columns-4,
  #footer .d-flex.columns-3,
  #footer .d-flex.columns-4 {
    --columns: 1; } }

#header {
  --links-color: var(--black-color);
  --mobile-nav-link-color: var(--black-color);
  --hamburger-lines-color: var(--black-color);
  --hamburger-lines-height: 2px;
  --hamburger-width: 26px;
  --hamburger-height: 24px; }
  #header:not(.style-2) .logo .img-2 {
    display: none; }
  #header.style-2 {
    --hamburger-lines-color: var(--white-color); }
    @media (min-width: 992px) {
      #header.style-2 {
        --links-color: var(--white-color); } }
    #header.style-2 .logo .img-1 {
      display: none; }
    #header.style-2 .logo .img-2 {
      display: block; }
  #header *:not(i):not(.button:not(.unshow)) {
    font-family: var(--font-family); }
  #header .nav a:not(.button:not(.unshow)) {
    position: relative;
    color: var(--links-color);
    font-size: var(--font-size-default);
    font-weight: 500;
    line-height: 24px;
    text-transform: capitalize; }
    #header .nav a:not(.button:not(.unshow))::before {
      content: "";
      position: absolute;
      bottom: -5px;
      left: 0;
      width: 100%;
      height: 2px;
      background-color: var(--links-color);
      transform-origin: left;
      transform: scaleX(0);
      transition: transform .3s ease; }
  @media (min-width: 992px) {
    #header .nav ul {
      align-items: center; } }
  #header .nav li.active a:not(.button:not(.unshow))::before,
  #header .nav a:not(.button:not(.unshow)):hover::before {
    transform: scaleX(1); }

#footer * {
  font-family: var(--font-family); }
#footer h5 {
  font-size: 1.333em;
  line-height: 1.2em;
  margin-bottom: 20px; }
#footer ul li {
  margin-bottom: 8px; }
#footer p,
#footer ul li {
  color: var(--grey-color);
  font-size: var(--font-size-theme);
  font-weight: var(--font-weight-default);
  line-height: var(--line-height-theme); }
  #footer p:last-of-type,
  #footer ul li:last-of-type {
    margin-bottom: 0; }
  #footer p a,
  #footer ul li a {
    color: var(--grey-color);
    transition: color .3s ease; }
    #footer p a:hover,
    #footer ul li a:hover {
      color: var(--black-color); }
#footer .content-top {
  padding-block: 90px 80px; }
  @media (max-width: 767px) {
    #footer .content-top {
      padding-bottom: 30px; } }
#footer .content-bottom {
  border-top: 1px solid #c2c5cb;
  padding-block: 30px; }
#footer:not(.style-2) .logo .img-2 {
  display: none; }
#footer.style-2 {
  background-color: var(--black-color); }
  #footer.style-2 * {
    color: var(--white-color); }
  #footer.style-2 .logo .img-1 {
    display: none; }
  #footer.style-2 p a:hover,
  #footer.style-2 ul li a:hover {
    color: var(--secondary-color); }
@media (max-width: 991px) and (min-width: 768px) {
  #footer .d-flex.columns-3 {
    --columns: 3 !important; } }

#home {
  padding-top: var(--header-height); }
  #home.section-1 .images-area {
    --gap: 20px;
    --size: 208px;
    position: relative;
    height: calc(var(--size) * 2 + var(--gap));
    overflow: hidden; }
    @media (max-width: 1199px) {
      #home.section-1 .images-area {
        --gap: 16px;
        --size: 166px; } }
    @media (max-width: 991px) {
      #home.section-1 .images-area {
        --gap: 15px;
        --size: 153px; } }
    @media (max-width: 767px) {
      #home.section-1 .images-area {
        --gap: 11px;
        --size: 113px; } }
    @media (max-width: 575px) {
      #home.section-1 .images-area {
        --gap: 16px;
        --size: 159px; } }
    #home.section-1 .images-area .item {
      position: absolute; }
      #home.section-1 .images-area .item:nth-of-type(1) {
        position: absolute;
        top: 0;
        left: 0;
        width: calc(var(--size) * 1.62); }
      #home.section-1 .images-area .item:nth-of-type(2) {
        bottom: 0;
        left: 0;
        width: calc(var(--size) * 2.31); }
      #home.section-1 .images-area .item:nth-of-type(3) {
        top: 0;
        right: calc(var(--size) + var(--gap));
        width: calc(var(--size) * 2.995 - var(--gap) * 2); }
        @media (max-width: 991px) {
          #home.section-1 .images-area .item:nth-of-type(3) {
            right: 0; } }
        @media (max-width: 575px) {
          #home.section-1 .images-area .item:nth-of-type(3) {
            left: calc(var(--size) * 1.72);
            right: inherit; } }
      #home.section-1 .images-area .item:nth-of-type(4) {
        top: 0;
        right: 0;
        width: var(--size); }
        @media (max-width: 991px) {
          #home.section-1 .images-area .item:nth-of-type(4) {
            display: none; } }
      #home.section-1 .images-area .item:nth-of-type(5) {
        top: 0;
        right: calc(var(--size) + var(--gap));
        width: var(--size);
        height: var(--size); }
        @media (max-width: 991px) {
          #home.section-1 .images-area .item:nth-of-type(5) {
            right: 0; } }
        @media (max-width: 575px) {
          #home.section-1 .images-area .item:nth-of-type(5) {
            display: none; } }
    #home.section-1 .images-area .btn-wrap {
      margin-top: 0;
      height: 100%; }
      #home.section-1 .images-area .btn-wrap .button {
        position: relative;
        justify-content: center;
        width: 100%;
        height: 100%;
        font-size: var(--font-size-default);
        font-weight: 500;
        padding-inline: 0; }
        #home.section-1 .images-area .btn-wrap .button svg {
          position: absolute;
          top: 12px;
          right: 12px; }
  #home.section-1 .bg-image {
    aspect-ratio: 2/1; }
  #home.section-12 {
    --overlay-opacity: .55;
    position: relative;
    padding-top: 0; }
    #home.section-12 .video-wrap {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      z-index: -1; }
      #home.section-12 .video-wrap video {
        width: 100%;
        height: 100%;
        object-fit: cover; }
      #home.section-12 .video-wrap.overlay::before {
        z-index: 2; }
    #home.section-12 .content {
      padding-block: calc(var(--header-height) + 50px) 50px; }
      #home.section-12 .content * {
        color: var(--white-color); }
      @media (max-width: 767px) {
        #home.section-12 .content .d-flex {
          flex-direction: column; }
          #home.section-12 .content .d-flex.align-items-center {
            align-items: flex-start; } }
      #home.section-12 .content .d-flex .img-wrap {
        display: flex; }
        #home.section-12 .content .d-flex .img-wrap img {
          --img-size: 65px;
          width: var(--img-size);
          height: var(--img-size); }
          #home.section-12 .content .d-flex .img-wrap img:nth-of-type(2), #home.section-12 .content .d-flex .img-wrap img:nth-of-type(3) {
            margin-left: calc(-1 * (var(--img-size) / 2)); }
          #home.section-12 .content .d-flex .img-wrap img:nth-of-type(1) {
            z-index: 3; }
          #home.section-12 .content .d-flex .img-wrap img:nth-of-type(2) {
            z-index: 2; }
          #home.section-12 .content .d-flex .img-wrap img:nth-of-type(3) {
            z-index: 1; }
      #home.section-12 .content .d-flex .text-wrap {
        flex: 1; }
    @media (max-width: 991px) {
      #home.section-12 .mb-80 {
        margin-bottom: 50px; } }
  #home.section-18 {
    background-position-y: bottom;
    background-size: auto calc(100% - var(--header-height)); }
    @media (max-width: 991px) {
      #home.section-18.bg-image {
        background-image: none !important; }
      #home.section-18 .d-flex.columns-3 {
        --columns: 1; } }

#ebooks {
  overflow: hidden; }
  #ebooks .swiper {
    --swiper-padding-bottom: 50px;
    --swiper-pagination-color: var(--white-color);
    --swiper-pagination-bullet-inactive-color: var(--white-color);
    position: relative;
    left: 50%;
    width: 120%;
    transform: translateX(-50%); }
    @media (max-width: 575px) {
      #ebooks .swiper {
        left: 0;
        width: calc(100% - 30px);
        transform: translateX(0); } }

#tarifs .context .item {
  background-color: var(--white-color);
  padding: 66px 60px 75px; }
  @media (max-width: 1199px) {
    #tarifs .context .item {
      padding: 56px 40px 65px; } }
  @media (max-width: 991px) {
    #tarifs .context .item {
      padding: 23px 25px 30px; } }
  #tarifs .context .item h3 {
    font-size: 57px;
    line-height: 1;
    margin-bottom: 15px; }
    @media (max-width: 1199px) {
      #tarifs .context .item h3 {
        font-size: 50px; } }
    @media (max-width: 991px) {
      #tarifs .context .item h3 {
        font-size: 39px;
        margin-bottom: 10px; } }
  #tarifs .context .item h4 {
    font-size: 24px;
    line-height: 1.25em;
    margin-bottom: 20px; }
  #tarifs .context .item p {
    margin-bottom: 30px; }
    @media (max-width: 991px) {
      #tarifs .context .item p {
        margin-bottom: 15px; } }
  #tarifs .context .item .btn-wrap {
    margin-top: 40px; }
    @media (max-width: 991px) {
      #tarifs .context .item .btn-wrap {
        margin-top: 25px; } }
  #tarifs .context .item:not(:nth-of-type(2)) {
    background-color: var(--secondary-color); }
    #tarifs .context .item:not(:nth-of-type(2)) *:not(.button:hover) {
      color: var(--white-color) !important; }
    #tarifs .context .item:not(:nth-of-type(2)) .button {
      background-color: transparent;
      color: var(--white-color);
      box-shadow: inset 0 0 0 2px var(--white-color); }
      #tarifs .context .item:not(:nth-of-type(2)) .button:hover {
        background-color: var(--white-color);
        color: var(--secondary-color); }

#contact .new-validate__line:not(.new-validate__btn) {
  margin-bottom: 35px; }
#contact.section-9 .bg-image {
  aspect-ratio: 1/1; }
  @media (min-width: 992px) {
    #contact.section-9 .bg-image {
      width: calc(100% + 100px); } }
#contact.section-9 .form-wrap {
  background-color: var(--white-color);
  padding: 70px 70px 80px 70px; }
  @media (max-width: 575px) {
    #contact.section-9 .form-wrap {
      padding: 25px; } }

#testimonials.section-15 .context .item {
  border: 1px solid #c2c5cb;
  padding: 35px 25px; }
  @media (min-width: 1200px) {
    #testimonials.section-15 .context .item {
      height: min-content; } }
  #testimonials.section-15 .context .item .d-flex {
    align-items: center;
    gap: 20px;
    margin-bottom: 20px; }
    #testimonials.section-15 .context .item .d-flex .img-wrap {
      flex: 0 0 70px; }
      #testimonials.section-15 .context .item .d-flex .img-wrap img {
        border-radius: 50%; }
    #testimonials.section-15 .context .item .d-flex .text-wrap {
      flex: 1; }
      #testimonials.section-15 .context .item .d-flex .text-wrap h5 {
        font-size: 19px;
        line-height: 1.25em; }
@media (max-width: 1199px) and (min-width: 992px) {
  #testimonials.section-15 .d-flex.columns-4 {
    --columns: 2; } }
#testimonials.section-21 .swiper {
  --swiper-padding-bottom: 50px; }
  #testimonials.section-21 .swiper-slide {
    padding: 60px 45px 60px 40px;
    transition: background-color .3s ease, box-shadow .3s ease; }
    @media (max-width: 575px) {
      #testimonials.section-21 .swiper-slide {
        padding: 40px 20px; } }
    #testimonials.section-21 .swiper-slide-active {
      background-color: var(--white-color);
      box-shadow: 0 3px 40px 0 rgba(0, 0, 0, 0.06); }
    #testimonials.section-21 .swiper-slide p.text-black {
      font-size: 19px; }
    #testimonials.section-21 .swiper-slide > .d-flex {
      gap: 30px; }
      @media (max-width: 575px) {
        #testimonials.section-21 .swiper-slide > .d-flex {
          gap: 20px; } }
      #testimonials.section-21 .swiper-slide > .d-flex .item {
        width: auto; }
        #testimonials.section-21 .swiper-slide > .d-flex .item:nth-of-type(2) {
          flex: 1; }
      #testimonials.section-21 .swiper-slide > .d-flex .icon-wrap {
        color: var(--secondary-color);
        font-size: 25px; }
      #testimonials.section-21 .swiper-slide > .d-flex .d-flex {
        align-items: center;
        gap: 20px;
        margin-top: 25px; }
        #testimonials.section-21 .swiper-slide > .d-flex .d-flex .img-wrap img {
          width: 78px;
          height: 78px;
          object-fit: cover;
          border-radius: 50%; }
        #testimonials.section-21 .swiper-slide > .d-flex .d-flex .text-wrap {
          flex: 1; }
          #testimonials.section-21 .swiper-slide > .d-flex .d-flex .text-wrap h5 {
            font-size: 19px;
            line-height: 1.3em; }

#faq .accordion-container {
  --item-padding-block: 23px;
  border-top: 1px solid var(--border-color); }
  #faq .accordion-container .accordion {
    border-bottom: 1px solid var(--border-color); }
    #faq .accordion-container .accordion .accordion-title {
      display: flex;
      align-items: center;
      gap: 0 15px;
      padding-block: var(--item-padding-block);
      cursor: pointer; }
      #faq .accordion-container .accordion .accordion-title .text-wrap {
        flex: 1; }
        #faq .accordion-container .accordion .accordion-title .text-wrap h4 {
          font-size: 24px;
          line-height: 1em; }
      #faq .accordion-container .accordion .accordion-title .icon-wrap {
        display: flex;
        align-items: center;
        flex: 0 0 25px; }
        #faq .accordion-container .accordion .accordion-title .icon-wrap svg {
          transition: transform .3s ease; }
    #faq .accordion-container .accordion-description {
      height: 0;
      overflow: hidden;
      transition: height .3s ease; }
    #faq .accordion-container .accordion-content {
      padding-bottom: var(--item-padding-block); }
    #faq .accordion-container .accordion.active .accordion-title .icon-wrap svg {
      transform: rotate(45deg); }

.section-default .content .text-wrap h5 span {
  color: #747474;
  font-weight: 500;
  margin-right: 10px; }
.section-default .content .bg-image {
  aspect-ratio: 1/1; }
.section-default .content .item-img {
  position: relative;
  padding-right: 100px; }
  @media (max-width: 575px) {
    .section-default .content .item-img {
      padding-right: 50px; } }
  .section-default .content .item-img .bg-image {
    aspect-ratio: .75/1; }
  .section-default .content .item-img .text-wrap {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 57%;
    background-color: var(--black-color);
    color: var(--white-color);
    padding: 50px; }
    @media (max-width: 575px) {
      .section-default .content .item-img .text-wrap {
        padding: 20px; } }
@media (min-width: 992px) {
  .section-default .content.d-flex:not(.flex-row-reverse) .item:nth-of-type(1) {
    padding-right: 50px; } }
@media (min-width: 1200px) {
  .section-default .content.d-flex:not(.flex-row-reverse) .item:nth-of-type(1) {
    padding-right: 100px; } }
@media (min-width: 992px) {
  .section-default .content.d-flex.flex-row-reverse .item:nth-of-type(1) {
    padding-left: 50px; } }
@media (min-width: 1200px) {
  .section-default .content.d-flex.flex-row-reverse .item:nth-of-type(1) {
    padding-left: 100px; } }

.section-2 .context .item {
  position: relative;
  counter-increment: itemCounter; }
  .section-2 .context .item::before {
    content: counter(itemCounter,decimal-leading-zero);
    position: absolute;
    top: -42px;
    left: -8px;
    color: var(--white-color);
    font-size: 8em;
    line-height: 1em;
    font-weight: var(--font-weight-theme);
    z-index: -1; }
  .section-2 .context .item .d-flex {
    --gapX: 15px;
    align-items: center;
    margin-bottom: 20px; }
    .section-2 .context .item .d-flex .icon-wrap {
      font-size: 4.4em;
      line-height: 1; }
      .section-2 .context .item .d-flex .icon-wrap i::before {
        margin-inline: 0; }
    .section-2 .context .item .d-flex .text-wrap {
      flex: 1; }

.section-4 .content {
  border-top: 2px solid #363636;
  padding-top: 50px; }
@media (min-width: 992px) {
  .section-4 .context {
    padding-left: 50px; } }
@media (max-width: 575px) {
  .section-4 .context .d-flex.columns-2 {
    --columns: 1; } }
.section-4 .context-item {
  counter-increment: itemCounter;
  border-bottom: 1px solid var(--border-color);
  padding-block: 40px; }
  .section-4 .context-item h3 span {
    color: var(--grey-color); }
    .section-4 .context-item h3 span::before {
      content: counter(itemCounter,decimal-leading-zero) "."; }

.section-5 .context .bg-image {
  aspect-ratio: 1/.75; }
@media (max-width: 991px) {
  .section-5 .d-flex.columns-2 {
    --columns: 1; }
    .section-5 .d-flex.columns-2 .item:nth-of-type(1) {
      order: 2; }
    .section-5 .d-flex.columns-2 .item:nth-of-type(2) {
      order: 1; } }

.section-10 {
  overflow: hidden; }
  .section-10 .swiper {
    overflow: visible; }
    .section-10 .swiper-slide {
      height: auto;
      background-color: var(--white-color);
      padding: 60px 35px; }
      .section-10 .swiper-slide .icon-wrap {
        color: var(--secondary-color);
        font-size: 4.1em;
        line-height: 1;
        margin-bottom: 30px; }
      .section-10 .swiper-slide h4 {
        margin-bottom: 15px; }
  .section-10 .item > .d-flex .text-wrap {
    flex: 1; }
  .section-10 .item > .d-flex .swiper-navigation {
    display: flex;
    gap: 5px; }
    .section-10 .item > .d-flex .swiper-navigation .swiper-button-prev,
    .section-10 .item > .d-flex .swiper-navigation .swiper-button-next {
      position: relative;
      top: inherit;
      bottom: inherit;
      left: inherit;
      right: inherit;
      width: 40px;
      height: 40px;
      font-size: 14px;
      border: 1px solid #c2c5cb;
      border-radius: 50%;
      margin: 0;
      transition: opacity .3s ease; }
  @media (max-width: 575px) {
    .section-10 .nav-wrap.d-flex {
      flex-direction: column; }
      .section-10 .nav-wrap.d-flex.align-items-center {
        align-items: flex-start; } }

.section-11 {
  overflow: hidden; }
  .section-11 .content .item {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 110px; }
    .section-11 .content .item::before {
      content: attr(data-text-background);
      position: absolute;
      top: 50%;
      left: 50%;
      color: var(--white-color);
      font-size: 6em;
      font-weight: 700;
      line-height: 1;
      text-align: center;
      opacity: .05;
      transform: translate(-50%, -50%); }
    .section-11 .content .item:not(:last-of-type)::after {
      content: "";
      position: absolute;
      top: 50%;
      right: calc(-1 * (var(--gapX) / 2));
      width: 1px;
      height: 60px;
      background-color: #c2c5cb;
      transform: translateY(-50%); }
    @media (max-width: 991px) {
      .section-11 .content .item:nth-of-type(2)::after {
        display: none; } }
    @media (max-width: 767px) {
      .section-11 .content .item::after {
        display: none !important; } }
    .section-11 .content .item .text-wrap {
      position: relative;
      text-align: center;
      z-index: 1; }
      .section-11 .content .item .text-wrap h5 {
        font-size: 24px; }

.section-13 .context .item {
  position: relative; }
  .section-13 .context .item:not(:last-of-type)::before {
    content: "";
    position: absolute;
    top: 0;
    right: calc(-1 * (var(--gapX) / 2));
    width: 1px;
    height: 100%;
    background-color: #c2c5cb; }
  @media (max-width: 991px) {
    .section-13 .context .item:nth-of-type(2)::before {
      display: none; } }
  @media (max-width: 767px) {
    .section-13 .context .item::before {
      display: none !important; } }
  .section-13 .context .item .img-wrap {
    margin-bottom: 30px; }
  .section-13 .context .item h4 {
    font-size: 1.333em;
    line-height: 1.2em; }

.section-14 .sticky-wrap {
  position: sticky;
  top: 25px; }
  .section-14 .sticky-wrap .bg-image {
    height: 350px; }
  .section-14 .sticky-wrap .text-wrap {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    background-color: var(--secondary-color);
    color: var(--white-color);
    padding: 30px; }
  @media (max-width: 575px) {
    .section-14 .sticky-wrap .d-flex.columns-2 {
      --columns: 1; } }
@media (min-width: 992px) {
  .section-14 .context {
    padding-top: 200px; } }
.section-14 .context .context-item:first-of-type {
  margin-bottom: 80px; }
  @media (max-width: 991px) {
    .section-14 .context .context-item:first-of-type {
      margin-bottom: 50px; } }
.section-14 .context .context-item:not(:first-of-type):not(:last-of-type) {
  margin-bottom: 45px; }
.section-14 .context .context-item .icon-wrap {
  margin-bottom: 8px; }
  .section-14 .context .context-item .icon-wrap svg path {
    fill: var(--secondary-color); }
.section-14 .context .context-item h5 {
  margin-bottom: 10px; }

.section-19 .context .item {
  display: flex;
  gap: 30px;
  background-color: var(--white-color);
  padding: 50px 25px; }
  .section-19 .context .item .text-wrap {
    flex: 1; }
    .section-19 .context .item .text-wrap h4 {
      margin-bottom: 15px; }
