@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap");
:root {
  --primary-color: #240fc0;
  --secondary-color: #B42BD1;
  --third-color: #E5EFFD;
  --white-color: #fff !important;
  --black-color: #252525 !important;
  --grey-color: #4c4c4c;
  --grey-bg-color: #E5E5FD;
  --border-color: #d7d7d7;
  --font-famlily: "Inter", sans-serif;
  --font-awesome: "Font Awesome 6 Free";
  --gap: 30px;
  --text-strong: 600;
  --border-radius: 5px; }

body {
  font-family: var(--font-famlily); }

h1 {
  font-size: 65px;
  font-weight: var(--text-strong);
  line-height: 1.1; }
  @media (max-width: 991px) {
    h1 {
      font-size: 55px; } }
  @media (max-width: 575px) {
    h1 {
      font-size: 40px; } }

h2 {
  font-size: 80px;
  font-weight: var(--text-strong);
  line-height: 1; }
  @media (max-width: 991px) {
    h2 {
      font-size: 64px; } }
  @media (max-width: 575px) {
    h2 {
      font-size: 48px; } }

h3 {
  font-size: 41px;
  font-weight: var(--text-strong);
  line-height: 1.2; }
  @media (max-width: 575px) {
    h3 {
      font-size: 36px; } }

h4 {
  font-size: 22px;
  font-weight: var(--text-strong); }

h5 {
  font-size: 18px;
  font-weight: 400; }

h6 {
  font-family: system-ui;
  font-size: 14px;
  font-weight: var(--text-strong);
  letter-spacing: 1px;
  text-transform: uppercase; }

p,
main li {
  color: var(--grey-color);
  font-size: 16px;
  line-height: 1.5; }
  p.big,
  main li.big {
    font-size: 20px; }

ul.custom li {
  position: relative;
  padding-left: 25px; }
  ul.custom li::before {
    content: "*";
    position: absolute;
    top: 4px;
    left: 0;
    color: var(--primary-color);
    font-size: 26px;
    font-weight: 900;
    line-height: 1; }
  ul.custom li:not(:last-of-type) {
    margin-bottom: 10px; }

hr {
  height: 1px;
  background-color: var(--border-color);
  border: none; }

strong,
.text-strong {
  font-weight: 700; }

.bg-white {
  background-color: var(--white-color) !important; }

.bg-black {
  background-color: var(--black-color); }

.bg-grey {
  background-color: var(--grey-bg-color); }

.bg-primary {
  background-color: var(--primary-color); }

.bg-third {
  background-color: var(--third-color); }

.d-flex {
  flex-wrap: wrap; }
  .d-flex.flex-row-reverse {
    flex-direction: row-reverse; }

.d-flex.columns-2.toLeft > .item:nth-of-type(1),
.d-flex.columns-2.toRight > .item:nth-of-type(2) {
  width: calc(100% / 3 * 2 - var(--gapX, 0px) / 3); }
  @media (max-width: 991px) {
    .d-flex.columns-2.toLeft > .item:nth-of-type(1),
    .d-flex.columns-2.toRight > .item:nth-of-type(2) {
      width: 100%; } }

.d-flex.columns-2.toLeft > .item:nth-of-type(2),
.d-flex.columns-2.toRight > .item:nth-of-type(1) {
  width: calc(100% / 3 - var(--gapX, 0px) / 3 * 2); }
  @media (max-width: 991px) {
    .d-flex.columns-2.toLeft > .item:nth-of-type(2),
    .d-flex.columns-2.toRight > .item:nth-of-type(1) {
      width: 100%; } }

.button {
  --button-font-size: 15px;
  --button-border-radius: 50px;
  --button-padding: 15px 35px;
  background-image: linear-gradient(to right, var(--primary-color), var(--secondary-color), var(--primary-color));
  background-size: 200% auto;
  border: none;
  cursor: pointer;
  transition: all .25s ease; }
  .button:hover {
    background-position: right center; }
  .button.bg-white {
    background-image: none;
    color: var(--black-color); }
    .button.bg-white:hover {
      background-color: var(--black-color) !important;
      color: var(--white-color); }

.label {
  position: relative;
  display: inline-flex;
  background-color: #F7F7F8;
  border-radius: 50px;
  padding: 13px 30px 12px 20px; }
  .label-hider {
    position: absolute;
    top: 50%;
    right: 20px;
    width: 5px;
    height: 15px;
    background-color: var(--primary-color);
    transform: translateY(-50%);
    animation: hider 1s infinite; }

