@import url("https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap");

@font-face {
  font-family: "FoglihtenNo06";
  src:
    local("FoglihtenNo06"),
    url("../fonts/FoglihtenNo06_076.woff") format("woff");
  font-weight: 400;
  font-style: normal;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: #000;
}

html {
  scroll-behavior: smooth;
}

:root {
  --bordovyy: #b7332d;
  --belyy: #fff;
  --krasnyy: #ec1a38;
  --chernyy: #0e0e0e;

  --font-family: "Open Sans", sans-serif;
  --second-family: "FoglihtenNo06", sans-serif;

  --curent-size: 1920;
}

section:not(#hero) {
  padding: calc((70 / var(--curent-size)) * 100vw) 0;
}

a {
  text-decoration: none;
}

a,
button {
  cursor: pointer;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99;
  padding: calc((10 / var(--curent-size)) * 100vw) 0;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  background: rgba(14, 14, 14, 0.5);
  border-bottom: calc((1 / var(--curent-size)) * 100vw) solid
    rgba(255, 255, 255, 0.5);
}

.container {
  width: calc((1600 / var(--curent-size)) * 100vw);
  margin: 0 auto;
}

.header-wrapper {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-menu-wrapper {
  display: flex;
  align-items: center;
  gap: calc((60 / var(--curent-size)) * 100vw);
}

.header-menu {
  display: flex;
  align-items: center;
  list-style: none;
  gap: calc((16 / var(--curent-size)) * 100vw);
}

.header-menu li {
  display: flex;
}

.header-menu li a {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: calc((14 / var(--curent-size)) * 100vw);
  color: var(--belyy);
}

.logo-header {
  display: flex;
}

.logo-header svg {
  width: calc((156 / var(--curent-size)) * 100vw);
  height: calc((44 / var(--curent-size)) * 100vw);
}

.header-links {
  display: flex;
  align-items: center;
  gap: calc((20 / var(--curent-size)) * 100vw);
}

.header-links > a {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: calc((18 / var(--curent-size)) * 100vw);
  text-transform: uppercase;
  color: var(--belyy);
  line-height: 1;
  border: calc((1 / var(--curent-size)) * 100vw) solid var(--belyy);
  padding: calc((15 / var(--curent-size)) * 100vw)
    calc((20 / var(--curent-size)) * 100vw);
}

.header-links div {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.header-links div a {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: calc((18 / var(--curent-size)) * 100vw);
  color: var(--belyy);
}

.header-links div p {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: calc((13 / var(--curent-size)) * 100vw);
  text-align: center;
  color: var(--belyy);
  opacity: 0.7;
}

#hero {
  width: 100%;
  height: calc((800 / var(--curent-size)) * 100vw);
  position: relative;
}

#hero .container {
  height: 100%;
}

#hero > img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -3;
}

#hero:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #0e0e0e;
  opacity: 0.6;
  z-index: -2;
}

.hero-wrapper {
  width: 100%;
  height: 100%;
  padding: calc((164 / var(--curent-size)) * 100vw) 0
    calc((60 / var(--curent-size)) * 100vw) 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-wrapper h1 {
  font-family: var(--second-family);
  font-weight: 500;
  font-size: calc((200 / var(--curent-size)) * 100vw);
  text-transform: uppercase;
  color: var(--belyy);
}

.hero-wrapper h2 {
  font-family: var(--font-family);
  font-weight: 300;
  font-size: calc((40 / var(--curent-size)) * 100vw);
  line-height: 100%;
  text-align: center;
  color: var(--belyy);
  line-height: 1;
  margin-top: calc((-30 / var(--curent-size)) * 100vw);
}

.hero-btns {
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: calc((40 / var(--curent-size)) * 100vw);
}

.hero-btns a {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: calc((30 / var(--curent-size)) * 100vw);
  text-transform: uppercase;
  color: var(--belyy);
  border: calc((0.5 / var(--curent-size)) * 100vw) solid var(--belyy);
  width: calc((504 / var(--curent-size)) * 100vw);
  height: calc((73 / var(--curent-size)) * 100vw);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  background: rgba(14, 14, 14, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
}

.title {
  font-family: var(--second-family);
  font-weight: 500;
  font-size: calc((70 / var(--curent-size)) * 100vw);
  line-height: 100%;
  text-transform: uppercase;
  text-align: center;
  color: var(--belyy);
}

.why-list {
  display: flex;
  align-items: stretch;
  width: 100%;
  flex-wrap: wrap;
  gap: calc((40 / var(--curent-size)) * 100vw);
}

.why-list li {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: calc((370 / var(--curent-size)) * 100vw);
}

.why-list li img {
  width: 100%;
  height: calc((230 / var(--curent-size)) * 100vw);
  object-fit: cover;
}

.why-list li div {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: calc((20 / var(--curent-size)) * 100vw);
  border: calc((0.5 / var(--curent-size)) * 100vw) solid var(--belyy);
  padding: calc((30 / var(--curent-size)) * 100vw)
    calc((20 / var(--curent-size)) * 100vw);
  border-top: none;
}

.why-list li div p {
  font-family: var(--second-family);
  font-weight: 500;
  font-size: calc((36 / var(--curent-size)) * 100vw);
  line-height: 100%;
  text-transform: uppercase;
  text-align: center;
  color: var(--belyy);
}

.why-list li div span {
  font-family: var(--font-family);
  font-weight: 300;
  font-size: calc((20 / var(--curent-size)) * 100vw);
  line-height: 120%;
  text-align: center;
  color: var(--belyy);
}

.why-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  gap: calc((50 / var(--curent-size)) * 100vw);
}

.tabs {
  display: flex;
  align-items: center;
  width: 100%;
  margin: calc((50 / var(--curent-size)) * 100vw) 0
    calc((40 / var(--curent-size)) * 100vw) 0;
  list-style: none;
  border: calc((0.5 / var(--curent-size)) * 100vw) solid var(--belyy);
}

.tabs li {
  width: calc(100% / 3);
  height: calc((73 / var(--curent-size)) * 100vw);
  font-family: var(--font-family);
  font-weight: 400;
  font-size: calc((24 / var(--curent-size)) * 100vw);
  text-transform: uppercase;
  color: var(--belyy);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.tabs li.active {
  color: var(--chernyy);
  background: var(--belyy);
}

.tabs li:nth-child(2) {
  border: calc((0.5 / var(--curent-size)) * 100vw) solid var(--belyy);
  border-top: none;
  border-bottom: none;
}

.tabs-items-wrapper {
  display: flex;
  align-items: flex-start;
  width: 100%;
}

.tabs-item {
  width: 100%;
  display: none;
  align-items: stretch;
  flex-wrap: wrap;
  gap: calc((40 / var(--curent-size)) * 100vw);
}

.tabs-item.active {
  display: flex;
}

.tabs-item li {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: calc((780 / var(--curent-size)) * 100vw);
  height: calc((500 / var(--curent-size)) * 100vw);
  border: calc((0.5 / var(--curent-size)) * 100vw) solid var(--belyy);

  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
}

.tabs-item li:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(14, 14, 14, 0) 0%,
    rgba(14, 14, 14, 0.5) 33%,
    rgba(14, 14, 14, 0.8) 66%,
    rgba(14, 14, 14, 1) 100%
  );
}

