@charset "UTF-8";
@font-face {
  font-family: OpenSans;
  font-display: swap;
  src: url("../fonts/OpenSans-Bold.woff2") format("woff2"), url("../fonts/OpenSans-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: OpenSans;
  font-display: swap;
  src: url("../fonts/OpenSans-ExtraBold.woff2") format("woff2"), url("../fonts/OpenSans-ExtraBold.woff") format("woff");
  font-weight: 800;
  font-style: normal;
}
@font-face {
  font-family: OpenSans;
  font-display: swap;
  src: url("../fonts/OpenSans-Light.woff2") format("woff2"), url("../fonts/OpenSans-Light.woff") format("woff");
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: Felidae;
  font-display: swap;
  src: url("../fonts/Felidae.woff2") format("woff2"), url("../fonts/Felidae.woff") format("woff");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: OpenSans;
  font-display: swap;
  src: url("../fonts/OpenSans-Medium.woff2") format("woff2"), url("../fonts/OpenSans-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: OpenSans;
  font-display: swap;
  src: url("../fonts/OpenSans-Regular.woff2") format("woff2"), url("../fonts/OpenSans-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: OpenSans;
  font-display: swap;
  src: url("../fonts/OpenSans-SemiBold.woff2") format("woff2"), url("../fonts/OpenSans-SemiBold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
}
* {
  padding: 0px;
  margin: 0px;
  border: 0px;
}

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

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

body {
  color: var(--text-color-white);
  line-height: 1;
  font-family: "Felidae";
  font-size: 0.875rem;
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-color: #000;
}

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

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

a {
  color: inherit;
}

a:link,
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-weight: inherit;
  font-size: inherit;
}

.lock body {
  overflow: hidden;
  touch-action: none;
}
.wrapper {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.wrapper > main {
  flex: 1 1 auto;
}
.wrapper > * {
  min-width: 0;
}

/*
(i) Стили будут применяться ко 
всем классам содержащим *__container
Например header__container, main__container и т.д.
Снипет (HTML): cnt
*/
[class*=__container] {
  padding: 0 1.25rem;
}

.close {
  position: fixed;
  top: 25px;
  right: 25px;
  width: 23px;
  height: 23px;
  z-index: 10;
}
.close::after {
  content: "";
  position: absolute;
  width: 27px;
  height: 2px;
  background: #fff;
  display: block;
  border-radius: 5px;
  overflow: hidden;
  transform: rotate(45deg);
}
.close::before {
  content: "";
  content: "";
  position: absolute;
  width: 27px;
  height: 2px;
  background: #fff;
  display: block;
  border-radius: 5px;
  overflow: hidden;
  transform: rotate(-45deg);
}

.modal-body_column {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.modal-header {
  padding: 35px 45px 40px;
  border-bottom: 5px solid #cbcbcb;
}
.modal-header p {
  font-size: 12px !important;
  line-height: 1.55 !important;
  display: flex;
  gap: 5px;
  align-items: center;
  color: #fff;
  font-family: "Felidae";
}
.modal-header p svg {
  width: 20px;
  display: block;
  height: auto;
}
@media (max-width: 39.9875em) {
  .modal-header p svg {
    display: none;
  }
}
@media (max-width: 39.9875em) {
  .modal-header {
    padding: 20px 20px 25px;
  }
}

.modal-form {
  padding: 35px 45px 65px;
}
.modal-form h4 {
  font-size: 24px;
  line-height: 1.55;
  padding-bottom: 15px;
}
@media (max-width: 39.9875em) {
  .modal-form h4 {
    font-size: 22px;
  }
}
@media (max-width: 39.9875em) {
  .modal-form {
    padding: 20px 20px 65px;
  }
}

.close-back {
  position: absolute;
  top: 25px;
  left: 25px;
  font-size: 14px;
  line-height: 1.55;
  opacity: 0.8;
  display: flex;
  align-items: center;
  gap: 5px;
}

.close:focus,
.close:hover {
  opacity: 0.75;
}

.close:not(:disabled):not(.disabled) {
  cursor: pointer;
}

button.close {
  padding: 0;
  background-color: transparent;
  border: 0;
  -webkit-appearance: none;
}

.modal-dialog {
  max-width: 76rem;
  margin: 65px auto;
  padding: 40px 20px;
}

.modal-open {
  overflow: hidden;
}

.modal {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1050;
  display: none;
  overflow: hidden;
  outline: 0;
}

.modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}

.modal-dialog {
  position: relative;
  max-width: 960px;
  width: 100%;
  margin: 65px 0 0 0;
  pointer-events: none;
  background-color: #000;
}

.modal.fade .modal-dialog {
  transition: transform 0.3s ease-out;
  transform: translate(0, -25%);
}

.modal.show .modal-dialog {
  transform: translate(0, 0);
}

.modal-dialog-centered {
  display: flex;
  align-items: center;
  min-height: calc(100% - 1rem);
}

.modal-content {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  outline: 0;
}

.modal-backdrop {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1040;
  background-color: #000;
}

.modal-backdrop.fade {
  opacity: 0;
}

.modal-backdrop.show {
  opacity: 0.6;
}

.modal-header .close {
  padding: 1rem;
  margin: -1rem -1rem -1rem auto;
}

.modal-title {
  margin-bottom: 0;
  line-height: 1.5;
}

.modal-body {
  position: relative;
  flex: 1 1 auto;
  display: flex;
  gap: 3rem;
}
@media (max-width: 39.9875em) {
  .modal-body {
    flex-direction: column;
  }
}

.modal-slider {
  flex: 0 0 calc(50% - 1.5rem);
  width: calc(50% - 1.5rem);
}
@media (max-width: 39.9875em) {
  .modal-slider {
    flex: 0 0 auto;
    width: 100%;
  }
}

.top__slider {
  max-width: 560px;
  margin-bottom: 1.5rem;
  padding-bottom: 0 !important;
}

.top__slide {
  height: auto !important;
  max-height: 560px;
}
.top__slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.modal_center .modal-content p {
  flex: 0 1 100%;
}
.modal_center .modal-content .btn {
  margin-bottom: 0;
}
@media (max-width: 39.9875em) {
  .modal_center .modal-content {
    gap: 3rem;
  }
}

.top-mini__slider {
  padding-bottom: 0 !important;
}

.top-mini__slide {
  height: auto !important;
  position: relative;
}
.top-mini__slide::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.15);
  z-index: 2;
  transition: all 0.3s ease 0s;
}
.top-mini__slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.top-mini__slide.swiper-slide-thumb-active::after {
  content: "";
  opacity: 0;
}

.modal-slider__image-ibg {
  padding-bottom: 450px;
  filter: grayscale(1);
}
@media (max-width: 39.9875em) {
  .modal-slider__image-ibg {
    padding-bottom: 250px;
  }
}

.modal-content {
  flex: 0 0 calc(50% - 1.5rem);
}
@media (max-width: 39.9875em) {
  .modal-content {
    flex: 0 0 auto;
    width: 100%;
  }
}

.modal-content h3 {
  font-size: 24px;
  margin-bottom: 20px;
  text-transform: uppercase;
}
.modal-content .btn {
  border-radius: 4px;
  padding: 15px 30px;
  font-size: 16px;
  margin-bottom: 30px;
}
.modal-content p {
  opacity: 0.8;
  font-size: 16px;
  font-family: "OpenSans";
  line-height: 1.3;
  font-weight: 300;
}

.modal-footer h3 {
  font-size: 25px;
  text-transform: uppercase;
  margin: 70px 0 40px;
}
.modal-footer .modal-slider__slider h5 {
  font-size: 24px !important;
  text-transform: uppercase;
}
.modal-footer .modal-slider__slider p {
  font-size: 16px !important;
}
@media (max-width: 39.9875em) {
  .modal-footer .modal-slider__slider p {
    font-size: 12px !important;
  }
}
.modal-footer .modal-slider__slider .cards-filtr__image-ibg {
  padding-bottom: 115%;
}
@media (max-width: 59.9875em) {
  .modal-footer .modal-slider__slider .cards-filtr__item {
    flex: 0 0 calc(50% - 1rem) !important;
  }
}

.modal_center .modal-dialog {
  max-width: 100%;
  margin: 20px auto;
  position: relative;
  top: 50%;
  transform: translateY(-50%) !important;
}
@media (max-width: 39.9875em) {
  .modal_center .modal-dialog {
    padding: 15px;
  }
}

.modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}

@media (max-width: 39.9875em) {
  .modal_center .modal-body {
    flex-direction: column-reverse;
  }
  .modal_center .modal-body .modal-content {
    min-height: 300px;
  }
  .modal_center .modal-body .modal-content p {
    flex: 1 1 100%;
  }
}
@media (max-width: 39.9875em) {
  .modal_center .close-back {
    display: none;
  }
  .modal_center .modal-dialog {
    top: 0%;
    transform: translateY(0%) !important;
    margin-top: 65px;
  }
  .modal_center .btn {
    min-width: 200px;
  }
}

@media (min-width: 576px) {
  .modal-dialog {
    max-width: 76rem;
    margin: 65px auto;
    padding: 40px 20px;
  }

  .modal_center .modal-dialog {
    max-width: 100%;
    margin: 20px auto;
    position: relative;
    top: 50%;
    transform: translateY(-50%) !important;
  }

  .modal-open .modal.modal_center {
    overflow-x: hidden;
    overflow-y: hidden;
  }

  .modal_center .modal-content {
    max-width: 1260px;
    margin-left: auto;
    margin-right: auto;
  }

  .modal_center .modal-dialog-centered {
    min-height: calc(100% - 3.5rem);
  }

  .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .modal-lg {
    max-width: 800px;
  }
}
.modal-inputs {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
@media (max-width: 39.9875em) {
  .modal-inputs {
    gap: 10px;
  }
}

.modal-item {
  flex: 0 0 calc(25% - 15px);
  position: relative;
  cursor: pointer;
}
@media (max-width: 39.9875em) {
  .modal-item {
    flex: 0 0 calc(33.33% - 7px);
  }
}
.modal-item__image-ibg {
  padding-bottom: 133%;
}
.modal-item p {
  font-size: 1.55rem;
  line-height: 1.1;
  font-family: "OpenSans";
  padding-top: 15px;
  padding-bottom: 10px;
}
@media (max-width: 39.9875em) {
  .modal-item p {
    font-size: 15px;
    padding-top: 8px;
    padding-bottom: 6px;
  }
}
.modal-item .chek {
  position: absolute;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px;
  overflow: hidden;
  border-radius: 50%;
  background: var(--text-color-white);
  top: -10px;
  left: -10px;
  z-index: 2;
  transition: all 0.3s ease 0s;
  opacity: 0;
}
.modal-item.active .chek {
  opacity: 1;
}

.modal_quiz .modal-footer {
  padding: 0 45px;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 39.9875em) {
  .modal_quiz .modal-footer {
    padding: 0 20px;
  }
}
.modal_quiz .modal-footer .btn {
  gap: 5px;
}
@media (max-width: 39.9875em) {
  .modal_quiz .modal-footer .btn {
    font-size: 14px;
    padding: 15px 25px;
  }
}
.modal_quiz .btn-back {
  background: var(--text-color-white);
  color: var(--text-color-black);
}
@media (any-hover: hover) {
  .modal_quiz .btn-back:hover {
    background: transparent;
    color: var(--text-color-white) !important;
  }
}
.modal_quiz .modal-dialog {
  max-width: 100%;
  margin: 0;
  width: 100%;
  min-height: 100vh;
}
.modal_quiz .modal-content {
  max-width: 940px;
  margin: 65px auto;
  background-color: #12100e;
}

.input__item {
  position: relative;
}
.input__item input {
  width: 100%;
  height: 60px;
  padding: 0 20px 0 60px;
  color: #f0ecdf;
  border: 1px solid #615c57;
  background-color: #000000;
  font-size: 16px;
  line-height: 1.33;
}
.input__item input::placeholder {
  color: #f0ecdf;
  font-size: 16px;
  line-height: 1.33;
  opacity: 0.5;
}
.input__item::after {
  content: "+7";
  font-size: 16px;
  line-height: 1.33;
  color: #f0ecdf;
  position: absolute;
  left: 48px;
  top: 20px;
}
.input__item::before {
  content: "";
  position: absolute;
  top: 22px;
  left: 20px;
  width: 18px;
  height: 13px;
  background-image: url(../img/flags5.png);
  background-repeat: no-repeat;
  background-position: -285px -281px;
}

.lb-outerContainer {
  border-radius: 0px;
  /* background-color: #fff; */
}

.lightbox .lb-image {
  border: 0px solid #fff;
}

.lb-outerContainer {
  background-color: transparent;
}

[data-fullscreen] {
  min-height: 100vh;
}
.touch [data-fullscreen] {
  min-height: calc(var(--vh, 2vh) * 100);
}
@media (max-width: 39.9875em) {
  .touch [data-fullscreen] {
    transition: height 0.2s;
  }
}

[class*=-ibg] {
  position: relative;
}
[class*=-ibg] img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  object-fit: cover;
}

[class*=-ibg_contain] img {
  object-fit: contain;
}

:root {
  --text-color-white: #f0ecdf;
  --text-color-black: #240e00;
  --text-color-grey:#99968d;
}

html {
  font-size: 0.8333333333vw;
  /*
  @media (max-width: $mobileSmall) {
      font-size: calc(100vw / 479.8 * 10);
  }
  */
}
@media (max-width: 59.9875em) {
  html {
    font-size: 1.5625vw;
  }
}

[class*=__container] {
  max-width: 100vw;
  box-sizing: content-box;
  margin: 0 auto;
  padding: 0 2rem;
}
@media (max-width: 59.9875em) {
  [class*=__container] {
    padding: 0 15px;
  }
}

.btn {
  display: flex;
  width: fit-content;
  font-size: 2rem;
  color: var(--text-color-white);
  line-height: 1.4;
  letter-spacing: 0.05rem;
  border: 1px solid var(--text-color-white);
  transition: all 0.2s ease-in-out 0s;
  align-items: center;
  justify-content: center;
}
@media (any-hover: hover) {
  .btn:hover {
    color: var(--text-color-black) !important;
    background: var(--text-color-white);
  }
}
@media (max-width: 59.9875em) {
  .btn {
    font-size: 1.8rem;
  }
}
@media (max-width: 39.9875em) {
  .btn {
    font-size: 2.4rem;
  }
}

h1 {
  font-size: 10.4rem;
  line-height: 1;
}

h2 {
  font-size: 6rem;
  line-height: 1;
  font-weight: 400;
  text-transform: uppercase;
  text-align: center;
}
@media (max-width: 59.9875em) {
  h2 {
    font-size: 6rem;
  }
}
@media (max-width: 39.9875em) {
  h2 {
    font-size: 8rem;
  }
}

@keyframes slideshow {
  from {
    opacity: 0;
    filter: grayscale(100%);
  }
  5% {
    opacity: 1;
    filter: grayscale(50%);
  }
  10% {
    opacity: 1;
    filter: grayscale(0);
  }
  15% {
    opacity: 0.8;
    filter: blur(0);
  }
  20% {
    opacity: 0.5;
    filter: blur(2px);
  }
  25% {
    opacity: 0;
    transform: scale(1);
  }
}
.header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 5;
}
.header__container {
  display: flex;
  gap: 2rem;
  align-items: center;
}
@media (max-width: 59.9875em) {
  .header__container {
    justify-content: space-between;
  }
}
.header__logo {
  flex: 0 0 113px;
  height: 6.1rem;
}
.header__logo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}
@media (max-width: 59.9875em) {
  .header__logo {
    flex: 0 0 87px;
    height: 80px;
    position: relative;
    z-index: 5;
  }
}
.menu {
  width: 100%;
  flex: 0 1 100%;
}
@media (max-width: 59.9875em) {
  .menu {
    flex: 0 1 auto;
    width: fit-content;
  }
}
@media (max-width: 59.9875em) {
  .menu__body {
    position: absolute;
    background: #000;
    top: -100vh;
    left: 0;
    width: 100%;
    height: 100vh;
    transition: all 0.3s ease 0s;
  }
}
.menu__list {
  display: flex;
  align-items: center;
  gap: 3rem;
}
@media (max-width: 59.9875em) {
  .menu__list {
    flex-direction: column;
    position: relative;
    top: 45%;
    left: 50%;
    gap: 10px;
    transform: translate(-50%, -50%);
  }
}
.menu__item {
  font-size: 0.8rem;
  font-family: "OpenSans";
  line-height: 1.55;
  font-weight: 400;
  white-space: nowrap;
}
@media (max-width: 59.9875em) {
  .menu__item {
    font-size: 16px;
    padding: 5px 0;
  }
}
@media (max-width: 59.9875em) {
  .menu__item:first-of-type {
    display: none;
  }
}
.menu__item:last-of-type {
  flex: 0 1 100%;
  text-align: end;
}
@media (max-width: 59.9875em) {
  .menu__item:last-of-type {
    flex: 0 1 auto;
  }
}
.menu .header__link {
  font-size: 2rem;
  font-family: "Felidae";
  line-height: 1.2;
  letter-spacing: 0.5px;
}
@media (max-width: 59.9875em) {
  .menu .header__link {
    font-size: 16px;
    font-family: "OpenSans";
    line-height: 1.55;
    font-weight: 400;
    white-space: nowrap;
  }
}

