.s-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #fff;
  border-bottom: 1px solid #f74e28;
  z-index: 1000;
  display: flex;
  padding: 10px 15px;
  font-size: 13px;
  transform: translateY(-100%);
  opacity: 0;
  transition: .4s;
}

.s-header__mob {
  display: none;
  width: 100%;
  align-items: center;
  justify-content: space-between;
}

.s-header__main {
  width: 100%;
}

.s-header .header-inner {
  padding-top: 0;
  padding-bottom: 0;
}

.s-header .header-info {
  flex-grow: 1
}

.s-header .header-tel {
  margin-left: auto;
  margin-right: auto;
}

.s-header.active {
  box-shadow: 0 0 10px 10px rgba(246, 71, 31, .1);
  transform: translateY(0);
  opacity: 1;
}

.s-header__top {
  font-size: 16px;
  font-weight: 600;
}

.s-header__call {
  display: flex;
  align-items: center;
  color: #f74e28;
}

.s-header__call img {
  margin-right: 5px;
  width: 20px;
  height: 20px;
}

.scroll-up {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  border: 1px solid #F74E28;
  background-color: #fff;
  z-index: 100;
  position: fixed;
  right: 50px;
  bottom: 150px;
  opacity: 0;
  pointer-events: none;
  transition: .2s;
}

.scroll-up.active {
  opacity: 1;
  pointer-events: auto;
}

.scroll-up img {
  display: block;
  width: 20px;
  height: 20px;
}

@media screen and (max-width: 1000px) {
  .scroll-up {
    bottom: 60px;
    right: 10px;
    width: 38px;
    height: 38px;
  }
}

button {
  border: none;
  outline: none;
  background-color: transparent;
  font-family: inherit;
  font-size: inherit;
}

ul,
ol {
  list-style: none;
}

.section-header {
  font-weight: 600;
  font-size: 42px;
  line-height: 110%;
  text-align: center;
  letter-spacing: -0.03em;
  margin-bottom: 60px;
}

.section-subheader {
  font-size: 16px;
  line-height: 150%;
  letter-spacing: -0.01em;
  color: #666666;
  text-align: center;
  max-width: 970px;
  margin: 0 auto;
  margin-bottom: 50px;
}

@media screen and (max-width: 768px) {
  .section-header {
    font-size: 34px;
    line-height: 40px;
  }
}

@media screen and (max-width: 480px) {
  .section-header {
    font-size: 26px;
    line-height: 32px;
    margin-bottom: 20px;
  }

  .section-subheader {
    font-size: 14px;
  }
}

.tbtn {
  border: 1px solid #F88878;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 14px;
  color: #F74E28;
  letter-spacing: -0.02em;
  position: relative;
  text-align: center;
  background: transparent;
}

.tbtn:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: linear-gradient(180deg, #F88878 0%, #F6471F 100%);
  transition: all 0.3s ease;
  border-radius: 6px;
  opacity: 0;
  z-index: 1;
}

.tbtn-inner {
  padding: 16px 65px;
  position: relative;
  z-index: 2;
}

.tbtn:hover {
  border-color: transparent;
  color: #fff;
}

.tbtn:hover:after {
  opacity: 1;
}

@media screen and (max-width: 768px) {
  .tbtn-inner {
    padding: 14px 30px;
  }
}

.btn {
  font-weight: 600;
  font-size: 16px;
  text-transform: uppercase;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0px 4px 0px #CA2B0D;
  border-radius: 8px;
  position: relative;
  text-align: center;
}

.btn-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  height: inherit;
  width: inherit;
  padding: 26px 60px;
  border-radius: 8px;
  position: relative;
  transition: all 0.3s ease;
  z-index: 2;
}

.btn:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: linear-gradient(180deg, #F88878 0%, #F6471F 100%);
  transition: all 0.3s ease;
  border-radius: 6px;
  z-index: 1;
}

.btn:hover .btn-inner {
  background: #F74E28;
}

.btn:active .btn-inner {
  background: #e43108;
}