.tabs-item li > div {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  width: 100%;
  height: 100%;
  gap: calc((20 / var(--curent-size)) * 100vw);
  padding: calc((20 / var(--curent-size)) * 100vw);
}

.tabs-item li > div h5 {
  font-family: var(--second-family);
  font-weight: 500;
  font-size: calc((36 / var(--curent-size)) * 100vw);
  line-height: 100%;
  text-transform: uppercase;
  color: var(--belyy);
}

.tabs-item li > div p {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: calc((30 / var(--curent-size)) * 100vw);
  line-height: 100%;
  color: var(--belyy);
}

.tabs-item li > div span {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: calc((18 / var(--curent-size)) * 100vw);
  line-height: 120%;
  color: var(--belyy);
}

.tabs-item-btn {
  display: flex;
  align-items: center;
  width: 100%;
  gap: calc((20 / var(--curent-size)) * 100vw);
}

.mob {
  display: none;
}

.tabs-item-btn a {
  width: 100%;
  border: calc((0.5 / var(--curent-size)) * 100vw) solid var(--belyy);
  width: calc((360 / var(--curent-size)) * 100vw);
  height: calc((69 / var(--curent-size)) * 100vw);
  backdrop-filter: blur(20px);
  background: rgba(14, 14, 14, 0.7);
  font-family: var(--font-family);
  font-weight: 400;
  font-size: calc((26 / var(--curent-size)) * 100vw);
  text-transform: uppercase;
  color: var(--belyy);
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-content {
  display: flex;
  align-items: center;
  width: 100%;
  gap: calc((17 / var(--curent-size)) * 100vw);
  margin-top: calc((50 / var(--curent-size)) * 100vw);
}

.about-content img {
  width: calc((623 / var(--curent-size)) * 100vw);
}

.about-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: calc((30 / var(--curent-size)) * 100vw);
}

.about-text p {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: calc((24 / var(--curent-size)) * 100vw);
  line-height: 120%;
  color: var(--belyy);
}

.about-text ol,
.about-text ul {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  list-style: none;
  gap: calc((16 / var(--curent-size)) * 100vw);
}

.about-text ol li,
.about-text ul li {
  font-family: var(--font-family);
  font-weight: 300;
  font-size: calc((24 / var(--curent-size)) * 100vw);
  line-height: 120%;
  color: var(--belyy);
  position: relative;
  padding-left: calc((44 / var(--curent-size)) * 100vw);
  line-height: 1;
}

.about-text ol li:before,
.about-text ul li:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: calc((24 / var(--curent-size)) * 100vw);
  height: calc((24 / var(--curent-size)) * 100vw);
  background-image: url(../img/li.svg);
  background-repeat: no-repeat;
  background-size: contain;
}

.about-ul-list {
  display: flex;
  align-items: center;
  list-style: none;
  width: 100%;
  justify-content: space-between;
  margin-top: calc((40 / var(--curent-size)) * 100vw);
}