.menu-open .menu__body {
  transform: translateY(100vh);
}

.icon-menu {
  display: none;
}
@media (max-width: 59.9875em) {
  .icon-menu {
    display: block;
    position: relative;
    width: 30px;
    height: 18px;
    cursor: pointer;
    z-index: 5;
  }
  .icon-menu span, .icon-menu::before, .icon-menu::after {
    content: "";
    transition: all 0.3s ease 0s;
    left: 0px;
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: var(--text-color-white);
  }
  .icon-menu::before {
    top: 0px;
  }
  .icon-menu::after {
    bottom: 0px;
  }
  .icon-menu span {
    top: calc(50% - 1px);
  }
  .menu-open .icon-menu span {
    transform: scale(0);
  }
  .menu-open .icon-menu::before {
    transform: rotate(-45deg);
    top: calc(50% - 1px);
  }
  .menu-open .icon-menu::after {
    transform: rotate(45deg);
    bottom: calc(50% - 1px);
  }
}

@media (max-width: 39.9875em) {
  .footer {
    padding-bottom: 35px;
    padding-top: 35px;
  }
}
.footer__nav ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 6rem;
}
@media (max-width: 59.9875em) {
  .footer__nav ul {
    height: auto;
  }
}
.footer__nav ul li {
  line-height: 1.2;
  font-size: 1.3rem;
  font-family: "OpenSans";
}
@media (max-width: 39.9875em) {
  .footer__nav ul li {
    font-size: 13px;
  }
}
@media (max-width: 39.9875em) {
  .footer__nav ul li a {
    padding: 10px 0;
  }
}
.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  opacity: 0.55;
}
.footer__bottom a {
  flex: 0 0 113px;
  height: 6.1rem;
}
.footer__bottom a img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}
@media (max-width: 39.9875em) {
  .footer__bottom a {
    width: 87px;
    flex: 0 0 86px;
  }
}
.footer__bottom p {
  font-size: 1.3rem;
  font-family: "OpenSans";
  line-height: 1.55;
  font-weight: 400;
}
@media (max-width: 39.9875em) {
  .footer__bottom p {
    font-size: 13px;
  }
}
@media (max-width: 39.9875em) {
  .footer__bottom {
    flex-direction: column;
  }
}

