@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;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background-color: #f8f8f8;
  font-family: "Montserrat";
}

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

.header {
  background-color: #000;
}

.header .container {
  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: #fff;
  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: #fff;
  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: #fff;
}

.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 #79b928;
  position: relative;
  color: #79b928;
  transition: color 0.4s ease;
  z-index: 1;
  overflow: hidden;
}

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

.header-btns a:last-of-type:hover {
  color: #fff !important;
}

.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: #000;
  font-size: 70px;
  font-weight: 400;
  margin-bottom: 20px;
}

.hero-sub {
  color: #000;
  font-size: 30px;
  font-weight: 400;
  line-height: 150%;
  margin-bottom: 20px;
}

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

.hero.container {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 60px;
  padding-top: 90px;
  padding-bottom: 180px;
}

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

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

.hero-wrapper {
  display: flex;
  justify-content: space-between;
  gap: 90px;
  align-items: flex-start;
}

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

.hero-text-sm {
  color: #555;
  font-size: 20px;
  line-height: 150%;
  margin-bottom: 16px;
}

.hero-text-sm:last-of-type {
  margin-bottom: 26px;
}

.hero-imgs {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.accent {
  color: #79b928 !important;
}

.hero-imgs span {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #555;
  font-size: 20px;
  font-weight: 500;
}

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

.table-row {
  display: flex;
  padding-top: 20px;
  padding-bottom: 10px;
  color: #555;
  font-size: 24px;
  line-height: 150%;
}

.table-row {
  border-top: 1px solid #b5b5b5;
}

.table-row:last-of-type {
  border-bottom: 1px solid #b5b5b5;
}

.table-row span {
  display: flex;
  align-items: center;
}

.table-row span:first-of-type {
  max-width: 300px;
  width: 100%;
  gap: 8px;
  position: relative;
}

.table-row span:first-of-type::after {
  position: absolute;
  content: "";
  width: 1px;
  height: calc(100% + 30px);
  background-color: #b5b5b5;
  right: 0;
  top: -20px;
  bottom: 20px;
}

.table-row span:last-of-type {
  padding-left: 80px;
}

.running-line {
  overflow: hidden;
  padding-block: 26px;
  background-color: #e6e6e6;
  margin-bottom: 150px;
}

.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;
}

.section-subtitle {
  text-align: center;
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 26px;
}

.diff {
  padding-block: 80px;
  background: url("/img/bg-grid.png") no-repeat center / cover;
}

.diff h2,
.diff h4,
.diff p {
  color: #fff;
}

.section-title {
  color: #555;
  text-align: center;
  font-size: 50px;
  font-weight: 400;
  max-width: 790px;
  width: 100%;
  margin: 0 auto;
  margin-bottom: 60px;
}

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

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

.diff-card-img {
  max-width: 80px;
  width: 100%;
  margin-bottom: 16px;
}

.diff-card-title {
  color: #79b928;
  font-size: 24px;
  font-weight: 500;
  line-height: 150%;
  margin-bottom: 20px;
}

.diff-card-text {
  color: #fff;
  font-size: 20px;
  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;
}

.numbers {
  padding-bottom: 150px;
}

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

.numbers-item {
  display: flex;
  flex-direction: column;
  padding-block: 26px;
  border: 1px solid#b5b5b5;
  background: #e6e6e6;
  max-width: 410px;
  width: 100%;
}

.numbers-item h2 {
  color: #79b928;
  font-size: 50px;
  font-weight: 500;
  text-align: center;
  line-height: 150%;
  margin-bottom: 10px;
}

.numbers-item h4 {
  color: #555;
  text-align: center;
  font-size: 20px;
  line-height: 150%;
}

.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: #79b928;
}

.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 #b5b5b5;
  background: #e6e6e6;
  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: #555;
  text-align: center;
  font-size: 24px;
  font-weight: 500;
  line-height: 150%;
}

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

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

.slide-text {
  color: #555;
  font-size: 18px;
  font-weight: 400;
  line-height: 150%;
}

.slide-text a {
  text-decoration: none;
}

.highlights {
  padding-bottom: 150px;
}

.believe {
  padding-block: 150px;
}

.believe .section-subtitle {
  color: #79b928;
  line-height: 150%;
}

.believe-wrapper {
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.believe-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  border: 1px solid #555;
}

.believe-text h3 {
  color: #555;
  font-size: 30px;
  font-weight: 700;
  line-height: 150%;
  margin-bottom: 20px;
}

