* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "GothamPro-Light";
}

.burger-menu_button {
  position: relative;
  top: 0px;
  left: 10px;
  z-index: 30;
  width: 60px;
  height: 60px;
  transition: 0.4s;
}

.burger-menu_button:hover .burger-menu_lines {
  filter: brightness(0.7);
}

.burger-menu_lines::before,
.burger-menu_lines::after,
.burger-menu_lines {
  position: absolute;
  width: 30px;
  height: 3px;
  background-color: #fff;
  transition: 0.4s;
}

.burger-menu_lines {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.burger-menu_lines::before {
  content: "";
  top: -10px;
}

.burger-menu_lines::after {
  content: "";
  top: 10px;
}

.burger-menu_active .burger-menu_lines {
  background-color: transparent;
}

.burger-menu_active .burger-menu_lines::before {
  top: 0;
  transform: rotate(45deg);
}

.burger-menu_active .burger-menu_lines::after {
  top: 0;
  transform: rotate(-45deg);
}

.burger-menu_nav {
  padding-top: 80px;
  position: fixed;
  top: 0;
  z-index: 20;
  display: flex;
  flex-flow: column;
  height: 100%;
  background-color: #000;
  overflow-y: auto;
  right: -100%;
  transition: 0.8s;
}

.burger-menu_active .burger-menu_nav {
  right: 0;
  transition: 0.4s;
  width: 70%;
}

.burger-menu_link {
  padding: 18px 35px;
  font-size: 22px;
  text-decoration: none;
  font-weight: 600;
  color: #fff;
}
.burger-menu_link:hover {
  text-decoration: underline;
  color: #fff;
}

.burger-menu_link:hover {
  filter: brightness(0.9);
}

.burger-menu_overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 10;
}

.burger-menu_active .burger-menu_overlay {
  display: block;
  background-color: rgba(0, 0, 0, 0.5);
  overflow-x: hidden;
}

.overlay {
  position: fixed;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.5);
  display: none;
  overflow: hidden;
  z-index: 10000000000000000;
}

.popup {
  border-radius: 5px;
  text-align: center;
  position: absolute;
  width: 640px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  padding: 50px 100px;
  box-sizing: border-box;
  background-color: #000;
  color: #fff;
  box-shadow: 0px 4px 8px 8px rgba(0, 0, 0, 0.16);
}

.popup h2 {
  font-weight: bold;
  font-size: 30px;
  line-height: 48px;
  margin-bottom: 10px;
}

.popup p {
  font-weight: 400;
  font-size: 20px;
  line-height: 24px;
  text-align: center;
  margin-bottom: 25px;
  font-weight: 700;
}

.popup .input-email {
  border: 3px solid var(--color-accent);
  box-sizing: border-box;
  border-radius: 25px;
  width: 432px;
  height: 52px;
  text-align: center;
  margin-bottom: 15px;
  font-weight: 400;
  font-size: 20px;
  line-height: 24px;
  outline: none;
  border: 1px solid #000;
}

.popup .btn-email {
  background-color: #f7d61e;
  padding: 15px 25px;
  color: #000;
  border: none;
  display: inline-block;
  margin-top: 25px;
  font-size: 18px;
  text-decoration: none;
  border-radius: 30px;
  border: none;
  width: 432px;
  height: 52px;
}

.popup a {
  font-weight: 400;
  font-size: 20px;
  line-height: 24px;
  text-decoration: none;
  color: #000000;
  margin-top: -10px;
  display: block;
}

.close-popup {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 23px;
  height: 23px;
  cursor: pointer;
}

.close-popup:before {
  content: "";
  background-color: #000;
  position: absolute;
  height: 1px;
  width: 31px;
  top: 11px;
  left: -4px;
  transform: rotate(-45deg);
}

.close-popup:after {
  content: "";
  background-color: #000;
  position: absolute;
  height: 1px;
  width: 31px;
  top: 11px;
  transform: rotate(45deg);
  left: -4px;
}