.btn--dark {
  box-shadow: none;
  padding-left: 0;
  padding-right: 0;
}

.btn--dark:after {
  background: rgba(0, 0, 0, 0.12);
}

@media screen and (max-width: 480px) {
  .btn-inner {
    padding: 14px 30px;
  }
}

.check-wrap {
  display: inline-flex;
  align-items: center;
  position: relative;
  padding-left: 26px;
  height: 24px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  margin-bottom: 20px;
}

.check-wrap input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.check-wrap input.err+.check-wrap__check {
  border-color: red;
  box-shadow: 0 0 15px red;
}

.check-wrap.error {
  color: red;
}

.check-wrap__check {
  position: absolute;
  top: 2px;
  left: 0;
  height: 18px;
  width: 18px;
  background-color: #fff;
  border: 1px solid #DCDCDC;
  border-radius: 5px;
  /* Create the checkmark/indicator (hidden when not checked) */
}

.check-wrap__check:after {
  content: "";
  position: absolute;
  display: none;
  /* Style the checkmark/indicator */
  left: 3px;
  top: 3px;
  width: 10px;
  height: 10px;
  background: url(../img/icon-check-white.svg) no-repeat center;
  background-size: contain;
}

.check-wrap__text {
  display: flex;
  font-size: 12px;
  line-height: 130%;
  color: #666666;
}

.check-wrap__text a {
  color: #F74E28;
  margin-left: 4px;
}

.check-wrap__text a:hover {
  text-decoration: underline;
}

.check-wrap:hover input~.check-wrap__check {
  background-color: #f1f1f1;
}

.check-wrap input:checked~.check-wrap__check {
  background-color: #F74E28;
  border-color: #F74E28;
  /* Show the checkmark when checked */
}

.check-wrap input:checked~.check-wrap__check:after {
  display: block;
}

.check-wrap input:disabled~.check-wrap__check {
  background-color: rgba(189, 189, 189, 0.63);
  border-color: rgba(189, 189, 189, 0.63);
  /* Show the checkmark when checked */
}

.check-wrap input:disabled~.check-wrap__check:after {
  display: block;
}

.header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 998;
}