.first-screen {
  overflow: hidden;
}
.first-screen__container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.first-screen .slideshow {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
}
.first-screen .slideshow::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0px;
  left: 0px;
  z-index: 0;
  background-image: linear-gradient(to bottom, rgba(36, 14, 0, 0.3), rgba(36, 14, 0, 0.3));
}
.first-screen .slideshow img {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  object-fit: cover;
  object-position: center;
  animation: slideshow 30s ease-in-out infinite;
  transform: scale(1.4);
}
.first-screen .slideshow .i_1 {
  animation-delay: 0s;
}
.first-screen .slideshow .i_2 {
  animation-delay: 5s;
}
.first-screen .slideshow .i_3 {
  animation-delay: 10s;
}
.first-screen .slideshow .i_4 {
  animation-delay: 15s;
}
.first-screen .slideshow .i_5 {
  animation-delay: 20s;
}
.first-screen .slideshow .i_6 {
  animation-delay: 25s;
}
.first-screen__title-main {
  position: relative;
  z-index: 3;
  max-width: 71.2rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(3, 7.4rem);
  grid-row-gap: 2rem;
  align-items: center;
}
@media (max-width: 59.9875em) {
  .first-screen__title-main {
    grid-template-rows: repeat(3, 5.9rem);
    grid-row-gap: 2.5rem;
  }
}
@media (max-width: 39.9875em) {
  .first-screen__title-main {
    grid-template-columns: repeat(3, auto);
  }
}
.first-screen__title-main h1 {
  position: relative;
  top: 1.2rem;
}
.first-screen__title-main h1:nth-of-type(1) {
  grid-area: 1/1/2/2;
  margin-right: 2rem;
}
@media (max-width: 59.9875em) {
  .first-screen__title-main h1:nth-of-type(1) {
    font-size: 8rem;
  }
}
@media (max-width: 39.9875em) {
  .first-screen__title-main h1:nth-of-type(1) {
    grid-area: 1/1/2/2;
    font-size: 8.5rem;
    margin-right: 1rem;
  }
}
.first-screen__title-main h1:nth-of-type(2) {
  grid-area: 2/1/3/4;
}
@media (max-width: 59.9875em) {
  .first-screen__title-main h1:nth-of-type(2) {
    font-size: 9rem;
  }
}
@media (max-width: 39.9875em) {
  .first-screen__title-main h1:nth-of-type(2) {
    grid-area: 2/1/3/3;
    font-size: 8.5rem;
  }
}
.first-screen__title-main h1:nth-of-type(3) {
  grid-area: 3/2/4/4;
  margin-left: -3.5rem;
}
@media (max-width: 59.9875em) {
  .first-screen__title-main h1:nth-of-type(3) {
    font-size: 8rem;
    margin-left: 1.5rem;
  }
}
@media (max-width: 39.9875em) {
  .first-screen__title-main h1:nth-of-type(3) {
    grid-area: 3/2/4/3;
    margin-left: -1.5rem;
    font-size: 8.5rem;
  }
}
@media (max-width: 59.9875em) {
  .first-screen__title-main h1 {
    top: 1rem;
  }
}
.first-screen__title-main p {
  grid-area: 1/2/2/3;
  font-size: 2rem;
  line-height: 1.2;
  font-weight: 300;
  letter-spacing: 0.5px;
  height: 100%;
  width: calc(100% + 1.9rem);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(240, 236, 223, 0.2);
  text-align: center;
}
@media (max-width: 59.9875em) {
  .first-screen__title-main p {
    font-size: 1.8rem;
    width: calc(100% + 4rem);
    margin-left: -2rem;
  }
}
@media (max-width: 39.9875em) {
  .first-screen__title-main p {
    display: none;
  }
}
.first-screen__title-main a:nth-of-type(1) {
  grid-area: 1/3/2/4;
  width: 17rem;
  margin-left: 1.9rem;
}
@media (max-width: 39.9875em) {
  .first-screen__title-main a:nth-of-type(1) {
    grid-area: 1/2/2/3;
    width: 100%;
    margin-left: 0;
  }
}
.first-screen__title-main a:nth-of-type(2) {
  grid-area: 3/1/4/2;
  width: 27.9rem;
}
@media (max-width: 39.9875em) {
  .first-screen__title-main a:nth-of-type(2) {
    grid-area: 3/1/4/2;
    width: 23.7rem;
  }
}
@media (max-width: 59.9875em) {
  .first-screen__title-main {
    max-width: 100%;
  }
}
.first-screen__content {
  position: absolute;
  bottom: 2rem;
  left: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 3;
  width: calc(100% - 4rem);
}
.first-screen__content p {
  font-family: "OpenSans";
  font-weight: 400;
  font-size: 0.8rem;
  line-height: 1.2rem;
}
@media (max-width: 59.9875em) {
  .first-screen__content p {
    font-size: 1rem;
  }
}
@media (max-width: 39.9875em) {
  .first-screen__content p {
    font-size: 8px;
  }
}
@media (max-width: 29.99875em) {
  .first-screen__content p:nth-of-type(3) {
    display: none;
  }
}
@media (max-width: 59.9875em) {
  .first-screen__content {
    bottom: 30px;
    left: 15px;
    width: calc(100% - 30px);
  }
}
.first-screen .btn {
  width: 100%;
  height: 100%;
}

