:root {
  --text: #fff;
  --text-btn: #232634;
  --main: #0F1017;
  --text-black: #000;
  --btn-color: #00FF66;
  --radius: 30px;
  --radius-card: 26px;
  --radius-card-big: 36px;
  --radius-review: 23px;
  --radius-big: 46px;
  --shadow: 0px 4px 4px 0px rgba(255, 255, 255, 0.12) inset;
  --avatar-color: #AA4BFD;
  --review-color: linear-gradient(180deg, #AA4BFD 0%, rgba(35, 38, 55, 0) 100%);
  --faq: #191223;
  --faq-item: #2A2D3D;
}

*, *:before, *:after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html, body, div, span, object, iframe, figure, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, code, em, img, small, strike, strong, sub, sup, tt, b, u, i, ol, ul, li, fieldset, form, label, table, caption, tbody, tfoot, thead, tr, th, td, main, canvas, embed, footer, header, nav, section, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font-family: "RFDewiExpanded", sans-serif;
  vertical-align: baseline;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: none;
     -moz-text-size-adjust: none;
          text-size-adjust: none;
}

body {
  color: var(--text);
}

a {
  text-decoration: none;
}

footer, header, nav, section, main {
  display: block;
}

body {
  line-height: 1;
}

ul {
  list-style: none;
}

button {
  cursor: pointer;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after, q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

input {
  -webkit-appearance: none;
  border-radius: 0;
}

@font-face {
  font-style: normal;
  font-family: "RFDewiExpanded";
  font-weight: 400;
  src: url("fonts/RFDewiExpanded-Regular.woff") format("woff"), url("fonts/RFDewiExpanded-Regular.woff2") format("woff2"), url("fonts/RFDewiExpanded-Regular.ttf") format("ttf");
  font-display: swap;
}
@font-face {
  font-style: normal;
  font-family: "RFDewiExpanded";
  font-weight: 600;
  src: url("fonts/RFDewiExpanded-Semibold.woff") format("woff"), url("fonts/RFDewiExpanded-Semibold.woff2") format("woff2"), url("fonts/RFDewiExpanded-Semibold.ttf") format("ttf");
  font-display: swap;
}
@font-face {
  font-style: normal;
  font-family: "RFDewiExpanded";
  font-weight: 800;
  src: url("fonts/RFDewiExpanded-Ultrabold.woff") format("woff"), url("fonts/RFDewiExpanded-Ultrabold.woff2") format("woff2"), url("fonts/RFDewiExpanded-Ultrabold.ttf") format("ttf");
  font-display: swap;
}
html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  background: var(--main);
  overflow-x: hidden;
}

.body.active {
  overflow-y: hidden;
}

img {
  border-style: none;
  max-width: 100%;
  height: auto;
}

a:hover {
  transition: 0.3s ease-out;
}

