@charset "UTF-8";
/* Шаблоны (заготовки)
* @extend %имя шаблона;
*/
* {
  padding: 0;
  margin: 0;
  border: 0;
  -webkit-tap-highlight-color: transparent;
}
*, *:before, *:after {
  box-sizing: border-box;
}
*:focus, *:active {
  outline: none;
}

nav,
footer,
header,
aside {
  display: block;
}

html {
  opacity: 0;
  scroll-behavior: smooth;
  transition: opacity 0.8s ease-in-out;
}
html.loaded {
  opacity: 1;
}
html.lock {
  overflow: hidden;
  touch-action: none;
}

html,
body {
  width: 100%;
  height: 100%;
  min-width: 320px;
}

body {
  overscroll-behavior: none;
  font-size: var(--bs-font-size);
  font-family: var(--bs-font-family);
  font-weight: var(--bs-font-weight);
  line-height: var(--bs-line-height);
  text-rendering: optimizelegibility;
  text-size-adjust: 100%;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
}

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

input::-ms-clear {
  display: none;
}

input[type=number] {
  -moz-appearance: textfield;
}
input[type=number]::-webkit-outer-spin-button, input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
}

button {
  cursor: pointer;
  user-select: none;
}
button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

a {
  text-decoration: none;
  user-select: none;
}
a:focus, a:active {
  outline: none;
}
a:visited {
  text-decoration: none;
}
a:hover {
  text-decoration: none;
}

ul,
li {
  list-style: none;
}

img {
  vertical-align: top;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: 400;
}

sup {
  color: inherit;
}

* {
  scrollbar-width: 0.5rem;
  scrollbar-color: var(--primary-color) #d6d6d6;
}
*::-webkit-scrollbar {
  width: 0.5rem;
  background-color: var(--white-color);
}
*::-webkit-scrollbar-track {
  box-shadow: inset 0 0 0.375rem rgba(0, 0, 0, 0.2);
  border-radius: 0.25rem;
  background: #eee;
}
*::-webkit-scrollbar-thumb {
  border-radius: 0.25rem;
  border: 0 none #fff;
  background-color: var(--primary-color);
}
*::-webkit-scrollbar-thumb:hover {
  background-color: var(--primary-hover-color);
}

.scroll-lock {
  overflow: hidden;
}

.scroll-lock::before {
  content: "";
  display: block;
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
}

@font-face {
  font-family: "MonaSans";
  src: url("/fonts/MonaSans-Regular.otf") format("woff2"), url("/fonts/MonaSans-Regular.woff2") format("woff"), url("/fonts/MonaSans-Regular.ttf") format("truetype");
}
@font-face {
  font-family: "MonaSansBold";
  src: url("/fonts/MonaSans-Bold.otf");
  src: url("/fonts/MonaSans-Bold.otf") format("woff2"), url("/fonts/MonaSans-Bold.woff2") format("woff"), url("/fonts/MonaSans-Bold.ttf") format("truetype");
}
@font-face {
  font-family: "MonaSansExpanded";
  src: url("/fonts/MonaSansExpanded-Bold.otf");
  src: url("/fonts/MonaSansExpanded-Bold.otf") format("woff2"), url("/fonts/MonaSansExpanded-Bold.woff2") format("woff"), url("/fonts/MonaSansExpanded-Bold.ttf") format("truetype");
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "MonaSansExpanded", sans-serif;
  color: #fff;
  opacity: 0.96;
}

h1 {
  font-size: 64px;
  line-height: 72px;
  margin-bottom: 24px;
}
@media screen and (max-width: 1280px) {
  h1 {
    font-size: 40px;
    line-height: 48px;
  }
}
@media screen and (max-width: 960px) {
  h1 {
    font-size: 32px;
    line-height: 48px;
  }
}

h2 {
  font-size: 40px;
  line-height: 48px;
  margin-bottom: 24px;
}
@media screen and (max-width: 1280px) {
  h2 {
    font-size: 32px;
    line-height: 40px;
    margin-bottom: 24px;
  }
}
@media screen and (max-width: 960px) {
  h2 {
    font-size: 24px;
    line-height: 32px;
    margin-bottom: 24px;
  }
}

h3 {
  font-size: 24px;
  line-height: 32px;
  margin-bottom: 20px;
}
@media screen and (max-width: 1280px) {
  h3 {
    font-size: 20px;
    line-height: 24px;
    margin-bottom: 24px;
  }
}

