@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");
* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  outline: none;
}

html {
  height: 100%;
  width: 100%;
  margin: 0;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: "Manrope", sans-serif;
  font-size: 18px;
  line-height: 160%;
  font-weight: 400;
  position: relative;
  -webkit-text-size-adjust: none;
  margin: 0;
  background: #FFF;
  background-size: contain;
  color: #272627;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: space-between;
  height: 100vh;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.1s ease 0s;
}

input, textarea, select, button {
  font-family: inherit;
  outline: none;
}

input::-webkit-outer-spin-button, input::-webkit-inner-spin-button, textarea::-webkit-outer-spin-button, textarea::-webkit-inner-spin-button, select::-webkit-outer-spin-button, select::-webkit-inner-spin-button, button::-webkit-outer-spin-button, button::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input::-webkit-search-decoration, input::-webkit-search-cancel-button, input::-webkit-search-results-button, input::-webkit-search-results-decoration, textarea::-webkit-search-decoration, textarea::-webkit-search-cancel-button, textarea::-webkit-search-results-button, textarea::-webkit-search-results-decoration, select::-webkit-search-decoration, select::-webkit-search-cancel-button, select::-webkit-search-results-button, select::-webkit-search-results-decoration, button::-webkit-search-decoration, button::-webkit-search-cancel-button, button::-webkit-search-results-button, button::-webkit-search-results-decoration {
  display: none;
}

input:focus::placeholder, textarea:focus::placeholder, select:focus::placeholder, button:focus::placeholder {
  visibility: hidden;
}

input[type=number] {
  appearance: textfield;
  -moz-appearance: textfield;
}

img {
  max-width: 100%;
  max-height: 100%;
  height: auto;
  vertical-align: middle;
  border: 0;
}

p {
  margin-top: 0;
  margin-bottom: 10px;
}

.main-width {
  width: 100%;
  max-width: 1320px;
  padding: 0 20px;
  margin: 0 auto;
}

h1 {
  margin: 0;
}

h2 {
  color: #101014;
  font-size: 50px;
  font-style: normal;
  font-weight: 500;
  line-height: 55px;
  letter-spacing: -0.8px;
  margin: 0;
}

h3 {
  margin: 0;
}

.main {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 46px;
}

.animated {
  opacity: 0;
  visibility: hidden;
}
.animated.shown {
  opacity: 1;
  visibility: visible;
}

header {
  position: absolute;
  top: 45px;
  left: 0;
  right: 0;
  z-index: 9;
  padding: 0 40px;
}
header .header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  line-height: 1;
}
header .header__logo {
  color: #FFF;
  font-family: Inter;
  font-size: 24px;
  font-weight: 600;
  line-height: 28.8px;
}
header .header__logo span {
  color: #F00;
}
header .header__nav-link div {
  display: none;
}
header .header__nav ul {
  display: flex;
  gap: 20px;
  margin: 0;
  padding: 0;
}
header .header__nav ul li {
  list-style: none;
  padding: 10px;
  color: #FFF;
  font-size: 18px;
  font-weight: 500;
  line-height: 18px;
  letter-spacing: -0.1px;
}

.top {
  padding: 30px;
  background-color: #101014;
}
.top .top-block {
  flex-flow: column;
  flex: none;
  place-content: center;
  align-items: center;
  gap: 0;
  width: 100%;
  height: 100vh;
  min-height: 700px;
  padding: 50px 0 0;
  display: flex;
  position: relative;
  overflow: hidden;
}
.top .top-block__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 6px;
  position: relative;
  z-index: 1;
}
.top .top-block__label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  height: 25px;
  border-radius: 16px;
  background: #28282C;
  padding: 5px 12px;
  color: #D0D1DB;
  font-size: 14px;
  line-height: 14px;
  opacity: 0;
  visibility: hidden;
  animation: opacityUp 0.5s ease forwards 1s;
}
.top .top-block__label:before {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #00FF08;
  animation: shadow 1s linear infinite;
}
.top .top-block__title {
  color: #FFF;
  font-size: 51px;
  font-weight: 500;
  line-height: 61px;
  letter-spacing: -1px;
  margin-bottom: 27px;
  max-width: 55%;
  opacity: 0;
  visibility: hidden;
  animation: opacityUp 0.5s ease forwards 0.5s;
}
.top .top-block__text {
  color: #D0D1DB;
  font-size: 22px;
  font-weight: 400;
  line-height: 33px;
  letter-spacing: -0.3px;
  max-width: 35%;
  margin-bottom: 35px;
  opacity: 0;
  visibility: hidden;
  animation: opacityUp 0.5s ease forwards 1s;
}
.top .top-block__button {
  display: flex;
  height: 60px;
  padding: 9px 12px 11px 26px;
  justify-content: flex-end;
  align-items: center;
  gap: 30px;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(5px);
  color: #FFF;
  font-size: 16px;
  font-weight: 500;
  line-height: 20.8px;
  opacity: 0;
  visibility: hidden;
  animation: opacityUp 0.5s ease forwards 1s;
}
.top .top-block__button i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 9999px;
  background: #FFF;
  transition: all 0.5s ease 0s;
}
.top .top-block__button:hover {
  background: #FFF;
  color: #101014;
}
.top .top-block__button:hover i {
  transform: rotate(45deg);
}
.top .top-block__image-wrapper {
  flex-flow: row;
  flex: none;
  place-content: center flex-end;
  align-items: center;
  gap: 0;
  width: 100%;
  height: 100%;
  padding: 0;
  display: flex;
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
}
.top .top-block__image {
  flex-flow: row;
  flex: 0.45 0 0;
  place-content: center;
  align-items: center;
  gap: 10px;
  width: 1px;
  height: 100%;
  border-radius: 10px;
  display: flex;
  position: relative;
  overflow: hidden;
}
.top .top-block__image img {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  object-position: center center;
  object-fit: cover;
  opacity: 0;
  visibility: hidden;
  animation: opacityUp 0.5s ease forwards;
}
.top .top-block__image:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 168px;
  flex-shrink: 0;
  opacity: 0.8;
  background: linear-gradient(180deg, #101014 0%, rgba(16, 16, 20, 0) 100%);
  z-index: 1;
}
.top .top-block__image::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 420px;
  flex-shrink: 0;
  opacity: 0.8;
  background: linear-gradient(0deg, #101014 0%, rgba(16, 16, 20, 0) 100%);
  z-index: 1;
}

