:root {
  --white-color: #fff !important;
  --black-color: #181F22 !important;
  --grey-color: #586563;
  --primary-color: #5547FF;
  --primary-color-rgb: 85, 71, 255;
  --secondary-color: #FC5E60;
  --accent-color: #FEDC6E;
  --bg-color: #F2F7F8;
  --font-family: "Urbanist", sans-serif;
  --font-family-2: "Inter", sans-serif;
  --font-awesome: "Font Awesome 6 Free";
  --font-size-default: 16px;
  --font-weight-default: 400;
  --font-size-theme: 18px;
  --line-height-theme: 1.6;
  --font-weight-theme: 800;
  --button-height: 56px;
  --header-height: 80px; }

body {
  background-color: var(--bg-color);
  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); }

h1 {
  color: var(--black-color);
  font-family: var(--font-family-2);
  font-size: 68px;
  font-weight: 500;
  line-height: 1; }
  h1:not(:last-child) {
    margin-bottom: 25px; }
  @media (max-width: 991px) {
    h1 {
      font-size: 56px; } }
  @media (max-width: 575px) {
    h1 {
      font-size: 50px; } }

h2 {
  color: var(--black-color);
  font-family: var(--font-family-2);
  font-size: 48px;
  font-weight: 500;
  line-height: 1.2; }
  h2:not(:last-child) {
    margin-bottom: 25px; }
  @media (max-width: 575px) {
    h2 {
      font-size: 40px; } }

h3 {
  color: var(--black-color);
  font-family: var(--font-family-2);
  font-size: 40px;
  font-weight: 600;
  line-height: 1.2; }
  h3:not(:last-child) {
    margin-bottom: 15px; }

h4 {
  color: var(--black-color);
  font-family: var(--font-family-2);
  font-size: 22px;
  font-weight: 600;
  line-height: 1.2; }
  h4:not(:last-child) {
    margin-bottom: 20px; }

h5 {
  color: var(--black-color);
  font-family: var(--font-family-2);
  font-size: 20px;
  font-weight: 600;
  line-height: 1.2; }
  h5:not(:last-child) {
    margin-bottom: 15px; }

h6 {
  color: var(--secondary-color);
  font-family: var(--font-family);
  font-size: var(--font-size-default);
  font-weight: 600;
  line-height: 1; }
  h6:not(:last-child) {
    margin-bottom: 25px; }
  h6.subtitle {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 5px;
    padding: 11px 14px 10px; }
    h6.subtitle::before, h6.subtitle::after {
      content: "";
      width: 4px;
      height: 4px;
      border-radius: 50%;
      background-color: var(--secondary-color); }

p,
main li,
ol li::marker {
  color: var(--black-color);
  font-family: var(--font-family);
  font-size: var(--font-size-theme);
  font-weight: 500;
  line-height: var(--line-height-theme);
  letter-spacing: 0.5px; }

p:not(:last-child), ul:not(:last-child), ol:not(:last-child) {
  margin-bottom: 20px; }

.dark h1, .dark h2, .dark h3, .dark h4, .dark h5, .dark h6, .dark p, .dark li {
  color: var(--white-color); }
.dark h6.subtitle {
  border-color: rgba(255, 255, 255, 0.3); }
  .dark h6.subtitle::before, .dark h6.subtitle::after {
    background-color: var(--white-color); }
.dark li::marker {
  color: var(--white-color); }

main input[type=text],
main input[type=email],
main textarea {
  --border-width: 1px;
  width: 100%;
  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: var(--border-width) solid #e7e7e8;
  border-width: var(--border-width);
  border-radius: 8px;
  padding: 16px 25px;
  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: 130px;
  resize: none; }

.button {
  --button-padding: 0 var(--button-padding-inline, 25px);
  display: inline-flex;
  gap: 10px;
  height: var(--button-height);
  background-color: var(--primary-color);
  color: var(--white-color);
  font-family: var(--font-family-2);
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  border-radius: 6px; }
  .button .icon-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 30px;
    background-color: var(--white-color);
    color: var(--primary-color);
    font-size: 30px;
    border-radius: 6px;
    overflow: hidden; }
  .button:hover .icon-wrap i {
    animation: buttonAnimation .5s forwards; }

@keyframes buttonAnimation {
  0%, 100% {
    transform: translateX(0); }
  50% {
    transform: translateX(30px); }
  51% {
    transform: translateX(-30px); } }
