* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Roboto Slab", serif;
}

.burger-menu_button {
  position: relative;
  top: 0px;
  right: -5px;
  z-index: 30;
  width: 60px;
  height: 60px;
  display: block;
  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: 35px;
  height: 3px;
  background-color: rgb(0, 0, 0);
  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: #fff;
  overflow-y: auto;
  right: -100%;
  transition: 0.8s;
}

.burger-menu_nav ul {
  margin: 0;
  padding: 0;
}
.burger-menu_nav ul li {
  list-style-type: none;
}

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

.burger-menu_link {
  padding: 20px;
  font-size: 18px;
  text-decoration: none;
  font-weight: 600;
  color: rgb(0, 0, 0);
  display: block;
}
.burger-menu_link:hover {
  text-decoration: underline;
  color: rgb(0, 0, 0);
}

.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: #050d1c;
  color: #fff;
  border: 3px solid transparent;
  -o-border-image: linear-gradient(90deg, rgb(244, 110, 22) 0%, rgb(85, 168, 228) 70%);
     border-image: linear-gradient(90deg, rgb(244, 110, 22) 0%, rgb(85, 168, 228) 70%);
  border-image-slice: 1;
  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: #050d1c;
  color: #fff;
  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;
}

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

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

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

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

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

.close-popup-1:after {
  content: "";
  background-color: #fff;
  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;
}

