@charset "UTF-8";
@import "../fonts/Gilroy/Gilroy.css";
@import "bootstrap/bootstrap-reboot.min.css";
@import "bootstrap/bootstrap-grid.min.css";
@import "../libs/fancybox/fancybox.css";
@import "../libs/swiper/swiper-bundle.min.css";
@import "icons/tabler-icons-300.min.css";
@import "checkbox.css";
:root {
  --swiper-theme-color: #ff3838;
  scrollbar-color: #ff3838 #fff;
  scrollbar-width: thin;
}

body {
  font-family: "Gilroy", system-ui, -apple-system, BlinkMacSystemFont, San Francisco, Segoe UI, Roboto, Helvetica Neue, sans-serif;
  font-weight: normal;
  color: #272727;
  height: 100%;
}

html body svg {
  flex-shrink: 0;
  height: 1em;
  width: 1em;
}

nav {
  position: sticky;
  top: 0;
  background-color: #fff;
  box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.1);
  z-index: 5;
}
nav .toolbar {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 15px 0;
}
nav .toolbar > .logotype > img {
  width: clamp(150px, 25vw, 300px);
  max-width: 100%;
}
nav .toolbar > .toggle-menu {
  display: flex;
  font-size: 18px;
  text-decoration: none;
  color: #272727;
}
nav .toolbar > .toggle-menu > .navbar-toggler-icon {
  display: inline-block;
  height: 2px;
  width: 1.25em;
  background: currentColor;
  transition: top 0.2s 0.2s, bottom 0.2s 0.2s, transform 0.2s, opacity 0s 0.2s;
  position: relative;
}
nav .toolbar > .toggle-menu > .navbar-toggler-icon::after, nav .toolbar > .toggle-menu > .navbar-toggler-icon::before {
  content: "";
  display: block;
  height: inherit;
  width: inherit;
  border-radius: inherit;
  background: inherit;
  position: absolute;
  left: 0;
  transition: inherit;
}
nav .toolbar > .toggle-menu > .navbar-toggler-icon::before {
  top: -0.45em;
}
nav .toolbar > .toggle-menu > .navbar-toggler-icon::after {
  bottom: -0.45em;
}
nav .toolbar > .toggle-menu[data-open=true] > .navbar-toggler-icon {
  transform: rotate(45deg);
  transition: top 0.3s, bottom 0.3s, transform 0.3s 0.3s, opacity 0s 0.3s;
}
nav .toolbar > .toggle-menu[data-open=true] > .navbar-toggler-icon::before {
  top: 0;
  transform: rotate(-90deg);
}
nav .toolbar > .toggle-menu[data-open=true] > .navbar-toggler-icon::after {
  bottom: 0;
  opacity: 0;
}
nav .toolbar > .phone {
  display: flex;
  font-size: 28px;
  color: #272727;
}
nav .toolbar > .city {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  line-height: 1;
  flex: 1;
}
nav .toolbar > .city > u {
  color: #000000;
}
nav .toolbar > .city > span {
  color: #272727;
}
nav .toolbar > .call {
  flex: 1;
}
nav .toolbar > .call > .btn {
  white-space: nowrap;
  font-size: 18px;
  font-weight: 500;
  padding: 10px 20px;
  text-decoration: none;
  border: 1px solid #2c2c2c;
  color: #272727;
  background-color: #fff;
  transition: 0.2s ease-in-out;
}
nav .toolbar > .call > .btn:active {
  color: #fff;
  background-color: #2c2c2c;
}
@media (hover: hover) {
  nav .toolbar > .call > .btn:hover {
    color: #fff;
    background-color: #2c2c2c;
  }
}
nav .toolbar > .information {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 20px;
}
nav .toolbar > .information > .chat > a {
  width: auto;
  text-decoration: none;
  opacity: 1;
  transition: 0.2s ease-in-out;
}
nav .toolbar > .information > .chat > a:active {
  opacity: 0.7;
}
@media (hover: hover) {
  nav .toolbar > .information > .chat > a:hover {
    opacity: 0.7;
  }
}
nav .toolbar > .information > .chat > a > img {
  width: auto;
}
nav .toolbar > .information > .phone {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  line-height: 1.25;
}
nav .toolbar > .information > .phone > a {
  text-decoration: none;
  color: #272727;
  font-size: 24px;
  font-weight: bold;
}
nav .toolbar > .information > .phone > small {
  color: #272727;
  font-size: 12px;
  font-weight: 400;
}
nav > .menu {
  background-color: #272727;
  overflow: auto;
}
@media screen and (min-width: 768px) {
  nav > .menu {
    display: flex !important;
    transition: 0.2s ease-in-out;
  }
}
nav > .menu .list {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 40px;
}
@media screen and (min-width: 768px) {
  nav > .menu .list > a {
    position: relative;
    color: #fff;
    text-decoration: none;
    padding: 30px 0;
    text-transform: uppercase;
    white-space: nowrap;
    /* box-shadow: inset 0px -100px 49px -43px rgba(233, 54, 54, 0.43); */
  }
  nav > .menu .list > a::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    transition: 0.2s ease-in-out;
  }
  nav > .menu .list > a:active::after {
    background: rgb(233, 54, 54);
    box-shadow: 0px -10px 30px 5px rgba(233, 54, 54, 0.43);
  }
}
@media screen and (min-width: 768px) and (hover: hover) {
  nav > .menu .list > a:hover::after {
    background: rgb(233, 54, 54);
    box-shadow: 0px -10px 30px 5px rgba(233, 54, 54, 0.43);
  }
}
@media screen and (min-width: 0px) and (max-width: 767px) {
  nav > .menu {
    display: none;
    position: absolute;
    width: 100%;
  }
  nav > .menu .list {
    flex-direction: column;
    flex-wrap: nowrap;
    gap: 10px;
    padding: 20px 0;
  }
  nav > .menu .list > a {
    text-decoration: none;
    color: #fff;
    opacity: 1;
    transition: 0.2s ease-in-out;
  }
  nav > .menu .list > a:active {
    opacity: 0.8;
  }
}
@media screen and (min-width: 0px) and (max-width: 767px) and (hover: hover) {
  nav > .menu .list > a:hover {
    opacity: 0.8;
  }
}