.btn-wrap {
  margin-top: 30px; }

.swiper {
  --swiper-pagination-bottom: 0;
  --swiper-pagination-color: var(--primary-color);
  --swiper-pagination-bullet-inactive-color: transparent;
  --swiper-pagination-bullet-size: 10px;
  --swiper-pagination-bullet-inactive-opacity: 1;
  --swiper-pagination-bullet-horizontal-gap: 6px;
  padding-bottom: var(--swiper-padding-bottom, 0); }
  .swiper-button-prev::after, .swiper-button-next::after {
    display: none; }

@media (max-width: 1199px) {
  .pl-100 {
    padding-left: 50px; }

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

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

  .pl-100 {
    padding-left: 0; }

  .pr-100 {
    padding-right: 0; }

  .mt-100 {
    margin-top: 75px; }

  .mb-100 {
    margin-bottom: 75px; } }
.section-single .bg-image {
  aspect-ratio: 1/1.25;
  border-radius: 12px; }
  @media (max-width: 991px) {
    .section-single .bg-image {
      aspect-ratio: 1/1; } }
@media (min-width: 992px) {
  .section-single:not(.reverse) .item-text {
    padding-right: 50px; } }
@media (min-width: 1200px) {
  .section-single:not(.reverse) .item-text {
    padding-right: 100px; } }
.section-single.reverse .content.d-flex {
  flex-direction: row-reverse; }
@media (min-width: 992px) {
  .section-single.reverse .item-text {
    padding-left: 50px; } }
@media (min-width: 1200px) {
  .section-single.reverse .item-text {
    padding-left: 100px; } }
@media (max-width: 991px) {
  .section-single .d-flex {
    gap: 50px 0; } }

#header {
  --header-position: fixed;
  --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) {
    background-color: var(--bg-color);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15); }
    #header:not(.style-2) .logo .img-2 {
      display: none; }
  #header .nav a:not(.button) {
    color: var(--links-color);
    font-family: var(--font-family);
    font-size: var(--font-size-theme);
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0.5px;
    transition: color .3s ease; }
  @media (min-width: 992px) {
    #header .nav ul {
      align-items: center; } }
  #header .nav li.active a:not(.button),
  #header .nav a:not(.button):hover {
    color: var(--primary-color); }
  #header.style-2 {
    --links-color: var(--white-color);
    --mobile-nav-link-color: var(--black-color);
    --hamburger-lines-color: var(--white-color);
    transition: background-color .3s ease; }
    @media (max-width: 991px) {
      #header.style-2 {
        --links-color: var(--black-color); } }
    #header.style-2 .logo .img-1 {
      display: none; }
    #header.style-2.scrolled {
      background-color: #000; }
  #header [data-button] .icon-wrap {
    display: none; }

#footer {
  background-color: #171C1D;
  padding-top: 100px; }
  @media (max-width: 991px) {
    #footer {
      padding-top: 75px; } }
  #footer * {
    font-family: var(--font-family); }
    #footer *:not(h1):not(h4) {
      color: #F0F2F4; }
  #footer h1, #footer h2, #footer h3, #footer h4, #footer h5, #footer h6, #footer p, #footer li {
    margin-bottom: 0px; }
  #footer h1 {
    color: var(--white-color);
    line-height: .9; }
    #footer h1 u {
      color: var(--primary-color);
      font-size: 45px; }
  #footer h4 {
    color: var(--accent-color);
    text-transform: uppercase;
    margin-bottom: 10px; }
  #footer li:not(:last-of-type) {
    margin-bottom: 5px; }
  #footer a {
    transition: color .3s ease; }
    #footer a:hover {
      color: var(--accent-color); }
  #footer .context {
    padding-block: 50px; }
    @media (min-width: 992px) {
      #footer .context .item:nth-of-type(2) {
        text-align: center; }
      #footer .context .item:nth-of-type(3) {
        text-align: right; } }
    @media (max-width: 991px) {
      #footer .context .item {
        text-align: center; } }
  #footer .copyright-wrap {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-block: 30px; }
    #footer .copyright-wrap .text-wrap {
      text-align: center; }
      #footer .copyright-wrap .text-wrap p {
        font-size: var(--font-size-default); }
  @media (max-width: 991px) {
    #footer .d-flex.columns-3 {
      --columns: 1; } }