/* Header */
.header {
  width: 100%;
  padding: 27px 28px;
}
@media (min-width: 1280px) {
  .header {
    padding: 25px 42px;
  }
}
@media (min-width: 1700px) {
  .header {
    padding: 25px 135px;
  }
}
.header__block {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header__block .logo {
  width: 143px;
}
@media (min-width: 991px) {
  .header__block .logo {
    width: 151px;
  }
}
@media (min-width: 1280px) {
  .header__block .logo {
    width: 302px;
  }
}
.header__block .burger {
  display: block;
}
@media (min-width: 991px) {
  .header__block .burger {
    display: none;
  }
}
.header__block .burger img {
  width: 24px;
  height: 24px;
}
.header__block-menu {
  display: none;
  margin-left: 0;
}
@media (min-width: 991px) {
  .header__block-menu {
    display: flex;
    align-items: center;
  }
}
.header__block-buttons {
  display: none;
}
@media (min-width: 991px) {
  .header__block-buttons {
    display: block;
  }
}

.menu-item {
  font-size: 18px;
  font-weight: 600;
  line-height: 23px;
  color: var(--text);
}
@media (min-width: 991px) {
  .menu-item {
    margin-right: 30px;
  }
}
@media (min-width: 1280px) {
  .menu-item {
    margin-right: 63px;
  }
}
.menu-item:last-child {
  margin-right: 0;
}
.menu-item:hover {
  text-decoration: underline;
}

.menu_mobile {
  background: var(--main);
  width: 100%;
  padding-top: 30px;
  max-width: 100%;
  min-height: 100vh;
  position: fixed;
  top: 79px;
  right: -100%;
  display: block;
  transition: right 0.8s;
  z-index: 11;
}
.menu_mobile .menu {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.menu_mobile .menu .menu-item {
  display: block;
  margin-bottom: 30px;
}
.menu_mobile .menu .menu-item:last-child {
  margin-bottom: 0;
}

.menu_mobile.show {
  right: 0;
  transition: right 0.8s;
}

.btn {
  border: 2px solid var(--btn-color);
  color: var(--btn-color);
  font-weight: 800;
  font-size: 20px;
  line-height: 26px;
  width: 157px;
  height: 60px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: var(--radius);
  position: relative;
  box-shadow: var(--shadow);
}
.btn:hover {
  background-color: var(--btn-color);
  color: var(--text-btn);
}

.btn-sign {
  background-color: var(--btn-color);
  color: var(--text-btn);
  margin-right: 30px;
}
.btn-sign:hover {
  background-color: unset;
  color: var(--btn-color);
}

.btn-reg {
  width: 281px;
  height: 65px;
  background-color: var(--btn-color);
  color: var(--text-btn);
  text-transform: uppercase;
  font-size: 22px;
  line-height: 27px;
  letter-spacing: 0.3px;
}
@media (min-width: 1280px) {
  .btn-reg {
    width: 420px;
    height: 96px;
    border-radius: var(--radius-big);
    font-size: 34px;
    line-height: 40px;
  }
}
.btn-reg:hover {
  border: 2px solid var(--avatar-color);
  background-color: var(--avatar-color);
  color: var(--text);
}
.btn-reg:hover::before {
  background-image: url(img/hover-btn-icon-mobile.svg);
}
@media (min-width: 1280px) {
  .btn-reg:hover::before {
    background-image: url(img/hover-btn-icon.svg);
  }
}
.btn-reg:hover::after {
  background-image: url(img/hover-btn-icon-big-mobile.svg);
}
@media (min-width: 1280px) {
  .btn-reg:hover::after {
    background-image: url(img/hover-btn-icon-big.svg);
  }
}
.btn-reg::before {
  content: "";
  position: absolute;
  top: 10px;
  left: -18px;
  width: 320px;
  height: 41px;
  background-image: url(img/btn-icon-mobile.svg);
  background-repeat: no-repeat;
  background-size: contain;
}
@media (min-width: 1280px) {
  .btn-reg::before {
    background-image: url(img/btn-icon.svg);
    width: 477.5px;
    height: 61px;
    left: -27px;
    top: 14px;
  }
}
.btn-reg::after {
  content: "";
  position: absolute;
  top: 4px;
  left: -11px;
  width: 304px;
  height: 53px;
  background-image: url(img/btn-icon-big-mobile.svg);
  background-repeat: no-repeat;
  background-size: contain;
}
@media (min-width: 1280px) {
  .btn-reg::after {
    background-image: url(img/btn-icon-big.svg);
    width: 452.5px;
    height: 79px;
    top: 6px;
    left: -16px;
  }
}

.main {
  position: relative;
  height: auto;
  padding: 0 16px;
  height: 130vh;
  background-image: url(img/banner-mobile.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 100% 100%;
}
@media (min-width: 640px) {
  .main {
    background-image: url(img/banner.webp);
    height: 100vh;
  }
}
.main__block {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  position: relative;
  text-align: center;
  width: 100%;
  height: 100%;
  padding-top: 110px;
}
@media (min-width: 991px) {
  .main__block {
    justify-content: center;
    padding-top: 0;
    align-items: flex-start;
    padding-left: 28px;
  }
}
@media (min-width: 1700px) {
  .main__block {
    padding-left: 119px;
  }
}
.main__block span {
  color: var(--text);
  margin-bottom: 40px;
  font-size: 17px;
  line-height: 20px;
  font-weight: 800;
}
@media (min-width: 1280px) {
  .main__block span {
    font-size: 30px;
    line-height: 37px;
    margin-bottom: 45px;
  }
}
@media (min-width: 1700px) {
  .main__block span {
    margin-bottom: 67px;
    font-size: 35px;
    line-height: 42px;
  }
}
@media (min-width: 991px) {
  .main__block .btn-reg {
    margin-left: 16px;
  }
}

h1 {
  font-size: 40px;
  line-height: 48px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 37px;
}
@media (min-width: 991px) {
  h1 {
    text-align: left;
  }
}
@media (min-width: 1280px) {
  h1 {
    font-size: 67px;
    line-height: 81px;
    margin-bottom: 50px;
  }
}
@media (min-width: 1700px) {
  h1 {
    margin-bottom: 72px;
  }
}
h1 strong {
  font-size: 25px;
  line-height: 1.2;
  color: var(--btn-color);
}
@media (min-width: 1280px) {
  h1 strong {
    font-size: 42px;
    line-height: 1.4;
  }
}

h2 {
  font-size: 20px;
  line-height: 24px;
  font-weight: 400;
}
@media (min-width: 1280px) {
  h2 {
    font-size: 25px;
    line-height: 30px;
  }
}

.about {
  background-color: var(--text);
  padding: 60px 43px;
  position: relative;
}
@media (min-width: 1700px) {
  .about {
    padding: 60px 135px;
  }
}
.about .img-left {
  position: absolute;
  left: 0;
  bottom: -95px;
  height: 210px;
}
.about .img-left.mobile {
  display: block;
}
@media (min-width: 640px) {
  .about .img-left.mobile {
    display: none;
  }
}
.about .img-left.desk {
  display: none;
}
@media (min-width: 640px) {
  .about .img-left.desk {
    bottom: 35px;
    display: block;
  }
}
@media (min-width: 991px) {
  .about .img-left.desk {
    height: 350px;
  }
}
@media (min-width: 1280px) {
  .about .img-left.desk {
    height: 400px;
  }
}
@media (min-width: 1700px) {
  .about .img-left.desk {
    height: 522px;
    bottom: 65px;
  }
}
.about__block h2 {
  color: var(--text-black);
  margin-bottom: 13px;
}
@media (min-width: 1280px) {
  .about__block h2 {
    margin-bottom: 19px;
  }
}
.about__block .subtitle {
  display: block;
  color: var(--text-black);
  font-size: 20px;
  line-height: 24px;
  font-weight: 800;
  margin-bottom: 33px;
}
@media (min-width: 1280px) {
  .about__block .subtitle {
    font-size: 35px;
    line-height: 42px;
    margin-bottom: 62px;
  }
}
.about__block .cards {
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (min-width: 991px) {
  .about__block .cards {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }
}
.about__block .cards__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 60px;
}
@media (min-width: 640px) {
  .about__block .cards__item {
    width: 360px;
  }
}
@media (min-width: 991px) {
  .about__block .cards__item {
    margin: 0 30px 60px;
  }
}
@media (min-width: 1280px) {
  .about__block .cards__item {
    margin: 0 45px 60px;
  }
}
@media (min-width: 1700px) {
  .about__block .cards__item {
    margin: 0 60px 60px;
    width: 383px;
    height: 342px;
  }
}
.about__block .cards__item:last-child {
  margin-bottom: 0;
}
@media (min-width: 1280px) {
  .about__block .cards__item:last-child {
    margin-bottom: 60px;
  }
}
.about__block .cards__item-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  background-image: url(img/card-icon.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 130px;
  height: 101px;
}
.about__block .cards__item span {
  display: block;
  text-align: center;
  font-size: 20px;
  line-height: 24px;
  font-weight: 800;
  margin-bottom: 10px;
  color: var(--text-black);
}
@media (min-width: 1700px) {
  .about__block .cards__item span {
    font-size: 26px;
    line-height: 31px;
  }
}
.about__block .cards__item p {
  text-align: center;
  font-size: 20px;
  line-height: 24px;
  font-weight: 400;
  color: var(--text-black);
}
@media (min-width: 1700px) {
  .about__block .cards__item p {
    font-size: 24px;
    line-height: 36px;
  }
}

.contact {
  padding: 60px 41px 30px;
  position: relative;
  background-color: var(--text-black);
}
@media (min-width: 1280px) {
  .contact {
    padding: 72px 41px 109px;
  }
}
@media (min-width: 1700px) {
  .contact {
    padding: 86px 135px 109px;
  }
}
.contact .img-right {
  position: absolute;
  right: 0;
  top: -80px;
  height: 202px;
}
.contact .img-right.mobile {
  display: block;
}
@media (min-width: 640px) {
  .contact .img-right.mobile {
    display: none;
  }
}
.contact .img-right.desk {
  display: none;
}
@media (min-width: 640px) {
  .contact .img-right.desk {
    top: 0;
    display: block;
  }
}
@media (min-width: 991px) {
  .contact .img-right.desk {
    height: 395px;
  }
}
@media (min-width: 1280px) {
  .contact .img-right.desk {
    height: 445px;
    top: -50px;
  }
}
@media (min-width: 1700px) {
  .contact .img-right.desk {
    height: 567px;
    top: -80px;
  }
}
.contact__block h2 {
  color: var(--text);
  margin-bottom: 14px;
}
@media (min-width: 1280px) {
  .contact__block h2 {
    margin-bottom: 27px;
  }
}
.contact__block .subtitle {
  display: block;
  font-size: 20px;
  line-height: 24px;
  font-weight: 800;
  color: var(--btn-color);
  margin-bottom: 10px;
}
@media (min-width: 1280px) {
  .contact__block .subtitle {
    font-size: 35px;
    line-height: 42px;
  }
}
.contact__block .title-description {
  font-weight: 400;
  font-size: 20px;
  line-height: 24px;
  color: var(--text);
  margin-bottom: 33px;
}
@media (min-width: 1280px) {
  .contact__block .title-description {
    font-size: 30px;
    line-height: 36px;
    margin-bottom: 95px;
  }
}
.contact__block .cards {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 56px;
  gap: 20px;
}
@media (min-width: 991px) {
  .contact__block .cards {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }
}
@media (min-width: 1280px) {
  .contact__block .cards {
    margin-bottom: 109px;
  }
}
.contact__block .cards__item {
  background-color: var(--text);
  border-radius: var(--radius-card);
  padding: 12px;
  width: 300px;
}
@media (min-width: 1280px) {
  .contact__block .cards__item {
    width: 500px;
    padding: 20px;
    border-radius: var(--radius-card-big);
  }
}
.contact__block .cards__item-top {
  display: flex;
  margin-bottom: 15px;
}
@media (min-width: 1280px) {
  .contact__block .cards__item-top {
    margin-bottom: 24px;
  }
}
.contact__block .cards__item-top .avatar {
  flex: 0 0 auto;
  max-width: 100%;
  align-self: center;
  width: 67px;
  height: 67px;
  border-radius: 50%;
  margin-right: 17px;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (min-width: 1280px) {
  .contact__block .cards__item-top .avatar {
    width: 111px;
    height: 111px;
    margin-right: 30px;
  }
}
.contact__block .cards__item-top .avatar img {
  position: relative;
}
.contact__block .cards__item-top .avatar.kira img {
  bottom: 1px;
  left: -3px;
}
.contact__block .cards__item-top .avatar.alex img {
  bottom: 4px;
  left: -2px;
}
@media (min-width: 1280px) {
  .contact__block .cards__item-top .avatar.alex img {
    bottom: 6px;
    left: -5px;
  }
}
.contact__block .cards__item-top .info {
  width: 100%;
  max-width: 100%;
  align-self: center;
}
.contact__block .cards__item-top .info__title {
  font-size: 20px;
  line-height: 24px;
  color: var(--text-black);
  font-weight: 800;
}
@media (min-width: 1280px) {
  .contact__block .cards__item-top .info__title {
    font-size: 26px;
    line-height: 31px;
  }
}
.contact__block .cards__item-top .info__subtitle {
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  color: var(--text-black);
}
@media (min-width: 1280px) {
  .contact__block .cards__item-top .info__subtitle {
    font-size: 22px;
    line-height: 36px;
  }
}
.contact__block .cards__item-link {
  display: flex;
  justify-content: flex-start;
  padding-left: 20px;
  margin-bottom: 9px;
}
@media (min-width: 1280px) {
  .contact__block .cards__item-link {
    margin-bottom: 18px;
    padding-left: 35px;
  }
}
.contact__block .cards__item-link:hover {
  text-decoration: underline;
}
.contact__block .cards__item-link .link {
  flex: 0 0 auto;
  max-width: 100%;
  align-self: center;
  width: 27px;
  height: 27px;
  background-repeat: no-repeat;
  background-size: contain;
  margin-right: 10px;
}
@media (min-width: 1280px) {
  .contact__block .cards__item-link .link {
    width: 44px;
    height: 44px;
  }
}
.contact__block .cards__item-link .link-tg {
  background-image: url(img/tg-icon.svg);
}
.contact__block .cards__item-link .link-teams {
  background-image: url(img/teams-icon.png);
}
.contact__block .cards__item-link .link-name {
  max-width: 100%;
  align-self: center;
  color: var(--text-black);
  font-size: 13px;
  line-height: 24px;
  font-weight: 400;
}
@media (min-width: 1280px) {
  .contact__block .cards__item-link .link-name {
    font-size: 20px;
    line-height: 36px;
  }
}
.contact__block-text {
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (min-width: 991px) {
  .contact__block-text {
    flex-direction: row;
  }
}
.contact__block-text p {
  font-size: 22px;
  line-height: 26px;
  font-weight: 800;
  color: var(--text);
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 38px;
}
@media (min-width: 991px) {
  .contact__block-text p {
    text-align: left;
    width: 500px;
    margin-right: 60px;
    margin-bottom: 0;
  }
}
@media (min-width: 1280px) {
  .contact__block-text p {
    font-size: 30px;
    line-height: 37px;
    width: 652px;
    margin-right: 100px;
  }
}
@media (min-width: 1700px) {
  .contact__block-text p {
    font-size: 35px;
    line-height: 42px;
    width: 752px;
    margin-right: 165px;
  }
}

.footer {
  padding: 21px 17px;
}
@media (min-width: 1280px) {
  .footer {
    display: flex;
    justify-content: center;
    align-items: center;
  }
}
.footer__top {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 36px;
}
@media (min-width: 1280px) {
  .footer__top {
    margin-bottom: 0;
    margin-right: 147px;
  }
}
.footer__top img {
  margin: 4px 7px;
  width: 100px;
}
.footer__top img:first-child {
  margin: 4px 7px 4px 0;
}
.footer__top img:last-child {
  margin: 4px 0 4px 7px;
  width: 70px;
}
.footer__bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (min-width: 1280px) {
  .footer__bottom {
    flex-direction: row;
  }
}
.footer__bottom span {
  display: block;
  color: var(--text);
  font-weight: 400;
  font-size: 10px;
  line-height: 12px;
  margin-bottom: 10px;
}
@media (min-width: 1280px) {
  .footer__bottom span {
    margin-bottom: 0;
    margin-right: 21px;
  }
}
.footer__bottom span br {
  display: none;
}
@media (min-width: 1280px) {
  .footer__bottom span br {
    display: block;
  }
}

.reviews {
  padding: 56px 41px 30px;
}
@media (min-width: 640px) {
  .reviews {
    padding: 56px 0 30px 41px;
  }
}
@media (min-width: 1280px) {
  .reviews {
    padding: 74px 0 63px 41px;
  }
}
@media (min-width: 1700px) {
  .reviews {
    padding: 90px 0 63px 135px;
  }
}
.reviews__block h2 {
  font-weight: 800;
  color: var(--btn-color);
  text-transform: uppercase;
  margin-bottom: 45px;
  text-align: right;
}
@media (min-width: 640px) {
  .reviews__block h2 {
    text-align: left;
  }
}
@media (min-width: 1280px) {
  .reviews__block h2 {
    margin-bottom: 55px;
    font-size: 35px;
    line-height: 42px;
  }
}
.reviews__block .reviewsSwiper .nav-slider {
  margin-top: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 85px;
  height: 10px;
}
@media (min-width: 1280px) {
  .reviews__block .reviewsSwiper .nav-slider {
    margin-top: 62px;
  }
}
.reviews__block .reviewsSwiper .nav-slider .swiper-button-prev {
  width: 32px;
  height: auto;
  top: auto;
  left: auto;
  position: relative;
}
.reviews__block .reviewsSwiper .nav-slider .swiper-button-prev::after {
  display: none;
}
.reviews__block .reviewsSwiper .nav-slider .swiper-button-prev svg {
  fill: #00FF66;
}
.reviews__block .reviewsSwiper .nav-slider .swiper-button-prev.swiper-button-disabled {
  opacity: 1;
}
.reviews__block .reviewsSwiper .nav-slider .swiper-button-prev.swiper-button-disabled svg {
  fill: #42465E;
}
.reviews__block .reviewsSwiper .nav-slider .swiper-button-next {
  width: 32px;
  height: auto;
  top: auto;
  left: auto;
  position: relative;
}
.reviews__block .reviewsSwiper .nav-slider .swiper-button-next::after {
  display: none;
}
.reviews__block .reviewsSwiper .nav-slider .swiper-button-next svg {
  fill: #00FF66;
}
.reviews__block .reviewsSwiper .nav-slider .swiper-button-next.swiper-button-disabled {
  opacity: 1;
}
.reviews__block .reviewsSwiper .nav-slider .swiper-button-next.swiper-button-disabled svg {
  fill: #42465E;
}
.reviews__block .reviewsSwiper .swiper-slide:last-child .review-card img {
  width: 100px;
}
.reviews__block .review-card {
  border-radius: var(--radius-review);
  background: var(--review-color);
  padding: 22px 32px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  text-align: center;
  height: 327px;
}
@media (min-width: 1280px) {
  .reviews__block .review-card {
    border-radius: var(--radius);
    padding: 29px 41px 25px;
    height: 426px;
  }
}
.reviews__block .review-card img {
  width: 153px;
}
@media (min-width: 1280px) {
  .reviews__block .review-card img {
    width: 200px;
  }
}
.reviews__block .review-card p, .reviews__block .review-card a {
  color: var(--text);
  font-size: 12px;
  line-height: 18px;
}
@media (min-width: 1280px) {
  .reviews__block .review-card p, .reviews__block .review-card a {
    font-size: 16px;
    line-height: 24px;
  }
}
.reviews__block .review-card p {
  font-weight: 400;
  margin-bottom: 25px;
}
@media (min-width: 1280px) {
  .reviews__block .review-card p {
    margin-bottom: 35px;
  }
}
.reviews__block .review-card a {
  font-weight: 800;
}
.reviews__block .review-card a:hover {
  text-decoration: underline;
}

.brands {
  background-color: var(--text);
  padding: 60px 30px;
  position: relative;
}
@media (min-width: 991px) {
  .brands {
    padding: 60px 43px;
  }
}
@media (min-width: 1700px) {
  .brands {
    padding: 60px 135px;
  }
}
.brands__block span {
  color: var(--text-black);
  margin-bottom: 13px;
  display: block;
  font-size: 20px;
  line-height: 24px;
  font-weight: 400;
}
@media (min-width: 1280px) {
  .brands__block span {
    margin-bottom: 19px;
    font-size: 25px;
    line-height: 30px;
  }
}
.brands__block h2 {
  display: block;
  color: var(--text-black);
  font-size: 25px;
  line-height: 24px;
  font-weight: 800;
  margin-bottom: 20px;
}
@media (min-width: 1280px) {
  .brands__block h2 {
    font-size: 35px;
    line-height: 42px;
    margin-bottom: 35px;
  }
}
.brands__block ul {
  list-style: disc;
  padding-left: 30px;
  margin-bottom: 10px;
}
@media (min-width: 1280px) {
  .brands__block ul {
    margin-bottom: 20px;
  }
}
.brands__block ul li {
  color: var(--text-black);
  font-size: 16px;
  line-height: 24px;
}
.brands__block h3 {
  display: block;
  color: var(--avatar-color);
  font-size: 20px;
  line-height: 24px;
  font-weight: 800;
  margin-bottom: 10px;
}
@media (min-width: 1280px) {
  .brands__block h3 {
    font-size: 30px;
    line-height: 37px;
    margin-bottom: 20px;
  }
}
.brands__block p {
  color: var(--text-black);
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 10px;
}
@media (min-width: 1280px) {
  .brands__block p {
    margin-bottom: 20px;
  }
}

.faq {
  background-color: var(--faq);
  padding: 60px 30px;
  position: relative;
}
@media (min-width: 991px) {
  .faq {
    padding: 60px 43px;
  }
}
@media (min-width: 1700px) {
  .faq {
    padding: 60px 135px;
  }
}
.faq__block h2 {
  display: block;
  color: var(--btn-color);
  font-size: 25px;
  line-height: 24px;
  font-weight: 800;
  margin-bottom: 20px;
}
@media (min-width: 1280px) {
  .faq__block h2 {
    font-size: 35px;
    line-height: 42px;
    margin-bottom: 35px;
  }
}
.faq__item {
  border-radius: 5px;
  background-color: var(--faq-item);
  margin-bottom: 8px;
  border: none;
  position: relative;
  cursor: pointer;
}
.faq__item h3 {
  font-size: 14px;
  line-height: 1.2;
  font-weight: 600;
  color: var(--text);
  padding: 14px 50px 14px 16px;
  position: relative;
}
@media (min-width: 991px) {
  .faq__item h3 {
    font-size: 16px;
  }
}
.faq__item h3::after {
  position: absolute;
  content: "";
  background-repeat: no-repeat;
  background-size: contain;
  height: 24px;
  width: 24px;
  right: 20px;
  top: 30%;
  transition: 0.3s ease-out;
  background-image: url(img/faq-icon.svg);
}
.faq__item-answer {
  display: none;
  padding: 12px;
  transition: 0.3s ease-out;
}
.faq__item-answer p {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
}
.faq__item-answer.active {
  display: block;
}
.faq__item.open h3::after {
  transform: rotate(180deg);
}/*# sourceMappingURL=style.css.map */