.about-ul-list li {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: calc((6 / var(--curent-size)) * 100vw);
  border: calc((0.5 / var(--curent-size)) * 100vw) solid var(--belyy);
  width: calc((370 / var(--curent-size)) * 100vw);
  padding: calc((20 / var(--curent-size)) * 100vw) 0;
}

.about-ul-list li p {
  font-family: var(--second-family);
  font-weight: 500;
  font-size: calc((50 / var(--curent-size)) * 100vw);
  line-height: 1;
  text-transform: uppercase;
  text-align: center;
  color: var(--belyy);
}

.about-ul-list li span {
  font-family: var(--font-family);
  font-weight: 300;
  font-size: calc((20 / var(--curent-size)) * 100vw);
  line-height: 120%;
  text-align: center;
  color: var(--belyy);
}

#gallery,
#video {
  overflow: hidden;
}

.gallery,
.video {
  width: calc((800 / var(--curent-size)) * 100vw);
  overflow: visible !important;
}

.gallery-slide {
  width: 100%;
  height: calc((400 / var(--curent-size)) * 100vw);
}

.gallery-slide img,
.gallery-slide iframe,
.gallery-slide video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: calc((0.5 / var(--curent-size)) * 100vw) solid var(--belyy);
}

.gallery-content-wrapper {
  width: calc((960 / var(--curent-size)) * 100vw);
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: calc((50 / var(--curent-size)) * 100vw) auto 0 auto;
}

.gallery-content-wrapper button {
  border-radius: 50%;
  border: calc((1 / var(--curent-size)) * 100vw) solid var(--belyy);
  display: flex;
  align-items: center;
  justify-content: center;
  background: initial;
  flex-shrink: 0;
  width: calc((40 / var(--curent-size)) * 100vw);
  height: calc((40 / var(--curent-size)) * 100vw);
  cursor: pointer;
}

.gallery-content-wrapper button svg {
  width: calc((13 / var(--curent-size)) * 100vw);
  height: calc((24 / var(--curent-size)) * 100vw);
}
.gallery .swiper-slide {
  opacity: 0.5;
  transition: 0.3s ease;
}

.gallery .swiper-slide img,
.gallery .swiper-slide iframe {
  transition: 0.3s ease;
  transform: scale(0.9);
}

.gallery .swiper-slide.swiper-slide-active {
  opacity: 1;
  transition: 0.3s ease;
}

.gallery .swiper-slide.swiper-slide-active img,
.gallery .swiper-slide.swiper-slide-active iframe {
  transition: 0.3s ease;
  transform: scale(1);
}

.faq-items {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  list-style: none;
  gap: calc((20 / var(--curent-size)) * 100vw);
  width: 100%;
  margin-top: calc((50 / var(--curent-size)) * 100vw);
}

.faq-item {
  border-radius: calc((0 / var(--curent-size)) * 100vw);
  padding: calc((20 / var(--curent-size)) * 100vw)
    calc((40 / var(--curent-size)) * 100vw);
  border: calc((0.5 / var(--curent-size)) * 100vw) solid var(--belyy);
  cursor: pointer;
  display: grid;
  grid-template-rows: auto 0fr;
  transition: grid-template-rows 0.3s ease;
  width: 100%;
}

.faq-item-head {
  display: flex;
  align-items: center;
  width: 100%;
  justify-content: space-between;
  gap: 34px;
}

.faq-item-head p {
  font-family: var(--second-family);
  font-weight: 500;
  font-size: calc((40 / var(--curent-size)) * 100vw);
  line-height: 100%;
  text-transform: uppercase;
  color: var(--belyy);
}

.faq-item-head span {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: calc((60 / var(--curent-size)) * 100vw);
  height: calc((60 / var(--curent-size)) * 100vw);
  border-radius: 50%;
  border: calc((0.5 / var(--curent-size)) * 100vw) solid var(--belyy);
}

.faq-item-head span svg {
  width: calc((24 / var(--curent-size)) * 100vw);
  height: calc((24 / var(--curent-size)) * 100vw);
  transition: 0.3s ease;
}

.answer {
  min-height: 0;
  overflow: hidden;
  visibility: hidden;
  margin-top: 0;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: calc((24 / var(--curent-size)) * 100vw);
  color: var(--belyy);
}

.faq-item.active {
  grid-template-rows: auto 1fr;
}

.faq-item.active .answer {
  visibility: visible;
  margin-top: calc((10 / var(--curent-size)) * 100vw);
  transition: 0.3s linear;
}

.faq-item.active .faq-item-head span svg {
  transform: rotate(45deg);
  transition: 0.3s ease;
}

.contacts-wrapper {
  margin-top: calc((50 / var(--curent-size)) * 100vw);
  width: 100%;
  height: calc((690 / var(--curent-size)) * 100vw);
  position: relative;
}

#map {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

#map iframe {
  width: 100%;
  height: 100%;
}

.contacts-content {
  position: relative;
  top: calc((50 / var(--curent-size)) * 100vw);
  width: calc((722 / var(--curent-size)) * 100vw);
  padding: calc((40 / var(--curent-size)) * 100vw);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  background: rgba(14, 14, 14, 0.8);
}