#home {
  padding-block: var(--home-padding-block, 100px); }
  @media (max-width: 991px) {
    #home {
      --home-padding-block: 75px; } }
  #home.section-1 {
    padding-block: var(--header-height) 0; }
    #home.section-1 .item-text {
      padding-block: 100px 250px; }
      @media (max-width: 991px) {
        #home.section-1 .item-text {
          padding: 75px 0 0; } }

#ebooks {
  overflow: hidden; }
  #ebooks .swiper {
    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 {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background-color: var(--white-color);
  box-shadow: inset 0 0 0 2px rgba(0, 0, 0, 0.1);
  border-radius: 16px;
  overflow: hidden; }
  #tarifs .context .item:nth-of-type(1) {
    --plan-color: var(--accent-color); }
  #tarifs .context .item:nth-of-type(2) {
    --plan-color: #A7DECF; }
  #tarifs .context .item:nth-of-type(3) {
    --plan-color: #FFB3B4; }
  #tarifs .context .item .tarif-top-content {
    padding: 30px; }
    #tarifs .context .item .tarif-top-content .tarif-name {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 15px;
      margin-bottom: 15px; }
      #tarifs .context .item .tarif-top-content .tarif-name .icon-wrap {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 68px;
        height: 68px;
        background-color: var(--plan-color);
        border-radius: 6px; }
      #tarifs .context .item .tarif-top-content .tarif-name h5 {
        font-weight: 500; }
    #tarifs .context .item .tarif-top-content .tarif-price {
      display: flex;
      align-items: flex-end;
      margin-bottom: 10px; }
      #tarifs .context .item .tarif-top-content .tarif-price h2 {
        font-weight: 700;
        margin-bottom: 0; }
      #tarifs .context .item .tarif-top-content .tarif-price p {
        transform: translateY(-3px); }
  #tarifs .context .item .tarif-bottom-content {
    background-color: #242d31;
    padding: 30px; }
    #tarifs .context .item .tarif-bottom-content .tarif-description li {
      color: var(--white-color); }
    #tarifs .context .item .tarif-bottom-content .btn-wrap .button {
      --button-height: 52px;
      width: 100%;
      align-items: center;
      background-color: #dee7e6;
      color: var(--black-color);
      font-size: var(--font-size-default); }
      #tarifs .context .item .tarif-bottom-content .btn-wrap .button:hover {
        background-color: var(--plan-color); }

#contact .content .form-box {
  background-color: var(--white-color);
  border-radius: 16px;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.15);
  padding: 40px; }
  @media (max-width: 575px) {
    #contact .content .form-box {
      padding-inline: 15px; } }
  #contact .content .form-box h4 {
    font-size: 30px; }
#contact .content form {
  display: flex;
  flex-wrap: wrap;
  gap: 20px; }
  #contact .content form .new-validate__line {
    width: 100%; }
    @media (min-width: 768px) {
      #contact .content form .new-validate__line:nth-of-type(1), #contact .content form .new-validate__line:nth-of-type(2) {
        width: calc(50% - 10px); } }

#testimonials.section-6 .context .item {
  background-color: var(--white-color);
  border-top: 2px solid rgba(var(--primary-color-rgb), 0.3);
  border-right: 2px solid rgba(var(--primary-color-rgb), 0.3);
  border-radius: 16px;
  padding: 25px; }
  #testimonials.section-6 .context .item .author-info {
    width: 120px; }
    #testimonials.section-6 .context .item .author-info .img-wrap {
      margin-bottom: 20px; }
      #testimonials.section-6 .context .item .author-info .img-wrap img {
        border-radius: 50%; }
    #testimonials.section-6 .context .item .author-info .text-wrap {
      text-align: center; }
      #testimonials.section-6 .context .item .author-info .text-wrap p:not(.small) {
        font-weight: 700;
        margin-bottom: 0; }
      #testimonials.section-6 .context .item .author-info .text-wrap p.small {
        color: var(--grey-color);
        font-size: var(--font-size-default); }
  #testimonials.section-6 .context .item .author-message {
    flex: 1; }
    #testimonials.section-6 .context .item .author-message .icon-wrap {
      color: #ffc106;
      margin-bottom: 15px; }
@media (max-width: 1199px) and (min-width: 992px) {
  #testimonials.section-6 .d-flex.columns-3 {
    --columns: 2; } }

@media (min-width: 992px) {
  .section-2 {
    margin-top: -150px; } }