@media screen and (max-width: 768px) {
  .popup {
    width: 90%;
    height: auto;
    font-size: 15px;
  }
}
.overlay-1 {
  position: fixed;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.5);
  display: none;
  overflow: hidden;
  z-index: 10000000000000000;
}

.popup-1 {
  text-align: center;
  position: absolute;
  width: 640px;
  left: 50%;
  top: 50%;
  height: 50%;
  transform: translate(-50%, -50%);
  padding: 50px 100px;
  box-sizing: border-box;
  background-color: #fff;
  color: #000;
  box-shadow: 0px 4px 8px 8px rgba(0, 0, 0, 0.16);
}

.popup-bg {
  height: auto;
  width: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-evenly;
  padding: 100px 70px;
  border-radius: 0px;
  background-color: #eeeeee;
}

.popup-bg img {
  margin-bottom: 65px;
}

.popup-bg h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 25px;
  color: #000;
}

.popup-bg span {
  font-size: 18px;
  font-weight: 400;
  color: #000;
}

.close-popup-1 {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 23px;
  height: 23px;
  cursor: pointer;
}

.close-popup-1:before {
  content: "";
  background-color: #000;
  position: absolute;
  height: 1px;
  width: 31px;
  top: 11px;
  left: -4px;
  transform: rotate(-45deg);
}

.close-popup-1:after {
  content: "";
  background-color: #000;
  position: absolute;
  height: 1px;
  width: 31px;
  top: 11px;
  transform: rotate(45deg);
  left: -4px;
}

@media screen and (max-width: 768px) {
  .popup-1 {
    width: 90%;
    height: auto;
    font-size: 15px;
  }
}
.js-overlay-campaign-1 img {
  width: 100px;
  margin: 0 auto;
  display: block;
  margin-bottom: 30px;
}

::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background-color: transparent;
}

::-webkit-scrollbar-thumb {
  background-color: #000;
  border-radius: 15px;
}

::-webkit-scrollbar-thumb:hover {
  background-color: #000;
}

@font-face {
  font-family: "GothamPro-Bold";
  src: url(../fonts/GothamPro-Bold.ttf);
}
@font-face {
  font-family: "GothamPro-Light";
  src: url(../fonts/GothamPro-Light.ttf);
}
@font-face {
  font-family: "GothamPro-Medium";
  src: url(../fonts/GothamPro-Medium.ttf);
}
@font-face {
  font-family: "GothamPro-Black";
  src: url(../fonts/GothamPro-Black.ttf);
}
.h2 {
  background-color: #3e3e3e;
  color: #fff;
  text-transform: uppercase;
  font-family: "GothamPro-Black";
  font-size: 35px;
  padding: 35px 0;
  width: 600px;
  text-align: center;
  margin: 0 auto;
}