.title {
  padding-top: 10.5rem;
  padding-bottom: 2rem;
}
@media (max-width: 59.9875em) {
  .title {
    padding-top: 14.5rem;
    padding-bottom: 6rem;
  }
}
.title__container {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.title__container p {
  font-size: 2.5rem;
  line-height: 1.55;
  opacity: 0.65;
  text-align: center;
}
@media (max-width: 59.9875em) {
  .title__container p {
    font-size: 3.8rem;
  }
}
@media (max-width: 59.9875em) {
  .title__container {
    gap: 0;
  }
}

.filter {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}
.filter a {
  display: block;
  padding: 0.5rem;
  font-size: 12px;
  font-family: OpenSans;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 400;
  transition: all 0.3s ease 0s;
}
.filter a._active {
  opacity: 0.7;
}
@media (max-width: 39.9875em) {
  .filter a {
    font-size: 10px;
  }
}
@media (max-width: 39.9875em) {
  .filter {
    padding-top: 4rem;
    gap: 3rem;
  }
}

.cards {
  padding-bottom: 7rem;
}
.cards__container {
  display: flex;
  flex-wrap: wrap;
  gap: 0 2rem;
}
@media (max-width: 59.9875em) {
  .cards__container {
    gap: 4rem 2rem;
  }
}
.cards__item {
  flex: 0 0 calc(33.33% - 1.4rem);
}
@media (max-width: 59.9875em) {
  .cards__item {
    flex: 0 0 calc(50% - 1rem);
    display: flex;
    flex-direction: column-reverse;
  }
}
@media (max-width: 39.9875em) {
  .cards__item {
    flex: 0 0 100%;
  }
}
.cards__content {
  padding-bottom: 1.5rem;
  padding-top: 3rem;
  text-align: left;
}
.cards__content h5 {
  font-size: 24px;
  text-transform: uppercase;
  line-height: 1.55;
  font-weight: 300;
  letter-spacing: 1px;
}
.cards__content p {
  color: #99968d;
  font-size: 14px;
  font-family: "Open Sans", Arial, sans-serif;
  line-height: 1.55;
  font-weight: 400;
  letter-spacing: 1px;
}
.cards__image-ibg {
  height: 37rem;
  width: 100%;
}
@media (max-width: 59.9875em) {
  .cards__image-ibg {
    height: 30rem;
  }
}
@media (max-width: 39.9875em) {
  .cards__image-ibg {
    height: 47rem;
  }
}

.cards-filtr {
  padding-bottom: 7rem;
}
.cards-filtr__container {
  display: flex;
  flex-wrap: wrap;
  gap: 6rem 2rem;
}
@media (max-width: 59.9875em) {
  .cards-filtr__container {
    gap: 4rem 2rem;
  }
}
.cards-filtr__item {
  flex: 0 0 calc(25% - 1.5rem);
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
@media (any-hover: hover) {
  .cards-filtr__item:hover .cards-filtr__image-ibg img:nth-of-type(2) {
    opacity: 1;
  }
}
@media (max-width: 59.9875em) {
  .cards-filtr__item {
    flex: 0 0 calc(50% - 1rem);
  }
}
.cards-filtr__image-ibg {
  padding-bottom: 133%;
}
.cards-filtr__image-ibg img {
  transition: all 0.3s ease 0s;
}
.cards-filtr__image-ibg img:nth-of-type(2) {
  opacity: 0;
}
.cards-filtr__content h5 {
  font-size: 2.5rem;
  line-height: 1;
  text-transform: uppercase;
}
@media (max-width: 39.9875em) {
  .cards-filtr__content h5 {
    font-size: 4.5rem;
  }
}
.cards-filtr__content p {
  font-size: 16px;
  line-height: 1;
  color: var(--text-color-grey);
  font-weight: 400;
  font-family: "OpenSans";
  margin-top: 0.8rem;
}
@media (max-width: 39.9875em) {
  .cards-filtr__content p {
    margin-top: 1rem;
  }
}

.cards-action {
  padding-bottom: 7rem;
}
.cards-action__container {
  display: flex;
  flex-wrap: wrap;
  gap: 0 2rem;
}
@media (max-width: 59.9875em) {
  .cards-action__container {
    gap: 6rem 2rem;
  }
}
.cards-action__item {
  flex: 0 0 calc(33.33% - 1.4rem);
}
@media (max-width: 59.9875em) {
  .cards-action__item {
    flex: 0 0 calc(50% - 1rem);
  }
}
@media (max-width: 39.9875em) {
  .cards-action__item {
    flex: 0 0 100%;
  }
}
.cards-action__item p {
  color: #ffffff;
  font-size: 1.2rem;
  font-family: "OpenSans";
  line-height: 1.5;
  font-weight: 300;
  opacity: 0.7;
  padding-top: 1rem;
  margin-bottom: 25px;
}
@media (max-width: 39.9875em) {
  .cards-action__item p {
    font-size: 12px;
  }
}
.cards-action__image {
  height: 21rem;
  position: relative;
  overflow: hidden;
  padding: 1.5rem;
}
.cards-action__image img {
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  object-fit: cover;
  object-position: center;
}
@media (max-width: 39.9875em) {
  .cards-action__image {
    padding: 2.5rem;
    height: 45rem;
  }
}
.cards-action__image-contant {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: space-between;
}
.cards-action__image-contant h5 {
  color: #ffffff;
  font-size: 2.4rem;
  line-height: 1;
  text-transform: uppercase;
}
@media (max-width: 39.9875em) {
  .cards-action__image-contant h5 {
    font-size: 4.5rem;
  }
}
.cards-action__image-contant p {
  color: #ffffff;
  font-size: 1.6rem;
  line-height: 1.55;
  font-weight: 300;
  opacity: 0.7;
}
@media (max-width: 39.9875em) {
  .cards-action__image-contant p {
    font-size: 2.6rem;
    padding: 0;
  }
}
.cards-action .btn {
  color: #ffffff;
  font-size: 1.5rem;
  font-family: "Felidae", Arial, sans-serif;
  line-height: 1;
  border-width: 1px;
  border-radius: 3px;
  background-position: center center;
  border-color: #ffffff;
  border-style: solid;
  width: 17rem;
  height: 5rem;
}
@media (max-width: 39.9875em) {
  .cards-action .btn {
    font-size: 18px;
    width: 170px;
    height: 45px;
  }
}

.bar__container {
  display: flex;
  gap: 2rem;
}
@media (max-width: 39.9875em) {
  .bar__container {
    flex-direction: column;
  }
}
.bar__item {
  height: 48rem;
  position: relative;
  display: block;
  padding: 2rem;
}
@media (max-width: 39.9875em) {
  .bar__item {
    height: 30rem;
  }
}
.bar__item h3 {
  position: relative;
  z-index: 3;
  font-size: 6rem;
  text-transform: uppercase;
}
@media (max-width: 39.9875em) {
  .bar__item h3 {
    font-size: 40px;
  }
}
.bar__item:nth-of-type(1) {
  flex: 0 0 calc(65% - 1rem);
}
@media (max-width: 39.9875em) {
  .bar__item:nth-of-type(1) {
    flex: 0 0 auto;
  }
}
.bar__item:nth-of-type(2) {
  flex: 0 0 calc(35% - 1rem);
}
@media (max-width: 39.9875em) {
  .bar__item:nth-of-type(2) {
    flex: 0 0 auto;
  }
}
.bar__item img {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.rewiew {
  padding-bottom: 10rem;
}
.rewiew__slide {
  background: #000;
}
.rewiew__slide h3 {
  font-size: 4rem;
  text-align: center;
  margin-bottom: 3rem;
}
@media (max-width: 59.9875em) {
  .rewiew__slide h3 {
    font-size: 40px;
    margin-bottom: 35px;
  }
}
.rewiew__slide p {
  text-align: center;
  font-size: 2rem;
  line-height: 1.2;
  font-weight: 300;
  font-family: "OpenSans";
  max-width: 66rem;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 59.9875em) {
  .rewiew__slide p {
    font-size: 20px;
  }
}
@media (max-width: 39.9875em) {
  .rewiew__prev {
    display: none !important;
  }
}
@media (max-width: 39.9875em) {
  .rewiew__next {
    display: none !important;
  }
}

.map__inner {
  position: relative;
  height: 658px;
}
.map__inner::after {
  content: "";
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 100;
  mix-blend-mode: difference;
  display: flex !important;
  pointer-events: none;
  background: #fff;
}
.map__inner iframe {
  filter: grayscale(0);
}
@media (max-width: 39.9875em) {
  .map__inner {
    height: 500px;
  }
}

.ymaps-layers-pane {
  filter: grayscale(1);
  -ms-filter: grayscale(1);
  -webkit-filter: grayscale(1);
  -moz-filter: grayscale(1);
  -o-filter: grayscale(1);
}

.tn-elem__5529980121676822424061 {
  mix-blend-mode: difference;
  pointer-events: none;
}

/*окрашивание карты: vladislav-land.ru/yandexmap*/
.ymaps-2-1-79-ground-pane {
  -ms-filter: grayscale(1);
  -webkit-filter: grayscale(1);
  -moz-filter: grayscale(1);
  -o-filter: grayscale(1);
  filter: grayscale(1);
}

/*режим наложения на шейп и отключение реакции курсора: vladislav-land.ru/yandexmap*/
.tn-elem__4346096441649723484272 {
  mix-blend-mode: difference;
  pointer-events: none;
}

.rewiew-yandex .btn {
  margin: 0 auto 8rem;
  padding: 10px 45px;
}

.social {
  padding: 3.5rem 0;
  border-top: 1px solid var(--text-color-white);
}
@media (max-width: 39.9875em) {
  .social {
    padding: 35px 0;
  }
}
.social__inner {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 29.99875em) {
  .social__inner {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
  }
}
.social__inner a,
.social__inner p {
  font-size: 1.6rem;
  line-height: 1.55;
  text-transform: uppercase;
}
@media (max-width: 39.9875em) {
  .social__inner a,
.social__inner p {
    font-size: 16px;
  }
}
.social__inner div {
  display: flex;
  gap: 3rem;
}
@media (max-width: 39.9875em) {
  .social__inner div p {
    display: none;
  }
}
@media (max-width: 39.9875em) {
  .social__inner div {
    justify-content: space-between;
    width: 100%;
  }
}
@media (max-width: 29.99875em) {
  .social__inner div:nth-of-type(2) {
    justify-content: center;
  }
}

.feedback {
  padding: 10rem 3rem;
}
@media (max-width: 39.9875em) {
  .feedback {
    padding: 10rem 0;
  }
}
.feedback__container {
  max-width: 103.5rem;
  border-radius: 3rem;
  overflow: hidden;
  padding-top: 18rem;
  padding-bottom: 18rem;
  position: relative;
}
.feedback__container::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0px;
  left: 0px;
  z-index: 0;
  background: url(../img/fs3.jpg) center/cover no-repeat;
  opacity: 0.5;
}
@media (max-width: 59.9875em) {
  .feedback__container {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
}
@media (max-width: 39.9875em) {
  .feedback__container {
    border-radius: 0;
  }
}
.feedback__inner {
  display: flex;
  justify-content: space-between;
  max-width: 70rem;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 2;
  margin-top: 8rem;
  gap: 20px;
}
@media (max-width: 59.9875em) {
  .feedback__inner {
    flex-direction: column;
    max-width: 300px;
    gap: 20px;
    margin-top: 4rem;
  }
}
.feedback h2 {
  font-size: 8.4rem;
  position: relative;
  z-index: 2;
}
@media (max-width: 59.9875em) {
  .feedback h2 {
    font-size: 50px;
  }
}
.feedback p {
  text-align: center;
  font-size: 2.9rem;
  line-height: 4.5rem;
  position: relative;
  z-index: 2;
}
@media (max-width: 59.9875em) {
  .feedback p {
    font-size: 20px;
  }
}
.feedback__item {
  width: 100%;
  padding: 0 20px 0 20px;
  border: 1px solid #f0ecdf;
  border-radius: 10px;
  overflow: hidden;
}
.feedback__item input {
  height: 60px;
  color: #f0ecdf;
  display: flex;
  align-items: center;
  background: transparent;
  font-size: 16px;
  line-height: 1.33;
  outline: none;
}
.feedback__item input::placeholder {
  color: #f0ecdf;
}
.feedback__item:nth-of-type(2) {
  padding: 0 20px 0 60px;
  position: relative;
}
.feedback__item:nth-of-type(2)::after {
  content: "+7";
  font-size: 16px;
  line-height: 1.33;
  color: #f0ecdf;
  position: absolute;
  left: 48px;
  top: 20px;
}
.feedback__item:nth-of-type(2)::before {
  content: "";
  position: absolute;
  top: 22px;
  left: 20px;
  width: 18px;
  height: 13px;
  background-image: url(../img/flags5.png);
  background-repeat: no-repeat;
  background-position: -285px -281px;
}
.feedback__item::placeholder {
  color: #f0ecdf;
  font-size: 16px;
  line-height: 1.33;
  opacity: 0.5;
}
.feedback .btn {
  border-radius: 10px;
  cursor: pointer;
  overflow: hidden;
  min-width: 150px;
  height: 60px;
  color: var(--text-color-black);
}
.feedback .btn::placeholder {
  opacity: 1;
}
@media (any-hover: hover) {
  .feedback .btn:hover {
    background: transparent;
    color: var(--text-color-white) !important;
  }
}
@media (max-width: 59.9875em) {
  .feedback .btn {
    min-width: 100%;
    margin-left: auto;
    margin-right: auto;
    font-size: 16px;
  }
}
.swiper {
  overflow: hidden;
}

.swiper-wrapper {
  width: 100%;
  height: 100%;
  box-sizing: content-box;
  display: flex;
  position: relative;
}

.swiper-vertical .swiper-wrapper {
  flex-direction: column;
}

.swiper-autoheight .swiper-wrapper {
  align-items: flex-start;
}

.swiper-initialized .swiper-slide {
  flex-shrink: 0;
}

.swiper-android .swiper-slide,
.swiper-android .swiper-wrapper {
  transform: translate3d(0px, 0, 0);
}

.swiper-button-lock {
  display: none !important;
}
/**
 * Swiper 7.2.0
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2021 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: October 27, 2021
 */
@font-face {
  font-family: swiper-icons;
  src: url("data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA");
  font-weight: 400;
  font-style: normal;
}
:root {
  --swiper-theme-color: #fff;
}

.swiper {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  padding-bottom: 6rem;
  z-index: 1;
}

.swiper-vertical > .swiper-wrapper {
  flex-direction: column;
}

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  box-sizing: content-box;
}

.swiper-android .swiper-slide,
.swiper-wrapper {
  transform: translate3d(0px, 0, 0);
}

.swiper-pointer-events {
  touch-action: pan-y;
}

.swiper-pointer-events.swiper-vertical {
  touch-action: pan-x;
}

.swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: transform;
}

.swiper-slide-invisible-blank {
  visibility: hidden;
}

.swiper-autoheight,
.swiper-autoheight .swiper-slide {
  height: auto;
}

.swiper-autoheight .swiper-wrapper {
  align-items: flex-start;
  transition-property: transform, height;
}

.swiper-3d,
.swiper-3d.swiper-css-mode .swiper-wrapper {
  perspective: 1200px;
}

.swiper-3d .swiper-cube-shadow,
.swiper-3d .swiper-slide,
.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-bottom,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-wrapper {
  transform-style: preserve-3d;
}

.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-bottom,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}

