@font-face {
  font-family: "Montserrat";
  src: url("/fonts/Montserrat-400.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
}

@font-face {
  font-family: "Montserrat";
  src: url("/fonts/Montserrat-500.woff2") format("woff2");
  font-style: normal;
  font-weight: 500;
}

@font-face {
  font-family: "Montserrat";
  src: url("/fonts/Montserrat-700.woff2") format("woff2");
  font-style: normal;
  font-weight: 700;
}

@font-face {
  font-family: "Lato";
  src: url("/fonts/Lato-Regular-400.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Montserrat", sans-serif;
  background-color: #f4f6fa;
}

.container {
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
}

.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 32px;
  padding-bottom: 16px;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 20px;
  position: relative;
}

.header-nav a,
.header-btns a {
  color: #312e81;
  font-size: 20px;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.4s ease;
  position: relative;
}

.header-btns a:first-of-type::after,
.header-nav a::after {
  content: "";
  position: absolute;
  background-color: #5b21b6;
  width: 0%;
  height: 1px;
  left: 0;
  bottom: -2px;
  transition: width 0.4s ease;
}

.header-btns a:first-of-type:hover,
.header-nav a:hover {
  color: #8b5cf6;
}

.header-btns a:first-of-type:hover::after,
.header-nav a:hover::after {
  width: 100%;
}

.header-btns {
  display: flex;
  align-items: center;
  gap: 26px;
}

.header-btns a:last-of-type {
  padding: 16px 60px;
  border-radius: 10px;
  border: 1px solid #312e81;
  position: relative;
}

.header-btns a:last-of-type::after {
  content: "";
  position: absolute;
  border-radius: 10px;
  top: 0;
  left: 0;
  z-index: -1;
  background-color: #ddd6fe;
  width: 0%;
  height: 100%;
  transition: width 0.4s ease;
}

.header-btns a:last-of-type:hover::after {
  width: 100%;
}

.hero {
  padding-top: 60px;
  padding-bottom: 70px;
}

.hero-text {
  max-width: 740px;
  width: 100%;
}

.hero-title {
  color: #5b21b6;
  font-size: 60px;
  font-weight: 700;
  margin-bottom: 30px;
}

.hero-sub {
  color: #312e81;
  font-family: "Lato";
  font-size: 20px;
  font-weight: 400;
  line-height: 150%;
  margin-bottom: 64px;
}

.stars {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-right: 8px;
}

.hero.container {
  display: flex;
  justify-content: space-between;
  gap: 60px;
}

.hero-form {
  max-width: 450px;
  width: 100%;
  border-radius: 10px;
  border: 1px solid #aeaeae;
  background: #fff;
}

.hero-rating {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
}

.hero-rating span {
  color: #6b7280;
  font-family: "Lato";
  font-size: 20px;
  font-weight: 400;
  line-height: 150%;
}

.hero-seen {
  border-radius: 10px;
  background: #0b0a1c;
  max-width: 466px;
  width: 100%;
  padding: 30px;
}

.seen-title {
  color: #f5f7fa;
  font-family: "Lato";
  font-size: 20px;
  line-height: 150%;
  margin-bottom: 10px;
}

.seen-imgs {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

#close {
  display: none;
  position: absolute;
  top: 0;
  right: 0;
}

.form-sub {
  max-width: 360px;
  width: calc(100% - 12px);
  margin: 0 auto;
  padding-bottom: 30px;
  padding-top: 20px;
  margin-top: 10px;
  border-top: 1px solid #aeaeae;
}

.form-sub p {
  color: #312e81;
  font-family: "Lato";
  font-size: 12px;
  font-weight: 400;
  line-height: 140%;
}

.form-sub p a {
  color: #312e81;
}

.read {
  color: #312e81;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  margin-top: 12px;
}

.running-line {
  overflow: hidden;
}

.running-line__track {
  margin-top: -1px;
  margin-bottom: 3px;
  display: flex;
  width: max-content;
  animation: marquee 60s linear infinite;
}

.running-line__track img {
  flex-shrink: 0;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

#burger {
  display: none;
  border: none;
  cursor: pointer;
  background: transparent;
}

.footer {
  border-top: 1px solid #aeaeae;
  padding-top: 70px;
  padding-bottom: 30px;
}

.footer-title {
  color: #312e81;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 24px;
}

.footer-text {
  font-family: "Lato";
  font-weight: 400;
  line-height: 150%;
  font-size: 14px;
  color: #312e81;
}

.footer-text:not(:last-of-type) {
  margin-bottom: 10px;
}

.footer-text-wrap .footer-text {
  margin-bottom: 10px;
}

.green {
  font-family: "Montserrat";
  color: #1abc9c;
  text-align: center;
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 20px;
}

.diff {
  padding-block: 150px;
}

.section-title {
  color: #5b21b6;
  text-align: center;
  font-size: 36px;
  font-weight: 700;
  max-width: 580px;
  width: 100%;
  margin: 0 auto 50px auto;
}

.diff-cards {
  display: grid;
  grid-template-columns: repeat(3, auto);
  grid-template-rows: repeat(2, auto);
  gap: 50px 50px;
  margin-bottom: 50px;
}

.diff-card {
  max-width: 330px;
}

.diff-card-img {
  max-width: 40px;
  max-height: 40px;
  width: 100%;
}

.diff-card-title {
  color: #312e81;
  font-size: 20px;
  font-weight: 700;
  line-height: 150%;
  margin-bottom: 14px;
}

.diff-card-text {
  color: #312e81;
  font-family: "Lato";
  font-size: 20px;
  font-weight: 400;
  line-height: 150%;
}

.get-btn {
  color: #f5f7fa;
  display: block;
  font-family: "Montserrat";
  font-size: 20px;
  font-weight: 500;
  padding: 32px;
  text-align: center;
  max-width: 280px;
  width: 100%;
  margin: 0 auto;
  border-radius: 10px;
  background-color: #8b5cf6;
  text-decoration: none;
  border: 1px solid transparent;
  transition:
    border 0.4s ease,
    background-color 0.4s ease,
    color 0.4s ease;
}

.get-btn:hover {
  background-color: #f4f6fa;
  border: 1px solid #8b5cf6;
  color: #8b5cf6;
}

.advance.container .green,
.advance.container .section-title {
  text-align: left;
}

.advance.container .section-title {
  margin: 0 auto 50px 0;
  max-width: 600px;
}

.advance-wrapper {
  display: flex;
  gap: 26px;
  align-items: stretch;
}

.advance-card-top {
  display: flex;
  align-items: flex-end;
  gap: 14px;
  color: #312e81;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 14px;
}

.advance-card-text {
  color: #312e81;
  font-family: "Lato";
  font-size: 20px;
  line-height: 150%;
}

.advance-cards {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.footer-text .green {
  font-size: 20px;
  font-family: "Lato";
}

.footer .container {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  justify-content: space-between;
}

.footer-right nav {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.footer-left {
  max-width: 740px;
  width: 100%;
}

.footer-right {
  display: flex;
  align-items: flex-start;
  max-width: 340px;
  width: 100%;
  justify-content: space-between;
}

.footer-right div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
}

.footer-right div a {
  color: #312e81;
  font-size: 18px;
  font-weight: 400;
  text-decoration: none;
  transition: color 0.4s ease;
}

.footer-right div a:hover {
  color: #8b5cf6;
}

.footer-nav-title {
  color: #312e81;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 20px;
}

.footer-right.mobile {
  display: none;
}

.footer-title {
  display: block;
}

.footer-title-mob {
  display: none;
}

.step-title {
  color: #312e81;
  font-size: 34px;
  font-weight: 700;
  line-height: 150%;
  margin-bottom: 0px;
}

.step-title span {
  color: #312e81;
  font-family: "Lato";
  font-size: 100px;
  font-weight: 700;
  line-height: 150%;
  margin-right: 8px;
}

.steps {
  padding-top: 150px;
  padding-bottom: 90px;
}

.steps-wrapper {
  display: flex;
  align-items: flex-start;
  gap: 24px;
}

.step {
  max-width: 410px;
  width: 100%;
}

.step-desc {
  color: #312e81;
  font-family: "Lato";
  font-size: 20px;
  line-height: 150%;
}

.steps-btn {
  margin-top: 50px;
}

.steps-btn .get-btn {
  margin-bottom: 30px;
}

.steps-btn span {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #312e81;
  text-align: center;
  font-family: "Lato";
  font-size: 18px;
  font-weight: 500;
  line-height: 150%;
}

.numbers {
  background-color: #fff;
  padding: 22px 0 28px 0;
}

.numbers .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.numbers-item {
  display: flex;
  flex-direction: column;
}

.numbers-item h2 {
  color: #1abc9c;
  text-align: center;
  font-size: 50px;
  line-height: 150%;
}

.numbers-item h4 {
  color: #312e81;
  font-family: "Lato";
  font-size: 20px;
  line-height: 150%;
  font-weight: 300;
}

.slider {
  padding-top: 100px;
  padding-bottom: 100px;
}

.slider-next,
.slider-prev {
  cursor: pointer;
}

.slider-next path,
.slider-prev path {
  transition: stroke 0.4s ease;
}

.slider-next:hover path,
.slider-prev:hover path {
  stroke: #312e81;
}

.slider-arrows {
  display: flex;
  align-items: center;
  gap: 64px;
  justify-content: center;
}

.swiper-wrapper {
  margin-bottom: 30px;
}

.swiper-slide {
  padding: 30px 22px;
  border-radius: 10px;
  border: 1px solid #aeaeae;
  background: #fff;
  height: auto !important;
}

.slide-top {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
}

.slide-top img {
  max-width: 40px;
  width: 100%;
}

.slide-top h3 {
  color: #312e81;
  font-family: "Lato";
  font-size: 18px;
  font-weight: 400;
  line-height: 150%;
}

.slide-rate {
  margin-bottom: 10px;
}

.slide-rate img {
  max-width: 24px;
  width: 100%;
}

.slide-text {
  color: #312e81;
  font-family: "Lato";
  font-size: 18px;
  font-weight: 400;
  line-height: 150%;
}

.faq-wrapper {
  display: grid;
  grid-template-columns: repeat(2, auto);
  grid-template-rows: repeat(3, auto);
  gap: 26px 36px;
}

.faq-item-title {
  color: #312e81;
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}

.faq-item-text {
  color: #312e81;
  font-family: "Lato";
  font-size: 18px;
  line-height: 150%;
}

.faq-sub {
  max-width: 50%;
}

.faq-sub-title {
  margin-bottom: 8px;
}

.faq-sub-title,
.faq-sub-text {
  color: #312e81;
  font-size: 18px;
  font-weight: 400;
  line-height: 150%;
}

.faq-sub-text {
  font-family: "Lato";
}

.faq {
  margin-bottom: 150px;
}

.approval {
  padding-block: 70px;
  border-radius: 10px;
  background: #0b0a1c;
}

.approval-title,
.approval-text {
  max-width: 630px;
  margin: 0 auto 40px auto;
}

.approval-title {
  color: #8b5cf6;
  text-align: center;
  font-size: 34px;
  font-weight: 700;
  margin: 0 auto 26px auto;
}

.approval-text {
  color: #f5f7fa;
  text-align: center;
  font-family: "Lato";
  font-size: 18px;
  line-height: 150%;
  margin-bottom: 40px;
}

.over {
  padding-top: 150px;
  padding-bottom: 150px;
}

.over-title {
  text-align: left;
  margin: 0 auto 0 0;
  margin-bottom: 26px;
}

.over-sub {
  max-width: 50%;
  color: #312e81;
  font-family: "Lato";
  font-size: 18px;
  line-height: 150%;
  margin-bottom: 46px;
}

.over-cards {
  display: flex;
  gap: 26px;
}

.over-card {
  max-width: 300px;
  width: 100%;
}

.over-card-top {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  color: #312e81;
  font-family: "Lato";
  font-size: 24px;
  font-weight: 700;
  line-height: 150%;
}

.over-card-text {
  color: #312e81;
  font-family: "Lato";
  font-size: 18px;
  font-weight: 400;
  line-height: 150%;
}

.purple-bg {
  background: linear-gradient(90deg, #0a0a1b 0%, #8b5cf6 100%);
  padding-block: 42px;
  margin-bottom: 100px;
}

.purple-bg-wrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.purple-bg-title {
  color: #f5f7fa;
  font-size: 60px;
  font-weight: 700;
  margin-bottom: 30px;
}

.purple-bg-text {
  max-width: 770px;
  width: 100%;
  color: #f5f7fa;
  font-family: "Lato";
  font-size: 18px;
  font-weight: 300;
  line-height: 150%;
  margin-bottom: 78px;
}

.about-article-title {
  color: #5b21b6;
  font-size: 34px;
  font-weight: 700;
  line-height: 150%;
  margin-bottom: 50px;
}

.about-article-left p {
  color: #333;
  font-family: "Lato";
  font-size: 18px;
  font-weight: 300;
  line-height: 150%;
}

.about-article-left p:first-of-type {
  margin-bottom: 30px;
}

.about-article-wrapper {
  display: flex;
  justify-content: space-between;
  gap: 50px;
  margin-bottom: 150px;
}

.about-cards {
  margin-bottom: 150px;
  display: flex;
  justify-content: space-between;
  gap: 26px;
}

.about-card {
  border-radius: 10px;
  border: 1px solid #aeaeae;
  background: #fff;
  padding-block: 30px;
  max-width: 300px;
  width: 100%;
  display: flex;
  flex-direction: column;
}

.about-card-top {
  display: flex;
  justify-content: center;
  padding-bottom: 20px;
  border-bottom: 1px solid #aeaeae;
}

.about-card-top h5 {
  position: relative;
  color: #5b21b6;
  font-size: 20px;
  font-weight: 400;
  line-height: 150%;
}

.about-card-top h5::before {
  content: "";
  background-color: #5b21b6;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  position: absolute;
  top: 8px;
  left: -30px;
}

.about-card-text {
  padding-top: 16px;
  padding-inline: 22px;
}

.about-card-text h4 {
  color: #312e81;
  font-family: "Lato";
  font-size: 24px;
  font-weight: 400;
  line-height: 150%;
  margin-bottom: 10px;
}

.about-card-text p {
  color: #312e81;
  font-family: "Lato";
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
}

.team-banner {
  margin-bottom: 150px;
}

.team-card {
  max-width: 390px;
  width: 100%;
}

.team-card img {
  max-width: 100%;
  width: 100%;
  margin-bottom: 20px;
}

.team-wrapper {
  display: grid;
  grid-template-columns: repeat(3, auto);
  grid-template-rows: repeat(3, auto);
  gap: 54px 54px;
  margin-bottom: 140px;
}

.team-card-title {
  color: #312e81;
  font-size: 30px;
  font-weight: 500;
  line-height: 150%;
  text-align: left;
}

.team-card-sub {
  color: #1abc9c;
  font-size: 18px;
  font-weight: 400;
  line-height: 150%;
  margin-bottom: 14px;
  text-align: left;
}

.team-card-desc {
  color: #312e81;
  font-family: "Lato";
  font-size: 18px;
  font-weight: 400;
  line-height: 150%;
}

.blog-wrapper {
  display: flex;
  gap: 26px;
  margin-bottom: 150px;
}

.blog-card {
  max-width: 410px;
  width: 100%;
}

.blog-card img {
  width: 100%;
  margin-bottom: 26px;
}

.blog-card-title {
  color: #312e81;
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 10px;
}

.blog-card-date {
  color: #312e81;
  font-family: "Lato";
  font-size: 14px;
  font-weight: 400;
  line-height: 150%;
}

.blog-card-desc {
  color: #312e81;
  font-family: "Lato";
  font-size: 18px;
  line-height: 150%;
  margin-bottom: 10px;
}

.blog-card a {
  color: #312e81;
  font-family: "Lato";
  font-size: 18px;
  font-weight: 700;
  line-height: 150%;
  text-decoration: underline;
  transition: color 0.4s ease;
}

.blog-card a:hover {
  color: #8b5cf6;
}

.blog-container {
  max-width: 1062px;
  padding-inline: 30px;
  width: 100%;
  margin: 0 auto 150px auto;
}

.blog-img {
  width: 100%;
  margin-bottom: 86px;
}

.blog-date {
  margin-bottom: 16px;
  display: block;
}

.blog-title {
  color: #1abc9c;
  font-size: 30px;
  font-weight: 700;
  line-height: 150%;
  margin-bottom: 26px;
}

.blog-text {
  color: #312e81;
  font-family: "Lato";
  font-size: 18px;
  font-weight: 400;
  line-height: 150%;
  margin-bottom: 16px;
}

.mb {
  margin-bottom: 60px;
}

.blog-article ul,
.blog-article ol {
  margin-bottom: 60px;
}

.blog-article li {
  color: #312e81;
  font-family: "Lato";
  font-size: 18px;
  font-weight: 400;
  line-height: 150%;
  margin-bottom: 20px;
  margin-left: 20px;
}

.form-wrapper {
  max-width: 768px;
  margin: 0 auto 150px auto;
  padding: 20px;
  background-color: #fff;
}

.form-bg {
  display: flex;
}

.sign-up-form-dt {
  display: block;
}

.sign-up-form-mb {
  display: none;
}

@media (max-width: 1440px) {
  .container {
    padding-inline: 80px;
  }
}

@media (max-width: 1130px) {
  .container {
    padding-inline: 30px;
  }

  #burger {
    display: block;
    background-color: transparent;
    border-radius: 50%;
    padding: 12px;
    transition: background-color 0.4s ease;
  }

  #burger:hover {
    background-color: #ddd6fe;
  }

  .header-nav {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    top: -200%;
    padding: 84px 46px;
    background-color: #0b0a1c;
    max-width: 260px;
    width: 100%;
    z-index: 2;
    transition: top 0.4s ease;
  }

  #close {
    display: block;
    cursor: pointer;
    position: absolute;
    top: 24px;
    right: 30px;
    max-width: 40px;
    max-height: 40px;
    background: transparent;
    border: none;
    transition: transform 0.4s ease;
    transform: rotate(0deg);
  }

  #close:hover {
    transform: rotate(90deg);
  }

  .header-nav a {
    color: #fff;
  }

  .hero.container {
    flex-direction: column;
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .advance-wrapper {
    flex-direction: column;
    align-items: stretch;
  }

  .advance-img img {
    width: 100%;
  }

  .steps-wrapper {
    display: grid;
    grid-template-columns: repeat(12, auto);
    grid-template-rows: repeat(2, auto);
  }

  .step:nth-of-type(1) {
    grid-row: 1;
    grid-column: 1 / 6;
  }

  .step:nth-of-type(2) {
    grid-row: 1;
    grid-column: 6 / 12;
  }

  .step:last-of-type {
    grid-row: 2;
    grid-column: 4 / 12;
  }

  .over-cards {
    display: grid;
    grid-template-columns: repeat(2, auto);
    grid-template-rows: repeat(2, auto);
  }

  .about-cards {
    display: grid;
    grid-template-columns: repeat(2, auto);
    grid-template-rows: repeat(2, auto);
    gap: 20px 16px;
    margin-bottom: 100px;
  }

  .about-card {
    max-width: 100%;
  }

  .team-banner {
    margin-bottom: 100px;
  }

  .team-wrapper {
    grid-template-columns: repeat(2, auto);
    grid-template-rows: repeat(5, auto);
    margin-bottom: 94px;
  }

  .sign-up-form-dt {
    display: none;
  }

  .sign-up-form-mb {
    display: block;
    max-width: 600px;
  }
}