.header-inner {
  padding: 25px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-logo {
  position: relative;
  width: 330px;
  display: flex;
  align-items: center;
}

.header-logo__img {
  width: 60px;
}

.header-logo__text {
  width: calc(100% - 60px);
  padding-left: 18px;
}

.header-logo__name {
  font-weight: 600;
  font-size: 21px;
  line-height: 27px;
  text-transform: uppercase;
  letter-spacing: -0.03em;
  margin-bottom: 2px;
}

.header-logo__hint {
  font-size: 14px;
  line-height: 18px;
  letter-spacing: -0.01em;
}

.header-menu {
  padding: 22px 0 22px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid #D2D2D2;
  border-bottom: 1px solid #D2D2D2;
}

.header-tel {
  display: inline-flex;
  align-items: center;
  font-size: 18px;
  line-height: 22px;
  letter-spacing: -0.02em;
}

.header-tel img {
  margin-right: 10px;
}

.header-tel:hover {
  color: #F74E28;
}

.header-link {
  width: 16.6%;
  padding: 0 25px;
  font-weight: 500;
  font-size: 15px;
  line-height: 19px;
  letter-spacing: -0.01em;
  color: #333333;
  text-align: center;
  position: relative;
  border-right: 1px solid #D2D2D2;
}

.header-link:last-child {
  border: none;
}

.header-link.active {
  font-weight: 700;
  color: #F74E28;
}

.header-link:hover {
  color: #F74E28;
}

.header-info {
  display: flex;
  align-items: center;
  gap: 30px;
}

.header-burger {
  display: none;
}

@media screen and (max-width: 980px) {
  .header-geo {
    display: none;
  }
}

@media screen and (max-width: 768px) {
  .s-header__main {
    display: none;
  }

  .s-header__mob {
    display: flex;
  }

  .header-inner {
    padding: 20px 0;
  }

  .header-logo {
    width: 295px;
  }

  .header-logo__name {
    font-size: 18px;
    line-height: 24px;
  }

  .header-logo__hint {
    font-size: 12px;
    line-height: 14px;
  }

  .header-info {
    gap: 15px;
  }

  .header-tel span {
    display: none;
  }

  .header-burger {
    display: block;
    height: 17px;
    width: 25px;
    position: relative;
    z-index: 999;
    order: 3;
  }

  .header-burger .bline-1 {
    position: absolute;
    top: 0;
    left: 0;
    height: 1px;
    width: 25px;
    background: #333333;
    transition: all 0.3s ease;
  }

  .header-burger .bline-2 {
    position: absolute;
    top: 5px;
    right: 0;
    height: 1px;
    width: 25px;
    background: #333333;
    transition: all 0.3s ease;
  }

  .header-burger .bline-3 {
    position: absolute;
    top: 10px;
    left: 0;
    height: 1px;
    width: 25px;
    background: #333333;
  }

  .header-burger .bline-4 {
    position: absolute;
    transition: all 0.3s ease;
    top: 15px;
    left: 0;
    height: 1px;
    width: 25px;
    background: #333333;
    transition: all 0.3s ease;
  }

  .header-burger.active .bline-1,
  .header-burger.active .bline-4 {
    width: 0;
  }

  .header-burger.active .bline-2 {
    background: #000;
    width: 25px;
    transform: translate(0px, 3px) rotate(225deg);
  }

  .header-burger.active .bline-3 {
    background: #000;
    transform: translate(0px, -2px) rotate(-45deg);
  }

  .header-menu {
    position: fixed;
    top: 0;
    bottom: 0;
    right: -200%;
    width: 100%;
    background: #fff;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
    z-index: 998;
  }

  .header-menu.active {
    right: 0;
  }

  .header-link {
    color: #333333;
    margin: 15px 0;
    border: none;
    width: auto;
  }

  .s-header {
    display: flex;
  }
}

@media screen and (max-width: 620px) {
  .header .tbtn {
    display: none;
  }
}

@media screen and (max-width: 480px) {
  .header-inner {
    padding: 15px 0;
  }

  .header-logo {
    width: 195px;
  }

  .header-logo__img {
    height: 40px;
    width: 40px;
  }

  .header-logo__text {
    padding-left: 10px;
    width: calc(100% - 40px);
  }

  .header-logo__name {
    font-size: 12px;
    line-height: 14px;
  }

  .header-logo__hint {
    font-size: 9px;
    line-height: 12px;
  }
}

body {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  color: #333333;
  background: #F2F2F2;
}

body.menuOpened {
  overflow-y: hidden;
}

img {
  max-width: 100%;
}

a,
input,
button,
select,
textarea {
  font-family: "Inter", sans-serif;
  color: #333333;
}

input::placeholder,
textarea::placeholder {
  font-family: "Inter", sans-serif;
}

.container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0 15px;
}

.info {
  background: url("../img/header.webp") no-repeat 50% 50%;
  background-size: cover;
  padding: 260px 0 205px;
}

.info-header {
  font-weight: 600;
  font-size: 60px;
  line-height: 66px;
  letter-spacing: -0.04em;
  max-width: 670px;
  margin-bottom: 30px;
}

.info-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 40px;
  list-style: none;
}

.info-list li {
  font-size: 16px;
  line-height: 22px;
  letter-spacing: -0.01em;
  position: relative;
  padding-left: 34px;
}

.info-list li:before {
  content: "";
  display: block;
  position: absolute;
  height: 24px;
  width: 24px;
  top: 0;
  left: 0;
  background: url("../img/icon-check.svg") no-repeat center;
}

@media screen and (max-width: 768px) {
  .info-header {
    font-size: 44px;
    line-height: 56px;
  }
}

@media screen and (max-width: 480px) {
  .info {
    padding-top: 100px;
  }

  .info-header {
    font-size: 32px;
    line-height: 40px;
  }
}

.count {
  padding: 80px 0;
  background: #fff;
}