.swiper-3d .swiper-slide-shadow {
  background: rgba(0, 0, 0, 0.15);
}

.swiper-3d .swiper-slide-shadow-left {
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-right {
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-top {
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-bottom {
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-css-mode > .swiper-wrapper {
  overflow: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.swiper-css-mode > .swiper-wrapper::-webkit-scrollbar {
  display: none;
}

.swiper-css-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: start start;
}

.swiper-horizontal.swiper-css-mode > .swiper-wrapper {
  scroll-snap-type: x mandatory;
}

.swiper-vertical.swiper-css-mode > .swiper-wrapper {
  scroll-snap-type: y mandatory;
}

.swiper-centered > .swiper-wrapper::before {
  content: "";
  flex-shrink: 0;
  order: 9999;
}

.swiper-centered.swiper-horizontal > .swiper-wrapper > .swiper-slide:first-child {
  margin-inline-start: var(--swiper-centered-offset-before);
}

.swiper-centered.swiper-horizontal > .swiper-wrapper::before {
  height: 100%;
  min-height: 1px;
  width: var(--swiper-centered-offset-after);
}

.swiper-centered.swiper-vertical > .swiper-wrapper > .swiper-slide:first-child {
  margin-block-start: var(--swiper-centered-offset-before);
}

.swiper-centered.swiper-vertical > .swiper-wrapper::before {
  width: 100%;
  min-width: 1px;
  height: var(--swiper-centered-offset-after);
}

.swiper-centered > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: center center;
}

.swiper-virtual.swiper-css-mode .swiper-wrapper::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
}

.swiper-virtual.swiper-css-mode.swiper-horizontal .swiper-wrapper::after {
  height: 1px;
  width: var(--swiper-virtual-size);
}

.swiper-virtual.swiper-css-mode.swiper-vertical .swiper-wrapper::after {
  width: 1px;
  height: var(--swiper-virtual-size);
}

:root {
  --swiper-navigation-size: 35px;
}

.swiper-button-next,
.swiper-button-prev {
  position: absolute;
  top: 50%;
  width: calc(var(--swiper-navigation-size) / 44 * 27);
  height: var(--swiper-navigation-size);
  margin-top: calc(0px - var(--swiper-navigation-size) / 2);
  z-index: 10;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--swiper-navigation-color, var(--swiper-theme-color));
}

.swiper-button-next.swiper-button-disabled,
.swiper-button-prev.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
  pointer-events: none;
}