.header {
  background: url(../img/bg-header.jpg) center center/cover no-repeat;
}
.header .bg {
  height: auto;
  background-color: rgba(0, 0, 0, 0.3);
  padding-bottom: 100px;
}
.header .bg .lang {
  margin-left: auto;
  background-color: rgb(226, 226, 226);
  display: flex;
  align-items: center;
  width: 235px;
  padding: 5px;
}
.header .bg .lang a {
  color: #000;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 20px;
}
.header .bg .lang a:hover {
  text-decoration: underline;
}
.header .bg .lang p {
  margin: 0 15px;
  font-size: 20px;
}
.header .bg .header-block {
  max-width: 1000px;
  margin: 100px auto;
  border: 1px solid #000;
  background-color: rgba(0, 0, 0, 0.3);
  color: #fff;
  padding: 10px;
}
.header .bg .header-block .blocks {
  display: flex;
  align-items: center;
}
.header .bg .header-block .blocks .block-1 {
  border: 1px solid rgb(151, 151, 151);
  background-color: rgba(0, 0, 0, 0.5);
  padding: 10px;
  width: 70%;
  height: 220px;
}
.header .bg .header-block .blocks .block-1 h2 {
  font-size: 40px;
}
.header .bg .header-block .blocks .block-1 h1 {
  font-size: 60px;
  font-weight: bold;
}
.header .bg .header-block .blocks .block-1 p {
  font-size: 20px;
}
.header .bg .header-block .blocks .block-2 {
  width: 30%;
  border: 1px solid rgb(151, 151, 151);
  background-color: #eb934f;
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.header .bg .header-block .blocks .block-2 h3 {
  text-align: center;
  margin: 15px;
  font-weight: bold;
  text-transform: uppercase;
  font-size: 51px;
}
.header .bg .header-block .blocks .block-2 p {
  background-color: #000;
  margin: 0;
  padding: 10px;
  font-size: 20px;
  text-align: center;
}
.header .bg .header-block .itm {
  text-align: center;
  font-size: 20px;
  margin-top: 10px;
  color: #eb934f;
  background-color: rgba(0, 0, 0, 0.5);
  font-weight: bold;
}
.header .bg .header-years {
  border: 1px solid #000;
  background-color: rgba(0, 0, 0, 0.3);
  color: #fff;
  text-align: center;
  width: 250px;
  margin: 0 auto;
  padding: 20px;
}
.header .bg .header-years h3 {
  font-size: 35px;
  font-weight: bold;
}
.header .bg .header-years p {
  margin: 0;
  font-size: 20px;
}

.tour {
  background-color: #4d5b6b;
  padding: 30px 0;
  text-align: center;
  color: #fff;
}
.tour h2 {
  font-weight: bold;
}
.tour p {
  font-size: 18px;
  margin: 30px 0;
}
.tour a {
  background-color: #fff;
  color: #000;
  text-decoration: none;
  padding: 15px;
  display: inline-block;
  font-weight: bold;
}
.tour a img {
  margin-right: 10px;
}

.img-text {
  background-color: #4d5b6b;
  padding: 30px 0;
  text-align: center;
  color: #fff;
}
.img-text .block {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.img-text .block .img {
  width: 50%;
}
.img-text .block .img img {
  width: 100%;
}
.img-text .block .text {
  width: 50%;
  padding: 50px;
}

.items-block {
  padding: 50px 0;
  max-width: 1000px;
  margin: 0 auto;
}
.items-block h2 {
  text-align: center;
  font-weight: bold;
}
.items-block .items {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
.items-block .items .item {
  text-align: center;
  width: 170px;
}
.items-block .items .item .img {
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.items-block .items .item .img h3 {
  font-weight: bold;
  font-size: 40px;
}
.items-block .items .item .img img {
  width: 50px;
}
.items-block .items .item h5 {
  font-size: 12px;
}

.swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  margin: 0 15px;
  background-color: #AFAFAF;
  opacity: 1;
}

.swiper-pagination-bullet-active {
  background-color: #4d5b6b;
}

.swiper-button-prev,
.swiper-button-next {
  position: static;
  margin-left: 10px;
}

.swiper-container {
  padding: 100px 0;
}

.swiper-slide {
  opacity: 0.5;
  transition: transform 0.5s;
}

.swiper-slide-active {
  transform: scale(1.2);
  opacity: 1;
  transition: transform 0.5s;
}

.slider-img {
  margin: 50px 0;
}
.slider-img img {
  height: 400px;
  width: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

.text-bt {
  text-align: center;
  padding: 50px 0;
}
.text-bt p {
  margin: 30px 0;
}
.text-bt .a-g a {
  padding: 10px 15px;
  color: #000;
  background-color: #AFAFAF;
  text-decoration: none;
  text-align: center;
  width: 200px;
  display: inline-block;
  margin: 0 20px;
}

.bedroom {
  text-align: center;
  padding: 50px 0;
}
.bedroom .items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
}
.bedroom .items .item img {
  width: 100%;
  height: 400px;
  -o-object-fit: cover;
     object-fit: cover;
  margin-bottom: 20px;
}

.location {
  padding: 50px 0;
  text-align: center;
}
.location h2 {
  margin-bottom: 30px;
}
.location img {
  width: 100%;
}

.form-b {
  padding: 50px 0;
}
.form-b h3 {
  text-align: center;
}
.form-b p {
  text-align: center;
}
.form-b form {
  max-width: 500px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.form-b form .inp-f {
  width: 100%;
  border: 1px solid #000;
  margin-bottom: 20px;
  padding: 10px;
  outline: none;
  color: #000;
}
.form-b form .btn-form {
  background-color: #000;
  color: #fff;
  padding: 10px 20px;
  margin: 0 auto;
  border: none;
}

.map iframe {
  width: 100%;
  height: 500px;
}

.footer {
  text-align: center;
  padding: 20px 0;
}
.footer a {
  color: #000;
  font-weight: 500;
}
.footer p {
  margin: 0;
}

.thank {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  height: 100vh;
}
.thank h4 {
  margin: 30px 0;
}
.thank a {
  background-color: #000;
  color: #fff;
  padding: 10px 20px;
  margin: 0 auto;
  border: none;
  text-decoration: none;
  display: inline-block;
}

.video video {
  width: 100%;
  height: auto;
}

.iti {
  width: 100%;
  margin-bottom: 20px;
}

@media (max-width: 991px) {
  .header .bg .header-block {
    margin: 50px 0;
  }
  .header .bg {
    padding-bottom: 50px;
  }
  .header .bg .header-block .itm {
    font-size: 14px;
  }
  .img-text .block {
    flex-direction: column;
  }
  .img-text .block .img {
    width: 100%;
    margin-bottom: 30px;
  }
  .img-text .block .text {
    width: 100%;
    padding: 0;
  }
  .swiper-container {
    padding-bottom: 50px;
  }
  .text-bt .bedroom, .text-bt {
    padding: 30px 0;
  }
  .bedroom .items {
    grid-template-columns: repeat(1, 1fr);
    gap: 30px;
  }
}
@media (max-width: 768px) {
  .items-block .items .item {
    width: 100px;
  }
  .items-block .items .item .img {
    height: 60px;
  }
  .items-block .items .item .img img {
    width: 40px;
  }
  .items-block .items .item .img h3 {
    font-size: 25px;
  }
  .items-block .items .item h5 {
    font-size: 10px;
  }
  .swiper-container {
    padding-top: 0;
  }
  .text-bt .a-g a {
    margin: 10px;
  }
  .header .bg .lang {
    width: 215px;
  }
  .header .bg .lang a {
    font-size: 16px;
  }
  .header .bg .header-block .blocks .block-1 h2 {
    font-size: 15px;
  }
  .header .bg .header-block .blocks .block-1 h1 {
    font-size: 20px;
  }
  .header .bg .header-block .blocks .block-1 p {
    font-size: 12px;
  }
  .header .bg .header-block .blocks .block-2 {
    padding: 10px;
  }
  .header .bg .header-block .blocks .block-2 h3 {
    font-size: 16px;
  }
  .header .bg .header-block .blocks .block-2 p {
    font-size: 12px;
  }
  .header .bg .header-years h3 {
    font-size: 20px;
  }
  .header .bg .header-years p {
    font-size: 15px;
  }
  .header .bg .header-block .blocks .block-1 {
    height: 114px;
  }
  .header .bg .header-block .blocks .block-2 {
    height: 114px;
  }
  .tour p {
    font-size: 15px;
  }
}
@media (max-width: 500px) {
  .video iframe {
    height: 400px;
  }
}/*# sourceMappingURL=style.css.map */

.first-name {
  display: none;
}