.count-header {
  max-width: 780px;
  padding: 20px;
  font-weight: 600;
  font-size: 24px;
  line-height: 31px;
  letter-spacing: -0.02em;
  margin-bottom: 60px;
  border: 1px solid #DADADA;
  border-radius: 9px;
}

.count-header span {
  color: #F74E28;
}

.count-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

.count-item {
  width: 32%;
  display: flex;
  align-items: center;
}

.count-item__num {
  width: 162px;
  position: relative;
  font-weight: 600;
  font-size: 100px;
  letter-spacing: -0.04em;
  background: transparent;
  color: #F74E28;
  background: -webkit-linear-gradient(#F88878, #F74E28);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.count-item__hint {
  position: absolute;
  top: 0;
  right: 0;
  width: 63px;
  height: 33px;
  background: #6A564B;
  border-radius: 12px 0px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: -0.01em;
  color: #FFFFFF;
  -webkit-text-fill-color: #fff;
}

.count-item__text {
  width: calc(100% - 162px);
  font-size: 16px;
  line-height: 21px;
  letter-spacing: -0.01em;
  color: #666666;
  padding-left: 16px;
}

@media screen and (max-width: 980px) {
  .count-header {
    margin: 0 auto;
    text-align: center;
    margin-bottom: 30px;
  }

  .count-list {
    gap: 30px;
    flex-direction: column;
    align-items: center;
  }

  .count-item {
    max-width: 370px;
    width: 100%;
  }
}

@media screen and (max-width: 480px) {
  .count {
    padding: 30px 0;
  }

  .count-header {
    font-size: 18px;
    line-height: 22px;
  }

  .count-list {
    gap: 30px;
    flex-direction: column;
    align-items: center;
  }

  .count-item {
    max-width: 370px;
    width: 100%;
  }

  .count-item__num {
    font-size: 70px;
    width: 90px;
  }

  .count-item__hint {
    font-size: 12px;
    width: 38px;
    height: 22px;
    right: -15px;
  }

  .count-item__text {
    width: calc(100% - 70px);
    padding-left: 30px;
  }
}

.loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 99999;
  background-color: rgba(255, 255, 255, 0.4);
  -webkit-transition: 0.5s;
  transition: 0.5s;
  opacity: 0;
  pointer-events: none;
}

.loader-active {
  opacity: 1;
  pointer-events: none;
}

.loader-end {
  opacity: 0;
  pointer-events: none;
}

.sended {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  background-color: #fff;
  opacity: 0;
}

.sended-active {
  opacity: 1;
  padding: 20px 30px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

@media screen and (max-width: 750px) {
  .sended {
    width: 100%;
    max-width: 340px;
    padding: 15px 24px;
  }
}

.windows8 {
  position: absolute;
  width: 78px;
  height: 78px;
  margin: auto;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.windows8 .wBall {
  position: absolute;
  width: 74px;
  height: 74px;
  opacity: 0;
  transform: rotate(225deg);
  -o-transform: rotate(225deg);
  -ms-transform: rotate(225deg);
  -webkit-transform: rotate(225deg);
  -moz-transform: rotate(225deg);
  animation: orbit 3.9325s infinite;
  -o-animation: orbit 3.9325s infinite;
  -ms-animation: orbit 3.9325s infinite;
  -webkit-animation: orbit 3.9325s infinite;
  -moz-animation: orbit 3.9325s infinite;
}

.windows8 .wBall .wInnerBall {
  position: absolute;
  width: 10px;
  height: 10px;
  background: #ffcb18;
  left: 0px;
  top: 0px;
  border-radius: 10px;
}

.windows8 #wBall_1 {
  animation-delay: 0.856s;
  -o-animation-delay: 0.856s;
  -ms-animation-delay: 0.856s;
  -webkit-animation-delay: 0.856s;
  -moz-animation-delay: 0.856s;
}

.windows8 #wBall_2 {
  animation-delay: 0.173s;
  -o-animation-delay: 0.173s;
  -ms-animation-delay: 0.173s;
  -webkit-animation-delay: 0.173s;
  -moz-animation-delay: 0.173s;
}