.swiper-button-next:after,
.swiper-button-prev:after {
  font-family: swiper-icons;
  font-size: var(--swiper-navigation-size);
  text-transform: none !important;
  letter-spacing: 0;
  text-transform: none;
  font-variant: initial;
  line-height: 1;
}

.swiper-button-prev,
.swiper-rtl .swiper-button-next {
  left: 10px;
  right: auto;
}

.swiper-button-prev:after,
.swiper-rtl .swiper-button-next:after {
  content: "prev";
}

.swiper-button-next,
.swiper-rtl .swiper-button-prev {
  right: 10px;
  left: auto;
}

.swiper-button-next:after,
.swiper-rtl .swiper-button-prev:after {
  content: "next";
}

.swiper-button-lock {
  display: none;
}

.swiper-pagination {
  position: absolute;
  text-align: center;
  transition: 0.3s opacity;
  transform: translate3d(0, 0, 0);
  z-index: 10;
}

.swiper-pagination.swiper-pagination-hidden {
  opacity: 0;
}

.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom,
.swiper-pagination-fraction {
  bottom: 10px;
  left: 0;
  width: 100%;
}

.swiper-pagination-bullets-dynamic {
  overflow: hidden;
  font-size: 0;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transform: scale(0.33);
  position: relative;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
  transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
  transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
  transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
  transform: scale(0.33);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
  transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
  transform: scale(0.33);
}