.burger-wrapper {
  display: none;
}

.contacts-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: calc((10 / var(--curent-size)) * 100vw);
}

.contacts-item a,
.contacts-item p {
  display: flex;
  align-items: center;
  gap: calc((30 / var(--curent-size)) * 100vw);
}

.contacts-item a svg {
  width: calc((24 / var(--curent-size)) * 100vw);
  height: calc((24 / var(--curent-size)) * 100vw);
}

.contacts-item a p {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: calc((22 / var(--curent-size)) * 100vw);
  line-height: 130%;
  color: var(--belyy);
}

.contacts-item p svg {
  width: calc((19 / var(--curent-size)) * 100vw);
  height: calc((24 / var(--curent-size)) * 100vw);
}

.contacts-item p span {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: calc((22 / var(--curent-size)) * 100vw);
  line-height: 130%;
  color: var(--belyy);
}

.contacts-links {
  display: flex;
  align-items: center;
  width: 100%;
  justify-content: space-between;
  gap: calc((10 / var(--curent-size)) * 100vw);
  margin: calc((23 / var(--curent-size)) * 100vw) 0;
}

.contacts-links a {
  width: 100%;
  border: calc((0.5 / var(--curent-size)) * 100vw) solid var(--belyy);
  border-radius: 5px;
  padding: calc((10 / var(--curent-size)) * 100vw) 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: calc((10 / var(--curent-size)) * 100vw);
  background: initial;
}

.contacts-links a svg {
  width: calc((40 / var(--curent-size)) * 100vw);
  height: calc((40 / var(--curent-size)) * 100vw);
}

.contacts-links a p {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: calc((20 / var(--curent-size)) * 100vw);
  line-height: 130%;
  color: var(--belyy);
}

.contacts-content > p {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: calc((20 / var(--curent-size)) * 100vw);
  line-height: 130%;
  color: var(--belyy);
}

.form {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: calc((10 / var(--curent-size)) * 100vw);
  margin-top: calc((23 / var(--curent-size)) * 100vw);
}

.form > input {
  width: 100%;
  padding: calc((20 / var(--curent-size)) * 100vw)
    calc((30 / var(--curent-size)) * 100vw);
  outline: none;
  background: var(--belyy);
  border: calc((1 / var(--curent-size)) * 100vw) solid #00627e;

  font-family: var(--font-family);
  font-weight: 400;
  font-size: calc((16 / var(--curent-size)) * 100vw);
  line-height: 120%;
  color: var(--chernyy);
}

.form button {
  width: 100%;
  padding: calc((20 / var(--curent-size)) * 100vw) 0;
  display: flex;
  align-items: center;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: calc((30 / var(--curent-size)) * 100vw);
  text-transform: uppercase;
  color: var(--belyy);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  background: rgba(14, 14, 14, 0.7);
  border: calc((0.5 / var(--curent-size)) * 100vw) solid var(--belyy);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: calc((10 / var(--curent-size)) * 100vw);
}

.checkbox-wrapper {
  display: flex;
  align-items: center;
  width: 100%;
  gap: calc((10 / var(--curent-size)) * 100vw);
}

.checkbox-wrapper p {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: calc((16 / var(--curent-size)) * 100vw);
  line-height: 130%;
  color: var(--belyy);
}

.checkbox-wrapper p a {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: calc((16 / var(--curent-size)) * 100vw);
  line-height: 130%;
  color: var(--belyy);
  text-decoration: underline;
  text-decoration-skip-ink: none;
}

.checkbox {
  width: calc((26 / var(--curent-size)) * 100vw);
  height: calc((26 / var(--curent-size)) * 100vw);
  position: relative;
}

.checkbox input {
  width: 100%;
  height: 100%;
}

#contacts {
  padding-bottom: 0 !important;
}

footer {
  padding: calc((40 / var(--curent-size)) * 100vw) 0;
}

.footer-data {
  display: flex;
  align-items: center;
  width: 100%;
  justify-content: space-between;
}

.footer-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: calc((16 / var(--curent-size)) * 100vw);
}

.footer-text p {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: calc((18 / var(--curent-size)) * 100vw);
  line-height: 130%;
  letter-spacing: 0.05em;
  text-align: right;
  color: var(--belyy);
}

.footer-text a {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: calc((18 / var(--curent-size)) * 100vw);
  line-height: 130%;
  letter-spacing: 0.05em;
  text-decoration: underline;
  text-decoration-skip-ink: none;
  text-align: right;
  color: var(--belyy);
}

.footer-links {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: calc((16 / var(--curent-size)) * 100vw);
}

.footer-links > div {
	display: flex;
flex-direction: column;
	align-items: flex-end;
}

.footer-links a {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: calc((18 / var(--curent-size)) * 100vw);
  line-height: 130%;
  letter-spacing: 0.05em;
  text-align: right;
  color: var(--belyy);
  display: flex;
}

.footer-links p {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: calc((18 / var(--curent-size)) * 100vw);
  line-height: 130%;
  letter-spacing: 0.05em;
  text-align: right;
  color: var(--belyy);
}

.footer-links ul {
  display: flex;
  align-items: center;
  gap: calc((8 / var(--curent-size)) * 100vw);
}