h4 {
  font-size: 18px;
  line-height: 145%;
}

h5,
h6 {
  font-size: 16px;
  line-height: 24px;
}

p {
  margin-bottom: 24px;
}

/** Базовые анимации: */
@keyframes show-header {
  0% {
    top: -100%;
  }
  100% {
    top: 0;
  }
}
@keyframes fade-up-big {
  0% {
    transform: translateY(1rem);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes rotation {
  from {
    transform: rotate(0);
  }
  to {
    transform: rotate(359deg);
  }
}
@keyframes text-top {
  0% {
    transform: translateY(200%);
    transition: all 1s;
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    transition: all 1s;
    opacity: 1;
  }
}
@keyframes move-bg {
  0% {
    background-position: top 50% left -165px;
  }
  50% {
    background-position: top 80% left -65px;
  }
  100% {
    background-position: top 50% left -165px;
  }
}
@keyframes move-scroll {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(10%);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes move-up-down {
  0% {
    margin-top: -200px;
    opacity: 0;
  }
  100% {
    margin-top: 0;
    opacity: 1;
  }
}
body {
  font-family: "MonaSans", sans-serif;
  font-size: 17px;
  line-height: 150%;
  background-color: #0A0A0A;
  color: #a1a1a1;
  min-width: 390px;
}

.site {
  max-width: 1920px;
  padding: 0 20px;
  margin: 0 auto;
}

.container {
  width: 100%;
  margin: 96px 0;
}
@media screen and (max-width: 960px) {
  .container {
    margin: 64px 0;
  }
}
.container .row {
  display: flex;
  gap: 40px;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 960px) {
  .container .row {
    flex-direction: column;
  }
}
.container--2 .row .item {
  width: 50%;
}
@media screen and (max-width: 960px) {
  .container--2 .row .item {
    width: 100%;
  }
}
.container--2 .row .item img {
  width: 100%;
}
.container--3 .row {
  align-items: start;
}
.container--3 .row .item {
  width: 33.33%;
}
@media screen and (max-width: 960px) {
  .container--3 .row .item {
    width: 100%;
    flex-direction: row;
    display: flex;
    gap: 20px;
  }
}
@media screen and (max-width: 640px) {
  .container--3 .row .item {
    flex-direction: column;
  }
}
@media screen and (max-width: 960px) {
  .container--3 .row .item .img, .container--3 .row .item__text {
    width: 50%;
  }
}
@media screen and (max-width: 640px) {
  .container--3 .row .item .img, .container--3 .row .item__text {
    width: 100%;
  }
}
.container--3 .row .item img {
  width: 100%;
  margin-bottom: 40px;
}
@media screen and (max-width: 960px) {
  .container--swap .row {
    flex-direction: column-reverse;
  }
}

.img img {
  width: 100%;
}

.hero {
  align-items: center;
}

.title__up {
  font-size: 17px;
  line-height: 20px;
  margin-bottom: 18px;
  font-weight: bold;
}

.reviews {
  margin: 96px 0;
}

.review {
  width: 100%;
  max-width: 720px;
  text-align: center;
  margin: 0 auto;
}
.review__text {
  margin-bottom: 40px;
}
.review__info {
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  gap: 24px;
  align-items: center;
  justify-content: center;
}
.review__img {
  width: 56px;
  height: 56px;
}
.review__img img {
  width: 100%;
}
.review__desc {
  text-align: left;
}
.review__name {
  color: #fff;
}

/* Backdrop */
#popupBackdrop {
  display: none;
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 998;
}

/* Popup box */
#popup {
  display: none;
  position: fixed;
  top: 30%;
  left: 50%;
  min-width: 300px;
  max-width: 90%;
  transform: translate(-50%, -50%);
  background: #0A0A0A;
  padding: 24px;
  border: 1px solid #fff;
  z-index: 999;
  text-align: center;
}
#popup .success-text {
  color: #2e7d32;
  font-weight: bold;
}
#popup .error-text {
  color: #c62828;
  font-weight: bold;
}

#popup button {
  margin-top: 10px;
}

.fade-in-img {
  opacity: 0;
  transition: all 2s ease;
}
.fade-in-img.is-inview {
  opacity: 1;
}

.roll-in-img {
  position: relative;
  border: none;
  transition: all 1s ease;
}
.roll-in-img::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  transition: all 1s ease;
  transition-delay: 0.4s;
}