.header {
  background: url(../img/header-bg.jpeg) center center/cover no-repeat;
  padding-top: 20px;
  padding-bottom: 30px;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: column;
}
.header .nt-45 {
  width: 100%;
}
.header .header-top {
  width: 100%;
}
.header .header-top .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header .header-top .container-h {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 30px;
}
.header .header-top .tell {
  margin-bottom: 5px;
  display: flex;
  align-items: center;
}
.header .header-top .header-logo img {
  width: 110px;
}
.header .header-top .link {
  display: flex;
  align-items: center;
}
.header .header-top .link a {
  color: #fff;
  text-decoration: none;
  font-family: "GothamPro-Bold";
}
.header .header-top .link a svg {
  width: 20px;
  margin-right: 5px;
}
.header .header-top .link .btn-header {
  background-color: #d2d5d0;
  color: #000;
  padding: 4px 7px;
  border-radius: 30px;
  display: inline-block;
  text-transform: uppercase;
  font-size: 14px;
  margin-top: 2px;
  font-family: "GothamPro-Bold";
  text-align: center;
  margin-left: 15px;
}
.header .header-top .lang a {
  color: #fff;
  text-decoration: none;
  font-family: "GothamPro-Bold";
  font-size: 16px;
}
.header .header-top nav ul {
  margin: 0;
  padding: 0;
  display: flex;
}
.header .header-top nav ul li {
  list-style-type: none;
  margin: 0 20px;
}
.header .header-top nav ul li a {
  color: #fff;
  text-transform: uppercase;
  font-family: "GothamPro-Bold";
  text-decoration: none;
  font-size: 14px;
  transition: 0.3s all;
}
.header .header-top nav ul li a:hover {
  color: #ababab;
}
.header .header-content {
  text-align: center;
  color: #fff;
}
.header .header-content h1 {
  font-family: "GothamPro-Bold";
  font-size: 60px;
  text-transform: uppercase;
}
.header .header-content h2 {
  background-color: #d2d5d0;
  color: #000;
  width: 750px;
  font-family: "GothamPro-Bold";
  font-size: 28px;
  text-transform: uppercase;
  margin: 0 auto;
  border-radius: 30px;
  letter-spacing: 2px;
  padding: 10px;
}
.header .header-content .items {
  margin-top: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 18px;
}
.header .header-content .items .item-t {
  width: 16%;
}
.header .header-content .items .f-g {
  width: 1px;
  background-color: #fff;
  height: 70px;
}
.header .header-content .items span, .header .header-content .items sup {
  font-family: "GothamPro-Black";
}

.header__fixed {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background-color: rgba(1, 1, 1, 0.8);
  animation-name: header;
  animation-duration: 0.2s;
  padding: 10px 0;
  z-index: 9999999;
}

@keyframes header {
  0% {
    opacity: 0;
    top: -100px;
  }
  100% {
    opacity: 1;
    top: 0;
  }
}
.block-left {
  width: 60%;
}

.block-right {
  width: 40%;
}

.dohidnist {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #ababab;
}
.dohidnist .block-left {
  color: #000;
  border: 3px solid #3e3e3e;
  padding: 20px 30px;
  border-radius: 30px;
  margin: 0 auto;
  text-align: center;
}
.dohidnist .block-left a {
  color: #000;
  text-decoration: none;
}
.dohidnist .block-left h2 {
  text-transform: uppercase;
  font-family: "GothamPro-Black";
  font-size: 50px;
  margin-bottom: 0;
}
.dohidnist .block-left h3 {
  text-transform: uppercase;
  font-family: "GothamPro-Medium";
  font-size: 40px;
  margin-top: 20px;
  margin-bottom: 0;
}
.dohidnist .block-right {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
.dohidnist .block-right a {
  color: #000;
  background-color: #d2d5d0;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  padding: 30px 70px;
  font-family: "GothamPro-Medium";
  font-size: 22px;
}

.img-logo {
  width: 90px;
}

.o-nas {
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: url(../img/o-nas-bg.png) center center/cover no-repeat;
}
.o-nas .block-left {
  display: flex;
  align-items: center;
  justify-content: center;
}
.o-nas .img-logo {
  margin-bottom: 60px;
}
.o-nas ul {
  margin: 0;
  padding: 0;
  margin-top: 30px;
}
.o-nas p, .o-nas li {
  width: 70%;
  font-size: 20px;
  font-family: "GothamPro-Medium";
  list-style-type: none;
  display: flex;
  align-items: center;
  margin: 20px 0;
}
.o-nas p img, .o-nas li img {
  width: 40px;
  margin-right: 15px;
}

.content {
  padding-bottom: 40px;
}
.content .carousel {
  width: 100%;
  margin-bottom: 20px;
}
.content ul li {
  font-size: 20px;
  font-family: "GothamPro-Medium";
}
.content .ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px;
}

.proekt {
  background-color: #000;
  color: #fff;
  position: relative;
}
.proekt .img-dr {
  position: absolute;
  right: 50px;
  bottom: 50px;
}