@media (max-width: 991px) {
  .section-2 {
    background-color: var(--primary-color); } }
.section-2 .content {
  position: relative;
  width: 75%;
  padding: 50px 30px 50px 0; }
  @media (max-width: 991px) {
    .section-2 .content {
      width: 100%;
      padding: 50px 0; } }
  @media (min-width: 992px) {
    .section-2 .content::before {
      content: "";
      position: absolute;
      top: 0;
      left: -25vw;
      width: calc(100% + 25vw);
      height: 100%;
      background-color: var(--primary-color);
      border-radius: 0 50px 50px 0; }
    .section-2 .content > * {
      position: relative;
      z-index: 1; } }
  .section-2 .content .item {
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 12px;
    padding: 20px; }
    .section-2 .content .item .icon-wrap {
      display: flex;
      justify-content: center;
      align-items: center;
      width: 66px;
      height: 66px;
      background-color: var(--white-color);
      border-radius: 50%;
      margin-bottom: 25px; }
    .section-2 .content .item:nth-of-type(1) .icon-wrap {
      background-color: #e2f561; }
    .section-2 .content .item:nth-of-type(3) .icon-wrap {
      background-color: #A7DECF; }

.section-3.overlay {
  --overlay-bg: transparent;
  --overlay-opacity: .1; }
  .section-3.overlay::before {
    background-image: url("../img/bg-counter-2.webp");
    background-position: center center;
    background-size: cover; }
.section-3 .img-wrap img {
  border-radius: 16px; }
.section-3 .box {
  background-color: var(--accent-color);
  border-radius: 16px;
  padding: 25px; }
  .section-3 .box .icon-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 52px;
    height: 52px;
    background-color: var(--white-color);
    border-radius: 50%;
    margin-bottom: 20px; }
  .section-3 .box h3 {
    color: var(--black-color); }
  .section-3 .box p {
    color: var(--grey-color); }
@media (min-width: 1200px) {
  .section-3 .d-flex.columns-3 .item:nth-of-type(2) {
    margin-top: 50px; }
  .section-3 .d-flex.columns-3 .item:nth-of-type(3) {
    margin-top: 100px; } }
.section-3 .bottom .item {
  border-top: 1px solid rgba(255, 255, 255, 0.25);
  padding-top: 25px; }
.section-3 .bottom .icon-wrap {
  opacity: .25; }
@media (max-width: 1199px) and (min-width: 768px) {
  .section-3 .context .d-flex.columns-3 {
    align-items: flex-end;
    --columns: 2; }
    .section-3 .context .d-flex.columns-3 .item:last-of-type {
      width: 100%; } }

.section-5 .context {
  --columns: 5;
  --rows: 2;
  display: grid;
  grid-template-columns: repeat(var(--columns), 1fr);
  grid-template-rows: repeat(var(--rows), 280px);
  grid-template-areas: "a1 b c1 d1 e" "a2 b cd cd e";
  gap: 15px; }
  @media (max-width: 991px) {
    .section-5 .context {
      --columns: 4;
      --rows: 4;
      grid-template-areas: "a1 a1 b b" "a2 a2 b b" "c1 d1 e e" "cd cd e e"; } }
  @media (max-width: 767px) {
    .section-5 .context {
      --columns: 1;
      --rows: 7;
      grid-template-areas: "a1" "a2" "b" "c1" "d1" "e" "cd"; } }
  .section-5 .context .a1 {
    grid-area: a1; }
  .section-5 .context .a2 {
    grid-area: a2; }
  .section-5 .context .b {
    grid-area: b; }
  .section-5 .context .c1 {
    grid-area: c1; }
  .section-5 .context .d1 {
    grid-area: d1; }
  .section-5 .context .cd {
    grid-area: cd; }
  .section-5 .context .e {
    grid-area: e; }
  .section-5 .context .item {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 15px;
    border-radius: 12px;
    padding: 20px;
    overflow: hidden; }
    .section-5 .context .item.overlay {
      --overlay-bg: transparent;
      --overlay-opacity: 1; }
      .section-5 .context .item.overlay::before {
        background-image: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.5)); }
    .section-5 .context .item .img-wrap {
      display: flex;
      justify-content: center;
      align-items: center;
      width: 52px;
      height: 52px;
      background-color: rgba(255, 255, 255, 0.75);
      border-radius: 50%; }
.section-5 .button-custom-wrap .img-wrap {
  flex: 1; }