.windows8 #wBall_3 {
  animation-delay: 0.3465s;
  -o-animation-delay: 0.3465s;
  -ms-animation-delay: 0.3465s;
  -webkit-animation-delay: 0.3465s;
  -moz-animation-delay: 0.3465s;
}

.windows8 #wBall_4 {
  animation-delay: 0.5095s;
  -o-animation-delay: 0.5095s;
  -ms-animation-delay: 0.5095s;
  -webkit-animation-delay: 0.5095s;
  -moz-animation-delay: 0.5095s;
}

.windows8 #wBall_5 {
  animation-delay: 0.693s;
  -o-animation-delay: 0.693s;
  -ms-animation-delay: 0.693s;
  -webkit-animation-delay: 0.693s;
  -moz-animation-delay: 0.693s;
}

@keyframes orbit {
  0% {
    opacity: 1;
    z-index: 99;
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

  7% {
    opacity: 1;
    -webkit-transform: rotate(300deg);
    transform: rotate(300deg);
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
    origin: 0%;
  }

  30% {
    opacity: 1;
    -webkit-transform: rotate(410deg);
    transform: rotate(410deg);
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    origin: 7%;
  }

  39% {
    opacity: 1;
    -webkit-transform: rotate(645deg);
    transform: rotate(645deg);
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
    origin: 30%;
  }

  70% {
    opacity: 1;
    -webkit-transform: rotate(770deg);
    transform: rotate(770deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
    origin: 39%;
  }

  75% {
    opacity: 1;
    -webkit-transform: rotate(900deg);
    transform: rotate(900deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
    origin: 70%;
  }

  76% {
    opacity: 0;
    -webkit-transform: rotate(900deg);
    transform: rotate(900deg);
  }

  100% {
    opacity: 0;
    -webkit-transform: rotate(900deg);
    transform: rotate(900deg);
  }
}

@-webkit-keyframes orbit {
  0% {
    opacity: 1;
    z-index: 99;
    -webkit-transform: rotate(180deg);
    -webkit-animation-timing-function: ease-out;
  }

  7% {
    opacity: 1;
    -webkit-transform: rotate(300deg);
    -webkit-animation-timing-function: linear;
    -webkit-origin: 0%;
  }

  30% {
    opacity: 1;
    -webkit-transform: rotate(410deg);
    -webkit-animation-timing-function: ease-in-out;
    -webkit-origin: 7%;
  }

  39% {
    opacity: 1;
    -webkit-transform: rotate(645deg);
    -webkit-animation-timing-function: linear;
    -webkit-origin: 30%;
  }

  70% {
    opacity: 1;
    -webkit-transform: rotate(770deg);
    -webkit-animation-timing-function: ease-out;
    -webkit-origin: 39%;
  }

  75% {
    opacity: 1;
    -webkit-transform: rotate(900deg);
    -webkit-animation-timing-function: ease-out;
    -webkit-origin: 70%;
  }

  76% {
    opacity: 0;
    -webkit-transform: rotate(900deg);
  }

  100% {
    opacity: 0;
    -webkit-transform: rotate(900deg);
  }
}

.faq {
  padding: 60px 0;
}

.faq-list {
  position: relative;
  z-index: 5;
}

.faq .section-header {
  position: relative;
  z-index: 5;
}

.faq-item {
  background: #FFFFFF;
  border-radius: 8px;
  padding: 25px 55px 25px 60px;
  margin-bottom: 12px;
  cursor: pointer;
}

.faq-item:last-child {
  margin-bottom: 0;
}

.faq-item__question {
  position: relative;
  cursor: pointer;
}

.faq-item__question-text {
  font-weight: 500;
  font-size: 18px;
  line-height: 130%;
  letter-spacing: -0.01em;
  transition: all 0.3s ease;
  position: relative;
}

.faq-item__question-text:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: -36px;
  height: 24px;
  width: 24px;
  background: url("../img/icon-question.svg") no-repeat center;
  background-size: contain;
}

.faq-item__question-arrow {
  position: absolute;
  top: 5px;
  right: -26px;
  height: 18px;
  width: 18px;
  transition: all 0.3s ease;
}

.faq-item__question-arrow svg {
  width: 100%;
  height: 100%;
}

.faq-item__question-arrow svg * {
  transition: all 0.3s ease;
}

.faq-item.active .faq-item__question-arrow {
  transform: rotate(225deg);
}

.faq-item__answer {
  display: none;
  font-size: 15px;
  line-height: 150%;
  letter-spacing: -0.01em;
  margin-top: 22px;
  color: #666666;
}

.faq-list--card .faq-item {
  border-color: #6A564B;
}

.faq-list--card .faq-item__question-text {
  text-transform: uppercase;
  padding-left: 0;
}

.faq-list--card .faq-item__answer {
  padding-left: 0;
  padding-right: 0;
  padding-bottom: 30px;
}

.faq-list--card p {
  margin-bottom: 10px;
}

.faq-list--card .faq-item__answer-list {
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 16px;
  padding-left: 25px;
  list-style: none;
}

.faq-list--card .faq-item__answer-list li {
  position: relative;
}

.faq-list--card .faq-item__answer-list li:before {
  content: "";
  display: block;
  position: absolute;
  height: 4px;
  width: 4px;
  background: #333333;
  top: 11px;
  left: -14px;
  border-radius: 50%;
}

.faq-list--card .faq-item__answer-header {
  font-size: 18px;
  line-height: 26px;
  margin-bottom: 10px;
  text-transform: uppercase;
}

@media screen and (max-width: 480px) {
  .faq {
    padding: 30px 0;
  }

  .faq-list {
    padding-top: 0;
  }

  .faq-item {
    padding: 15px 35px 15px 35px;
  }

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

  .faq-item__question-text:before {
    height: 20px;
    width: 20px;
    left: -27px;
  }

  .faq-item__question-arrow {
    right: -15px;
    height: 14px;
    width: 14px;
  }

  .faq-item__answer {
    font-size: 13px;
    margin-top: 12px;
  }
}

.overlay {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, .7);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: .2s;
}

.overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.overlay__close {
  height: 38px;
  width: 38px;
  border: 1px solid #DDDDDD;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  right: 17px;
  top: 17px;
}

.overlay__close svg path {
  transition: .2s;
}

.overlay__close:hover svg path {
  fill: #f74e28;
}

.modal {
  max-width: 400px;
  width: 100%;
  padding: 60px 50px;
  background: #FFFFFF;
  box-shadow: 0px 30px 40px rgba(0, 0, 0, 0.1);
  position: relative;
  box-sizing: border-box;
  vertical-align: middle;
}

.modal.active {
  display: block !important;
}

.modal-form {
  display: flex;
  flex-direction: column;
}

.modal-header {
  font-weight: 600;
  font-size: 24px;
  line-height: 130%;
  text-align: center;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}

.modal-subheader {
  font-weight: 400;
  font-size: 14px;
  line-height: 130%;
  text-align: center;
  letter-spacing: -0.01em;
  color: #666666;
  margin-bottom: 30px;
}

.modal-inp {
  font-weight: 500;
  font-size: 15px;
  letter-spacing: -0.01em;
  width: 100%;
  height: 64px;
  padding: 20px 22px;
  background: #EFEFEF;
  border-radius: 6px;
  border: 1px solid transparent;
  margin-bottom: 20px;
}

.modal-inp.err {
  border-color: red;
  box-shadow: 0 0 15px red;
}

.modal-inp:focus {
  border-color: #F74E28;
}

.modal-inp::placeholder {
  color: #8D8D8D;
}

.modal .btn {
  width: 100%;
}

.modal .btn-inner {
  padding: 20px;
}

@media screen and (max-width: 480px) {
  .modal {
    padding: 60px 10px;
  }
}

@media screen and (max-height: 600px) {
  .overlay {
    align-items: flex-start;
    box-sizing: border-box;
    padding-top: 10px;
  }

  .modal {
    max-height: calc(100vh - 10px) !important;
    overflow-y: auto
  }
}

.reviews {
  padding: 60px 0 100px;
}

.reviews-slider .slick-list {
  margin: 0 -15px;
}

.reviews-slider .slick-prev {
  height: 60px;
  width: 60px;
  border: 1px solid #DADADA;
  border-radius: 66px;
  z-index: 5;
  left: -90px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.reviews-slider .slick-prev:before {
  content: "";
  height: 36px;
  width: 36px;
  display: block;
  background: url("../img/arrow-left.svg") no-repeat center;
  background-size: contain;
  opacity: 1;
  filter: grayscale(1);
  transition: all 0.3s ease;
}

.reviews-slider .slick-prev:hover:before {
  filter: grayscale(0);
}

.reviews-slider .slick-next {
  height: 60px;
  width: 60px;
  border: 1px solid #DADADA;
  border-radius: 66px;
  z-index: 5;
  right: -90px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.reviews-slider .slick-next:before {
  content: "";
  height: 36px;
  width: 36px;
  display: block;
  background: url("../img/arrow-right.svg") no-repeat center;
  background-size: contain;
  opacity: 1;
  filter: grayscale(1);
  transition: all 0.3s ease;
}

.reviews-slider .slick-next:hover:before {
  filter: grayscale(0);
}

.reviews-slider .slick-dots {
  bottom: -45px;
}

.reviews-slider .slick-dots li button:before {
  font-size: 8px;
  color: #F74E28;
}

.reviews-slide {
  margin: 0 15px;
  padding: 30px;
  background: #fff;
  box-shadow: 0px 15px 15px rgba(0, 0, 0, 0.04);
  border-radius: 8px;
  display: flex !important;
  flex-direction: column;
}

.reviews-slide__img {
  width: 100%;
  height: 230px;
  margin-bottom: 45px;
}

.reviews-slide__img img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: 8px;
}

.reviews-slide__text {
  font-size: 18px;
  line-height: 160%;
  letter-spacing: -0.01em;
  color: #666666;
  margin-bottom: 10px;
  max-height: 250px;
  overflow-y: hidden;
}

.reviews-slide__more {
  display: inline-block;
  margin-bottom: 30px;
  border: none;
  background-color: transparent;
  margin-right: auto;
  color: #F74E28;
}

.reviews-slide__author {
  display: inline-flex;
  padding: 8px 16px;
  background: #F2F2F2;
  border-radius: 6px;
  font-size: 14px;
  line-height: 150%;
  font-style: italic;
  letter-spacing: -0.01em;
}

@media screen and (max-width: 1366px) {
  .reviews-slider .slick-arrow {
    display: none !important;
  }
}

@media screen and (max-width: 480px) {
  .reviews {
    padding: 30px 0 60px;
  }

  .reviews .section-header {
    margin-bottom: 22px;
  }

  .reviews-slide {
    padding: 15px;
  }

  .reviews-slide__img {
    height: 130px;
    margin-bottom: 15px;
  }

  .reviews-slide__text {
    font-size: 14px;
  }
}

.area-list {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin-top: 20px;
}

.area-list .item-name {
  width: calc(100% / 12 * 3 - 20px);
  margin-left: 10px;
  margin-right: 10px;
  margin-bottom: 15px;
  display: block;
  text-align: left;
  font-size: 16px;
  transition: .2s;
}

.area-list .item-name:hover {
  text-decoration: underline;
  color: #F74E28;
}

.modal.area-modal {
  max-width: 800px;
  max-height: 580px;
  overflow-y: auto;
}

.about-info li {
  font-size: 16px;
  color: #666;
  line-height: 1.5;
}

@media screen and (max-width: 768px) {
  .about-info li {
    font-size: 14px;
  }

  .area-list .item-name {
    width: calc(100% / 12 * 4 - 20px);
  }
}

@media screen and (max-width: 480px) {
  .area-list .item-name {
    width: calc(50% - 20px);
  }
}