.plan {
  background-color: #fff;
  padding-bottom: 30px;
}
.plan .items {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.plan .items .img-logo {
  align-self: flex-end;
  margin-bottom: 100px;
}
.plan .item {
  width: 40%;
  margin-top: 50px;
}
.plan .item img {
  width: 100%;
}
.plan .item h3 {
  background-color: #3e3e3e;
  color: #fff;
  text-transform: uppercase;
  font-family: "GothamPro-Medium";
  font-size: 20px;
  padding: 0 25px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin: 0 auto;
  margin-top: 0px;
  width: 200px;
  margin-top: -80px;
  z-index: 99;
  position: relative;
}

.o-nas-2 {
  background: url(../img/t-bud.png) center center/cover no-repeat;
  color: #000;
  padding: 50px 0;
}
.o-nas-2 .img-logo {
  margin-top: 60px;
}
.o-nas-2 h2 {
  font-family: "GothamPro-Black";
  letter-spacing: 1px;
  font-size: 40px;
}
.o-nas-2 p, .o-nas-2 li {
  width: 40%;
  font-size: 20px;
  font-family: "GothamPro-Medium";
}

.title {
  background-color: #000;
  text-align: center;
  padding: 25px 200px;
}
.title h2 {
  color: #fff;
  text-transform: uppercase;
  font-family: "GothamPro-Black";
  font-size: 35px;
}

.bydunok {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #ABABAB;
  background: url(../img/umnyi_zamok-b.png) center center/cover no-repeat;
}
.bydunok .block-right img {
  width: 100%;
  height: 600px;
  -o-object-fit: cover;
     object-fit: cover;
}
.bydunok .block-left {
  padding: 100px 70px;
  display: flex;
  flex-direction: column;
}
.bydunok .block-left h2 {
  font-family: "GothamPro-Black";
  letter-spacing: 1px;
  font-size: 40px;
}
.bydunok .block-left p {
  font-size: 20px;
  font-family: "GothamPro-Medium";
}
.bydunok .block-left ul {
  margin: 0;
  padding: 0;
  margin-top: 30px;
}
.bydunok .block-left p, .bydunok .block-left li {
  width: 70%;
  font-size: 20px;
  font-family: "GothamPro-Medium";
  list-style-type: none;
  display: flex;
  align-items: center;
  margin: 20px 0;
}
.bydunok .block-left p img, .bydunok .block-left li img {
  width: 40px;
  margin-right: 15px;
}
.bydunok .block-left .tdr {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-top: 30px;
}
.bydunok .block-left .tdr span {
  color: #fff;
  font-weight: 300;
  display: block;
  width: 70%;
  font-size: 18px;
}
.bydunok .block-left .tdr .img-logo {
  position: relative;
}

.form {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #ABABAB;
}
.form .block-right {
  padding: 25px 70px;
  text-align: center;
  width: 100%;
}
.form .block-right h2 {
  font-family: "GothamPro-Black";
  letter-spacing: 1px;
  font-size: 40px;
  text-transform: uppercase;
}
.form .block-left {
  padding: 25px 70px;
  display: flex;
  flex-direction: column;
  background-color: #fff;
  height: auto;
  width: 100%;
}
.form .block-left form {
  width: 60%;
  margin: 0 auto;
}
.form .block-left form .input-email {
  width: 100%;
  border: none;
  background-color: #dbdbdb;
  padding: 15px;
  text-align: center;
  margin-bottom: 20px;
  font-size: 20px;
  color: #000;
  outline: none;
  border-radius: 0;
}
.form .block-left form .btn-email {
  width: 100%;
  border: none;
  background-color: #dbdbdb;
  padding: 10px;
  text-align: center;
  font-size: 20px;
  color: #000;
  font-family: "GothamPro-Medium";
  text-transform: uppercase;
}

.inv-proekt {
  background: url(../img/inv-proekt.png) center center/cover no-repeat;
  padding: 100px 0;
}
.inv-proekt h2 {
  font-family: "GothamPro-Black";
  letter-spacing: 1px;
  font-size: 40px;
  color: #fff;
}
.inv-proekt .cont {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.inv-proekt .cont .bl {
  padding: 70px;
  background-color: rgba(255, 255, 255, 0.7);
  width: auto;
}
.inv-proekt .cont .bl p {
  color: #000;
  font-size: 20px;
  font-family: "GothamPro-Medium";
}
.inv-proekt .cont .bl a {
  background-color: #000;
  color: #fff;
  font-family: "GothamPro-Medium";
  padding: 15px 50px;
  text-transform: uppercase;
  text-decoration: none;
  display: inline-block;
  margin-top: 20px;
}
.inv-proekt .cont .img {
  width: auto;
  margin-left: 30px;
}
.inv-proekt .cont .img img {
  width: 100%;
}

.gallery a {
  background-color: #fff;
  color: #000;
  font-family: "GothamPro-Medium";
  padding: 15px 50px;
  text-transform: uppercase;
  text-decoration: none;
  display: inline-block;
  margin-top: 20px;
}
.gallery .g-gallery {
  text-align: center;
}
.gallery img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  height: 900px;
}

.location {
  background-color: #fff;
  color: #000;
  padding-bottom: 30px;
  position: relative;
}
.location h2 {
  font-family: "GothamPro-Black";
  letter-spacing: 1px;
  font-size: 40px;
  text-align: center;
  padding: 20px;
  margin: 0;
  text-transform: uppercase;
}
.location img {
  width: 100%;
}
.location .text {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  margin: 20px 0;
  position: absolute;
  left: 50%;
  bottom: 0%;
  transform: translate(-50%, 0%);
  background-color: rgba(255, 255, 255, 0.7);
  width: 600px;
  text-align: center;
  padding: 20px;
}
.location .text p {
  font-family: "GothamPro-Medium";
  font-size: 18px;
  line-height: 20px;
  margin: 0;
}
.location .text .p {
  text-align: right;
}
.location .text a {
  color: #000;
  font-family: "GothamPro-Medium";
}
.location .text .strong {
  font-weight: bold;
  text-decoration: none;
  background-color: #3e3e3e;
  color: #fff;
  padding: 10px 30px;
  display: inline-block;
  margin-top: 10px;
}

.proekt-t {
  text-align: center;
  padding-bottom: 50px;
}
.proekt-t .img-logo {
  margin: 0;
}
.proekt-t h3 {
  font-weight: bold;
}

.zap-btn {
  padding: 60px;
  text-align: center;
  background-color: #fff;
}
.zap-btn a {
  text-transform: uppercase;
  color: #000;
  text-decoration: none;
  background-color: #ababab;
  font-family: "GothamPro-Black";
  font-size: 45px;
  padding: 20px 50px;
}

.footer {
  background-color: #000;
  padding: 50px 0;
}
.footer .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer .link {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-end;
}
.footer .link .gh {
  margin-bottom: 20px;
}
.footer .link .gh a {
  color: #fff;
  display: inline-block;
  margin-left: 10px;
}
.footer .link .gh a svg {
  width: 30px;
}
.footer .link a {
  color: #fff;
  text-decoration: none;
  font-family: "GothamPro-Bold";
}
.footer .link a svg {
  width: 20px;
  margin-right: 5px;
}
.footer .link .btn-footer {
  background-color: #d2d5d0;
  color: #000;
  padding: 4px 7px;
  border-radius: 30px;
  display: inline-block;
  text-transform: uppercase;
  font-size: 14px;
  margin-top: 2px;
  font-family: "GothamPro-Bold";
}
.footer .link span {
  color: #fff;
  font-family: "GothamPro-Medium";
  margin-top: 30px;
}
.footer .footer-logo {
  text-align: center;
}
.footer .footer-logo a img {
  width: 270px;
}
.footer nav ul {
  margin: 0;
  padding: 0;
}
.footer nav ul li {
  list-style-type: none;
}
.footer nav ul li a {
  color: #fff;
  text-transform: uppercase;
  font-family: "GothamPro-Bold";
  text-decoration: none;
  font-size: 16px;
  margin: 5px 0;
  display: inline-block;
  transition: 0.3s all;
}
.footer nav ul li a:hover {
  color: #ababab;
}

.modal-title {
  font-weight: bold;
}

.modal-body form {
  width: 100%;
  margin: 0 auto;
}
.modal-body form .input-email {
  width: 100%;
  border: none;
  background-color: #dbdbdb;
  padding: 15px;
  text-align: center;
  margin-bottom: 20px;
  font-size: 16px;
  color: #000;
  outline: none;
  border-radius: 0;
}
.modal-body form .btn-email {
  width: 100%;
  border: none;
  background-color: #dbdbdb;
  padding: 10px;
  text-align: center;
  margin-bottom: 20px;
  font-size: 16px;
  color: #000;
  font-family: "GothamPro-Medium";
  text-transform: uppercase;
}

.carousel-control-next-icon, .carousel-control-prev-icon {
  background-color: #000;
}

.cont-1 .dohidnist-1-1 {
  height: auto;
  padding: 50px 0;
}
.cont-1 .o-nas-1-1 {
  padding: 100px 0;
}
.cont-1 .o-nas-1-1 .block-left {
  display: flex;
  align-items: start;
  justify-content: start;
  width: 100%;
}
.cont-1 .o-nas-1-1 .block-left div {
  width: 100%;
}

.carousel-item img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center bottom;
     object-position: center bottom;
}
.carousel-item iframe {
  width: 100%;
  height: 600px;
}