.believe-text p {
  color: #555;
  font-size: 18px;
  font-weight: 400;
  line-height: 150%;
  margin-bottom: 30px;
}

.believe-text a {
  display: block;
  text-align: center;
  max-width: 370px;
  background-color: #79b928;
  border: 1px solid transparent;
  color: #000;
  font-size: 24px;
  text-decoration: none;
  padding: 18px 30px;
  transition:
    background-color 0.4s ease,
    border 0.4s ease,
    color 0.4s ease;
}

.believe-text a:hover {
  background-color: #fff;
  border: 1px solid #79b928;
  color: #79b928;
}

.believe-item:nth-of-type(1),
.believe-item:nth-of-type(3) {
  padding-left: 60px;
}

.believe-item:nth-of-type(2) {
  padding-right: 60px;
}

.believe-img img {
  position: relative;
  top: 2px;
}

.partners {
  padding-block: 40px;
  background-color: #e6e6e6;
}

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

.partners span {
  color: #0c0c0c;
  text-align: center;
  font-size: 24px;
  font-weight: 500;
  line-height: 150%;
}

.partners-imgs {
  display: flex;
  align-items: center;
  gap: 34px;
}

.apart-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 100px;
}

.apart-left {
  display: flex;
  flex-direction: column;
  gap: 30px;
  max-width: 520px;
}

.apart-item h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #79b928;
  font-size: 24px;
  font-weight: 500;
  line-height: 150%;
  margin-bottom: 10px;
}

.apart-item p {
  color: #555;
  font-size: 20px;
  line-height: 150%;
}

.apart-right {
  max-width: 540px;
  padding: 40px;
  border: 1px solid #b5b5b5;
  background: #e6e6e6;
}

.apart-right h3 {
  color: #79b928;
  font-size: 24px;
  font-weight: 500;
  line-height: 150%;
  margin-bottom: 20px;
}

.marks-wrapper {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 40px;
}

.marks-left,
.marks-right {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

.marks-left img,
.marks-right img {
  max-width: 27px;
  width: 100%;
}

.marks-left span,
.marks-right span {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #555;
  font-size: 18px;
  font-weight: 500;
  line-height: 150%;
}

.apart-right a {
  color: #0c0c0c;
  font-size: 24px;
  display: block;
  background-color: #79b928;
  padding: 18px 30px;
  text-align: center;
  text-decoration: none;
  border: 1px solid transparent;
  transition:
    background-color 0.4s ease,
    border 0.4s ease,
    color 0.4s ease;
}

.apart-right a:hover {
  background-color: #fff;
  border: 1px solid #79b928;
  color: #79b928;
}

.approval {
  padding-block: 80px;
  background: #000;
}

.approval-wrapper {
  display: flex;
  gap: 26px;
}

.approval-left {
  max-width: 520px;
}

.approval-left p {
  color: #fff;
  font-size: 18px;
  line-height: 150%;
  margin-bottom: 30px;
}

.approval-left a {
  padding: 16px;
  display: block;
  color: #0c0c0c;
  font-size: 24px;
  font-weight: 500;
  background-color: #fff;
  text-decoration: none;
  text-align: center;
  border: 1px solid transparent;
  transition:
    background-color 0.4s ease,
    color 0.4s ease,
    border 0.4s ease;
}

.approval-left a:hover {
  background-color: #ffffff00;
  color: #fff;
  border: 1px solid #fff;
}

.approval .section-title {
  color: #fff;
  text-align: center;
}

.approval-right h4 {
  display: flex;
  align-items: center;
  color: #fff;
  font-size: 24px;
  font-weight: 500;
  gap: 10px;
  line-height: 150%;
  margin-bottom: 26px;
}

.approval-right p {
  color: #fff;
  font-size: 18px;
  line-height: 150%;
}

.mob-only {
  display: none !important;
}

.dt-only {
  display: block !important;
}

.slider.container .section-subtitle {
  color: #79b928;
  font-size: 20px;
  font-weight: 500;
  line-height: 150%;
}

.contact {
  background: url("/img/bg-grid.png") no-repeat center / cover;
  padding-block: 80px;
}

.contact .section-title {
  color: #fff;
}

.footer {
  background-color: #000;
  padding-block: 80px;
}

.footer-top {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
  margin-bottom: 36px;
}

.footer-nav h3,
.footer-top h3 {
  color: #fefefe;
  font-size: 24px;
  align-items: center;
  display: flex;
  gap: 4px;
  text-transform: uppercase;
  font-weight: 500;
}

.footer-top h3 {
  display: none;
}

.footer-nav {
  display: flex;
  align-items: center;
  gap: 90px;
  padding-bottom: 36px;
  border-bottom: 1px solid #b5b5b5;
}

.footer-nav ul {
  list-style: none;
  display: flex;
  gap: 30px;
  align-items: center;
}

.footer-nav ul a {
  color: #fefefe;
  text-decoration: none;
  font-size: 20px;
  font-weight: 500;
  line-height: 150%;
  transition: color 0.4s ease;
  position: relative;
}

.footer-nav ul a::after {
  content: "";
  position: absolute;
  background-color: #fff;
  width: 0%;
  height: 1px;
  left: 0;
  bottom: -2px;
  transition: width 0.4s ease;
}

.footer-nav ul a:hover::after {
  width: 100%;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 32px;
  padding-top: 20px;
}

.footer-links a {
  color: #b5b5b5;
  font-size: 16px;
  font-weight: 500;
  line-height: 150%;
  text-decoration: none;
  transition: color .4s ease;
}

.footer-links a:hover {
  color: #fff;
}

#form {
  max-width: 500px;
  margin: 0 auto;
}