.swiper-pagination-bullet {
  width: var(--swiper-pagination-bullet-width, var(--swiper-pagination-bullet-size, 8px));
  height: var(--swiper-pagination-bullet-height, var(--swiper-pagination-bullet-size, 8px));
  display: inline-block;
  border-radius: 50%;
  background: var(--swiper-pagination-bullet-inactive-color, #fff);
  opacity: var(--swiper-pagination-bullet-inactive-opacity, 0.2);
}

button.swiper-pagination-bullet {
  border: none;
  margin: 0;
  padding: 0;
  box-shadow: none;
  -webkit-appearance: none;
  appearance: none;
}

.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer;
}

.swiper-pagination-bullet:only-child {
  display: none !important;
}

.swiper-pagination-bullet-active {
  opacity: var(--swiper-pagination-bullet-opacity, 1);
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
}

.swiper-pagination-vertical.swiper-pagination-bullets,
.swiper-vertical > .swiper-pagination-bullets {
  right: 10px;
  top: 50%;
  transform: translate3d(0px, -50%, 0);
}

.swiper-pagination-vertical.swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-vertical > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: var(--swiper-pagination-bullet-vertical-gap, 6px) 0;
  display: block;
}

.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
.swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
}

.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,
.swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  display: inline-block;
  transition: 0.2s transform, 0.2s top;
}

.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 4px);
}

.swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}

.swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: 0.2s transform, 0.2s left;
}

.swiper-horizontal.swiper-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: 0.2s transform, 0.2s right;
}

.swiper-pagination-progressbar {
  background: rgba(0, 0, 0, 0.25);
  position: absolute;
}

.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transform: scale(0);
  transform-origin: left top;
}

.swiper-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  transform-origin: right top;
}

.swiper-horizontal > .swiper-pagination-progressbar,
.swiper-pagination-progressbar.swiper-pagination-horizontal,
.swiper-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite,
.swiper-vertical > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  width: 100%;
  height: 4px;
  left: 0;
  top: 0;
}

.swiper-horizontal > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,
.swiper-pagination-progressbar.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite,
.swiper-pagination-progressbar.swiper-pagination-vertical,
.swiper-vertical > .swiper-pagination-progressbar {
  width: 4px;
  height: 100%;
  left: 0;
  top: 0;
}

.swiper-pagination-lock {
  display: none;
}

.swiper-scrollbar {
  border-radius: 10px;
  position: relative;
  -ms-touch-action: none;
  background: rgba(0, 0, 0, 0.1);
}

.swiper-horizontal > .swiper-scrollbar {
  position: absolute;
  left: 1%;
  bottom: 3px;
  z-index: 50;
  height: 5px;
  width: 98%;
}

.swiper-vertical > .swiper-scrollbar {
  position: absolute;
  right: 3px;
  top: 1%;
  z-index: 50;
  width: 5px;
  height: 98%;
}

.swiper-scrollbar-drag {
  height: 100%;
  width: 100%;
  position: relative;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 10px;
  left: 0;
  top: 0;
}

.swiper-scrollbar-cursor-drag {
  cursor: move;
}

.swiper-scrollbar-lock {
  display: none;
}