.thank {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.thank h3 {
  font-weight: bold;
  font-size: 35px;
}
.thank span {
  margin: 10px 0;
  font-size: 18px;
}
.thank a {
  background-color: #d2d5d0;
  color: #000;
  padding: 10px 20px;
  border-radius: 30px;
  display: inline-block;
  text-transform: uppercase;
  font-size: 14px;
  font-family: "GothamPro-Bold";
  text-align: center;
  text-decoration: none;
  margin-top: 10px;
}

.video {
  margin-bottom: 50px;
}
.video iframe {
  width: 100%;
  height: 710px;
}

@media (max-width: 1500px) {
  .bydunok .block-right img {
    height: 650px;
  }
}
@media (max-width: 1400px) {
  .header .header-top nav ul li {
    margin-left: 25px;
  }
  .header .header-top nav ul li a {
    font-size: 12px;
  }
  .dohidnist .block-left h2 {
    font-size: 44px;
  }
  .dohidnist .block-left h3 {
    font-size: 35px;
  }
  .o-nas p, .o-nas li {
    width: 55%;
    font-size: 16px;
  }
  .img-logo {
    width: 70px;
  }
  .dohidnist .block-right a {
    font-size: 20px;
    padding: 25px 50px;
  }
  .bydunok .block-left p, .bydunok .block-left span {
    font-size: 18px;
  }
  .form .block-right h2 {
    font-size: 30px;
  }
  .form .block-left form {
    width: 100%;
  }
}
@media (min-width: 1200px) {
  .burger-menu {
    display: none;
  }
}
@media (max-width: 1200px) {
  .nav {
    display: none;
  }
  .header .header-content h1 {
    font-size: 60px;
  }
  .header .header-content h2 {
    width: 100%;
    font-size: 30px;
  }
  .header .header-content .items .item-t {
    font-size: 14px;
    width: 18%;
  }
  .o-nas .img-logo {
    margin-bottom: 40px;
  }
  .h2, .o-nas-2 h2, .bydunok .block-left h2, .title h2, .inv-proekt h2, .location h2, .zap-btn a, .form .block-right h2 {
    font-size: 30px;
  }
  .proekt .img-dr {
    display: none;
  }
  .content ul li {
    font-size: 16px;
  }
  .footer .footer-logo a img {
    width: 200px;
  }
  .header .header-top {
    width: 100%;
  }
  .o-nas p, .o-nas li {
    width: 100%;
  }
  .dohidnist .block-left h2 {
    font-size: 35px;
  }
  .dohidnist .block-left h3 {
    font-size: 25px;
  }
  .header .header-top .container {
    align-items: center;
  }
  .nt-45 {
    width: 100%;
  }
  .bydunok {
    background-position: center center;
  }
}
@media (max-width: 991px) {
  .header .header-content h1 {
    font-size: 6vw;
  }
  .header .header-content h2 {
    font-size: 3vw;
  }
  .header .header-content {
    margin-top: 150px;
  }
  .header .header-content .items .item-t {
    font-size: 11px;
  }
  .dohidnist {
    flex-direction: column;
    text-align: center;
  }
  .dohidnist .block-right {
    padding: 30px;
  }
  .block-left {
    width: 100%;
  }
  .block-right {
    width: 100%;
  }
  .bydunok {
    flex-direction: column;
  }
  .bydunok .block-right img {
    height: 500px;
  }
  .form {
    flex-direction: column;
  }
  .form .block-right, .form .block-left {
    padding: 50px 30px;
  }
  .inv-proekt .cont .img {
    display: none;
  }
  .inv-proekt h2 {
    text-align: center;
    margin-bottom: 20px;
  }
  .inv-proekt {
    padding: 50px 0;
  }
  .location .text {
    flex-direction: column;
    align-items: flex-start;
  }
  .location .text p {
    margin: 10px 0;
  }
  .footer .container {
    flex-direction: column-reverse;
    text-align: center;
  }
  .footer .link {
    align-items: center;
    justify-content: center;
  }
  .footer .footer-logo {
    margin: 30px 0;
  }
  .cont-1 {
    height: auto;
  }
  .cont-1 .dohidnist-1-1 {
    height: auto;
  }
  .cont-1 .o-nas-1-1 .block-left {
    height: auto;
  }
  .cont-1 .o-nas-1-1 .block-right {
    display: none;
  }
  .cont-1 .o-nas-1-1 .block-left {
    width: 100%;
  }
  .location .text {
    width: 100%;
    position: relative;
    right: auto;
    left: auto;
    bottom: auto;
    transform: translate(0);
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
  }
  .location .text p {
    text-align: center;
  }
  .location .text a {
    text-align: center;
  }
  .bydunok {
    background-position: center right;
  }
  .location .text .p {
    text-align: center;
  }
}
@media (min-width: 768px) {
  .img-m {
    display: none;
  }
}
@media (max-width: 768px) {
  .h2 {
    width: 100%;
    font-size: 25px;
    padding: 15px;
  }
  .plan .items {
    flex-direction: column;
    margin-top: 30px;
  }
  .plan .item {
    width: 100%;
    margin: 0;
  }
  .plan .items .img-logo {
    margin: 30px auto;
  }
  .content .ul {
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
  }
  .o-nas p, .o-nas li {
    width: 100%;
  }
  .o-nas {
    background-position: center left;
  }
  .title {
    padding: 20px;
  }
  .title h2 {
    font-size: 25px;
  }
  .h2, .o-nas-2 h2, .bydunok .block-left h2, .title h2, .inv-proekt h2, .location h2, .zap-btn a, .form .block-right h2 {
    font-size: 25px;
  }
  .dohidnist .block-left {
    padding: 20px;
  }
  .dohidnist .block-left h2 {
    font-size: 30px;
  }
  .dohidnist .block-left h3 {
    font-size: 25px;
  }
  .img-logo {
    width: 50px;
  }
  .bydunok .block-left {
    padding: 20px;
  }
  .form .block-right, .form .block-left {
    padding: 20px;
  }
  .inv-proekt h2 {
    padding: 20px;
  }
  .zap-btn a {
    font-size: 20px;
    padding: 20px;
  }
  .form .block-right h2 {
    text-align: center;
  }
  .bydunok .block-right img {
    height: 350px;
  }
  .o-nas .img-logo {
    margin-bottom: 0;
    margin-top: 30px;
  }
  .plan {
    padding-bottom: 30px;
  }
  .img-m {
    width: 100%;
    margin-bottom: 20px;
  }
  .o-nas .block-left, .cont-1 .dohidnist-1-1 .block-left {
    padding: 20px;
  }
  .carousel-item img {
    height: auto;
    width: 100%;
  }
  .carousel-item iframe {
    height: 300px;
    width: 100%;
  }
  .header .header-top .link {
    flex-direction: column;
  }
  .header .header-top .link .btn-header {
    margin-left: 0;
  }
  .bydunok {
    background: url(../img/umnyi_zamok-b-m.png) center center/cover no-repeat;
  }
  .bydunok .block-left p, .bydunok .block-left li {
    width: 100%;
    font-size: 18px;
  }
  .bydunok .block-left .tdr span {
    font-size: 14px;
  }
  .dohidnist {
    padding: 30px 0;
  }
  .inv-proekt .cont .bl {
    padding: 30px;
  }
  .inv-proekt .cont .bl a {
    text-align: center;
  }
}
@media (max-width: 500px) {
  .burger-menu_nav {
    right: -250%;
  }
  .header .header-logo a img {
    width: 150px;
  }
  .header .header-content {
    margin-top: 30px;
  }
  .bydunok .block-left p, .bydunok .block-left span {
    font-size: 16px;
  }
  .popup-bg {
    width: 90%;
    padding: 50px 30px;
  }
  .inv-proekt .cont .bl {
    padding: 30px;
  }
  .inv-proekt .cont .bl p {
    font-size: 16px;
  }
  .inv-proekt .cont .bl a {
    text-align: center;
  }
  .zap-btn {
    padding: 50px 20px;
  }
  .zap-btn a {
    font-size: 16px;
    padding: 15px;
    display: block;
  }
  .footer .link a {
    margin: 2px 0;
    display: inline-block;
  }
  .proekt-t {
    padding-bottom: 30px;
  }
  .location .text p {
    font-size: 16px;
  }
  .form .block-left form .input-email, .form .block-left form .btn-email {
    font-size: 18px;
  }
  .header {
    padding-bottom: 30px;
  }
  .header .header-content .items {
    display: flex;
    flex-direction: column;
    margin-top: 60px;
  }
  .header .header-content .items .item {
    width: 100%;
    font-size: 11px;
    margin: 1px;
  }
  .header .header-content .items .item-g {
    display: none;
  }
  .dohidnist .block-left h2 {
    font-size: 20px;
  }
  .dohidnist .block-left h3 {
    font-size: 20px;
  }
  .dohidnist .block-right a {
    padding: 20px;
    width: 100%;
    font-size: 14px;
  }
  .o-nas .img-logo {
    margin: 0;
    margin-bottom: 20px;
  }
  .o-nas-2 .img-logo {
    margin-top: 20px;
    margin-bottom: 0;
  }
  .header .header-content h1 {
    font-size: 11vw;
  }
  .burger-menu_link {
    font-size: 18px;
    padding: 12px 35px;
  }
  .burger-menu_active .burger-menu_nav {
    width: 100%;
  }
  .plan .item h3 {
    font-size: 16px;
    height: 45px;
    margin-top: -60px;
  }
  .header .header-top .header-logo img {
    width: 90px;
    margin-left: 30px;
  }
  .cont-1 .o-nas-1-1, .cont-1 .dohidnist-1-1 {
    padding: 20px 0;
  }
  .header__fixed {
    padding: 5px 0;
  }
  .header .header-top .link .btn-header {
    padding: 3px;
  }
  .header .header-top .link a, .header .header-top .link .btn-header {
    font-size: 9px;
    margin: 0;
  }
  .header .header-top .link a svg {
    width: 15px;
  }
  .video {
    margin-bottom: 30px;
  }
  .video iframe {
    height: 350px;
  }
  .gallery img {
    height: 400px;
  }
  .dohidnist .block-left a {
    margin-top: 0;
    padding: 20px;
  }
}/*# sourceMappingURL=style.css.map */