@keyframes opacityUp {
  0% {
    opacity: 0;
    visibility: hidden;
  }
  100% {
    opacity: 1;
    visibility: visible;
  }
}
@keyframes shadow {
  0% {
    box-shadow: 0 0 4px #00FF08;
  }
  50% {
    box-shadow: 0 0 12px #00FF08;
  }
  100% {
    box-shadow: 0 0 4px #00FF08;
  }
}
.text {
  padding: 150px 40px;
}
.text .text-block {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 76px;
}
.text .text-block__title {
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: all 0.5s ease 0.3s;
}
.text .text-block__label {
  display: flex;
  width: 114px;
  height: 27px;
  padding: 5px 12px 6px 12px;
  justify-content: center;
  align-items: center;
  border-radius: 16px;
  background: #28282C;
  color: #FFF;
  font-weight: 500;
  line-height: 16px;
  letter-spacing: 0.5px;
}
.text .text-block__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 45px;
  max-width: 55%;
}
.text .text-block__content p {
  font-size: 22px;
  line-height: 33px;
  letter-spacing: -0.3px;
  transition: all 0.5s ease 0.8s;
}
.text .text-block__button {
  display: flex;
  height: 60px;
  padding: 9px 12px 11px 26px;
  justify-content: flex-end;
  align-items: center;
  gap: 30px;
  border-radius: 50px;
  background: rgba(16, 16, 20, 0.1);
  backdrop-filter: blur(5px);
  color: #101014;
  font-size: 16px;
  font-weight: 500;
  line-height: 20.8px;
  transition: all 0.5s ease 0.8s;
}
.text .text-block__button i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 9999px;
  background: #101014;
  transition: all 0.3s ease 0s;
}
.text .text-block__button:hover {
  background: #101014;
  color: #fff;
}
.text .text-block__button:hover i {
  transform: rotate(45deg);
}

.faq {
  background: #FAFAFA;
  padding: 100px 40px;
}
.faq .faq-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 60px;
}
.faq .faq-block__title {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 21px;
  text-align: center;
  transition: all 0.5s ease 0.3s;
}
.faq .faq-block__title p {
  font-size: 22px;
  line-height: 33px;
  letter-spacing: -0.3px;
}
.faq .faq-block__label {
  display: flex;
  height: 27px;
  padding: 5px 12px 6px 12px;
  justify-content: center;
  align-items: center;
  border-radius: 16px;
  background: #28282C;
  color: #FFF;
  font-weight: 500;
  line-height: 16px;
  letter-spacing: 0.5px;
}
.faq .faq-block__content {
  display: flex;
  align-items: center;
  gap: 60px;
}
.faq .faq-block__image {
  transition: all 0.5s ease 0.5s;
}
.faq .faq-block__list {
  transition: all 0.5s ease 0.6s;
}
.faq .faq-block__item {
  width: 100%;
  max-width: 800px;
  border-bottom: 1px solid #DBDAD9;
  cursor: pointer;
}
.faq .faq-block__item.opened .faq-block__question::after {
  transform: rotate(45deg);
}
.faq .faq-block__item.opened .faq-block__answer {
  max-height: 200px;
  padding-bottom: 32px;
  margin-top: 10px;
}
.faq .faq-block__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 71px;
  font-size: 22px;
  font-weight: 500;
  color: #101014;
  line-height: 30.8px;
  letter-spacing: -0.2px;
}
.faq .faq-block__question:after {
  content: "";
  display: flex;
  width: 24px;
  height: 24px;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 256 256' fill='%23101014'><path d='M224 128a8 8 0 0 1-8 8H136v80a8 8 0 0 1-16 0V136H40a8 8 0 0 1 0-16h80V40a8 8 0 0 1 16 0v80h80a8 8 0 0 1 8 8Z'/></svg>") center/contain no-repeat;
  transition: all 0.3s ease-in-out;
}
.faq .faq-block__answer {
  font-size: 18px;
  line-height: 26px;
  color: #3D3D47;
  max-height: 0px;
  overflow: hidden;
  transition: all 0.3s ease-in-out;
}
.faq .faq-block__image {
  max-width: 48%;
}