.img-hover {
  overflow: hidden;
  margin-top: 0;
  padding-top: 0;
}
.img-hover img {
  transition: transform 2s ease;
}
.img-hover:hover img {
  transform: scale(1.07);
}

.header {
  width: 100%;
}
.header__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin: 12px 0;
}
.header .logo {
  display: block;
}

.popup {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  overflow-y: auto;
  pointer-events: none;
  /** Установить свои значения */
  padding: 1.875rem 0.625rem;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 2000;
  transition: opacity 0.4s ease-in-out;
}
.popup.is-open {
  opacity: 1;
  pointer-events: auto;
}
.popup.is-open .popup__content {
  transform: translateY(0);
  opacity: 1;
}
.popup__wrapper {
  display: flex;
  align-items: center;
  min-height: 100%;
}
.popup__content {
  position: relative;
  width: 100%;
  margin: 0 auto;
  /** Установить свои значения */
  padding: 1.875rem 3.125rem;
  max-width: 43.125rem;
  background-color: #fff;
  transform: translateY(-12.5rem);
  opacity: 0;
  transition: transform 0.2s ease-in-out, opacity 0.2s ease-in-out;
}
.popup__close {
  position: absolute;
  /** Установить свои значения */
  top: 1.25rem;
  right: 1.25rem;
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  background: transparent;
  color: #000;
  border-radius: 0.5rem;
}

.checkboxes {
  display: flex;
  gap: 10px;
  align-items: center;
}

.checkbox {
  display: flex;
  align-items: center;
  gap: 4px;
  text-wrap: nowrap;
}
.checkbox__input {
  appearance: none;
  position: absolute;
  /* Checked */
  /* Focused */
  /* Disabled */
}
.checkbox__input:checked + .checkbox__box {
  background-color: #ff4040;
  border-color: #fff;
}
.checkbox__input:focus + .checkbox__box {
  box-shadow: 0 0 0 2px blue;
}
.checkbox__box {
  height: 20px;
  flex: 0 0 20px;
  border-radius: 3px;
  border: 2px solid #1a8c80;
}

.tabs {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}
.tabs__nav {
  display: flex;
  align-items: center;
  gap: 0.625rem;
}
.tabs__trigger {
  padding: 0.625rem;
  transition: 0.2s ease-in-out;
}
.tabs__trigger.active {
  background-color: #ff4040;
  color: #fff;
}
.tabs__panel {
  animation: fade-up-big 0.4s forwards;
  display: none;
}
.tabs__panel.active {
  display: block;
}

.accordion {
  /** Установить свои значения */
}
.accordion__item {
  /** Установить свои значения */
  background-color: #fff;
  border: 1px solid rgba(0, 0, 0, 0.12);
  transition: 0.3s ease-in-out;
}
.accordion__item:not(:first-of-type) {
  border-top: 0;
}
.accordion__item:first-of-type {
  border-top-left-radius: 0.25rem;
  border-top-right-radius: 0.25rem;
}
.accordion__item:last-of-type {
  border-bottom-right-radius: 0.25rem;
  border-bottom-left-radius: 0.25rem;
}
.accordion__item.open .accordion__header {
  /** Установить свои значения */
  background-color: #e7f1ff;
  color: #ff4040;
}
.accordion__item.open .accordion__header:after {
  transform: rotate(0deg);
}
.accordion__item.open .accordion__content {
  height: max-content;
  /** Установить свои значения */
  padding: 2.25rem 0.5rem;
}
.accordion__header {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  /** Установить свои значения */
  padding: 0.5rem;
  transition: background 0.3s ease-in-out;
}
.accordion__header:hover {
  background: rgba(255, 255, 255, 0.02);
}
.accordion__header:active {
  background: rgba(255, 255, 255, 0.05);
}
.accordion__header::after {
  content: "";
  position: static;
  transform: rotate(180deg);
  width: 1.5rem;
  height: 1.5rem;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%230c63e4'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  transition: transform 0.6s ease-in-out;
}
.accordion__content {
  height: 0;
  overflow: hidden;
  /** Установить свои значения */
  padding: 0 0.5rem;
  transition: all 0.3s ease-in-out;
}

