:root {
  font-family: "Montserrat", sans-serif;
  --second-family: 'stolzl_regular', sans-serif;
  --white: #fff;
  --gray: #cfcfcf;
  --f39200: #f39200;
  --text: #1d1d1d;
  --light-graphite: #414141;
  --graphite-bg: #232323;
  --dark-iron: #626262;
}
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
a,
a:hover,
a:focus {
  text-decoration: none;
}
a {
  transition: 0.3s;
}
img {
  max-width: 100%;
  max-height: 100%;
}
ul {
  list-style-type: none;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: normal;
}
.container {
  width: 1400px;
  padding: 0 15px;
  margin: auto;
}
body,
input,
textarea,
button {
  font-family: 'Montserrat', sans-serif;
}
body {
  background-color: var(--text);
  position: relative;
}
.overflow-hidden {
  overflow: hidden;
}
.list-lines-page li {
  width: 1px;
  height: 100%;
  background: var(--graphite-bg);
  position: absolute;
  top: 0;
  left: 50%;
}
.list-lines-page li:nth-child(1) {
  left: calc(50% + 100px);
}
.list-lines-page li:nth-child(2) {
  left: calc(50% + 300px);
}
.list-lines-page li:nth-child(3) {
  left: calc(50% + 500px);
}
.list-lines-page li:nth-child(4) {
  left: calc(50% + 700px);
}
.list-lines-page li:nth-child(5) {
  left: calc(50% - 100px);
}
.list-lines-page li:nth-child(6) {
  left: calc(50% - 300px);
}
.list-lines-page li:nth-child(7) {
  left: calc(50% - 500px);
}
.list-lines-page li:nth-child(8) {
  left: calc(50% - 700px);
}
.modal {
  width: 100%;
  height: 100%;
  backdrop-filter: blur(4px);
  background: rgba(0, 0, 0, 0.55);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1001;
  display: none;
  align-items: center;
  justify-content: center;
}
.modal .close-modal-times {
  color: white;
  font-size: 32px;
  position: absolute;
  right: 12px;
  top: 0px;
  cursor: pointer;
  transition: 0.3s;
}
.modal .close-modal-times:hover {
  color: |#f39200;
}
.modal .modal-form {
  width: 480px;
  max-width: calc(88%);
  display: none;
  background: var(--graphite-bg);
  padding: 50px;
  border-radius: 25px;
  position: relative;
  animation: scall 0.7s;
}
.modal .modal-form .booking-title {
  margin-bottom: 35px;
}
.modal .modal-form .input {
  margin-bottom: 15px;
}
.modal .modal-form .chouse-zone {
  gap: 25px;
  margin-bottom: 30px;
}
.modal .modal-form.modal-form-order {
  width: 610px;
}
.open-modal {
  cursor: pointer;
}
.menu_mob {
  width: 25px;
  height: 20px;
  display: none;
  position: relative;
  z-index: 11;
}
.menu_mob span {
  width: 25px;
  height: 2px;
  display: block;
  background-color: #ffffff;
  position: absolute;
  top: 1px;
  border-radius: 15px;
  transition: 0.5s;
}
.menu_mob span:nth-child(2) {
  top: 7.5px;
}
.menu_mob span:nth-child(3) {
  top: 14px;
}
.active_drop_men.menu_mob span {
  top: 9px;
  background: #ffffff;
}
.active_drop_men span:nth-child(1) {
  transform: rotate(225deg);
}
.active_drop_men span:nth-child(2) {
  transform: rotate(135deg);
}
.active_drop_men span:nth-child(3) {
  transform: rotate(225deg);
}
.overflow-wrap {
  overflow-x: auto;
  padding-bottom: 10px;
}
.overflow-wrap::-webkit-scrollbar-track {
  background-color: #efebe0;
}
.overflow-wrap::-webkit-scrollbar {
  height: 5px;
  background-color: #efebe0;
}
.overflow-wrap::-webkit-scrollbar-thumb {
  background-color: #0e987f;
  border-radius: 5px;
}
.scroll-top {
  position: fixed;
  bottom: 12px;
  right: 15px;
  width: 60px;
  height: 60px;
  display: block;
  border-radius: 50%;
  border: 1px solid var(--f39200);
  background-image: url(../img/up-arrow.svg);
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: all 0.6s ease;
  transform: translateX(150%);
  z-index: 10;
}
.scroll-top:hover {
  background-color: var(--f39200);
}
.scroll-top.active {
  opacity: 1;
  transform: none;
}
@keyframes scall {
  from {
    transform: scale(0);
  }
  to {
    transform: scale(1);
  }
}
.center {
  text-align: center;
}
.btn {
  max-width: 100%;
  height: 50px;
  background-color: #d73b35;
  display: flex;
  justify-content: center;
  align-items: center;
  border: none;
  outline: none;
  cursor: pointer;
  transition: 0.3s;
}
.btn:hover {
  background-color: #f14741;
}
.banner-wrap {
  height: 100vh;
  position: relative;
  background-color: #1D1D1D;
}
.banner-box {
  position: relative;
  z-index: 111;
}
.video-box {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.video-box:before {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.65);
}
.video-banner {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.header-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 0;
}
.header-logo:hover {
  opacity: 0.7;
}
.header-menu-list {
  display: flex;
  gap: 40px;
}
.header-menu-list li a {
  font-family: var(--font-family);
  font-size: 16px;
  color: var(--white);
}
.header-menu-list li a:hover {
  color: var(--f39200);
}
.header-phone {
  margin-left: 20px;
}
.header-phone span {
  color: var(--f39200);
  display: inline-block;
  position: relative;
  transition: 0.3s;
}
.header-phone span:first-child {
  padding-right: 2px;
  right: 0;
}
.header-phone span:last-child {
  padding-left: 2px;
  left: 0;
}
.header-phone:hover span:first-child {
  right: 2px;
}
.header-phone:hover span:last-child {
  left: 2px;
}
.header-mobile-info {
  display: none;
}
.header-address {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  letter-spacing: 0.02em;
  color: var(--white);
  padding: 40px 0 50px;
  border-bottom: 1px solid #ffffff;
  margin-bottom: 50px;
}
.creater-text {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  letter-spacing: 0.02em;
  color: var(--white);
  text-align: center;
}
.banner-content {
  height: calc(100vh - 210px);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.banner-content h1 {
  font-size: 126px;
  font-family: 'stolzl_medium';
  text-align: center;
  color: var(--white);
  line-height: 1;
}
.banner-text-info {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 22px;
  line-height: 127%;
  letter-spacing: 0.02em;
  color: var(--white);
  padding-top: 30px;
  border-top: 1px solid #ffffff;
  margin-top: 20px;
}
.banner-text-info br {
  display: none;
}
.banner-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 60px;
}
.banner-bottom p {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  color: var(--white);
}
.banner-bottom-btns {
  display: flex;
  gap: 25px;
}
.btn-info {
  padding: 28px 33px;
  border-radius: 70px;
  backdrop-filter: blur(25px);
  background: rgba(29, 29, 29, 0.2);
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 18px;
  line-height: 133%;
  color: var(--white);
}
.btn-info:hover {
  background: rgba(29, 29, 29, 0.3);
}
.btn-info.btn-arrow {
  padding-right: 97px;
  position: relative;
}
.btn-info.btn-arrow:before {
  content: '';
  width: 62px;
  height: 62px;
  position: absolute;
  top: calc(50% - 31px);
  right: 15px;
  background-image: url(../img/arrow-btn.svg);
  background-size: cover;
  background-position: center;
  transition: 0.3s;
}
.btn-info.btn-arrow:hover:before {
  transform: rotate(45deg);
}
.section {
  padding-top: 150px;
  position: relative;
}
.section:before {
  content: '';
  width: 100%;
  height: 1px;
  background: var(--graphite-bg);
  position: absolute;
  top: 75px;
  left: 0;
}
.title {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 32px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 80px;
}
.section-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.section-top .title {
  width: 470px;
  margin-bottom: 0;
}
.section-top .section-content {
  width: calc(100% - 500px);
}
.section-top .section-content h4,
.section-top .section-content p {
  transition: color 0.3s ease-in-out;
}
.section-top .section-content h4 {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 24px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 40px;
}
.section-top .section-content h4:not(:first-child) {
  padding-top: 20px;
}
.section-top .section-content p {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 18px;
  line-height: 133%;
  letter-spacing: 0.02em;
  text-align: left;
  color: var(--white);
  margin-bottom: 30px;
}
#about .section-top {
  background-image: url(../img/about-bg.png);
  background-repeat: no-repeat;
  background-position-y: 155px;
}
.about-photos {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: 150px;
}
.about-photos img {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 25px;
  object-position: center;
  object-fit: cover;
}
.about-photo-left {
  width: 35%;
}
.about-photo-right {
  width: calc(65% - 11px);
}
.offer-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.offer-block {
  width: calc(25% - 9px);
  height: 333px;
  background: var(--graphite-bg);
  border-radius: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid var(--graphite-bg);
  transition: 0.3s;
}
.offer-block:hover {
  border: 1px solid var(--f39200);
}
.offer-block:hover .offer-title {
  display: none;
}
.offer-block:hover .offet-content {
  display: flex;
}
.offer-block p {
  max-width: 270px;
}
.offer-margin-right {
  margin-right: calc(25% - 9px);
}
.offer-margin-left {
  margin-left: calc(25% + 3px);
}
.offer-title {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 18px;
  line-height: 133%;
  letter-spacing: 0.02em;
  text-align: center;
  color: var(--white);
}
.offet-content {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
}
.offet-content p {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  letter-spacing: 0.02em;
  text-align: center;
  color: var(--white);
}
.offer-slider-block {
  width: 100%;
  height: 420px;
  background: var(--graphite-bg);
  text-align: center;
  padding-top: 75px;
  border: 1px solid var(--f39200);
  border-radius: 25px;
}
.offer-slider-block p {
  max-width: 300px;
  padding: 20px 15px 0;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  letter-spacing: 0.02em;
  text-align: center;
  color: var(--white);
  margin: auto;
}
.swiper-navigation-box {
  width: 180px;
  height: 60px;
  position: absolute;
  left: calc(50% - 90px);
  bottom: 70px;
  z-index: 10;
  display: flex;
  justify-content: space-between;
}
.swiper-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 1px solid var(--f39200);
  background-image: url(../img/arrow-white.svg);
  background-repeat: no-repeat;
  background-position: center center;
  background-color: #1D1D1D;
  cursor: pointer;
  transition: 0.3s;
  position: relative;
  z-index: 111111;
}
.swiper-btn:hover {
  background-color: var(--f39200);
}
.swiper-next {
  transform: rotate(180deg);
}
.swiper-offer-wrap {
  display: none;
  padding: 0 15px;
  position: relative;
}
.swiper-offer-wrap:before,
.swiper-offer-wrap:after {
  content: '';
  width: calc(100% - 30px);
  height: 100%;
  border: 1px solid #4d4d4d;
  background: var(--graphite-bg);
  border-radius: 25px;
  position: absolute;
  left: 15px;
  transition: 0.4s;
}
.swiper-offer-wrap:before {
  top: -25px;
  transform: rotate(5deg);
  z-index: -1;
}
.swiper-offer-wrap:after {
  top: -65px;
  transform: rotate(-5deg);
  z-index: -2;
}
.swiper-offer-wrap.active:before {
  transform: rotate(-5deg);
}
.swiper-offer-wrap.active:after {
  transform: rotate(5deg);
}
.gallary-pagination {
  display: flex;
  justify-content: flex-end;
  gap: 28px;
}
.swiper-gallary {
  margin: 75px 0 150px;
}
.gallary-photo {
  margin-bottom: 20px;
}
.gallary-photo img {
  display: block;
  object-fit: cover;
  object-position: center;
  margin: auto;
  border-radius: 25px;
}
.gallary-title {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 18px;
  text-align: center;
  line-height: 133%;
  color: var(--white);
}
.gallary-top {
  position: relative;
}
.flat-wrap {
  display: flex;
  justify-content: space-between;
}
.flat-photo {
  width: 57%;
  position: relative;
}
.flat-content {
  width: calc(43% - 140px);
}
.flat-numbers li {
  width: 56px;
  height: 56px;
  border-radius: 30px;
  background: var(--white);
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 18px;
  text-transform: uppercase;
  color: var(--text);
  cursor: pointer;
  position: absolute;
  transition: 0.3s;
}
.flat-numbers li:nth-child(1) {
  top: 330px;
  left: 405px;
}
.flat-numbers li:nth-child(2) {
  top: 90px;
  left: 405px;
}
.flat-numbers li:nth-child(3) {
  top: 330px;
  left: 265px;
}
.flat-numbers li:nth-child(4) {
  top: 478px;
  left: 635px;
}
.flat-numbers li:nth-child(5) {
  top: 90px;
  left: 205px;
}
.flat-numbers li:nth-child(6) {
  top: 237px;
  left: 650px;
}
.flat-numbers li:nth-child(7) {
  top: 90px;
  left: 62px;
}
.flat-numbers li.active {
  background: var(--f39200);
  color: var(--white);
}
.faq-block {
  margin-bottom: 20px;
}
.faq-block.active .faq-title {
  color: var(--f39200);
}
.faq-block:first-child .faq-text {
  display: block;
}
.flat-title {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 24px;
  text-transform: uppercase;
  color: var(--white);
  cursor: pointer;
  transition: 0.4s;
  margin-bottom: 60px;
}
.faq-title {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 18px;
  line-height: 133%;
  letter-spacing: 0.02em;
  color: var(--white);
  cursor: pointer;
  margin-bottom: 10px;
}
.faq-title span:before {
  content: '[ ';
  left: 0;
}
.faq-title span:after {
  content: ' ]';
  padding-right: 5px;
  right: 0;
}
.faq-title span:before,
.faq-title span:after {
  color: var(--f39200);
  position: relative;
  transition: 0.3s;
}
.faq-title:hover span:before {
  left: -2px;
}
.faq-title:hover span:after {
  right: -2px;
}
.faq-text {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: var(--white);
  display: none;
}
.tour {
  margin-top: 150px;
}
.tour iframe {
  width: 100%;
  height: 700px;
}
.booking-wrap {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.booking-free,
.booking-form {
  width: calc(50% - 7px);
  padding: 55px 60px 70px;
}
.booking-free {
  border: 1px solid var(--dark-iron);
  border-radius: 25px;
}
.booking-form {
  border-radius: 25px;
  background: var(--graphite-bg);
}
.booking-title {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 24px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 45px;
}
.booking-text {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: var(--white);
}
.booking-text span {
  display: block;
  font-size: 14px;
}
.list-info {
  list-style-type: disc;
  padding-left: 15px;
}
.list-info li {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: var(--white);
}
.tel-info {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: var(--white);
}
.tel-info:hover {
  color: var(--f39200);
}
.tel-info:hover:before {
  left: -2px;
}
.tel-info:hover:after {
  right: -2px;
}
.tel-info:before {
  content: '[ ';
  left: 0;
}
.tel-info:after {
  content: ' ]';
  right: 0;
}
.tel-info:before,
.tel-info:after {
  color: var(--f39200);
  position: relative;
  transition: 0.3s;
}
.m-b-25 {
  margin-bottom: 25px;
}
.booking-text-bottom {
  margin-top: 240px;
}
.input {
  width: 100%;
  height: 50px;
  background: var(--graphite-bg) !important;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  color: var(--gray);
  border: none;
  border-bottom: 1px solid var(--gray);
  outline: none;
  margin-bottom: 30px;
}
.input:valid {
  background: Red;
}
.input:invalid {
  background: Red;
}
.input:-webkit-autofill {
  background: red !important;
}
.textarea {
  width: 100%;
  height: 135px;
  border-radius: 10px;
  background: no-repeat;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  color: var(--gray);
  border: 1px solid var(--gray);
  outline: none;
  padding: 15px 23px;
  resize: none;
  margin-bottom: 45px;
}
.button {
  background-color: var(--f39200);
  display: inline-block;
  border-radius: 55px;
  padding: 18px 70px 18px 32px;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 18px;
  line-height: 133%;
  border: none;
  cursor: pointer;
  color: var(--white);
  position: relative;
}
.button:hover:before {
  transform: rotate(45deg);
}
.button:before {
  content: '';
  width: 55px;
  height: 55px;
  background-image: url(../img/arrow-button.svg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: absolute;
  right: 4px;
  top: 3px;
  transition: 0.4s;
}
.button.submited {
  background-color: #89c340;
}
.button.submited:before {
  background-image: url(../img/arrow-button-submited.svg);
}
.text-submited {
  display: none;
  width: 100%;
  text-align: center;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  line-height: 171%;
  color: var(--white);
  margin-top: 15px;
}
.text-submited.submited {
  display: block;
}
.chouse-zone {
  display: flex;
  gap: 35px;
  flex-wrap: wrap;
  margin-bottom: 45px;
}
.zone-name {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  color: var(--gray);
}
.label-radio span {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  color: var(--gray);
  cursor: pointer;
}
.label-radio span:before {
  content: '[ ';
  left: 0;
}
.label-radio span:after {
  content: ' ]';
  right: 0;
}
.label-radio span:before,
.label-radio span:after {
  color: var(--f39200);
  position: relative;
  transition: 0.3s;
}
.label-radio:hover span:before {
  left: -2px;
}
.label-radio:hover span:after {
  right: -2px;
}
.label-radio input {
  display: none;
}
.label-radio input:checked ~ span {
  color: var(--f39200);
}
.video-container {
  width: 1800px;
  max-width: calc(100% - 30px);
  overflow: hidden;
  border-radius: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  margin: auto;
}
.video-container img {
  transition: 2s;
}
.video-container.active img {
  transform: scale(1.2);
}
.video-btn {
  width: 350px;
  position: absolute;
  font-family: var(--font-family);
  font-weight: 360;
  font-size: 32px;
  line-height: 75%;
  text-transform: uppercase;
  color: var(--white);
  cursor: pointer;
}
.video-btn span {
  background-image: url(../img/play-btn.svg);
  background-repeat: no-repeat;
  background-position: 9px center;
  padding: 0 33px;
  position: relative;
}
.video-btn span:before,
.video-btn span:after {
  position: absolute;
  transition: 0.4s;
}
.video-btn span:before {
  content: '[';
  left: 3px;
}
.video-btn span:after {
  content: ']';
  right: 10px;
}
.video-btn:hover span:before,
.video-btn:hover span:after {
  color: var(--f39200);
}
.events .section-content h4,
.events .section-content p,
.events .section-content ul {
  max-width: 605px;
}
.events .button {
  margin-top: 25px;
}
.events-list {
  list-style-type: disc;
  padding-left: 15px;
  margin-bottom: 50px;
}
.events-list li {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 18px;
  line-height: 150%;
}
.events-photo {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 80px;
}
.event-photo-block {
  width: calc(25% - 9px);
}
.event-photo-block img {
  border-radius: 25px;
  object-position: center;
  object-fit: cover;
}
.footer {
  padding: 150px 0 75px;
}
.footer-box {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.footer-contact {
  width: 310px;
  position: relative;
}
.footer-map {
  width: calc(100% - 500px);
  position: relative;
}
.route-btn {
  width: 203px;
  height: 37px;
  display: flex;
  justify-content: space-around;
  align-items: center;
  position: absolute;
  bottom: 25px;
  right: 60px;
  padding-left: 25px;
  background-color: var(--white);
  border-radius: 2px;
  font-family: var(--second-family);
  background-image: url(../img/map-button-icon.svg);
  background-repeat: no-repeat;
  background-position: 8px center;
  font-weight: 500;
  font-size: 14px;
  border: none;
  color: var(--tertiary-base);
  cursor: pointer;
  z-index: 1000;
}
.title-footer {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 16px;
  line-height: 150%;
  color: var(--white);
  margin-bottom: 10px;
}
.footer-link {
  display: inline-block;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: var(--white);
  margin-bottom: 30px;
}
.footer-link:hover {
  color: var(--f39200);
}
.footer-link-info {
  margin-bottom: 50px;
}
.footer-link-info li {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: var(--white);
}
.coworking-text {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  line-height: 171%;
  color: var(--white);
  position: relative;
  margin-top: -15px;
}
.footer-links-list {
  display: flex;
  gap: 35px;
}
.footer-links-list li a {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: var(--white);
}
.footer-links-list li a:before,
.footer-links-list li a:after {
  color: var(--f39200);
  position: relative;
  transition: 0.3s;
}
.footer-links-list li a:before {
  content: '[';
  padding-right: 8px;
  left: 0;
}
.footer-links-list li a:after {
  content: ']';
  padding-left: 8px;
  right: 0;
}
.footer-links-list li a:hover {
  color: var(--f39200);
}
.footer-links-list li a:hover:before {
  left: -2px;
}
.footer-links-list li a:hover:after {
  right: -2px;
}
#map {
  height: 635px;
}
.modal-video video {
  width: 1200px;
  max-width: calc(100% - 30px);
  display: block;
  margin: auto;
}
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #111;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 1111111;
}
.preloader-text {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 160px;
  text-transform: uppercase;
  color: var(--white);
  transition: opacity 0.5s ease-in-out;
}
.progress-bar {
  width: 630px;
  max-width: calc(100% - 30px);
  position: absolute;
  bottom: 150px;
  height: 2px;
  background-color: var(--light-graphite);
  border-radius: 5px;
}
.fadeIn {
  opacity: 0;
  animation: fadeIn 0.6s ease-in-out 0.6s forwards;
}
@keyframes fadeIn {
  to {
    opacity: 1;
  }
}
.progress-bar-inner {
  height: 100%;
  width: 0;
  background-color: var(--white);
  font-size: 1rem;
  transition: width 0.1s;
}
.progress-bar-inner {
  position: relative;
}
.progress-bar-inner span {
  width: 100px;
  position: absolute;
  top: -45px;
  color: white;
  left: 260px;
  font-family: var(--font-family);
  font-size: 28px;
  text-transform: uppercase;
  text-align: center;
  color: var(--white);
}
.preloader-bottom-info {
  width: 250px;
  position: absolute;
  left: calc(50% - 125px);
  bottom: 100px;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 18px;
  line-height: 133%;
  text-align: center;
  color: var(--white);
}
.modal-form-call .button {
  margin-top: 25px;
}