.footer-links ul li a svg {
  width: calc((24 / var(--curent-size)) * 100vw);
  height: calc((24 / var(--curent-size)) * 100vw);
}

.footer-logo svg {
  width: calc((288 / var(--curent-size)) * 100vw);
  height: calc((81 / var(--curent-size)) * 100vw);
}

#nav-toggle {
  display: none;
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000000a1;
  z-index: 9;
  display: flex;
  justify-content: center;
  padding-top: calc((120 / var(--curent-size)) * 100vw);
  opacity: 0;
  visibility: hidden;
}

.modal.open {
  opacity: 1;
  visibility: visible;
}

.modal-content {
  width: calc((720 / var(--curent-size)) * 100vw);
  padding: calc((40 / var(--curent-size)) * 100vw);
  background: var(--chernyy);
  height: fit-content;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: calc((10 / var(--curent-size)) * 100vw);
  position: relative;
}

.close-modal {
  position: absolute;
  top: calc((20 / var(--curent-size)) * 100vw);
  right: calc((20 / var(--curent-size)) * 100vw);
  background: initial;
  border: none;
  cursor: pointer;
}

.close-modal {
  width: calc((20 / var(--curent-size)) * 100vw);
  height: calc((20 / var(--curent-size)) * 100vw);
}

.modal-content > p {
  font-family: var(--second-family);
  font-weight: 500;
  font-size: calc((50 / var(--curent-size)) * 100vw);
  line-height: 100%;
  text-transform: uppercase;
  text-align: center;
  color: var(--belyy);
}

.modal-content > span {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: calc((30 / var(--curent-size)) * 100vw);
  line-height: 100%;
  color: var(--belyy);
}

.modal-show-more {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #00000099;
  z-index: 9;
  display: flex;
  justify-content: center;
  padding-top: calc((140 / var(--curent-size)) * 100vw);
  overflow-y: auto;
  padding-bottom: calc((60 / var(--curent-size)) * 100vw);
  opacity: 0;
  visibility: hidden;
}

.modal-show-more.open {
  opacity: 1;
  visibility: visible;
}

.modal-show-content {
  width: calc((1000 / var(--curent-size)) * 100vw);
  height: fit-content;
  padding: calc((50 / var(--curent-size)) * 100vw);
  background: var(--chernyy);
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: calc((40 / var(--curent-size)) * 100vw);
}

.close-modal-more {
  position: absolute;
  top: calc((20 / var(--curent-size)) * 100vw);
  right: calc((20 / var(--curent-size)) * 100vw);
  background: initial;
  border: none;
}
.close-modal-more svg {
  width: calc((30 / var(--curent-size)) * 100vw);
  height: calc((30 / var(--curent-size)) * 100vw);
}

.modal-show-content > h4 {
  font-family: var(--second-family);
  font-weight: 500;
  font-size: calc((50 / var(--curent-size)) * 100vw);
  line-height: 100%;
  text-transform: uppercase;
  text-align: center;
  color: var(--belyy);
}

.modal-show-content > p {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: calc((30 / var(--curent-size)) * 100vw);
  line-height: 100%;
  color: var(--belyy);
}

.modal-show-content > a {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: calc((26 / var(--curent-size)) * 100vw);
  text-transform: uppercase;
  color: var(--belyy);
  display: flex;
  align-items: center;
  justify-content: center;
  width: calc((740 / var(--curent-size)) * 100vw);
  height: calc((60 / var(--curent-size)) * 100vw);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  background: rgba(14, 14, 14, 0.7);
  border: calc((0.5 / var(--curent-size)) * 100vw) solid var(--belyy);
}

.modals-imgs {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: calc((40 / var(--curent-size)) * 100vw);
}

.modals-imgs img {
  width: calc((430 / var(--curent-size)) * 100vw);
}

.text-modal-more {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
}

.text-modal-more ul,
.text-modal-more ol {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-left: calc((30 / var(--curent-size)) * 100vw);
}

.text-modal-more p,
.text-modal-more span,
.text-modal-more ul li,
.text-modal-more ol li,
.text-modal-more {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: calc((20 / var(--curent-size)) * 100vw);
  line-height: 120%;
  color: var(--belyy);
}

.send-message {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000000c7;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: calc((30 / var(--curent-size)) * 100vw);
  line-height: 120%;
  color: var(--belyy);
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
}

.send-message.open {
  opacity: 1;
  visibility: visible;
}