@media (max-width: 744px) {
  .container {
    padding-inline: 16px;
  }

  .header-btns a:nth-of-type(1),
  .header-btns a:nth-of-type(2) {
    display: none;
  }

  .footer-right.desktop {
    display: none;
  }

  .footer-right {
    max-width: unset;
    width: unset;
  }

  .footer-right.mobile {
    display: flex;
    flex-direction: column;
    gap: 40px;
  }

  .footer-nav-title {
    font-size: 16px;
  }

  .footer-right div a {
    font-size: 14px;
  }

  .footer-text .green {
    font-size: 16px;
  }

  .footer-text-wrap {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
    gap: 10px;
  }

  .footer-text-wrap .footer-text {
    max-width: 170px;
    width: 100%;
  }

  .footer-right.mobile {
    max-width: 110px;
  }

  .footer-text {
    font-size: 10px;
  }

  .footer-title {
    display: none;
  }

  .footer-title-mob {
    display: block;
    color: #312e81;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 24px;
    max-width: 110px;
    width: 100%;
  }

  .diff-cards {
    display: flex;
    flex-direction: column;
    align-items: stretch;
  }

  .diff-card {
    max-width: 100%;
    width: 100%;
  }

  .hero.container {
    flex-direction: column;
    padding-top: 26px;
    padding-bottom: 26px;
  }

  .hero-form {
    margin: 0 auto;
  }

  .hero-title {
    font-size: 32px;
    font-weight: 700;
  }

  .hero-sub {
    font-size: 16px;
    line-height: 150%;
  }

  .hero-rating {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .diff {
    padding-block: 70px;
  }

  .green {
    font-size: 16px;
  }

  .section-title {
    font-size: 26px;
  }

  .diff-card-text {
    font-size: 16px;
  }

  .diff-cards {
    gap: 20px;
  }

  .advance-card-top {
    font-size: 16px;
  }

  .advance-card-text {
    font-size: 16px;
  }

  .step {
    max-width: 100%;
  }

  .steps-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .steps.container {
    padding-top: 50px;
    padding-bottom: 70px;
  }

  .steps .section-title {
    margin-bottom: 30px;
  }

  .step-title {
    font-size: 24px;
  }

  .step-desc {
    font-size: 16px;
  }

  .steps-btn span {
    font-size: 16px;
    align-items: flex-start;
  }

  .numbers .container {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .numbers-item h2 {
    font-size: 34px;
  }

  .numbers-item h2,
  .numbers-item h4 {
    text-align: center;
  }

  .faq-item-title {
    font-size: 20px;
  }

  .faq-item-text {
    font-size: 16px;
  }

  .faq {
    margin-bottom: 60px;
  }

  .faq-wrapper {
    display: flex;
    flex-direction: column;
    align-items: stretch;
  }

  .faq-sub {
    max-width: 100%;
  }

  .faq-item:last-of-type {
    margin-bottom: 36px;
  }

  .over-cards {
    display: flex;
    flex-direction: column;
    align-items: stretch;
  }

  .over-card {
    max-width: 100%;
  }

  .over-sub {
    max-width: 100%;
  }

  .over {
    padding-top: 70px;
    padding-bottom: 70px;
  }

  .over-card-top {
    font-size: 20px;
  }

  .over-card-text {
    font-size: 16px;
  }

  .purple-bg {
    margin-bottom: 50px;
  }

  .purple-bg-title {
    font-size: 30px;
    margin-bottom: 16px;
  }

  .purple-bg-text {
    font-size: 16px;
    margin-bottom: 72px;
  }

  .about-article-title {
    font-size: 26px;
    margin-bottom: 30px;
  }

  .about-article-left p {
    font-size: 16px;
  }

  .about-article-left p:first-of-type {
    margin-bottom: 20px;
  }

  .about-article-wrapper {
    flex-direction: column;
    gap: 20px;
    margin-bottom: 70px;
  }

  .about-article-right img {
    width: 100%;
  }

  .about-cards {
    display: flex;
    flex-direction: column;
    margin-bottom: 70px;
  }

  .about-card-text {
    padding-inline: 16px;
  }

  .team-banner {
    margin-bottom: 70px;
  }

  .team-wrapper {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 20px;
  }

  .team-card {
    max-width: 100%;
  }

  .team-card-title {
    font-size: 20px;
  }

  .team-card-sub,
  .team-card-desc {
    font-size: 16px;
  }

  .blog-wrapper {
    flex-direction: column;
    align-items: stretch;
    margin-bottom: 70px;
  }

  .blog-card {
    max-width: 100%;
  }

  .blog-card-title {
    font-size: 20px;
  }

  .blog-card-desc {
    font-size: 16px;
  }

  .blog-container {
    padding-inline: 16px;
    margin: 0 auto 40px auto;
  }

  .blog-title {
    font-size: 20px;
  }

  .blog-text {
    font-size: 16px;
  }

  .form-wrapper {
    margin: 0 auto 70px auto;
  }
}