@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: #79b928;
  }

  .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;
    align-items: center;
    padding-top: 80px;
    padding-bottom: 120px;
  }

  .hero-form {
    margin: 0 auto;
  }

  .table-row {
    flex-direction: column;
  }

  .table-row span:first-of-type {
    font-size: 20px;
  }

  .table-row span:last-of-type {
    padding-left: 0;
    font-size: 16px;
  }

  .table-row span:first-of-type::after {
    display: none;
  }

  .table-row:first-of-type {
    border-top: none;
  }

  .highlights {
    padding-bottom: 90px;
  }

  .running-line {
    margin-bottom: 120px;
  }

  .numbers {
    padding-bottom: 120px;
  }

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

  .numbers-item {
    max-width: 100%;
  }

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

  .believe {
    padding-top: 60px;
    padding-bottom: 120px;
  }

  .believe-item {
    flex-direction: column;
    align-items: stretch;
    border: none;
  }

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

  .believe-item:nth-of-type(1) .believe-img,
  .believe-item:nth-of-type(3) .believe-img {
    order: -1;
  }

  .believe-item:nth-of-type(2) {
    order: 1;
  }

  .believe-item:nth-of-type(1),
  .believe-item:nth-of-type(3) {
    padding-left: 0px;
  }

  .believe-item:nth-of-type(2) {
    padding-right: 0px;
  }

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

  .apart-left {
    max-width: 100%;
  }

  .footer {
    padding-block: 50px;
  }

  .footer-nav h3 {
    display: none;
  }

  .footer-top h3 {
    display: flex;
    align-items: center;
  }
}

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

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

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

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

  .hero.container {
    padding-top: 50px;
    padding-bottom: 100px;
  }

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

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

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

  .hero-wrapper {
    flex-direction: column;
    gap: 20px;
  }

  .diff {
    padding-block: 70px;
  }

  .section-subtitle {
    font-size: 16px;
  }

  .diff-cards {
    gap: 34px;
  }

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

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

  .logo {
    max-width: 230px;
    width: 100%;
  }

  .running-line {
    margin-bottom: 90px;
  }

  .numbers {
    padding-bottom: 180px;
  }

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

  .believe {
    padding-top: 60px;
    padding-bottom: 90px;
  }

  .believe-text a {
    font-size: 16px;
  }

  .believe-text h3 {
    font-size: 20px;
  }

  .believe-text p {
    font-size: 16px;
  }

  .partners .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }

  .partners-imgs {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .apart-right {
    max-width: 100%;
    background-color: transparent;
    border: none;
    padding: 0;
  }

  .apart-wrapper {
    align-items: stretch;
    gap: 40px;
  }

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

  .approval-wrapper {
    flex-direction: column;
  }

  .mob-only {
    display: block !important;
  }

  .dt-only {
    display: none !important;
  }

  .slider-arrows {
    justify-content: space-between;
  }

  .footer-nav ul {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-top h3 {
    font-size: 20px;
  }

  .footer-links a {
    font-size: 10px;
  }
}