@media all and (max-width: 768px) {
  :root {
    --curent-size: 375;
  }

  section:not(#hero) {
    padding: calc((40 / var(--curent-size)) * 100vw) 0;
  }

  .container {
    width: calc((355 / var(--curent-size)) * 100vw);
    margin: 0 auto;
  }

  .header-menu {
    display: none;
  }

  .header-links > a {
    display: none;
  }

  .logo-header svg {
    width: calc((94 / var(--curent-size)) * 100vw);
    height: calc((26 / var(--curent-size)) * 100vw);
  }

  .header-links div a {
    font-size: calc((14 / var(--curent-size)) * 100vw);
  }

  .header-links div p {
    font-size: calc((10 / var(--curent-size)) * 100vw);
  }

  #nav-toggle {
    background: initial;
    height: calc((24 / var(--curent-size)) * 100vw);
    width: calc((35 / var(--curent-size)) * 100vw);
    cursor: pointer;
    border: none;
    z-index: 10;
    position: relative;
    display: flex;
    justify-content: flex-end;
    align-items: center;
  }

  #nav-toggle span,
  #nav-toggle span:before,
  #nav-toggle span:after {
    cursor: pointer;
    border-radius: calc((1 / var(--curent-size)) * 100vw);
    height: calc((2 / var(--curent-size)) * 100vw);
    width: calc((35 / var(--curent-size)) * 100vw);
    background: #ffffff;
    position: absolute;
    right: 0;
    top: 50%;
    display: block;
    content: "";
    border-radius: calc((20 / var(--curent-size)) * 100vw);
  }

  #nav-toggle span:before {
    width: calc((24 / var(--curent-size)) * 100vw);
  }

  #nav-toggle span {
    width: calc((35 / var(--curent-size)) * 100vw);
    position: relative;
    top: 0;
    right: 0;
    border-radius: calc((20 / var(--curent-size)) * 100vw);
  }

  #nav-toggle span:before {
    top: calc((-10 / var(--curent-size)) * 100vw);
  }

  #nav-toggle span:after {
    top: calc((10 / var(--curent-size)) * 100vw);
  }

  #nav-toggle span {
    transition: all 0.2s ease-in-out;
  }

  #nav-toggle span:before,
  #nav-toggle span:after {
    transition: all 0.3s ease-in-out;
  }

  #nav-toggle.active span {
    background-color: transparent;
  }

  #nav-toggle.active span:before,
  #nav-toggle.active span:after {
    top: 0;
  }

  #nav-toggle.active span:before {
    transform: rotate(-45deg);
  }

  #nav-toggle.active span:after {
    transform: rotate(-135deg);
  }

  #nav-toggle.active span:before,
  #nav-toggle.active span:after {
    width: calc((35 / var(--curent-size)) * 100vw);
  }

  #hero {
    height: calc((700 / var(--curent-size)) * 100vw);
  }

  .hero-wrapper h1 {
    font-size: calc((84 / var(--curent-size)) * 100vw);
  }

  .hero-wrapper h2 {
    font-size: calc((18 / var(--curent-size)) * 100vw);
    margin-top: calc((-20 / var(--curent-size)) * 100vw);
  }

  .hero-btns {
    margin-top: auto;
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: calc((10 / var(--curent-size)) * 100vw);
    width: 100%;
  }

  .hero-btns a {
    font-size: calc((22 / var(--curent-size)) * 100vw);
    width: 100%;
    height: calc((56 / var(--curent-size)) * 100vw);
  }

  .hero-wrapper {
    padding: calc((110 / var(--curent-size)) * 100vw) 0
      calc((30 / var(--curent-size)) * 100vw) 0;
  }

  .title {
    font-size: calc((30 / var(--curent-size)) * 100vw);
  }

  .why-list {
    gap: calc((20 / var(--curent-size)) * 100vw);
  }

  .why-list li {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
  }

  .why-list li div p {
    font-size: calc((30 / var(--curent-size)) * 100vw);
  }

  .why-list li div span {
    font-size: calc((18 / var(--curent-size)) * 100vw);
  }
  .why-wrapper {
    gap: calc((30 / var(--curent-size)) * 100vw);
  }

  .tabs {
    flex-direction: column;
    align-items: center;
    margin: calc((30 / var(--curent-size)) * 100vw) 0
      calc((20 / var(--curent-size)) * 100vw) 0;
  }

  .tabs li {
    width: 100%;
    height: calc((42 / var(--curent-size)) * 100vw);
    font-size: calc((16 / var(--curent-size)) * 100vw);
  }

  .tabs li:nth-child(2) {
    border-top: calc((0.5 / var(--curent-size)) * 100vw) solid var(--belyy);
    border-bottom: calc((0.5 / var(--curent-size)) * 100vw) solid var(--belyy);
    border-left: none;
    border-right: none;
  }

  .tabs-item li {
    width: 100%;
    height: calc((400 / var(--curent-size)) * 100vw);
    border: calc((0.5 / var(--curent-size)) * 100vw) solid var(--belyy);
  }

  .tabs-item li > div h5 {
    font-size: calc((26 / var(--curent-size)) * 100vw);
  }

  .tabs-item li > div p {
    font-size: calc((20 / var(--curent-size)) * 100vw);
  }

  .tabs-item li > div span {
    font-size: calc((16 / var(--curent-size)) * 100vw);
  }

  .tabs-item-btn {
    flex-direction: column;

    gap: calc((10 / var(--curent-size)) * 100vw);
  }

  .tabs-item-btn a {
    width: 100%;
    height: calc((42 / var(--curent-size)) * 100vw);
    font-size: calc((20 / var(--curent-size)) * 100vw);
  }

  .tabs-item li > div {
    gap: calc((16 / var(--curent-size)) * 100vw);
    padding: calc((16 / var(--curent-size)) * 100vw);
  }

  .about-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-top: calc((20 / var(--curent-size)) * 100vw);
  }

  .about-content img {
    width: 100%;
  }

  .about-text p {
    font-size: calc((18 / var(--curent-size)) * 100vw);
  }

  .about-ul-list {
    display: flex;
    align-items: center;
    list-style: none;
    width: 100%;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: calc((20 / var(--curent-size)) * 100vw);
    gap: calc((10 / var(--curent-size)) * 100vw);
  }

  .about-text ol li,
  .about-text ul li {
    font-family: var(--font-family);
    font-weight: 300;
    font-size: calc((16 / var(--curent-size)) * 100vw);
    line-height: 120%;
    color: var(--belyy);
    position: relative;
    padding-left: calc((44 / var(--curent-size)) * 100vw);
    line-height: 1;
  }

  .about-ul-list li {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: calc((6 / var(--curent-size)) * 100vw);
    border: calc((0.5 / var(--curent-size)) * 100vw) solid var(--belyy);
    width: calc((172 / var(--curent-size)) * 100vw);
    padding: calc((20 / var(--curent-size)) * 100vw) 0;
  }

  .about-ul-list li p {
    font-size: calc((27 / var(--curent-size)) * 100vw);
  }

  .about-ul-list li span {
    font-size: calc((16 / var(--curent-size)) * 100vw);
  }

  .gallery-content-wrapper {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: calc((50 / var(--curent-size)) * 100vw) auto 0 auto;
  }

  .gallery-content-wrapper button {
    width: calc((20 / var(--curent-size)) * 100vw);
    height: calc((20 / var(--curent-size)) * 100vw);
  }

  .gallery-content-wrapper button svg {
    width: calc((6 / var(--curent-size)) * 100vw);
    height: calc((12 / var(--curent-size)) * 100vw);
  }

  .gallery,
  .video {
    width: calc((300 / var(--curent-size)) * 100vw);
    overflow: visible !important;
  }

  .gallery-slide {
    width: 100%;
    height: calc((230 / var(--curent-size)) * 100vw);
  }

  .faq-item-head p {
    font-size: calc((20 / var(--curent-size)) * 100vw);
  }

  .faq-item {
    padding: calc((18 / var(--curent-size)) * 100vw)
      calc((10 / var(--curent-size)) * 100vw);
  }

  .faq-item-head span {
    width: calc((30 / var(--curent-size)) * 100vw);
    height: calc((30 / var(--curent-size)) * 100vw);
  }

  .faq-item-head span svg {
    width: calc((16 / var(--curent-size)) * 100vw);
    height: calc((16 / var(--curent-size)) * 100vw);
  }

  .answer {
    font-size: calc((16 / var(--curent-size)) * 100vw);
  }

  #map {
    position: static;
    width: calc((355 / var(--curent-size)) * 100vw);
    height: calc((290 / var(--curent-size)) * 100vw);
  }

  .contacts-wrapper {
    display: flex;
    align-items: center;
    flex-direction: column-reverse;
    gap: calc((20 / var(--curent-size)) * 100vw);
  }

  .contacts-content {
    position: relative;
    top: calc((0 / var(--curent-size)) * 100vw);
    width: 100%;
    padding: calc((0 / var(--curent-size)) * 100vw);
    -webkit-backdrop-filter: blur(0);
    backdrop-filter: blur(0);
    background: initial;
  }

  .contacts-item {
    gap: calc((10 / var(--curent-size)) * 100vw);
    align-items: center;
  }

  .contacts-item a,
  .contacts-item p {
    display: flex;
    align-items: center;
    gap: calc((10 / var(--curent-size)) * 100vw);
  }

  .contacts-item p span {
    font-size: calc((17 / var(--curent-size)) * 100vw);
  }

  .contacts-item p svg {
    width: calc((14 / var(--curent-size)) * 100vw);
    height: calc((18 / var(--curent-size)) * 100vw);
  }

  .contacts-item a svg {
    width: calc((18 / var(--curent-size)) * 100vw);
    height: calc((18 / var(--curent-size)) * 100vw);
  }

  .contacts-wrapper {
    height: auto;
    margin-top: calc((30 / var(--curent-size)) * 100vw);
  }

  .contacts-links a svg {
    width: calc((20 / var(--curent-size)) * 100vw);
    height: calc((20 / var(--curent-size)) * 100vw);
  }

  .contacts-links a p {
    font-size: calc((16 / var(--curent-size)) * 100vw);
  }

  .contacts-item a p {
    font-size: calc((17 / var(--curent-size)) * 100vw);
  }

  .contacts-links {
    display: flex;
    align-items: center;
    width: 100%;
    flex-direction: column;
    gap: calc((10 / var(--curent-size)) * 100vw);
    margin: calc((23 / var(--curent-size)) * 100vw) 0;
  }

  .contacts-content > p {
    font-size: calc((16 / var(--curent-size)) * 100vw);
  }

  .checkbox-wrapper p {
    font-size: calc((12 / var(--curent-size)) * 100vw);
  }

  .checkbox-wrapper p a {
    font-size: calc((12 / var(--curent-size)) * 100vw);
  }

  .form button {
    padding: calc((14 / var(--curent-size)) * 100vw) 0;
    font-size: calc((22 / var(--curent-size)) * 100vw);
  }

  .footer-data {
    display: flex;
    align-items: center;
    flex-direction: column;
    width: 100%;
    justify-content: space-between;
    gap: calc((30 / var(--curent-size)) * 100vw);
  }

  .footer-logo {
    order: -4;
  }

  .footer-logo svg {
    width: calc((220 / var(--curent-size)) * 100vw);
    height: calc((62 / var(--curent-size)) * 100vw);
  }

  .footer-links p {
    display: none;
  }
  .footer-text {
    flex-direction: column;
    align-items: center;
  }

  .footer-links {
    order: -2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: calc((16 / var(--curent-size)) * 100vw);
  }

  .mob {
    display: flex;

    font-family: var(--font-family);
    font-weight: 400;
    font-size: calc((18 / var(--curent-size)) * 100vw);
    line-height: 130%;
    letter-spacing: 0.05em;
    text-align: right;
    color: var(--belyy);
  }

  footer {
    border-top: calc((0.5 / var(--curent-size)) * 100vw) solid var(--belyy);
  }

  #contacts {
    padding-bottom: calc((40 / var(--curent-size)) * 100vw) !important;
  }

  .burger-wrapper {
    display: flex;
    justify-content: flex-end;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9;
    background: #00000097;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s ease;
  }

  .burger-wrapper.open {
    opacity: 1;
    visibility: visible;
    transition: 0.3s ease;
  }

  .burger-content {
    width: calc((320 / var(--curent-size)) * 100vw);
    height: 100%;
    background: #fff;
    padding: calc((80 / var(--curent-size)) * 100vw)
      calc((40 / var(--curent-size)) * 100vw)
      calc((40 / var(--curent-size)) * 100vw)
      calc((40 / var(--curent-size)) * 100vw);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transform: translateX(400px);
    transition: 0.3s ease;
  }

  .burger-content.show {
    transform: translateX(0);
    transition: 0.3s ease;
  }

  .burger-menu {
    display: flex;
    flex-direction: column;
    list-style: none;
    gap: calc((20 / var(--curent-size)) * 100vw);
  }

  .burger-menu li a {
    font-family: var(--second-family);
    font-weight: 500;
    font-size: calc((20 / var(--curent-size)) * 100vw);
    line-height: 100%;
    text-transform: uppercase;
    color: var(--chernyy);
  }

  .burger-content > a {
    margin-top: auto;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-family);
    font-weight: 400;
    font-size: calc((18 / var(--curent-size)) * 100vw);
    text-transform: uppercase;
    color: var(--chernyy);
    line-height: 1;
    border: calc((1 / var(--curent-size)) * 100vw) solid var(--chernyy);
    padding: calc((15 / var(--curent-size)) * 100vw)
      calc((20 / var(--curent-size)) * 100vw);
  }

  .modal-content {
    width: 100%;
    padding: calc((60 / var(--curent-size)) * 100vw)
      calc((10 / var(--curent-size)) * 100vw)
      calc((40 / var(--curent-size)) * 100vw)
      calc((10 / var(--curent-size)) * 100vw);
    background: var(--chernyy);
    height: fit-content;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: calc((10 / var(--curent-size)) * 100vw);
    position: relative;
  }

  .modal-content > p {
    font-size: calc((26 / var(--curent-size)) * 100vw);
  }

  .modal-content > span {
    font-size: calc((20 / var(--curent-size)) * 100vw);
  }

  .modal {
    padding-top: calc((70 / var(--curent-size)) * 100vw);
  }

  .modal-show-content > h4 {
    font-size: calc((26 / var(--curent-size)) * 100vw);
  }

  .modal-show-content {
    width: 100%;
    padding: calc((60 / var(--curent-size)) * 100vw)
      calc((10 / var(--curent-size)) * 100vw)
      calc((20 / var(--curent-size)) * 100vw)
      calc((10 / var(--curent-size)) * 100vw);
    gap: calc((20 / var(--curent-size)) * 100vw);
  }

  .modal-show-content > p {
    font-size: calc((20 / var(--curent-size)) * 100vw);
  }

  .modals-imgs {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-direction: column;
    width: 100%;
    gap: calc((10 / var(--curent-size)) * 100vw);
  }

  .modals-imgs img {
    width: 100%;
  }

  .text-modal-more p,
  .text-modal-more span,
  .text-modal-more ul li,
  .text-modal-more ol li,
  .text-modal-more {
    font-size: calc((16 / var(--curent-size)) * 100vw);
  }
	
	.footer-links > div {
    gap: calc((10 / var(--curent-size)) * 100vw);
    align-items: center;
}

  .modal-show-content > a {
    font-size: calc((20 / var(--curent-size)) * 100vw);
    width: 100%;
    height: calc((40 / var(--curent-size)) * 100vw);
  }

  .close-modal-more svg {
    width: calc((20 / var(--curent-size)) * 100vw);
    height: calc((20 / var(--curent-size)) * 100vw);
  }

  html {
    scroll-padding-top: calc((30 / var(--curent-size)) * 100vw);
  }
}