.reviews {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 60px;
  padding-top: 150px;
}
.reviews .reviews-block {
  width: 100%;
}
.reviews .reviews-block .swiper-wrapper {
  margin: 0 auto;
}
.reviews__title {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 21px;
  text-align: center;
  transition: all 0.5s ease 0.3s;
}
.reviews__title p {
  font-size: 22px;
  line-height: 33px;
  letter-spacing: -0.3px;
}
.reviews__label {
  display: flex;
  height: 27px;
  padding: 5px 12px 6px 12px;
  justify-content: center;
  align-items: center;
  border-radius: 16px;
  background: #28282C;
  color: #FFF;
  font-weight: 500;
  line-height: 16px;
  letter-spacing: 0.5px;
}
.reviews .reviews-block {
  transition: all 0.5s ease 0.3s;
}
.reviews__slide {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  width: 400px;
  height: 300px !important;
  border-radius: 10px;
  background: #FAFAFA;
  padding: 30px 40px;
  border: 1px solid #E6E6E6;
}
.reviews__slide:nth-child(2), .reviews__slide:nth-child(4), .reviews__slide:nth-child(5), .reviews__slide:nth-child(7) {
  background: #E9ECF2;
  border: 1px solid #E9ECF2;
}
.reviews__slide-author {
  margin-top: auto;
  color: #B50B24;
}

.footer {
  border-radius: 10px 10px 0 0;
  background: #101014;
  padding: 60px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  height: 280px;
  margin-top: 10px;
}
.footer__logo {
  font-size: 28px;
  font-weight: 700;
  color: #FFFFFF;
}
.footer__logo span {
  color: #FF6A3D;
}
.footer__line {
  width: 100%;
  height: 1px;
  background: #222;
}
.footer__copyright {
  font-size: 16px;
  color: #FFF;
}

@media (max-width: 1024px) {
  .top .top-block__image {
    flex: 1 0 0;
  }
  .top .top-block__image:before {
    display: none;
  }
  .top .top-block__image:after {
    width: 100%;
    height: 100%;
    opacity: 0.75;
    background: linear-gradient(0deg, #101014 40%, rgba(16, 16, 20, 0) 100%), #101014;
  }
  .top .top-block__title {
    max-width: 100%;
  }
  .top .top-block__text {
    max-width: 100%;
  }
  .text .text-block {
    flex-direction: column;
  }
  .text .text-block__content {
    max-width: 100%;
  }
  .faq .faq-block__content {
    flex-direction: column;
  }
  .faq .faq-block__image {
    order: 1;
    max-width: 100%;
  }
  .faq .faq-block__item {
    max-width: 100%;
  }
}
@media (max-width: 768px) {
  h2 {
    font-size: 38px;
    line-height: 41.8px;
  }
  header {
    top: 30px;
    padding: 0 30px;
  }
  header .header {
    height: 58.8px;
    padding: 14px 20px 15.8px 20px;
    border-radius: 10px;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
  }
  header .header.nav-opened {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    background: rgba(0, 0, 0, 0.9);
  }
  header .header.nav-opened .header__nav ul {
    height: 85vh;
  }
  header .header__nav-link .header__nav-link--open {
    display: flex;
  }
  .header .header__nav ul {
    flex-direction: column;
    position: absolute;
    top: 58px;
    left: 0;
    right: 0;
    height: 0;
    overflow: hidden;
    padding: 0 10px;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(5px);
    border-radius: 0 0 10px 10px;
    transition: all 0.3s ease;
  }
  .header .header__nav ul li {
    font-size: 28px;
  }
  .top {
    padding: 20px;
  }
  .top .top-block .top-block__title {
    font-size: 34px;
    line-height: 40.8px;
  }
  .top .top-block .top-block__text {
    font-size: 20px;
    line-height: 30px;
  }
  .text {
    padding: 100px 20px;
  }
  .text .text-block {
    gap: 30px;
  }
  .text .text-block .text-block__content p {
    font-size: 20px;
    line-height: 30px;
  }
  .faq {
    padding: 100px 20px;
  }
  .faq .faq-block__title p {
    font-size: 20px;
    line-height: 30px;
  }
  .faq .faq-block__question {
    font-size: 16px;
    line-height: 22.4px;
  }
  .reviews {
    padding: 100px 20px 0 20px;
  }
  .reviews__swiper {
    padding-bottom: 50px;
  }
  .reviews__swiper .swiper-pagination {
    bottom: 10px;
  }
  .reviews__swiper .swiper-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    opacity: 0.5;
    background: #101014;
  }
  .reviews__swiper .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    opacity: 1;
    background: #101014;
  }
  .reviews__slide {
    height: 350px !important;
  }
  footer {
    padding: 0 20px;
  }
  .footer {
    padding: 50px 20px;
  }
}

/*# sourceMappingURL=styles.css.map */