.swiper-zoom-container {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.swiper-zoom-container > canvas,
.swiper-zoom-container > img,
.swiper-zoom-container > svg {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.swiper-slide-zoomed {
  cursor: move;
}

.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  transform-origin: 50%;
  animation: swiper-preloader-spin 1s infinite linear;
  box-sizing: border-box;
  border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
  border-radius: 50%;
  border-top-color: transparent;
}

.swiper-lazy-preloader-white {
  --swiper-preloader-color: #fff;
}

.swiper-lazy-preloader-black {
  --swiper-preloader-color: #000;
}

@keyframes swiper-preloader-spin {
  100% {
    transform: rotate(360deg);
  }
}
.swiper .swiper-notification {
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  opacity: 0;
  z-index: -1000;
}

.swiper-free-mode > .swiper-wrapper {
  transition-timing-function: ease-out;
  margin: 0 auto;
}

.swiper-grid > .swiper-wrapper {
  flex-wrap: wrap;
}

.swiper-grid-column > .swiper-wrapper {
  flex-wrap: wrap;
  flex-direction: column;
}

.swiper-fade.swiper-free-mode .swiper-slide {
  transition-timing-function: ease-out;
}

.swiper-fade .swiper-slide {
  pointer-events: none;
  transition-property: opacity;
}

.swiper-fade .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-fade .swiper-slide-active,
.swiper-fade .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-cube {
  overflow: visible;
}

.swiper-cube .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
  visibility: hidden;
  transform-origin: 0 0;
  width: 100%;
  height: 100%;
}

.swiper-cube .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-cube.swiper-rtl .swiper-slide {
  transform-origin: 100% 0;
}

.swiper-cube .swiper-slide-active,
.swiper-cube .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-cube .swiper-slide-active,
.swiper-cube .swiper-slide-next,
.swiper-cube .swiper-slide-next + .swiper-slide,
.swiper-cube .swiper-slide-prev {
  pointer-events: auto;
  visibility: visible;
}

.swiper-cube .swiper-slide-shadow-bottom,
.swiper-cube .swiper-slide-shadow-left,
.swiper-cube .swiper-slide-shadow-right,
.swiper-cube .swiper-slide-shadow-top {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.swiper-cube .swiper-cube-shadow {
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 100%;
  height: 100%;
  opacity: 0.6;
  z-index: 0;
}

.swiper-cube .swiper-cube-shadow:before {
  content: "";
  background: #000;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  filter: blur(50px);
}

.swiper-flip {
  overflow: visible;
}

.swiper-flip .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
}

.swiper-flip .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-flip .swiper-slide-active,
.swiper-flip .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-flip .swiper-slide-shadow-bottom,
.swiper-flip .swiper-slide-shadow-left,
.swiper-flip .swiper-slide-shadow-right,
.swiper-flip .swiper-slide-shadow-top {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.swiper-creative .swiper-slide {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  overflow: hidden;
  transition-property: transform, opacity, height;
}

.swiper-cards {
  overflow: visible;
}

.swiper-cards .swiper-slide {
  transform-origin: center bottom;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  overflow: hidden;
}

.messege{cursor:pointer; padding:15px; background-color:#fff; border-radius:50%; position:fixed; bottom:30px; right:30px; z-index:25}
.social__messege{position:absolute; right:35px}

@keyframes screenText{from{margin-top:60px}
  to{margin-top:15px}
}
.social__messege{position:absolute; right:35px}
.telegram{opacity:0; display:none; cursor:pointer; position:fixed; z-index:30; right:35px; bottom:110px}
.telegram svg{width:50px; height:50px}
.telegram.show{display:block; animation:telegramTop 1s; bottom:110px; opacity:1}
@keyframes telegramTop{from{opacity:0; bottom:35px}
  to{opacity:1; bottom:110px}
}
.phone{opacity:0; display:none; cursor:pointer; background-color:#004d73; padding:10px; border-radius:50%; position:fixed; z-index:30; right:35px; bottom:250px}
.phone svg{width:30px; height:30px}
.phone.show{display:block; animation:phoneTop 1s; bottom:250px; opacity:1}
@keyframes phoneTop{from{opacity:0; bottom:35px}
  to{opacity:1; bottom:250px}
}
.whatsapp{opacity:0; display:none; cursor:pointer; position:fixed; z-index:30; right:35px; bottom:180px}
.whatsapp svg{width:50px; height:50px}
.whatsapp.show{display:block; opacity:1; bottom:180px; animation:whatsappTop 1s}
@keyframes whatsappTop{from{opacity:0; bottom:35px}
  to{opacity:1; bottom:180px}
}


.logo-address, .header-mobile-phone{display: none;}
@media screen and  (min-width: 991px){
  header .menu__item .telegram,
  header .menu__item .whatsapp{
    position: relative;
    opacity: 1;
    display: inline-block;
    bottom: 0;
    top: 0;
    margin-left: 15px;
  }

  header .menu__item .telegram svg,
  header .menu__item .whatsapp svg{
    width: 28px;
    height: 28px;
  }
}

@media screen and  (max-width: 991px){

  header .menu__item .telegram,
  header .menu__item .whatsapp{
    display:none;
  }
  .icon-menu{float: right;}
  #mobile_icons{
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    text-align: center;
    float: left;
    margin-top: -5px;
  }
  #mobile_icons .telegram,
  #mobile_icons .whatsapp{
    position: relative;
    opacity: 1;
    display: flex;
    bottom: 0;
    top: 0;
    margin-left: 15px;
  }

  #mobile_icons .whatsapp{margin-right: -25px;}

  #mobile_icons .telegram svg,
  #mobile_icons .whatsapp svg{
    width: 28px;
    height: 28px;
  }

  .logo-address{
    display: block;
    position: absolute;
    left: 0;
    bottom: 0;
    font-size: 13px;
  }

  .header-mobile-phone{
    font-size: 14px;
    background: #f0ecdf;
    color: #000;
    padding: 5px 10px;
    border-radius: 15px;
    display: block;
    box-shadow: 2px 2px 10px 6px rgba(240, 236, 223, 0.66); /* offset-x offset-y blur spread color */
    font-family: 'OpenSans', sans-serif;
    margin-left: -15px;
    animation: shadow-flicker 2.5s ease-in-out infinite alternate;
    will-change: box-shadow;
  }

  @keyframes shadow-flicker {
    0% {
      box-shadow: 2px 2px 10px 6px rgba(240, 236, 223, 0.66);
    }
    35% {
      box-shadow: 3px 3px 18px 8px rgba(240, 236, 223, 0.55);
    }
    70% {
      box-shadow: 2px 2px 28px 12px rgba(240, 236, 223, 0.45);
    }
    100% {
      box-shadow: 2px 2px 10px 6px rgba(240, 236, 223, 0.66);
    }
  }
}