.wrapper {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  height: 100%;
  /* gap: 10px; */
}
.wrapper > section {
  flex: 1 0 auto;
}
.wrapper > section.slider-home .swnaw {
  position: absolute;
  top: var(--swiper-navigation-top-offset, 50%);
  z-index: 10;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  background: #d1d1d1;
  color: #272727;
  font-size: 24px;
  opacity: 1;
}
.wrapper > section.slider-home .swnaw:hover {
  opacity: 0.8;
}
.wrapper > section.slider-home .swnaw.prev {
  left: var(--swiper-navigation-sides-offset, 10px);
  right: auto;
}
.wrapper > section.slider-home .swnaw.next {
  right: var(--swiper-navigation-sides-offset, 10px);
  left: auto;
}
@media screen and (min-width: 0px) and (max-width: 1310px) {
  .wrapper > section.slider-home .swnaw {
    display: none;
  }
}
.wrapper > section.slider-home .swiper-slide {
  color: #191919;
  height: auto;
  width: 100%;
}
.wrapper > section.slider-home .swiper-slide .container {
  height: 100%;
}
.wrapper > section.slider-home .swiper-slide .info {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  align-items: flex-start;
  justify-content: flex-start;
  height: 100%;
  padding: 50px 0;
}
@media screen and (min-width: 0px) and (max-width: 768px) {
  .wrapper > section.slider-home .swiper-slide .info {
    text-align: center;
    align-items: center;
  }
}
.wrapper > section.slider-home .swiper-slide .info .red {
  color: #ff3838;
}
.wrapper > section.slider-home .swiper-slide .info > b {
  font-size: clamp(30px, 7vw, 60px);
  font-weight: bold;
  line-height: 1;
  color: #191919;
}
.wrapper > section.slider-home .swiper-slide .info > p {
  max-width: 60%;
  font-size: clamp(14px, 2vw, 18px);
  font-weight: 300;
  color: #191919;
}
@media screen and (min-width: 0px) and (max-width: 991px) {
  .wrapper > section.slider-home .swiper-slide .info > p {
    max-width: 100%;
  }
}
.wrapper > section.slider-home .swiper-slide .info > .list {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  gap: 5px;
}
.wrapper > section.slider-home .swiper-slide .info > .list > .item {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  gap: 5px;
  font-size: clamp(12px, 2vw, 16px);
  font-weight: 500;
}
.wrapper > section.slider-home .swiper-slide .info > .list > .item > i {
  font-size: 20px;
  color: #ff3838;
}
.wrapper > section.slider-home .swiper-slide .info > .btn-list {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: stretch;
  white-space: nowrap;
  flex: 1 0 auto;
  align-items: flex-end;
  gap: 25px;
}
.wrapper > section.slider-home .swiper-slide .info > .btn-list > a:first-child {
  font-size: clamp(12px, 2vw, 16px);
  font-weight: 500;
  padding: 10px clamp(30px, 7vw, 60px);
  color: #fff;
  border: 1px solid #191919;
  background-color: #191919;
  text-decoration: none;
  opacity: 1;
  transition: 0.2s ease-in-out;
}
.wrapper > section.slider-home .swiper-slide .info > .btn-list > a:first-child:active {
  opacity: 0.8;
}
@media (hover: hover) {
  .wrapper > section.slider-home .swiper-slide .info > .btn-list > a:first-child:hover {
    opacity: 0.8;
  }
}
.wrapper > section.slider-home .swiper-slide .info > .btn-list > a:last-child {
  font-size: clamp(12px, 2vw, 16px);
  font-weight: 500;
  padding: 10px clamp(15px, 5vw, 30px);
  color: #191919;
  border: 1px solid #191919;
  background-color: transparent;
  text-decoration: none;
  opacity: 1;
  transition: 0.2s ease-in-out;
}
.wrapper > section.slider-home .swiper-slide .info > .btn-list > a:last-child:active {
  opacity: 0.8;
}
@media (hover: hover) {
  .wrapper > section.slider-home .swiper-slide .info > .btn-list > a:last-child:hover {
    opacity: 0.8;
  }
}
.wrapper > section.slider-home .swiper-slide > img {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media screen and (min-width: 0px) and (max-width: 991px) {
  .wrapper > section.slider-home .swiper-slide > img {
    object-position: left;
  }
}
.wrapper > section.slider-home .swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
.wrapper > section.slider-home .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 6px);
}
.wrapper > section.slider-home .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));
  border-radius: 0;
  transition: 0.2s ease-in-out;
}
.wrapper > section.slider-home .swiper-pagination-bullet-active {
  width: var(--swiper-pagination-bullet-width, var(--swiper-pagination-bullet-size, 25px));
}
.wrapper > section.slider-home .swiper-pagination {
  position: relative;
  padding-top: 10px;
}
.wrapper > section.about {
  position: relative;
}
.wrapper > section.about .title {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  align-items: center;
  color: #191919;
  line-height: 1;
}
.wrapper > section.about .title > small {
  font-size: clamp(14px, 3vw, 18px);
  font-weight: 300;
  letter-spacing: 0.2rem;
}
.wrapper > section.about .title > h1 {
  font-size: clamp(30px, 7vw, 60px);
  font-weight: bold;
}
.wrapper > section.about .title > p {
  font-size: clamp(20px, 3vw, 24px);
  font-weight: 300;
  text-align: center;
  max-width: 60%;
  line-height: 1.5;
}
@media screen and (min-width: 0px) and (max-width: 991px) {
  .wrapper > section.about .title > p {
    max-width: 100%;
  }
}
.wrapper > section.about .list {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  gap: 40px;
}
@media screen and (min-width: 0px) and (max-width: 991px) {
  .wrapper > section.about .list {
    flex-direction: column;
  }
}
.wrapper > section.about .list > .item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(15px, 3vw, 25px);
  background-color: #fff;
  padding: clamp(20px, 6vw, 40px) clamp(25px, 6vw, 45px);
  box-shadow: 0px 0px 20px 5px rgba(0, 0, 0, 0.05);
}
.wrapper > section.about .list > .item > span {
  font-size: clamp(24px, 4vw, 36px);
  font-weight: bold;
}
.wrapper > section.about .list > .item > small {
  font-size: clamp(14px, 1vw, 16px);
  font-weight: 300;
}
.wrapper > section.about > img {
  position: absolute;
  position-area: top center;
  max-width: 100%;
  top: 0;
  z-index: -1;
}
.wrapper > section.works {
  color: #191919;
}
.wrapper > section.works .title {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
}
.wrapper > section.works .title > span {
  font-size: clamp(32px, 6vw, 48px);
  font-weight: 600;
}
.wrapper > section.works .title > small {
  font-size: clamp(14px, 2vw, 18px);
  font-weight: 300;
  display: flex;
  align-items: center;
  gap: 5px;
}
.wrapper > section.works .title > small > i {
  font-size: clamp(16px, 2vw, 20px);
}
.wrapper > section.works .content {
  position: relative;
}
.wrapper > section.works .content::before {
  content: "";
  position: absolute;
  width: 50px;
  height: 100%;
  background: rgb(255, 255, 255);
  background: linear-gradient(-90deg, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0) 100%);
  top: 0;
  right: 0;
  z-index: 2;
  pointer-events: none;
}
@media screen and (min-width: 0px) and (max-width: 767px) {
  .wrapper > section.works .content::before {
    content: none;
  }
}
.wrapper > section.works .content a {
  border: 0;
  outline: 0;
  color: #191919;
  text-decoration: none;
}
.wrapper > section.works .content a > .image {
  position: relative;
  overflow: hidden;
}
.wrapper > section.works .content a > .image > img {
  width: 100%;
}
.wrapper > section.works .content a > .image::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 5px;
  transition: 0.2s ease-in-out;
}
.wrapper > section.works .content a:active .image::after {
  background: rgb(233, 54, 54);
  box-shadow: 0px 0px 60px 30px rgba(233, 54, 54, 0.5);
}
@media (hover: hover) {
  .wrapper > section.works .content a:hover .image::after {
    background: rgb(233, 54, 54);
    box-shadow: 0px -10px 30px 5px rgba(233, 54, 54, 0.43);
  }
}
.wrapper > section.works .content a > .name {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
  padding-top: 15px;
}
.wrapper > section.works .content a > .name > span {
  font-size: 30px;
  font-weight: 500;
}
.wrapper > section.works .content a > .name > small {
  color: #3f3f3f;
  font-size: 24px;
  font-weight: 500;
}
.wrapper > section.sponsor {
  color: #191919;
  overflow: hidden;
}
.wrapper > section.sponsor .title {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
}
.wrapper > section.sponsor .title > span {
  font-size: clamp(32px, 6vw, 48px);
  font-weight: 600;
}
.wrapper > section.sponsor .title > small {
  font-size: clamp(14px, 2vw, 18px);
  font-weight: 300;
  display: flex;
  align-items: center;
  gap: 5px;
}
.wrapper > section.sponsor .title > small > i {
  font-size: clamp(16px, 2vw, 20px);
}
.wrapper > section.sponsor .content {
  position: relative;
  margin-left: -20px;
  margin-right: -20px;
}
.wrapper > section.sponsor .content::before {
  content: "";
  position: absolute;
  width: 50px;
  height: 100%;
  background: rgb(255, 255, 255);
  background: linear-gradient(-90deg, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0) 100%);
  top: 0;
  right: 0;
  z-index: 2;
  pointer-events: none;
}
.wrapper > section.sponsor .content .swiper {
  padding: 20px;
}
.wrapper > section.sponsor .content .swiper-slide {
  display: flex;
  flex-direction: column;
  justify-content: center;
  /* width: auto; */
  height: 130px;
  background-color: #fff;
  padding: 0 15px;
  box-shadow: 0px 0px 20px 5px rgba(0, 0, 0, 0.05);
}
.wrapper > section.sponsor .content .swiper-slide > img {
  width: 100%;
  /* height: 130px; */
  object-fit: scale-down;
}
.wrapper > section.qrcode {
  color: #191919;
}
@media screen and (min-width: 0px) and (max-width: 991px) {
  .wrapper > section.qrcode {
    text-align: center;
  }
}
.wrapper > section.qrcode .mode {
  display: flex;
  flex-direction: column;
  gap: 15px;
  line-height: 1.25;
}
.wrapper > section.qrcode .mode > b {
  font-size: clamp(20px, 3vw, 36px);
  font-weight: 600;
}
.wrapper > section.qrcode .mode > span {
  font-size: clamp(16px, 2vw, 30px);
}
.wrapper > section.qrcode .qr {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-end;
  gap: 40px;
}
@media screen and (min-width: 0px) and (max-width: 991px) {
  .wrapper > section.qrcode .qr {
    justify-content: center;
    margin-top: 20px;
  }
}
.wrapper > section.qrcode .qr > .item {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.wrapper > section.qrcode .qr > .item > img {
  width: 100%;
}
.wrapper > section.qrcode .qr > .item > span {
  font-size: clamp(14px, 1vw, 24px);
  font-weight: bold;
}
.wrapper > section.form .content {
  padding: 60px 40px;
  background-color: #272727;
  color: #fff;
  background-image: url(/upload/image/form.png);
  background-position: center bottom;
  background-repeat: no-repeat;
  background-size: cover;
}
.wrapper > section.form .content > .title {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1.25;
}
@media screen and (min-width: 0px) and (max-width: 991px) {
  .wrapper > section.form .content > .title {
    text-align: center;
  }
}
.wrapper > section.form .content > .title > span {
  font-size: clamp(28px, 6vw, 44px);
  font-weight: bold;
}
.wrapper > section.form .content > .title > small {
  color: #dadada;
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 300;
}
.wrapper > section.form .content .control {
  display: flex;
  flex-direction: row;
  gap: 50px;
  flex-wrap: nowrap;
  align-items: flex-end;
  justify-content: space-between;
}
.wrapper > section.form .content .control > .label {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 100%;
}
.wrapper > section.form .content .control > .label > span {
  font-size: 18px;
  font-weight: 600;
}
.wrapper > section.form .content .control > .label > input {
  width: 100%;
  background-color: #f6f6f6;
  padding: 10px 15px;
  border: none;
  outline: none;
}
.wrapper > section.form .content .control > .label > input::placeholder {
  font-weight: 300;
  color: #272727;
}
.wrapper > section.form .content .control .check {
  width: 150%;
  position: relative;
}
.wrapper > section.form .content .control .check > .checkbox-wrapper {
  position: absolute;
  top: 60px;
}
.wrapper > section.form .content .control .btn {
  width: 100%;
  background-color: transparent;
  color: #fff;
  border: 1px solid #fff;
  outline: none;
  padding: 8.88px 0;
  opacity: 1;
  transition: 0.2s ease-in-out;
}
.wrapper > section.form .content .control .btn[disabled] {
  opacity: 0.7;
  cursor: not-allowed;
}
.wrapper > section.form .content .control .btn:active:not([disabled]) {
  color: #191919;
  background-color: #fff;
}
@media (hover: hover) {
  .wrapper > section.form .content .control .btn:hover:not([disabled]) {
    color: #191919;
    background-color: #fff;
  }
}
@media screen and (min-width: 0px) and (max-width: 991px) {
  .wrapper > section.form .content .control {
    flex-direction: column;
    gap: 20px;
  }
  .wrapper > section.form .content .control .check {
    width: 100%;
  }
}
.wrapper > section.maps {
  display: flex;
}
.wrapper > section.control-page {
  display: flex;
  flex-direction: column;
  gap: 50px;
  padding-bottom: 40px;
}
.wrapper > section.control-page > .screen {
  position: relative;
  height: clamp(300px, 50vw, 600px);
}
.wrapper > section.control-page > .screen .information {
  display: flex;
  flex-direction: column;
  color: #191919;
  z-index: 1;
  padding-top: 50px;
}
.wrapper > section.control-page > .screen .information > span {
  font-size: clamp(14px, 2vw, 24px);
  font-weight: 500;
  line-height: 1.5;
}
.wrapper > section.control-page > .screen .information > small {
  padding-top: 20px;
  font-size: clamp(12px, 2vw, 18px);
  font-weight: 500;
}
.wrapper > section.control-page > .screen .information > h2 {
  font-size: clamp(20px, 6vw, 60px);
  font-weight: 500;
  padding: 0;
  margin: 0;
  line-height: 1;
  text-transform: uppercase;
}
.wrapper > section.control-page > .screen .information > h3 {
  font-size: clamp(20px, 6vw, 60px);
  font-weight: bold;
  padding: 0;
  margin: 0;
  line-height: 1;
  text-transform: uppercase;
}
.wrapper > section.control-page > .screen .zone {
  display: flex;
  flex-direction: row;
  gap: clamp(10px, 3vw, 30px);
  padding-top: 50px;
}
.wrapper > section.control-page > .screen .zone > a {
  font-size: clamp(12px, 2vw, 16px);
  font-weight: 500;
  padding: 10px clamp(15px, 5vw, 60px);
  color: #fff;
  border: 1px solid #191919;
  background-color: #191919;
  text-decoration: none;
  opacity: 1;
  transition: 0.2s ease-in-out;
}
.wrapper > section.control-page > .screen .zone > a:active {
  opacity: 0.8;
}
@media (hover: hover) {
  .wrapper > section.control-page > .screen .zone > a:hover {
    opacity: 0.8;
  }
}
.wrapper > section.control-page > .screen .zone > span {
  font-size: clamp(12px, 2vw, 16px);
  font-weight: 500;
  padding: 10px clamp(15px, 5vw, 30px);
  color: #191919;
  border: 1px solid #191919;
  background-color: #fff;
  text-decoration: none;
  opacity: 1;
  transition: 0.2s ease-in-out;
}
.wrapper > section.control-page > .screen img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  z-index: -1;
}
.wrapper > section.control-page > .calculator .title {
  padding-bottom: 20px;
}
.wrapper > section.control-page > .calculator .title > span {
  font-size: clamp(20px, 4vw, 48px);
  font-weight: 600;
}
.wrapper > section.control-page > .calculator .block {
  position: relative;
  padding: 30px;
  background: #fff;
  box-shadow: 0px 0px 20px 5px rgba(0, 0, 0, 0.05);
  z-index: 0;
}
.wrapper > section.control-page > .calculator .block > img {
  position: absolute;
  right: clamp(-25px, -2vw, -5px);
  bottom: -7px;
  z-index: -1;
  width: clamp(450px, 50vw, 650px);
  max-width: 100%;
  /* object-fit: cover; */
  object-position: bottom right;
}
.wrapper > section.control-page > .calculator .block .row {
  --bs-gutter-x: 3rem;
  z-index: 1;
}
.wrapper > section.control-page > .calculator .block .range {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.wrapper > section.control-page > .calculator .block .range > span {
  font-size: clamp(16px, 2.5vw, 24px);
  font-weight: 500;
}
.wrapper > section.control-page > .calculator .block .range > small {
  font-size: clamp(12px, 2vw, 18px);
  font-weight: 300;
}
.wrapper > section.control-page > .calculator .block .info {
  display: flex;
  flex-direction: column;
  line-height: 1;
  padding-bottom: 30px;
}
@media screen and (min-width: 0px) and (max-width: 767px) {
  .wrapper > section.control-page > .calculator .block .info {
    text-align: center;
  }
}
.wrapper > section.control-page > .calculator .block .info > span {
  font-size: clamp(24px, 6vw, 60px);
  font-weight: 500;
}
.wrapper > section.control-page > .calculator .block .info > span > b {
  font-weight: bold;
}
.wrapper > section.control-page > .calculator .block .info > small {
  font-size: clamp(20px, 3vw, 36px);
  font-weight: normal;
}
.wrapper > section.control-page > .techno span {
  font-size: clamp(20px, 4vw, 48px);
  font-weight: 600;
}
.wrapper > section.control-page > .techno p {
  padding-top: 5px;
  font-size: clamp(16px, 2vw, 24px);
  line-height: 1.25;
}
.wrapper > section.control-page > .techno .list {
  padding-top: 15px;
}
.wrapper > section.control-page > .techno .list > .item {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
  padding-bottom: 20px;
}
.wrapper > section.control-page > .techno .list > .item > span {
  color: #686868;
  font-size: clamp(24px, 2vw, 30px);
  font-weight: 900;
  font-style: italic;
}
.wrapper > section.control-page > .techno .list > .item > b {
  font-size: clamp(16px, 2vw, 24px);
  font-weight: 600;
}
.wrapper > section.control-page > .techno .list > .item > p {
  font-size: clamp(14px, 1.5vw, 18px);
  font-weight: normal;
  padding: 0;
  margin: 0;
  padding-top: 10px;
}
.wrapper > section.control-page > .techno .list > .item > a {
  display: flex;
  font-size: clamp(14px, 2.5vw, 18px);
  font-weight: 500;
  padding: 15px 5px;
  color: #191919;
  border: 1px solid #191919;
  background-color: transparent;
  text-decoration: none;
  justify-content: center;
  opacity: 1;
  transition: 0.2s ease-in-out;
  width: 75%;
}
@media screen and (min-width: 0px) and (max-width: 767px) {
  .wrapper > section.control-page > .techno .list > .item > a {
    width: auto;
  }
}
.wrapper > section.control-page > .techno .list > .item > a:active {
  opacity: 0.8;
}
@media (hover: hover) {
  .wrapper > section.control-page > .techno .list > .item > a:hover {
    opacity: 0.8;
  }
}
.wrapper > section.control-page > .key-plus {
  z-index: 0;
}
.wrapper > section.control-page > .key-plus .title {
  display: flex;
  flex-direction: column;
  line-height: 1;
  padding-bottom: 40px;
}
.wrapper > section.control-page > .key-plus .title > span {
  font-size: clamp(20px, 4vw, 48px);
  font-weight: 600;
}
.wrapper > section.control-page > .key-plus .title > small {
  font-size: clamp(16px, 2vw, 24px);
}
.wrapper > section.control-page > .key-plus .content {
  display: flex;
  flex-direction: row;
  gap: 40px;
  /* position: relative;
  padding-bottom: 60px; */
}
.wrapper > section.control-page > .key-plus .content .list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  /* width: 45%; */
  margin-left: -15px;
}
.wrapper > section.control-page > .key-plus .content .list > li {
  line-height: 1.25;
}
.wrapper > section.control-page > .key-plus .content .list > li > span {
  font-size: 16px;
  font-weight: 600;
}
.wrapper > section.control-page > .key-plus .content .list > li > p {
  font-size: 16px;
  padding: 0;
  margin: 0;
}
.wrapper > section.control-page > .key-plus img {
  position: relative;
  top: -40px;
  max-width: 100%;
  z-index: -1;
}
@media screen and (min-width: 0px) and (max-width: 1199px) {
  .wrapper > section.control-page > .key-plus img {
    display: none;
  }
}
.wrapper > section.control-page > .steps .title {
  padding-bottom: 20px;
}
.wrapper > section.control-page > .steps .title span {
  font-size: clamp(20px, 4vw, 48px);
  font-weight: 600;
}
.wrapper > section.control-page > .steps .list {
  display: flex;
  flex-direction: column;
  gap: clamp(15px, 4vw, 40px);
}
.wrapper > section.control-page > .steps .list > .item {
  display: flex;
  flex-direction: column;
  gap: clamp(20px, 4vw, 45px);
}
.wrapper > section.control-page > .steps .list > .item > .step {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 35px;
}
.wrapper > section.control-page > .steps .list > .item > .step > span {
  padding: 0 25px;
  background: #f8f8f8;
  color: #d5d5d5;
  font-weight: 900;
  font-style: italic;
  font-size: 84px;
  line-height: 1;
}
.wrapper > section.control-page > .steps .list > .item > .step > b {
  position: relative;
  font-weight: bold;
  font-size: clamp(20px, 4vw, 48px);
  color: #5d5d5d;
  line-height: 1;
}
.wrapper > section.control-page > .steps .list > .item > .step > b > sup {
  color: #787878;
}
.wrapper > section.control-page > .steps .list > .item > .step > b::before {
  content: "этап";
  position: absolute;
  left: 0;
  bottom: -20px;
  color: #dedede;
  font-size: clamp(16px, 2vw, 24px);
  font-weight: 500;
}
.wrapper > section.control-page > .steps .list > .item > p {
  font-size: clamp(16px, 2vw, 24px);
  font-weight: 500;
  line-height: 1.25;
}
.wrapper > section.control-page > .steps .list > .item > p a {
  color: #ff4848;
}
.wrapper > section.control-page > .table .title {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding-bottom: clamp(40px, 10vw, 90px);
  line-height: 1.25;
}
.wrapper > section.control-page > .table .title span {
  font-size: clamp(20px, 4vw, 48px);
  font-weight: 600;
}
.wrapper > section.control-page > .table .title small {
  font-size: clamp(16px, 2vw, 24px);
  font-weight: normal;
}
.wrapper > section.control-page > .table .table-overlay {
  text-align: center;
  overflow-x: auto;
  color: #191919;
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.25;
}
.wrapper > section.control-page > .table .table-overlay .text-left {
  text-align: left;
}
.wrapper > section.control-page > .table .table-overlay .text-small {
  font-size: clamp(14px, 2vw, 18px);
}
.wrapper > section.control-page > .table .table-overlay .text-bold {
  font-weight: 900;
  font-size: clamp(24px, 3vw, 36px);
}
.wrapper > section.control-page > .table .table-overlay .nowrap {
  white-space: nowrap;
}
.wrapper > section.control-page > .table .table-overlay tr:not(:last-child) td:nth-child(2n) {
  background: #f8f8f8;
}
.wrapper > section.control-page > .table .table-overlay tr th {
  font-weight: normal;
}
.wrapper > section.control-page > .table .table-overlay tr th.bold {
  font-weight: bold;
}
.wrapper > section.control-page > .table .table-overlay tr th:nth-child(2n) {
  background: #f8f8f8;
}
.wrapper > section.control-page > .table .table-overlay a.btn {
  display: flex;
  font-size: clamp(14px, 2.5vw, 18px);
  font-weight: 500;
  padding: 15px 5px;
  color: #191919;
  border: 1px solid #191919;
  background-color: transparent;
  text-decoration: none;
  justify-content: center;
  opacity: 1;
  transition: 0.2s ease-in-out;
}
.wrapper > section.control-page > .table .table-overlay a.btn:active {
  opacity: 0.8;
}
@media (hover: hover) {
  .wrapper > section.control-page > .table .table-overlay a.btn:hover {
    opacity: 0.8;
  }
}
.wrapper > section.jobs {
  padding-bottom: 30px;
}
.wrapper > section.jobs .title {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 5px;
  padding: 30px 0;
}
@media screen and (min-width: 0px) and (max-width: 575px) {
  .wrapper > section.jobs .title {
    flex-direction: column;
  }
}
.wrapper > section.jobs .title .left {
  line-height: 1.25;
}
.wrapper > section.jobs .title .left > span {
  font-size: clamp(32px, 6vw, 48px);
  font-weight: 600;
}
.wrapper > section.jobs .title .left > .btn {
  padding-top: 10px;
  display: flex;
  flex-direction: row;
  gap: 10px;
}
.wrapper > section.jobs .title .left > .btn > a {
  font-size: clamp(12px, 2vw, 16px);
  font-weight: 500;
  padding: 5px clamp(10px, 2vw, 20px);
  color: #191919;
  border: 1px solid #191919;
  background-color: transparent;
  text-decoration: none;
  opacity: 1;
  transition: 0.2s ease-in-out;
}
.wrapper > section.jobs .title .left > .btn > a.active {
  /* border: 1px solid #ff4848; */
  color: #fff;
  background-color: #191919;
}
.wrapper > section.jobs .title .left > .btn > a:not(.active):active {
  opacity: 0.8;
}
@media (hover: hover) {
  .wrapper > section.jobs .title .left > .btn > a:not(.active):hover {
    opacity: 0.8;
  }
}
@media screen and (min-width: 0px) and (max-width: 575px) {
  .wrapper > section.jobs .title .left {
    text-align: center;
    order: 2;
  }
}
.wrapper > section.jobs .title .right {
  white-space: nowrap;
}
@media screen and (min-width: 0px) and (max-width: 575px) {
  .wrapper > section.jobs .title .right {
    order: 1;
  }
}
.wrapper > section.jobs .title .right a {
  text-decoration: none;
  color: #686868;
  opacity: 1;
  transition: 0.2s ease-in-out;
}
.wrapper > section.jobs .title .right a:active {
  opacity: 0.8;
}
@media (hover: hover) {
  .wrapper > section.jobs .title .right a:hover {
    opacity: 0.8;
  }
}
.wrapper > section.jobs .tabs > .tab {
  display: flex;
}
.wrapper > section.jobs .tabs > .tab:not(.active) {
  display: none;
}
.wrapper > section.jobs .row {
  --bs-gutter-y: 1.5rem;
}
.wrapper > section.jobs .list > .item {
  display: flex;
  opacity: 1;
  transition: 0.2s ease-in-out;
}
.wrapper > section.jobs .list > .item:active {
  opacity: 0.8;
}
@media (hover: hover) {
  .wrapper > section.jobs .list > .item:hover {
    opacity: 0.8;
  }
}
.wrapper > section.jobs .list > .item > img {
  width: 100%;
  max-height: 300px;
  object-fit: cover;
  object-position: top center;
}
.wrapper > section.contacts {
  padding-bottom: 30px;
}
.wrapper > section.contacts .title {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 5px;
  padding: 30px 0;
}
@media screen and (min-width: 0px) and (max-width: 575px) {
  .wrapper > section.contacts .title {
    flex-direction: column;
  }
}
.wrapper > section.contacts .title .left {
  line-height: 1.25;
}
.wrapper > section.contacts .title .left > span {
  font-size: clamp(32px, 6vw, 48px);
  font-weight: 600;
}
@media screen and (min-width: 0px) and (max-width: 575px) {
  .wrapper > section.contacts .title .left {
    text-align: center;
    order: 2;
  }
}
.wrapper > section.contacts .title .right {
  white-space: nowrap;
}
@media screen and (min-width: 0px) and (max-width: 575px) {
  .wrapper > section.contacts .title .right {
    order: 1;
  }
}
.wrapper > section.contacts .title .right a {
  text-decoration: none;
  color: #686868;
  opacity: 1;
  transition: 0.2s ease-in-out;
}
.wrapper > section.contacts .title .right a:active {
  opacity: 0.8;
}
@media (hover: hover) {
  .wrapper > section.contacts .title .right a:hover {
    opacity: 0.8;
  }
}
.wrapper > section.contacts .row {
  --bs-gutter-y: 1.5rem;
}
.wrapper > section.contacts .gray {
  gap: 15px;
  background-color: #f8f8f8;
}
.wrapper > section.contacts .left {
  display: flex;
  flex-direction: column;
  /* justify-content: space-between; */
  gap: 10px;
}
.wrapper > section.contacts .left > a {
  font-size: clamp(14px, 2.5vw, 21px);
  font-weight: normal;
  padding: 15px clamp(30px, 9vw, 120px);
  color: #191919;
  border: 1px solid #191919;
  background-color: transparent;
  text-decoration: none;
  opacity: 1;
  transition: 0.2s ease-in-out;
  width: fit-content;
}
@media screen and (min-width: 0px) and (max-width: 991px) {
  .wrapper > section.contacts .left > a {
    align-self: center;
  }
}
.wrapper > section.contacts .table-overlay {
  overflow-x: auto;
  font-size: clamp(12px, 1vw, 18px);
  font-weight: normal;
  /* white-space: nowrap; */
}
@media screen and (min-width: 0px) and (max-width: 991px) {
  .wrapper > section.contacts .table-overlay {
    align-self: center;
  }
}
.wrapper > section.contacts .table-overlay a {
  text-decoration: none;
  color: #ff3838;
  font-weight: 600;
}
.wrapper > section.contacts .table-overlay .item {
  padding-right: clamp(20px, 4.5vw, 64px);
  padding-bottom: clamp(10px, 1vw, 16px);
}
.wrapper > section.contacts .table-overlay .item.d-flex {
  gap: 5px;
}
.wrapper > section.contacts .table-overlay tbody,
.wrapper > section.contacts .table-overlay td,
.wrapper > section.contacts .table-overlay tfoot,
.wrapper > section.contacts .table-overlay th,
.wrapper > section.contacts .table-overlay thead,
.wrapper > section.contacts .table-overlay tr {
  vertical-align: inherit;
}
.wrapper > section.page {
  padding-bottom: 30px;
}
.wrapper > section.page .title {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 5px;
  padding: 30px 0;
}
@media screen and (min-width: 0px) and (max-width: 575px) {
  .wrapper > section.page .title {
    flex-direction: column;
  }
}
.wrapper > section.page .title .left {
  line-height: 1.25;
}
.wrapper > section.page .title .left > span {
  font-size: clamp(32px, 6vw, 48px);
  font-weight: 600;
}
@media screen and (min-width: 0px) and (max-width: 575px) {
  .wrapper > section.page .title .left {
    text-align: center;
    order: 2;
  }
}
.wrapper > section.page .title .right {
  white-space: nowrap;
}
@media screen and (min-width: 0px) and (max-width: 575px) {
  .wrapper > section.page .title .right {
    order: 1;
  }
}
.wrapper > section.page .title .right a {
  text-decoration: none;
  color: #686868;
  opacity: 1;
  transition: 0.2s ease-in-out;
}
.wrapper > section.page .title .right a:active {
  opacity: 0.8;
}
@media (hover: hover) {
  .wrapper > section.page .title .right a:hover {
    opacity: 0.8;
  }
}
.wrapper > section.page .content {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.wrapper > section.page .content > p {
  font-size: clamp(14px, 1.5vw, 18px);
}
.wrapper .catalog-slider swiper-container {
  --swiper-navigation-color: #272727;
  --swiper-pagination-color: #272727;
  width: 100%;
  height: 100%;
}
.wrapper .catalog-slider swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}
.wrapper .catalog-slider swiper-slide {
  background-size: cover;
  background-position: center;
}
.wrapper .catalog-slider .swiper_gallery {
  width: 655px;
  max-width: 100%;
  margin: 0;
}
.wrapper .catalog-slider .swiper_gallery swiper-slide {
  width: 25%;
  height: 100%;
  opacity: 0.4;
  cursor: pointer;
}
.wrapper .catalog-slider .swiper_gallery .swiper-slide-thumb-active {
  opacity: 1;
}
.wrapper .catalog-slider .title {
  font-size: clamp(20px, 4vw, 48px);
  font-weight: 600;
}
.wrapper .catalog-slider .list {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.wrapper .catalog-slider .list > .item {
  padding: 30px 0;
}
.wrapper .catalog-slider .list > .item:nth-child(2n) {
  background: #f8f8f8;
}
.wrapper .catalog-slider .list > .item .information {
  display: flex;
  flex-direction: row;
  gap: clamp(10px, 4vw, 40px);
  padding-bottom: clamp(10px, 4vw, 40px);
}
@media screen and (min-width: 0px) and (max-width: 991px) {
  .wrapper .catalog-slider .list > .item .information {
    flex-direction: column;
  }
}
.wrapper .catalog-slider .list > .item .information .slider {
  width: 520px;
  max-width: 100%;
  height: 350px;
  order: 1;
}
@media screen and (min-width: 0px) and (max-width: 991px) {
  .wrapper .catalog-slider .list > .item .information .slider {
    order: 2;
  }
}
@media screen and (min-width: 0px) and (max-width: 767px) {
  .wrapper .catalog-slider .list > .item .information .slider {
    height: auto;
  }
}
.wrapper .catalog-slider .list > .item .information .info {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 10px;
  order: 1;
}
.wrapper .catalog-slider .list > .item .information .info > span {
  font-size: clamp(16px, 3vw, 32px);
  font-weight: 600;
  line-height: 1;
}
.wrapper .catalog-slider .list > .item .information .info > .data {
  display: flex;
  flex-direction: column;
}
.wrapper .catalog-slider .list > .item .information .info > .data > span {
  font-size: clamp(14px, 1vw, 16px);
  line-height: 1.25;
}
.wrapper .catalog-slider .list > .item .information .info > p {
  font-size: clamp(14px, 1vw, 16px);
  line-height: 1.25;
  flex: 1 0 auto;
  padding-top: 20px;
}
.wrapper .catalog-slider .list > .item .information .info > p > a {
  color: #ff4848;
  font-weight: bold;
}
.wrapper .catalog-slider .list > .item .information .info > a {
  font-size: clamp(14px, 2.5vw, 21px);
  font-weight: normal;
  padding: 15px clamp(30px, 7vw, 70px);
  color: #191919;
  border: 1px solid #191919;
  background-color: transparent;
  text-decoration: none;
  opacity: 1;
  transition: 0.2s ease-in-out;
  width: fit-content;
}
@media screen and (min-width: 0px) and (max-width: 767px) {
  .wrapper .catalog-slider .list > .item .information .info > a {
    align-self: center;
  }
}
.wrapper .catalog-slider .list > .item .information .info > a:active {
  opacity: 0.8;
}
@media (hover: hover) {
  .wrapper .catalog-slider .list > .item .information .info > a:hover {
    opacity: 0.8;
  }
}
.wrapper .catalog-slider .list > .item .thumbs {
  display: flex;
  flex-direction: row;
  gap: 15px;
  align-items: center;
}
.wrapper .catalog-slider .list > .item .thumbs a {
  display: flex;
  text-decoration: none;
  padding: 10px;
  background: #d1d1d1;
  color: #272727;
  font-size: 24px;
  opacity: 1;
}
.wrapper .catalog-slider .list > .item .thumbs a:not(.swiper-button-disabled):hover {
  opacity: 0.8;
}
@media screen and (min-width: 0px) and (max-width: 991px) {
  .wrapper .catalog-slider .list > .item .thumbs a {
    display: none;
  }
}
.wrapper .catalog-slider .list > .item .thumbs .swiper-button-disabled {
  cursor: no-drop;
  opacity: 0.75;
}
.wrapper .state-range {
  padding: 30px 0 40px 0;
  width: 70%;
}
@media screen and (min-width: 0px) and (max-width: 1199px) {
  .wrapper .state-range {
    width: 100%;
  }
}
.wrapper .state-range > .btn {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 5px;
  padding-top: 15px;
}
.wrapper .state-range > .btn > a {
  text-decoration: none;
  background: #f8f8f8;
  padding: 5px clamp(5px, 1vw, 10px);
  color: #191919;
  font-size: clamp(14px, 2vw, 18px);
  font-weight: normal;
  opacity: 0.8;
  transition: 0.2s ease-in-out;
}
.wrapper .state-range > .btn > a:active {
  opacity: 1;
}
@media (hover: hover) {
  .wrapper .state-range > .btn > a:hover {
    opacity: 1;
  }
}
.wrapper .state-range input[type=range] {
  -webkit-appearance: none;
  /* margin-right: 15px; */
  width: 100%;
  height: 2px;
  background: #f8f8f8;
  border-radius: 0px;
  background-image: linear-gradient(#ff4848, #ff4848);
  background-size: 0% 100%;
  background-repeat: no-repeat;
}
.wrapper .state-range input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
  height: 15px;
  width: 15px;
  background: #ff4848;
  cursor: pointer;
  /*ew-resize*/
  box-shadow: 0 0 0px 5px rgba(0, 0, 0, 0.1);
  transition: background 0.3s ease-in-out;
}
.wrapper .state-range input[type=range]::-moz-range-thumb {
  -webkit-appearance: none;
  height: 15px;
  width: 15px;
  background: #ff4848;
  cursor: pointer;
  /*ew-resize*/
  box-shadow: 0 0 0px 5px rgba(0, 0, 0, 0.1);
  transition: background 0.3s ease-in-out;
}
.wrapper .state-range input[type=range]::-ms-thumb {
  -webkit-appearance: none;
  height: 15px;
  width: 15px;
  background: #ff4848;
  cursor: pointer;
  /*ew-resize*/
  box-shadow: 0 0 0px 5px rgba(0, 0, 0, 0.1);
  transition: background 0.3s ease-in-out;
}
.wrapper .state-range input[type=range]::-webkit-slider-runnable-track {
  -webkit-appearance: none;
  box-shadow: none;
  border: none;
  background: transparent;
}
.wrapper .state-range input[type=range]::-moz-range-track {
  -webkit-appearance: none;
  box-shadow: none;
  border: none;
  background: transparent;
}
.wrapper .state-range input[type=range]::-ms-track {
  -webkit-appearance: none;
  box-shadow: none;
  border: none;
  background: transparent;
}
.wrapper > footer {
  flex-shrink: 0;
  background-color: #272727;
  color: #dadada;
}
.wrapper > footer .up {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 30px;
  padding: 30px 0;
}
@media screen and (min-width: 0px) and (max-width: 991px) {
  .wrapper > footer .up {
    flex-direction: column-reverse;
    align-items: center;
    /* text-align: center; */
  }
}
.wrapper > footer .up > .left {
  display: flex;
  flex-direction: row;
  gap: 50px;
}
@media screen and (min-width: 0px) and (max-width: 768px) {
  .wrapper > footer .up > .left {
    flex-direction: column-reverse;
    text-align: center;
  }
}
.wrapper > footer .up > .left > .block {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.wrapper > footer .up > .left > .block > span {
  font-size: 18px;
  font-weight: 600;
  color: #fff;
}
.wrapper > footer .up > .left > .block > .menu {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  max-height: 230px;
  gap: 5px 50px;
}
@media screen and (min-width: 0px) and (max-width: 768px) {
  .wrapper > footer .up > .left > .block > .menu {
    max-height: none;
  }
}
.wrapper > footer .up > .left > .block > .menu > a {
  max-width: 140px;
  font-size: 14px;
  font-weight: 300;
  text-decoration: none;
  color: #fff;
  opacity: 1;
  transition: 0.2s ease-in-out;
}
@media screen and (min-width: 0px) and (max-width: 768px) {
  .wrapper > footer .up > .left > .block > .menu > a {
    max-width: none;
  }
}
.wrapper > footer .up > .left > .block > .menu > a:active {
  opacity: 0.8;
}
@media (hover: hover) {
  .wrapper > footer .up > .left > .block > .menu > a:hover {
    opacity: 0.8;
  }
}
.wrapper > footer .up > .left > .block > .contacts {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.wrapper > footer .up > .left > .block > .contacts > span {
  font-size: 16px;
  font-weight: 300;
  color: #fff;
}
.wrapper > footer .up > .left > .block > .contacts > a {
  font-size: 16px;
  font-weight: 300;
  text-decoration: none;
  color: #fff;
}
.wrapper > footer .up > .left > .block > .contacts > .chat > a {
  width: auto;
  text-decoration: none;
  opacity: 1;
  transition: 0.2s ease-in-out;
}
.wrapper > footer .up > .left > .block > .contacts > .chat > a:active {
  opacity: 0.7;
}
@media (hover: hover) {
  .wrapper > footer .up > .left > .block > .contacts > .chat > a:hover {
    opacity: 0.7;
  }
}
.wrapper > footer .up > .left > .block > .contacts > .chat > a > img {
  width: auto;
}
.wrapper > footer .up > .right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 30px;
}
@media screen and (min-width: 0px) and (max-width: 991px) {
  .wrapper > footer .up > .right {
    align-items: center;
  }
}
.wrapper > footer .up > .right > .logotype > img {
  width: clamp(200px, 25vw, 300px);
  max-width: 100%;
}
.wrapper > footer .up > .right > .yandex {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.wrapper > footer .up > .right > .yandex > img {
  width: clamp(100px, 20vw, 221px);
  max-width: 100%;
}
.wrapper > footer .up > .right > .yandex > a {
  white-space: nowrap;
  font-size: 16px;
  font-weight: 500;
  padding: 5px 15px;
  text-decoration: none;
  border: 1px solid #fff;
  color: #fff;
  background-color: transparent;
  transition: 0.2s ease-in-out;
}
.wrapper > footer .up > .right > .yandex > a:active {
  color: #272727;
  background-color: #fff;
}
@media (hover: hover) {
  .wrapper > footer .up > .right > .yandex > a:hover {
    color: #272727;
    background-color: #fff;
  }
}
.wrapper > footer .copyright {
  border-top: 1px solid #313131;
  display: flex;
  flex-direction: row;
  gap: 30px;
  padding: 30px 0;
}
@media screen and (min-width: 0px) and (max-width: 768px) {
  .wrapper > footer .copyright {
    flex-direction: column;
    text-align: center;
  }
}
.wrapper > footer .copyright > .left {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.wrapper > footer .copyright > .left > span {
  font-size: 14px;
  color: #dadada;
}
.wrapper > footer .copyright > .left > small {
  font-size: 14px;
  color: #808080;
  width: 50%;
}
@media screen and (min-width: 0px) and (max-width: 991px) {
  .wrapper > footer .copyright > .left > small {
    width: 100%;
  }
}
.wrapper > footer .copyright > .right {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.wrapper > footer .copyright > .right > small {
  color: #808080;
  font-size: 14px;
  white-space: nowrap;
  width: 100%;
}
.wrapper > footer .copyright > .right > a {
  font-size: 14px;
  color: #dadada;
  width: 100%;
}

.fancybox-slide--html .fancybox-close-small {
  padding: 5px;
  right: 40px;
  top: 30px;
}

.modal {
  display: none;
  width: 500px;
  padding: 40px;
}
.modal .header {
  padding-top: 20px;
}
.modal .header > h2 {
  font-size: 24px;
  font-weight: 600;
  color: #272727;
}
.modal .header > p {
  font-size: 14px;
  font-weight: 400;
}
.modal .form {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  gap: 5px;
}
.modal .form > span {
  font-size: 18px;
  font-weight: 600;
}
.modal .form > input {
  width: 100%;
  background-color: #f6f6f6;
  padding: 10px 15px;
  border: none;
  outline: none;
}
.modal .form > input::placeholder {
  font-weight: 300;
  color: #272727;
}
.modal .btn {
  width: 100%;
  background-color: #343434;
  color: #fff;
  border: none;
  outline: none;
  padding: 10px 0;
  opacity: 1;
  transition: 0.2s ease-in-out;
}
.modal .btn[disabled] {
  opacity: 0.7;
  cursor: not-allowed;
}
.modal .btn:active:not([disabled]) {
  opacity: 0.9;
}
@media (hover: hover) {
  .modal .btn:hover:not([disabled]) {
    opacity: 0.9;
  }
}