.accordions-wrap {
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius); }
  .accordions-wrap .accordion {
    padding: 20px;
    cursor: pointer; }
    .accordions-wrap .accordion:not(:last-of-type) {
      border-bottom: 1px solid var(--border-color); }
    .accordions-wrap .accordion-label {
      position: relative;
      padding-right: 50px; }
      .accordions-wrap .accordion-label::before {
        content: "\f107";
        position: absolute;
        top: 5px;
        right: 0;
        font-family: var(--font-awesome);
        font-weight: 900;
        transition: transform .3s ease; }
    .accordions-wrap .accordion-desc {
      height: 0;
      overflow: hidden;
      transition: height .3s ease; }
    .accordions-wrap .accordion .space {
      height: 15px; }
    .accordions-wrap .accordion.visible .accordion-label::before {
      transform: rotateX(180deg); }

@keyframes hider {
  5%, 95% {
    opacity: 1; }
  50% {
    opacity: 0; } }
.header {
  --header-position: relative;
  --header-height: auto;
  --nav-link-color: var(--black-color);
  --mobile-nav-link-color: var(--nav-link-color);
  --hamburger-width: 28px;
  --hamburger-height: 23px;
  --hamburger-color: var(--nav-link-color);
  overflow: hidden; }
  .header .content {
    padding: 0; }
  @media (min-width: 992px) {
    .header .hamburger-wrap {
      display: none; } }
  @media (max-width: 991px) {
    .header .btn-wrap {
      display: none; } }
  .header .logo {
    max-width: 250px; }
  .header .top {
    padding: 25px 0; }
  .header .bottom {
    position: relative; }
    .header .bottom::before, .header .bottom::after {
      content: "";
      position: absolute;
      left: -25%;
      width: 150%;
      height: 1px;
      background-color: var(--border-color); }
    .header .bottom::before {
      top: 0; }
    .header .bottom::after {
      bottom: 0; }
  @media (min-width: 992px) {
    .header .nav ul {
      display: flex; } }
  @media (min-width: 992px) {
    .header .nav ul li {
      border-right: 1px solid var(--border-color); }
      .header .nav ul li:first-of-type {
        border-left: 1px solid var(--border-color); } }
  @media (max-width: 991px) {
    .header .nav ul li:not(:last-of-type) {
      margin-bottom: 15px; }
    .header .nav ul li.d-none {
      display: block; } }
  .header .nav ul li a {
    font-size: 15px;
    font-weight: 500;
    transition: color .25s ease; }
    @media (min-width: 992px) {
      .header .nav ul li a {
        display: flex;
        align-items: center;
        height: 66px;
        padding: 0 35px; } }
    .header .nav ul li a:hover {
      color: var(--primary-color); }

.section-2 .item {
  border: 1px solid var(--border-color);
  border-radius: 5px;
  box-shadow: 0 48px 100px 0 transparent;
  padding: 30px;
  transition: box-shadow .3s ease; }
  .section-2 .item:hover {
    box-shadow: 0 48px 100px rgba(17, 12, 46, 0.125); }
  .section-2 .item img {
    max-height: 75px; }
@media (max-width: 991px) {
  .section-2.pt-50 {
    padding-top: 0; }
  .section-2 .d-flex.columns-3 > .item {
    --columns: 1; } }

.section-3 .content.d-flex {
  gap: 50px 0; }

.section-5 .content img {
  max-height: 50px; }
.section-5 .content .item:not(:first-of-type) {
  background-color: var(--white-color);
  border: 1px solid var(--border-color);
  border-radius: 5px;
  box-shadow: 0 48px 100px 0 transparent;
  padding: 30px;
  transition: box-shadow .3s ease; }
  .section-5 .content .item:not(:first-of-type):hover {
    box-shadow: 0 48px 100px rgba(17, 12, 46, 0.125); }
@media (max-width: 991px) {
  .section-5 .d-flex.columns-3 > .item {
    --columns: 1; } }

.section-8 .item p.text-strong {
  color: #828282;
  font-size: 12px;
  letter-spacing: .5px; }
@media (max-width: 991px) {
  .section-8 {
    --gap: 50px; }
    .section-8 .d-flex.columns-3 > .item {
      --columns: 1; } }

