@import url(../fonts/logexim.css);
* {
  padding: 0px;
  margin: 0px;
  border: 0px;
}

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

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

html {
  font-size: 18px;
}

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

body {
  line-height: 1;
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

input,
button,
textarea {
  font-family: "Montserrat", sans-serif;
  font-size: inherit;
}

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

button {
  cursor: pointer;
  background-color: inherit;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

a,
a:visited {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

ul li {
  list-style: none;
}

img {
  vertical-align: top;
  max-width: 100%;
  height: auto;
}

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

html {
  overflow-y: scroll;
}
@media (max-width: 1100px) {
  html {
    font-size: 16px;
  }
}
@media (max-width: 520px) {
  html {
    font-size: 14px;
  }
}

body {
  color: #1D1D1D;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
}
body._lock {
  overflow: hidden;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
}
@media (max-width: 1292px) {
  .container {
    max-width: 1280px;
  }
}
@media (max-width: 1280px) {
  .container {
    max-width: 1100px;
    padding: 0 20px;
  }
}
@media (max-width: 1100px) {
  .container {
    max-width: 900px;
    padding: 0 20px;
  }
}
@media (max-width: 680px) {
  .container {
    max-width: none;
    padding: 0 20px;
  }
}
@media (max-width: 520px) {
  .container {
    padding: 0 10px;
  }
}

.wrapper {
  width: 100%;
  min-height: 100%;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: relative;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}

b {
  font-weight: 600;
}

._error {
  font-size: 14px;
  color: red;
  font-weight: 600;
}

.logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
.logo__icon {
  width: 46px;
  height: 46px;
}
.logo__icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.logo__name {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.logo__top {
  line-height: 1em;
  text-transform: uppercase;
  color: #D0171C;
  font-weight: 900;
  font-size: 26px;
}
@media (max-width: 1280px) {
  .logo__top {
    font-size: calc(16px + 10 * ((100vw - 360px) / 920));
  }
}
.logo__bottom {
  line-height: 1em;
  font-size: 16px;
  letter-spacing: 0.01em;
  font-weight: 600;
  color: #FFFFFF;
  text-transform: lowercase;
}
@media (max-width: 1280px) {
  .logo__bottom {
    font-size: calc(10px + 6 * ((100vw - 360px) / 920));
  }
}
.logo_sticky {
  display: none;
}

.btn-burger {
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 46px;
  width: 46px;
  min-width: 46px;
  border-radius: 50%;
  background: #D0171C;
}
.btn-burger__icon {
  width: 24px;
  height: 18px;
  position: relative;
}
.btn-burger__line {
  height: 2px;
  width: 100%;
  position: absolute;
  right: 0;
  background: #FFFFFF;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.btn-burger__line_1 {
  top: 0;
}
.btn-burger__line_2 {
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.btn-burger__line_3 {
  bottom: 0;
}
.btn-burger__line_4 {
  top: 50%;
  width: 50%;
  opacity: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.btn-burger._active .btn-burger__line {
  background: #FFFFFF;
}
.btn-burger._active .btn-burger__line_1, .btn-burger._active .btn-burger__line_3 {
  opacity: 0;
}
.btn-burger._active .btn-burger__line_2 {
  -webkit-transform: rotateZ(45deg);
          transform: rotateZ(45deg);
  width: 100%;
}
.btn-burger._active .btn-burger__line_4 {
  width: 100%;
  -webkit-transform: rotateZ(-45deg);
          transform: rotateZ(-45deg);
  opacity: 1;
}
.btn-burger_sticky {
  display: none !important;
}
@media (max-width: 1100px) {
  .btn-burger {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 50px;
  padding: 1em 2em;
  max-width: 100%;
  border: none;
  gap: 10px;
  background: #D0171C;
  color: #FFFFFF;
  font-size: 16px;
  font-weight: 600;
  line-height: 1em;
  border-radius: 2px;
  cursor: pointer;
  -webkit-transition: all ease-in 0.2s;
  transition: all ease-in 0.2s;
  -webkit-box-shadow: 0 2px 10px rgba(208, 23, 28, 0.2);
          box-shadow: 0 2px 10px rgba(208, 23, 28, 0.2);
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  position: relative;
  white-space: nowrap;
}
.btn:focus {
  outline: 0;
}
.btn:hover {
  background-color: #a21216;
}
.btn:before, .btn:after {
  position: absolute;
  content: "";
  display: block;
  width: 140%;
  height: 100%;
  left: -20%;
  z-index: -1000;
  -webkit-transition: all ease-in-out 0.5s;
  transition: all ease-in-out 0.5s;
  background-repeat: no-repeat;
}
.btn:before {
  display: none;
  top: -75%;
  background-image: radial-gradient(circle, #ff0008 20%, transparent 20%), radial-gradient(circle, transparent 20%, #ff0008 20%, transparent 30%), radial-gradient(circle, #ff0008 20%, transparent 20%), radial-gradient(circle, #ff0008 20%, transparent 20%), radial-gradient(circle, transparent 10%, #ff0008 15%, transparent 20%), radial-gradient(circle, #ff0008 20%, transparent 20%), radial-gradient(circle, #ff0008 20%, transparent 20%), radial-gradient(circle, #ff0008 20%, transparent 20%), radial-gradient(circle, #ff0008 20%, transparent 20%);
  background-size: 10% 10%, 20% 20%, 15% 15%, 20% 20%, 18% 18%, 10% 10%, 15% 15%, 10% 10%, 18% 18%;
}
.btn:after {
  display: none;
  bottom: -75%;
  background-image: radial-gradient(circle, #ff0008 20%, transparent 20%), radial-gradient(circle, #ff0008 20%, transparent 20%), radial-gradient(circle, transparent 10%, #ff0008 15%, transparent 20%), radial-gradient(circle, #ff0008 20%, transparent 20%), radial-gradient(circle, #ff0008 20%, transparent 20%), radial-gradient(circle, #ff0008 20%, transparent 20%), radial-gradient(circle, #ff0008 20%, transparent 20%);
  background-size: 15% 15%, 20% 20%, 18% 18%, 20% 20%, 15% 15%, 10% 10%, 20% 20%;
}
.btn.animate:before {
  display: block;
  -webkit-animation: topBubbles ease-in-out 0.75s forwards;
          animation: topBubbles ease-in-out 0.75s forwards;
}
.btn.animate:after {
  display: block;
  -webkit-animation: bottomBubbles ease-in-out 0.75s forwards;
          animation: bottomBubbles ease-in-out 0.75s forwards;
}
.btn__lg {
  display: block;
}
@media (max-width: 1100px) {
  .btn__lg {
    display: none;
  }
}
.btn__mb {
  display: none;
}
@media (max-width: 1100px) {
  .btn__mb {
    display: block;
  }
}
.btn__mb i {
  font-size: 26px;
}
.btn.call_sticky {
  display: none;
}
.btn.call_sticky::after, .btn.call_sticky::before {
  display: none;
}

.form__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 40px;
  margin-bottom: 50px;
}
.form__row:last-of-type {
  margin-bottom: 0;
}
.form__row_end {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
@media (max-width: 1100px) {
  .form__row {
    gap: 20px;
  }
}
@media (max-width: 680px) {
  .form__row {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
  }
}
.form_col-9 {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 90%;
          flex: 0 1 90%;
}
@media (max-width: 680px) {
  .form_col-9 {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 100%;
            flex: 1 1 100%;
  }
}
.form_col-8 {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 80%;
          flex: 0 1 80%;
}
@media (max-width: 680px) {
  .form_col-8 {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 100%;
            flex: 1 1 100%;
  }
}
.form_col-7 {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 70%;
          flex: 0 1 70%;
}
@media (max-width: 680px) {
  .form_col-7 {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 100%;
            flex: 1 1 100%;
  }
}
.form_col-6 {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 60%;
          flex: 0 1 60%;
}
@media (max-width: 680px) {
  .form_col-6 {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 100%;
            flex: 1 1 100%;
  }
}
.form_col-5 {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 50%;
          flex: 0 1 50%;
}
@media (max-width: 680px) {
  .form_col-5 {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 100%;
            flex: 1 1 100%;
  }
}
.form_col-4 {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 40%;
          flex: 0 1 40%;
}
@media (max-width: 680px) {
  .form_col-4 {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 100%;
            flex: 1 1 100%;
  }
}
.form_col-3 {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 30%;
          flex: 0 1 30%;
}
@media (max-width: 680px) {
  .form_col-3 {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 100%;
            flex: 1 1 100%;
  }
}
.form_col-2 {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 20%;
          flex: 0 1 20%;
}
@media (max-width: 680px) {
  .form_col-2 {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 100%;
            flex: 1 1 100%;
  }
}
.form_col-1 {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 10%;
          flex: 0 1 10%;
}
@media (max-width: 680px) {
  .form_col-1 {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 100%;
            flex: 1 1 100%;
  }
}
.form__swap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 20px;
}
@media (max-width: 680px) {
  .form__swap {
    gap: 10px;
    margin-bottom: 40px;
  }
}
@media (max-width: 520px) {
  .form__swap {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
@media (max-width: 520px) {
  .form__swap > *:nth-child(1) {
    width: calc(80% - 10px);
  }
}
@media (max-width: 520px) {
  .form__swap > *:nth-child(2) {
    width: 20%;
  }
}
@media (max-width: 520px) {
  .form__swap > *:nth-child(3) {
    margin-top: 40px;
    width: 100%;
  }
}
.form__submit {
  margin: 20px 0;
}
@media (max-width: 680px) {
  .form__submit {
    margin: 0;
  }
}

.swap {
  height: 50px;
  width: 50px;
  min-width: 50px;
  margin: 20px 0;
  background: #D0171C;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 2px;
}
.swap i {
  color: #FFFFFF;
  font-size: 20px;
}
.swap:focus {
  outline: 0;
}
.swap:hover {
  background-color: #a21216;
}

.form-text {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  position: relative;
  width: 100%;
  margin: 20px 0;
}
.form-text__desc {
  font-size: 14px;
  font-weight: 500;
  line-height: 1em;
  position: absolute;
}
.form-text__desc_top {
  top: 0;
  -webkit-transform: translateY(calc(-100% - 10px));
          transform: translateY(calc(-100% - 10px));
}
.form-text__desc_bottom {
  bottom: 0;
  -webkit-transform: translateY(calc(100% + 10px));
          transform: translateY(calc(100% + 10px));
}
.form-text input {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 50px;
  border-radius: 2px;
  border: 1px solid #e9e9e9;
  padding: 20px;
  width: 100%;
  min-width: 100%;
  max-width: 100%;
  -webkit-box-shadow: 0px 0px 10px 0px rgba(34, 60, 80, 0.1) inset;
          box-shadow: 0px 0px 10px 0px rgba(34, 60, 80, 0.1) inset;
}

.form-radio {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  position: relative;
  cursor: pointer;
}
.form-radio__label {
  width: 20px;
  min-width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #FFFFFF;
  border: 1px solid #e9e9e9;
  -webkit-box-shadow: 0px 0px 10px 0px rgba(34, 60, 80, 0.1) inset;
          box-shadow: 0px 0px 10px 0px rgba(34, 60, 80, 0.1) inset;
  position: relative;
}
.form-radio input {
  visibility: hidden;
  opacity: 0;
  position: absolute;
}
.form-radio input:checked + .form-radio__label {
  border-color: rgba(208, 23, 28, 0.5);
}
.form-radio input:checked + .form-radio__label::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-5px, -5px);
          transform: translate(-5px, -5px);
  width: 10px;
  height: 10px;
  background: #D0171C;
  border-radius: 50%;
}

.form-result {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  gap: 20px;
  margin: 20px 0;
}
.form-result__val {
  height: 50px;
  padding: 0 20px;
  border-radius: 2px;
  border: 1px solid #e9e9e9;
  background: #e9e9e9;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-width: 150px;
  text-align: center;
  font-weight: 500;
}
@media (max-width: 520px) {
  .form-result__val {
    width: 100%;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}
.form-result__desc {
  font-weight: 500;
  color: #b6b6b6;
}
.form-result__symb {
  margin-left: 10px;
  font-weight: 600;
}
@media (max-width: 680px) {
  .form-result {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}

.modal {
  display: none;
  border-radius: 2px;
}
.modal .is-close-btn {
  top: 30px !important;
  right: 20px !important;
  background: transparent !important;
  color: #838383 !important;
}
.modal .is-close-btn:hover {
  color: #D0171C !important;
}
.modal__wrapper {
  background: #FFFFFF;
  max-width: 660px;
  border-radius: 2px;
}
@media (max-width: 680px) {
  .modal__wrapper {
    padding: 40px;
  }
}
.modal__wrapper_img {
  padding: 0 0 40px 0;
}
.modal__wrapper_img .modal__title {
  text-align: left;
}
.modal__title {
  margin-bottom: 20px;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.2em;
}
.modal__title span {
  font-size: 16px;
  opacity: 0.5;
  display: inline-block;
  margin-left: 20px;
  font-weight: 500;
}
@media (max-width: 680px) {
  .modal__title {
    font-size: 18px;
  }
}
.modal__text {
  padding-right: 40px;
  padding-left: 40px;
  font-size: 16px;
  line-height: 1.6em;
}
@media (max-width: 680px) {
  .modal__text {
    padding-right: 20px;
    padding-left: 20px;
  }
}
.modal__img {
  width: 100%;
  margin-bottom: 40px;
}
.modal__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 520px) {
  .modal__img {
    margin-bottom: 20px;
  }
}
.modal .form__wrapper {
  margin: 0 auto;
  width: 320px;
  max-width: 100%;
}
@media (max-width: 680px) {
  .modal .form__wrapper {
    width: 100%;
    padding-right: 40px;
    padding-left: 40px;
  }
}
@media (max-width: 520px) {
  .modal .form__wrapper {
    margin: 0 auto;
    padding: 0 20px;
  }
}
.modal .form__note {
  color: #1D1D1D;
}
.modal .form__note a {
  color: #D0171C;
  border-color: rgba(208, 23, 28, 0.3);
}
.modal .form__note a:hover {
  border-color: #D0171C;
}
.modal__form {
  margin-top: 40px;
}
@media (max-width: 520px) {
  .modal {
    width: 100%;
  }
}

@-webkit-keyframes topBubbles {
  0% {
    background-position: 5% 90%, 10% 90%, 10% 90%, 15% 90%, 25% 90%, 25% 90%, 40% 90%, 55% 90%, 70% 90%;
  }
  50% {
    background-position: 0% 80%, 0% 20%, 10% 40%, 20% 0%, 30% 30%, 22% 50%, 50% 50%, 65% 20%, 90% 30%;
  }
  100% {
    background-position: 0% 70%, 0% 10%, 10% 30%, 20% -10%, 30% 20%, 22% 40%, 50% 40%, 65% 10%, 90% 20%;
    background-size: 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%;
  }
}

@keyframes topBubbles {
  0% {
    background-position: 5% 90%, 10% 90%, 10% 90%, 15% 90%, 25% 90%, 25% 90%, 40% 90%, 55% 90%, 70% 90%;
  }
  50% {
    background-position: 0% 80%, 0% 20%, 10% 40%, 20% 0%, 30% 30%, 22% 50%, 50% 50%, 65% 20%, 90% 30%;
  }
  100% {
    background-position: 0% 70%, 0% 10%, 10% 30%, 20% -10%, 30% 20%, 22% 40%, 50% 40%, 65% 10%, 90% 20%;
    background-size: 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%;
  }
}
@-webkit-keyframes bottomBubbles {
  0% {
    background-position: 10% -10%, 30% 10%, 55% -10%, 70% -10%, 85% -10%, 70% -10%, 70% 0%;
  }
  50% {
    background-position: 0% 80%, 20% 80%, 45% 60%, 60% 100%, 75% 70%, 95% 60%, 105% 0%;
  }
  100% {
    background-position: 0% 90%, 20% 90%, 45% 70%, 60% 110%, 75% 80%, 95% 70%, 110% 10%;
    background-size: 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%;
  }
}
@keyframes bottomBubbles {
  0% {
    background-position: 10% -10%, 30% 10%, 55% -10%, 70% -10%, 85% -10%, 70% -10%, 70% 0%;
  }
  50% {
    background-position: 0% 80%, 20% 80%, 45% 60%, 60% 100%, 75% 70%, 95% 60%, 105% 0%;
  }
  100% {
    background-position: 0% 90%, 20% 90%, 45% 70%, 60% 110%, 75% 80%, 95% 70%, 110% 10%;
    background-size: 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%;
  }
}
.header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 11;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0)), to(rgb(0, 0, 0)));
  background: linear-gradient(0deg, rgba(0, 0, 0, 0) 0%, rgb(0, 0, 0) 100%);
}
.header .btn {
  height: 46px;
}

.header-top {
  padding: 40px 0 20px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  overflow: hidden;
}
.header-top__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 40px;
}
@media (max-width: 520px) {
  .header-top__wrapper {
    gap: 20px;
  }
}
.header-top__phones {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  margin-left: auto;
}
.header-top__phones a {
  color: #FFFFFF;
  font-weight: 500;
  font-size: 16px;
  -webkit-transition: color 0.2s;
  transition: color 0.2s;
}
.header-top__phones a i {
  margin-right: 10px;
}
.header-top__phones a:hover {
  color: #D0171C;
}
@media (max-width: 1100px) {
  .header-top__phones {
    display: none;
  }
}
.header-top__action {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
}
@media (max-width: 1100px) {
  .header-top__action .btn {
    height: 46px;
    width: 46px;
    min-width: 46px;
    padding: 0;
    border-radius: 50%;
  }
}
@media (max-width: 1100px) {
  .header-top__action {
    margin-left: auto;
  }
}

.header-bottom {
  padding: 20px 0 100px;
}
.header-bottom__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-height: 500px) {
  .header-bottom {
    padding: 20px 0;
  }
}

.nav-main__menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 40px;
}
.nav-main__submenu {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  top: 30px;
  left: 0;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  background: #FFFFFF;
  border-radius: 2px;
  padding: 10px 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-transform: translateY(40px);
          transform: translateY(40px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.nav-main__submenu::before {
  content: "";
  display: block;
  position: absolute;
  top: -20px;
  left: 0;
  right: 0;
  height: 20px;
}
.nav-main__sublink {
  padding: 10px 18px;
  color: #1D1D1D;
  display: block;
  -webkit-transition: color 0.2s;
  transition: color 0.2s;
  font-size: 16px;
  font-weight: 500;
}
.nav-main__sublink:hover {
  color: #D0171C;
}
.nav-main__item {
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px;
  cursor: pointer;
  padding: 3px 6px 0;
}
.nav-main__item::before {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  height: 0;
  z-index: -1;
  width: 100%;
  background: #FFFFFF;
  -webkit-transition: height 250ms;
  transition: height 250ms;
  border-radius: 2px;
}
.nav-main__item:hover:before {
  height: 100%;
}
.nav-main__item:hover .nav-main__link {
  color: #D0171C;
  border-color: rgba(208, 23, 28, 0.1);
}
.nav-main__item:hover .nav-main__toggle {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.nav-main__item:hover .nav-main__toggle i {
  color: #D0171C;
}
.nav-main__item:hover .nav-main__submenu {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  pointer-events: auto;
}
.nav-main__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #FFFFFF;
  font-weight: 600;
  font-size: 16px;
  padding-bottom: 3px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  gap: 5px;
}
.nav-main__toggle {
  display: block;
  position: relative;
  -webkit-transition: -webkit-transform 0.2s;
  transition: -webkit-transform 0.2s;
  transition: transform 0.2s;
  transition: transform 0.2s, -webkit-transform 0.2s;
}
.nav-main__toggle i {
  color: #FFFFFF;
  font-weight: 400;
  font-size: 14px;
  position: relative;
}
@media (max-width: 1100px) {
  .nav-main {
    display: none;
  }
}

._sticky-menu .header {
  position: fixed;
  top: -60px;
  left: 0;
  right: 0;
  background: #FFFFFF;
  z-index: 21;
  height: 60px;
  -webkit-transform: translateY(60px);
          transform: translateY(60px);
}
._sticky-menu .header-bottom {
  padding: 10px 0;
  background: #FFFFFF;
  -webkit-box-shadow: 0 2px 4px rgba(29, 29, 29, 0.1);
          box-shadow: 0 2px 4px rgba(29, 29, 29, 0.1);
}
._sticky-menu .header-top {
  display: none;
}
._sticky-menu .nav-main__submenu {
  border-top: 1px solid #eeeeee;
  top: 42px;
  border-top-right-radius: 0;
  border-top-left-radius: 0;
  background: #FFFFFF;
  -webkit-box-shadow: 0 4px 8px rgba(29, 29, 29, 0.1);
          box-shadow: 0 4px 8px rgba(29, 29, 29, 0.1);
}
._sticky-menu .nav-main__submenu::before {
  top: -30px;
  height: 30px;
}
._sticky-menu .nav-main__item span i {
  color: #1D1D1D;
  font-weight: 400;
  font-size: 14px;
  position: relative;
}
._sticky-menu .nav-main__item:hover span i {
  color: #D0171C;
}
._sticky-menu .nav-main__link {
  color: #1D1D1D;
}
@media (max-width: 1280px) {
  ._sticky-menu .nav-main {
    display: none;
  }
}
._sticky-menu .logo_sticky {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-right: 40px;
}
._sticky-menu .logo_sticky .logo__name {
  display: none;
}
._sticky-menu .logo_sticky .logo__name .logo__top {
  color: #1D1D1D;
}
@media (max-width: 1280px) {
  ._sticky-menu .logo_sticky .logo__name {
    display: block;
  }
}
._sticky-menu .call_sticky {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  margin-left: auto;
  margin-right: 10px;
}
._sticky-menu .call_sticky .btn__lg {
  display: block;
}
@media (max-width: 1280px) {
  ._sticky-menu .call_sticky .btn__lg {
    display: none;
  }
}
._sticky-menu .call_sticky .btn__mb {
  display: none;
}
@media (max-width: 1280px) {
  ._sticky-menu .call_sticky .btn__mb {
    display: block;
  }
}
._sticky-menu .call_sticky .btn__mb i {
  font-size: 26px;
}
@media (max-width: 1280px) {
  ._sticky-menu .call_sticky {
    border-radius: 50%;
    width: 46px;
    min-width: 46px;
    padding: 0;
  }
}
@media (max-width: 1280px) {
  ._sticky-menu .btn-burger_sticky {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
}

.modal-panel {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  position: fixed;
  z-index: 20;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.modal-panel__overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.8);
  opacity: 0;
  -webkit-transition: opacity 0.1s;
  transition: opacity 0.1s;
}
.modal-panel__content {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 21;
  background: #FFFFFF;
  padding: 20px 0;
  width: 400px;
  max-width: 100%;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
  padding-bottom: 120px;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
}
.modal-panel__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 0 20px;
  gap: 40px;
}
.modal-panel__header .logo__top {
  color: #1D1D1D;
}
.modal-panel__contacts {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 20px 20px;
  margin: 20px 0 0;
  gap: 20px;
}
.modal-panel__contacts a {
  color: #1D1D1D;
  font-weight: 500;
  font-size: 14px;
  -webkit-transition: color 0.2s;
  transition: color 0.2s;
}
.modal-panel__contacts a i {
  margin-right: 5px;
  color: #D0171C;
}
.modal-panel .btn-burger {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  top: 40px;
  left: -66px;
  z-index: 20;
}
@media (max-width: 500px) {
  .modal-panel .btn-burger {
    left: unset;
    right: 20px;
    top: 20px;
    background: rgba(29, 29, 29, 0.2);
  }
}

.nav-modal {
  overflow-y: auto;
  overscroll-behavior-y: contain;
  height: 100%;
}
.nav-modal__item {
  position: relative;
}
.nav-modal__item span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 50px;
  border-left: 1px solid #e9e9e9;
}
.nav-modal__item span i {
  font-size: 16px;
  color: #1D1D1D;
  -webkit-transition: -webkit-transform 0.2s;
  transition: -webkit-transform 0.2s;
  transition: transform 0.2s;
  transition: transform 0.2s, -webkit-transform 0.2s;
}
.nav-modal__item span._active i {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.nav-modal__item:first-of-type .nav-modal__link {
  border-top: 1px solid #e9e9e9;
}
.nav-modal__link {
  display: block;
  padding: 15px 20px;
  color: #1D1D1D;
  font-weight: 500;
  line-height: 1.2em;
  position: relative;
  border-bottom: 1px solid #e9e9e9;
}
.nav-modal__submenu {
  display: none;
  background: #f7f7f7;
}
.nav-modal__sublink {
  display: block;
  padding: 15px 40px 15px 60px;
  color: #1D1D1D;
  line-height: 1.2em;
  border-bottom: 1px solid #e9e9e9;
}

._modal-open {
  overflow: hidden;
  height: auto;
}
._modal-open .wrapper {
  -webkit-transform: translateX(-400px);
          transform: translateX(-400px);
}
._modal-open .modal-panel {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
._modal-open .modal-panel__content {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
._modal-open .modal-panel__overlay {
  opacity: 1;
}

.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
  z-index: 10;
}
.hero .container {
  height: 100vh;
}
.hero::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  background: rgba(29, 29, 29, 0.3);
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
}
.hero__bg {
  height: 100vh;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1;
}
.hero__content {
  position: relative;
  height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  z-index: 10;
  pointer-events: none;
}
.hero__title {
  color: #FFFFFF;
  font-size: 72px;
  font-size: 72px;
  font-weight: 800;
  line-height: 1em;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 1280px) {
  .hero__title {
    font-size: calc(40px + 32 * ((100vw - 360px) / 920));
  }
}
.hero__title span {
  font-size: 48px;
}
@media (max-width: 1280px) {
  .hero__title span {
    font-size: calc(24px + 24 * ((100vw - 360px) / 920));
  }
}
@media (max-height: 500px) {
  .hero__title span {
    font-size: 40px;
  }
}
@media (max-height: 500px) and (max-width: 1280px) {
  .hero__title span {
    font-size: calc(16px + 24 * ((100vw - 360px) / 920));
  }
}
@media (max-height: 500px) {
  .hero__title {
    font-size: 48px;
  }
}
@media (max-height: 500px) and (max-width: 1280px) {
  .hero__title {
    font-size: calc(24px + 24 * ((100vw - 360px) / 920));
  }
}
.hero__desc {
  color: #FFFFFF;
  font-size: 28px;
  margin-top: 40px;
  line-height: 1.2em;
  font-weight: 600;
  text-align: center;
}
@media (max-width: 1280px) {
  .hero__desc {
    font-size: calc(20px + 8 * ((100vw - 360px) / 920));
  }
}
@media (max-height: 500px) {
  .hero__desc {
    margin-top: 10px;
    font-size: 22px;
  }
}
@media (max-height: 500px) and (max-width: 1280px) {
  .hero__desc {
    font-size: calc(14px + 8 * ((100vw - 360px) / 920));
  }
}
.hero__scroll {
  position: absolute;
  z-index: 4;
  bottom: 10vh;
  left: calc(50% - 22px);
  width: 44px;
  height: 44px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 5px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  cursor: pointer;
}
.hero__scroll i {
  color: #FFFFFF;
  font-size: 18px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  position: relative;
  -webkit-animation: animateBtnArrow 0.8s infinite linear;
          animation: animateBtnArrow 0.8s infinite linear;
}
.hero__scroll:hover {
  background: #FFFFFF;
}
.hero__scroll:hover i {
  color: #D0171C;
  -webkit-transform: translateY(10px);
          transform: translateY(10px);
  -webkit-animation: unset;
          animation: unset;
}

.services {
  position: relative;
  top: -40px;
  z-index: 20;
}
.services__wrapper {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 20px 1fr;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
@media (max-width: 680px) {
  .services__wrapper {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}
.services__item {
  padding: 40px;
  background: #FFFFFF;
  border-radius: 2px;
  border: 1px solid #e9e9e9;
  -webkit-box-shadow: 0 2px 4px rgba(29, 29, 29, 0.1);
          box-shadow: 0 2px 4px rgba(29, 29, 29, 0.1);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 40px;
}
@media (max-width: 1100px) {
  .services__item {
    gap: 20px;
    padding: 20px;
  }
}
.services i {
  font-size: 80px;
  color: #D0171C;
}
@media (max-width: 1100px) {
  .services i {
    font-size: 70px;
  }
}
@media (max-width: 680px) {
  .services i {
    font-size: 50px;
  }
}
.services h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
}
@media (max-width: 1100px) {
  .services h3 {
    font-size: 18px;
  }
}
.services p {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4em;
}
@media (max-width: 1100px) {
  .services p {
    font-size: 16px;
  }
}
@media (max-width: 680px) {
  .services p {
    font-size: 14px;
  }
}

.grey-bg {
  position: relative;
}
.grey-bg::after {
  content: "";
  display: block;
  width: 100%;
  height: 50%;
  position: absolute;
  z-index: -1;
  top: 50%;
  left: 0;
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: #f6f6f6;
}

.search {
  margin-top: 50px;
}
@media (max-width: 520px) {
  .search {
    margin-top: 0px;
  }
}
.search__wrapper {
  border-radius: 2px;
  border: 1px solid #e9e9e9;
  -webkit-box-shadow: 0 2px 4px rgba(29, 29, 29, 0.1);
          box-shadow: 0 2px 4px rgba(29, 29, 29, 0.1);
  padding: 50px 50px 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: #FFFFFF;
}
@media (max-width: 1100px) {
  .search__wrapper {
    padding: 30px;
  }
}
.search__form {
  max-width: 1100px;
  width: 100%;
}
.search h2 {
  font-weight: 700;
  font-size: 28px;
  margin-bottom: 40px;
}
@media (max-width: 1100px) {
  .search h2 {
    font-size: 24px;
  }
}
@media (max-width: 520px) {
  .search h2 {
    font-size: 20px;
    margin-bottom: 20px;
  }
}
.search .form__row {
  margin-bottom: 10px;
}

.search-status {
  width: 100%;
  min-height: 80px;
  padding: 40px 0;
}
.search-status__line {
  position: relative;
}
.search-status__line::before {
  content: "";
  display: block;
  height: 4px;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background: #e9e9e9;
}
@media (max-width: 680px) {
  .search-status__line::before {
    display: none;
  }
}
@media (max-width: 680px) {
  .search-status__line > * {
    position: static !important;
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: row !important;
            flex-direction: row !important;
    -webkit-box-align: center !important;
        -ms-flex-align: center !important;
            align-items: center !important;
    gap: 10px;
  }
}
@media (max-width: 680px) {
  .search-status__line {
    position: static !important;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 10px;
  }
}
.search-status__active {
  height: 4px;
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  background: #D0171C;
}
@media (max-width: 680px) {
  .search-status__active {
    display: none;
  }
}
.search-status__start {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  position: absolute;
  top: -15px;
  left: 0;
  z-index: 3;
}
.search-status__current {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  position: absolute;
  top: -35px;
  left: 0;
  z-index: 3;
}
.search-status__current .search-status__label {
  margin-top: 5px;
}
@media (max-width: 680px) {
  .search-status__current .search-status__label {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}
@media (max-width: 680px) {
  .search-status__current .search-status__desc {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}
@media (max-width: 680px) {
  .search-status__current {
    display: none;
  }
}
.search-status__end {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  position: absolute;
  top: -15px;
  right: 0;
  z-index: 3;
}
.search-status__end .search-status__label {
  font-size: 25px;
}
.search-status__end .search-status__desc {
  margin-top: 6px;
  text-align: right;
}
.search-status__desc {
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
}
.search-status__label {
  color: #D0171C;
  font-size: 30px;
  padding: 2px;
  background: #FFFFFF;
}
@media (max-width: 680px) {
  .search-status {
    padding: 20px 0;
  }
}

.package {
  margin-top: 50px;
}
.package__wrapper {
  border-radius: 2px;
  border: 1px solid #e9e9e9;
  -webkit-box-shadow: 0 2px 4px rgba(29, 29, 29, 0.1);
          box-shadow: 0 2px 4px rgba(29, 29, 29, 0.1);
  padding: 50px 50px 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: #FFFFFF;
}
@media (max-width: 1100px) {
  .package__wrapper {
    padding: 30px;
  }
}
.package__form {
  max-width: 1100px;
  width: 100%;
}
.package h2 {
  font-weight: 700;
  font-size: 28px;
  margin-bottom: 40px;
}
@media (max-width: 1100px) {
  .package h2 {
    font-size: 24px;
  }
}
@media (max-width: 520px) {
  .package h2 {
    font-size: 20px;
    margin-bottom: 20px;
  }
}

.about {
  margin-top: 100px;
}
@media (max-width: 520px) {
  .about {
    margin-top: 50px;
  }
}
.about h2 {
  font-weight: 700;
  font-size: 28px;
  margin-bottom: 40px;
}
@media (max-width: 1100px) {
  .about h2 {
    font-size: 24px;
  }
}
@media (max-width: 520px) {
  .about h2 {
    font-size: 20px;
    margin-bottom: 20px;
  }
}
.about__content {
  -webkit-column-count: 2;
     -moz-column-count: 2;
          column-count: 2;
  -webkit-column-gap: 40px;
     -moz-column-gap: 40px;
          column-gap: 40px;
}
@media (max-width: 820px) {
  .about__content {
    -webkit-column-count: 1;
       -moz-column-count: 1;
            column-count: 1;
  }
}
.about__text {
  -webkit-column-break-inside: avoid;
     -moz-column-break-inside: avoid;
          break-inside: avoid;
  line-height: 1.4em;
  font-size: 18px;
}
@media (max-width: 1100px) {
  .about__text {
    font-size: 16px;
  }
}
.about__text p {
  margin-bottom: 20px;
}
.about__text p:last-of-type {
  margin-bottom: 0;
}
.about__img {
  -webkit-column-break-inside: avoid;
     -moz-column-break-inside: avoid;
          break-inside: avoid;
  padding: 8px;
  background: #FFFFFF;
  border-radius: 2px;
  overflow: hidden;
  border: 1px solid #e9e9e9;
  -webkit-box-shadow: 0 2px 4px rgba(29, 29, 29, 0.1);
          box-shadow: 0 2px 4px rgba(29, 29, 29, 0.1);
}
@media (max-width: 820px) {
  .about__img {
    margin: 20px auto 0;
    text-align: center;
    display: inline-block;
  }
}

.news {
  margin-top: 100px;
  background: #f6f6f6;
  padding: 50px 0;
}
@media (max-width: 520px) {
  .news {
    margin-top: 50px;
  }
}
.news h2 {
  font-weight: 700;
  font-size: 28px;
  margin-bottom: 40px;
}
@media (max-width: 1100px) {
  .news h2 {
    font-size: 24px;
  }
}
@media (max-width: 520px) {
  .news h2 {
    font-size: 20px;
    margin-bottom: 20px;
  }
}
.news h3 {
  font-weight: 600;
  font-size: 18px;
  margin-bottom: 20px;
  line-height: 1.2em;
}
@media (max-width: 1280px) {
  .news h3 {
    font-size: 16px;
  }
}
.news__list {
  display: -ms-grid;
  display: grid;
  gap: 40px;
  -ms-grid-columns: 1fr 40px 1fr 40px 1fr;
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 1100px) {
  .news__list {
    overflow-x: auto;
    padding-bottom: 20px;
  }
}
.news__excerpt {
  font-size: 16px;
  line-height: 1.4em;
}
@media (max-width: 1280px) {
  .news__excerpt {
    font-size: 14px;
  }
}
.news__meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 20px;
  margin-top: 40px;
}
.news__date {
  font-size: 12px;
  font-weight: 600;
  background: #FFFFFF;
  padding: 8px 12px;
  border-radius: 2px;
  white-space: nowrap;
}
.news__link {
  display: inline-block;
  margin-left: auto;
  color: #D0171C;
  font-size: 16px;
  font-weight: 500;
  border-bottom: 1px solid rgba(208, 23, 28, 0.2);
  padding: 4px 0;
  position: relative;
  z-index: 1;
  -webkit-transition: all 250ms;
  transition: all 250ms;
  margin-right: 34px;
  white-space: nowrap;
}
.news__link::before {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 0;
  z-index: -1;
  background: rgba(208, 23, 28, 0.1);
  -webkit-transition: height 250ms;
  transition: height 250ms;
  border-radius: 2px;
}
.news__link:hover {
  border-color: rgba(208, 23, 28, 0.1);
}
.news__link:hover:before {
  height: 100%;
}
@media (max-width: 1280px) {
  .news__link {
    font-size: 14px;
  }
}

.reviews {
  padding: 0 20px;
  margin: 100px auto 0;
}
@media (max-width: 520px) {
  .reviews {
    margin-top: 50px;
  }
}
.reviews h2 {
  font-weight: 700;
  font-size: 28px;
  margin-bottom: 40px;
}
@media (max-width: 1100px) {
  .reviews h2 {
    font-size: 24px;
  }
}
@media (max-width: 520px) {
  .reviews h2 {
    font-size: 20px;
    margin-bottom: 20px;
  }
}
.reviews .swiper-wrapper {
  -webkit-transition-timing-function: linear !important;
  transition-timing-function: linear !important;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}

.review {
  border-radius: 2px;
  border: 1px solid #e9e9e9;
  -webkit-box-shadow: 0 2px 4px rgba(29, 29, 29, 0.1);
          box-shadow: 0 2px 4px rgba(29, 29, 29, 0.1);
  background: #FFFFFF;
  padding: 40px;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}
.review__full {
  display: none;
}
.review__text {
  font-size: 16px;
  line-height: 1.4em;
}
.review__meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: auto;
  padding-top: 20px;
  gap: 10px;
  height: 40px;
  border-top: 1px solid #e9e9e9;
}
@media (max-width: 680px) {
  .review__meta {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    margin-bottom: 20px;
  }
}
.review__about {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.2em;
}
.review__more {
  display: none;
  font-size: 14px;
  padding: 0 16px;
  height: 32px;
  min-height: 32px;
  font-weight: 500;
}
@media (max-width: 680px) {
  .review__more {
    width: 100%;
  }
}
@media (max-width: 1280px) {
  .review {
    padding: 40px 20px;
  }
}

.faq {
  margin-top: 100px;
}
@media (max-width: 520px) {
  .faq {
    margin-top: 50px;
  }
}
.faq h2 {
  font-weight: 700;
  font-size: 28px;
  margin-bottom: 40px;
}
@media (max-width: 1100px) {
  .faq h2 {
    font-size: 24px;
  }
}
@media (max-width: 520px) {
  .faq h2 {
    font-size: 20px;
    margin-bottom: 20px;
  }
}
.faq__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.faq__item {
  border-bottom: 1px solid #d0d0d0;
  border-radius: 2px;
  background: #FFFFFF;
}
.faq__item._open {
  background: white;
}
.faq__item._open .faq__icon {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.faq__question {
  padding: 20px 60px 20px 0;
  cursor: pointer;
  -webkit-transition: background 0.2s;
  transition: background 0.2s;
  position: relative;
}
.faq__question h3 {
  margin: 0;
  font-size: 20px;
  font-weight: 600;
}
@media (max-width: 1280px) {
  .faq__question h3 {
    font-size: 16px;
  }
}
@media (max-width: 520px) {
  .faq__question h3 {
    font-size: 14px;
  }
}
@media (max-width: 520px) {
  .faq__question {
    padding: 16px 28px 16px 16px;
  }
}
.faq__question:hover {
  color: #D0171C;
}
.faq__icon {
  position: absolute;
  right: 20px;
  top: 20px;
  font-size: 22px;
  z-index: 2;
  -webkit-transition: -webkit-transform 0.2s;
  transition: -webkit-transform 0.2s;
  transition: transform 0.2s;
  transition: transform 0.2s, -webkit-transform 0.2s;
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
}
@media (max-width: 520px) {
  .faq__icon {
    font-size: 16px;
    top: 16px;
  }
}
.faq__answer {
  padding: 0 0 40px;
  font-size: 18px;
  line-height: 1.4em;
  display: none;
}
@media (max-width: 1280px) {
  .faq__answer {
    font-size: 14px;
  }
}
@media (max-width: 520px) {
  .faq__answer {
    padding: 16px 16px 28px;
  }
}

.contacts {
  margin-top: 100px;
  position: relative;
  height: 500px;
}
@media (max-width: 1100px) {
  .contacts {
    height: 400px;
  }
}
@media (max-width: 680px) {
  .contacts {
    height: auto;
  }
}
@media (max-width: 520px) {
  .contacts {
    margin-top: 50px;
  }
}
.contacts__map {
  position: absolute;
  z-index: 1;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}
@media (max-width: 680px) {
  .contacts__map {
    position: static;
    height: 400px;
  }
}
@media (max-width: 520px) {
  .contacts__map {
    position: static;
    height: 300px;
  }
}
.contacts__content {
  position: relative;
  z-index: 2;
  background: #FFFFFF;
}
.contacts .container {
  height: 100%;
}
.contacts__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
}
.contacts__content {
  padding: 40px;
  border-radius: 2px;
  -webkit-box-shadow: 0 2px 4px rgba(29, 29, 29, 0.1);
          box-shadow: 0 2px 4px rgba(29, 29, 29, 0.1);
}
@media (max-width: 680px) {
  .contacts__content {
    padding: 0 0 40px;
    border-radius: 0;
    -webkit-box-shadow: none;
            box-shadow: none;
  }
}
.contacts h2 {
  font-weight: 700;
  font-size: 28px;
  margin-bottom: 20px;
}
@media (max-width: 520px) {
  .contacts h2 {
    font-size: 20px;
  }
}
.contacts__desc {
  margin-bottom: 40px;
  font-size: 16px;
  line-height: 1.4em;
}
@media (max-width: 680px) {
  .contacts__desc {
    margin-bottom: 30px;
  }
}
@media (max-width: 520px) {
  .contacts__desc {
    margin-bottom: 20px;
  }
}
.contacts__action {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
}
.contacts__action .btn {
  font-size: 14px;
  padding: 0 16px;
  height: 32px;
  font-weight: 500;
}

@-webkit-keyframes animateBtnArrow {
  0%, to {
    -webkit-transform: translateY(5px);
            transform: translateY(5px);
  }
  50% {
    -webkit-transform: translateY(15px);
            transform: translateY(15px);
  }
}

@keyframes animateBtnArrow {
  0%, to {
    -webkit-transform: translateY(5px);
            transform: translateY(5px);
  }
  50% {
    -webkit-transform: translateY(15px);
            transform: translateY(15px);
  }
}
.footer {
  margin-top: auto;
  padding-top: 80px;
  background: #FFFFFF;
}
.footer__main {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 35% 40px 1fr 40px auto;
  grid-template-columns: 35% 1fr auto;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid #e9e9e9;
}
@media (max-width: 1100px) {
  .footer__main {
    -ms-grid-columns: 1fr auto;
    grid-template-columns: 1fr auto;
    padding-bottom: 30px;
  }
}
@media (max-width: 680px) {
  .footer__main {
    padding-bottom: 20px;
  }
}
.footer__contacts {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 35% 40px 1fr;
  grid-template-columns: 35% 1fr;
  gap: 40px;
  padding: 40px 0;
  border-bottom: 1px solid #e9e9e9;
}
@media (max-width: 1100px) {
  .footer__contacts {
    padding: 30px 0;
    -ms-grid-columns: 1fr auto;
    grid-template-columns: 1fr auto;
  }
}
@media (max-width: 680px) {
  .footer__contacts {
    padding: 20px 0;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}
.footer__social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
.footer__social a {
  color: #D0171C;
}
.footer__social a i {
  font-size: 40px;
}
.footer__bottom {
  padding: 40px 0;
}
@media (max-width: 1100px) {
  .footer__bottom {
    padding: 30px 0;
  }
}
@media (max-width: 680px) {
  .footer__bottom {
    padding: 20px 0;
  }
}
.footer__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.footer__msngr {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: auto 20px auto;
  grid-template-columns: repeat(2, auto);
  gap: 10px 20px;
}
.footer__msngr a {
  color: #1D1D1D;
  font-weight: 500;
  font-size: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  -webkit-transition: color 0.2s;
  transition: color 0.2s;
  white-space: nowrap;
}
@media (max-width: 520px) {
  .footer__msngr a {
    font-size: 14px;
  }
}
.footer__msngr a i {
  color: #D0171C;
  font-size: 26px;
  font-weight: 400;
}
@media (max-width: 520px) {
  .footer__msngr a i {
    font-size: 20px;
  }
}
.footer__msngr a:hover {
  color: #D0171C;
}
.footer__address h4 {
  font-weight: 600;
  margin-bottom: 10px;
}
.footer__address p {
  font-size: 16px;
  line-height: 1.4em;
}
@media (max-width: 520px) {
  .footer__address p {
    font-size: 14px;
  }
}
.footer__copyright {
  font-size: 14px;
  font-weight: 500;
}
.footer__copyright a {
  display: inline-block;
  margin: 0 5px;
  color: #D0171C;
  border-bottom: 1px solid rgba(208, 23, 28, 0.2);
  padding: 4px;
  position: relative;
  z-index: 1;
}
.footer__copyright a::before {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 0;
  z-index: -1;
  background: rgba(208, 23, 28, 0.1);
  -webkit-transition: height 250ms;
  transition: height 250ms;
  border-radius: 2px;
}
.footer__copyright a:hover {
  border-color: rgba(208, 23, 28, 0.1);
}
.footer__copyright a:hover:before {
  height: 100%;
}
.footer__logo .logo__bottom {
  color: #1D1D1D;
}
@media (max-width: 1100px) {
  .footer__nav {
    display: none;
  }
}

.nav-footer__menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 40px;
}
.nav-footer__submenu {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  bottom: 30px;
  left: 0;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  background: #FFFFFF;
  border-radius: 2px;
  padding: 10px 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-transform: translateY(40px);
          transform: translateY(40px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  -webkit-box-shadow: 0 2px 4px rgba(29, 29, 29, 0.1);
          box-shadow: 0 2px 4px rgba(29, 29, 29, 0.1);
}
.nav-footer__submenu::after {
  content: "";
  display: block;
  position: absolute;
  bottom: -20px;
  left: 0;
  right: 0;
  height: 20px;
}
.nav-footer__sublink {
  padding: 10px 18px;
  color: #1D1D1D;
  display: block;
  -webkit-transition: color 0.2s;
  transition: color 0.2s;
  font-size: 16px;
  font-weight: 500;
}
.nav-footer__sublink:hover {
  color: #D0171C;
}
.nav-footer__item {
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px;
  cursor: pointer;
  padding: 3px 6px 0;
}
.nav-footer__item::before {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  height: 0;
  z-index: -1;
  width: 100%;
  background: #D0171C;
  -webkit-transition: height 250ms;
  transition: height 250ms;
  border-radius: 2px;
}
.nav-footer__item:hover:before {
  height: 100%;
}
.nav-footer__item:hover .nav-footer__link {
  color: #FFFFFF;
  border-color: rgba(255, 255, 255, 0.1);
}
.nav-footer__item:hover .nav-footer__toggle {
  -webkit-transform: rotate(0);
          transform: rotate(0);
}
.nav-footer__item:hover .nav-footer__toggle i {
  color: #FFFFFF;
}
.nav-footer__item:hover .nav-footer__submenu {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  pointer-events: auto;
}
.nav-footer__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #1D1D1D;
  font-weight: 600;
  font-size: 16px;
  padding-bottom: 3px;
  border-bottom: 1px solid rgba(29, 29, 29, 0.2);
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  gap: 5px;
  white-space: nowrap;
}
.nav-footer__toggle {
  display: block;
  position: relative;
  -webkit-transition: -webkit-transform 0.2s;
  transition: -webkit-transform 0.2s;
  transition: transform 0.2s;
  transition: transform 0.2s, -webkit-transform 0.2s;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.nav-footer__toggle i {
  color: #1D1D1D;
  font-weight: 400;
  font-size: 14px;
  position: relative;
}