.footer__logo {
  width: 100%;
  margin-bottom: 64px;
}
.footer__inner {
  border-top: 1px solid #a1a1a1;
  display: flex;
  justify-content: right;
  line-height: 32px;
  padding: 24px 0 32px;
  font-size: 12px;
}

.btn {
  color: #fff;
  height: 48px;
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  padding: 8px 27px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  cursor: pointer;
  text-align: center;
  background-color: #052CF0;
  margin: 0;
  font-family: "MonaSansBold", sans-serif;
  min-width: 80px;
  white-space: nowrap;
}
.btn::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 15px 0px 0px 15px;
  border-color: transparent transparent transparent #0A0A0A;
}
.btn::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0px 15px 15px 0;
  border-color: transparent #0A0A0A transparent transparent;
}
.btn:hover {
  background-color: #0425C8;
}
.btn:active {
  background-color: #031DA0;
}

.btn-border {
  color: #fff;
  height: 50px;
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  padding: 8px 8px;
  margin: 0 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  cursor: pointer;
  text-align: center;
  background-color: transparent;
  background-image: url("../../images/btn-line.svg");
  background-blend-mode: lighten;
  font-family: "MonaSansBold", sans-serif;
  min-width: 80px;
  white-space: nowrap;
}
.btn-border::before {
  content: "";
  position: absolute;
  top: 0;
  left: -21px;
  width: 21px;
  height: 50px;
  background-size: 21px 50px;
  background-image: url("../../images/rec-l.svg");
}
.btn-border::after {
  content: "";
  position: absolute;
  top: 0;
  right: -21px;
  width: 21px;
  height: 50px;
  background-size: 21px 50px;
  background-image: url("../../images/rec-r.svg");
  background-repeat: no-repeat;
}
.btn-border:hover {
  background-image: url("../../images/btn-line-h.svg");
}
.btn-border:hover::before {
  background-image: url("../../images/rec-l-h.svg");
}
.btn-border:hover::after {
  background-image: url("../../images/rec-r-h.svg");
}
.btn-border:active {
  color: #f5f5f5;
  opacity: 0.64;
}
.btn-border--s {
  height: 42px;
  padding: 1px 5px;
  background-image: url("../../images/btn-line-s.svg");
}
.btn-border--s::before {
  left: -21px;
  width: 21px;
  height: 42px;
  background-size: 21px 42px;
  background-image: url("../../images/rec-l-s.svg");
  background-repeat: no-repeat;
}
.btn-border--s::after {
  right: -21px;
  width: 21px;
  height: 42px;
  background-size: 21px 42px;
  background-image: url("../../images/rec-r-s.svg");
  background-repeat: no-repeat;
}
.btn-border--s:hover {
  background-image: url("../../images/btn-line-s-h.svg");
}
.btn-border--s:hover::before {
  background-image: url("../../images/rec-l-s-h.svg");
}
.btn-border--s:hover::after {
  background-image: url("../../images/rec-r-s-h.svg");
}

.link {
  position: relative;
}
.link::after {
  content: "";
  position: absolute;
  width: 100%;
  transform: scaleX(0);
  height: 1px;
  bottom: 0;
  left: 0;
  transform-origin: bottom right;
  transition: transform 0.4s ease-out;
}
.link.active::after, .link:hover::after {
  transform: scaleX(1);
  transform-origin: bottom left;
}

.text {
  position: relative;
}
.text .btn.wlink {
  margin-top: 67px;
}

.form {
  display: flex;
  flex-direction: column;
  max-width: 720px;
  margin: 56px auto 96px;
  background-color: transparent;
}
.form__inner {
  justify-content: center;
  text-align: center;
}

input[type=text],
input[type=email],
input[type=tel] {
  font-family: "MonaSans", sans-serif;
  background-color: transparent;
  color: #fff;
  border-radius: 0;
  border: 1px solid #a1a1a1;
  width: 100%;
  padding: 0px 12px;
  margin-bottom: 24px;
  line-height: 40px;
  height: 40px;
  font-size: 16px;
}
input[type=text].error,
input[type=email].error,
input[type=tel].error {
  border-color: red;
  background-color: #ffe6e6;
}

textarea {
  font-family: "MonaSans", sans-serif;
  padding: 12px;
  border: 1px solid #a1a1a1;
  width: 100%;
  resize: vertical;
  min-height: 56px;
  max-height: 320px;
  background-color: transparent;
  color: #fff;
  margin-bottom: 24px;
  font-size: 16px;
}