.section-9 .content {
  max-width: 900px;
  border-radius: 5px;
  padding-block: 60px;
  margin-inline: auto; }
  @media (max-width: 575px) {
    .section-9 .content {
      padding-block: 50px 45px; } }
  .section-9 .content > .text-wrap,
  .section-9 .content .swiper-slide {
    padding-inline: 50px; }
    @media (max-width: 575px) {
      .section-9 .content > .text-wrap,
      .section-9 .content .swiper-slide {
        padding-inline: 35px; } }
  .section-9 .content .swiper {
    --swiper-navigation-top-offset: calc(var(--swiper-navigation-size) / 2); }
    .section-9 .content .swiper-button-prev, .section-9 .content .swiper-button-next {
      color: rgba(0, 0, 0, 0.3);
      transition: color .3s ease; }
      .section-9 .content .swiper-button-prev:hover, .section-9 .content .swiper-button-next:hover {
        color: var(--black-color); }
      .section-9 .content .swiper-button-prev::after, .section-9 .content .swiper-button-next::after {
        display: none; }

.section-default {
  --gap: 60px; }
  .section-default .bg-image {
    aspect-ratio: 1.25/1; }
  .section-default .label {
    margin-bottom: 20px; }
  .section-default h3:not(:last-child),
  .section-default p:not(:last-child),
  .section-default ul:not(:last-child) {
    margin-bottom: 25px; }
  @media (max-width: 991px) {
    .section-default {
      --gap: 50px; }
      .section-default .d-flex.columns-2 > .item {
        --columns: 1; } }

@media (max-width: 991px) {
  #home .d-flex.columns-2 > .item {
    --columns: 1; }
  #home.pt-150 {
    padding-top: 100px; }
  #home.pb-150 {
    padding-bottom: 100px; } }

#ebooks .swiper {
  padding-bottom: 70px; }

#prices {
  --border-color: rgba(0,0,0,.2); }
  #prices .prices-list {
    max-width: 1110px;
    margin-inline: auto; }
    #prices .prices-list .item {
      background-color: var(--white-color);
      border: 1px solid var(--border-color);
      border-radius: 5px;
      padding: 30px;
      transition: box-shadow .3s ease; }
      #prices .prices-list .item:hover {
        box-shadow: 0 48px 100px rgba(17, 12, 46, 0.125); }
      #prices .prices-list .item:not(:nth-of-type(2)) {
        background-color: var(--third-color);
        border-color: transparent; }
      #prices .prices-list .item .button {
        width: 100%;
        text-align: center; }
      #prices .prices-list .item *:not(.button) {
        color: var(--grey-color); }
      #prices .prices-list .item h4 {
        font-size: 28px; }
        #prices .prices-list .item h4 span {
          display: inline-flex;
          transform: translateX(-6px); }
  @media (max-width: 991px) {
    #prices .d-flex.columns-3 {
      justify-content: center; }
      #prices .d-flex.columns-3 > .item {
        --columns: 2; } }
  @media (max-width: 767px) {
    #prices .d-flex.columns-3 > .item {
      --columns: 1; } }

#contact {
  --gap: 60px; }
  @media (min-width: 992px) {
    #contact .d-flex.columns-2.custom > .item:first-of-type {
      width: calc(100% / 3 + ((100% / 3) / 3) - var(--gap, 30px) / 3 * 2); }
    #contact .d-flex.columns-2.custom > .item:last-of-type {
      width: calc(100% / 3 + ((100% / 3) / 3 * 2) - var(--gap, 30px) / 3); } }
  #contact .form-wrap {
    border-radius: 5px;
    padding: 30px; }
  #contact input,
  #contact textarea {
    width: 100%;
    background-color: transparent;
    font-family: var(--font-famlily);
    border-top: none !important;
    border-left: none !important;
    border-right: none !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.65);
    padding: 10px 0;
    margin-bottom: 15px;
    outline: none;
    transition: border-color .25s ease; }
    #contact input:focus,
    #contact textarea:focus {
      border-color: var(--white-color); }
    #contact input::placeholder,
    #contact textarea::placeholder {
      color: rgba(255, 255, 255, 0.85);
      font-family: var(--font-famlily);
      font-size: 14px; }
  #contact textarea {
    display: block;
    height: 120px;
    margin-bottom: 25px;
    resize: none; }
  #contact .new-validate__btn {
    text-align: right; }
  @media (max-width: 991px) {
    #contact {
      --gap: 50px; }
      #contact .d-flex.columns-2 > .item {
        --columns: 1; } }

.footer {
  --gap: 60px;
  background-color: #F4F4F4; }
  .footer .logo {
    max-width: 250px; }
  .footer a {
    color: var(--black-color); }
    .footer a:hover {
      text-decoration: underline; }
  .footer li:not(:last-of-type) {
    margin-bottom: 12px; }
  @media (max-width: 991px) {
    .footer {
      --gap: 30px; }
      .footer .d-flex.columns-3 > .item {
        --columns: 1; }
      .footer .mb-40 {
        margin-bottom: 30px; } }
