@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-family: 'Roboto', sans-serif;
}

html {
  overflow-x: hidden;
}

body {
  overflow-x: hidden;
}

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

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

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

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

.burger-menu_lines::before {
  content: '';
  top: -12px;
}

.burger-menu_lines::after {
  content: '';
  top: 12px;
}

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

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

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

.burger-menu_nav {
  padding-top: 150px;
  position: fixed;
  top: 0;
  z-index: 20;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
  height: 100%;
  background-color: #000;
  overflow-y: auto;
  right: -100%;
  -webkit-transition: 0.8s;
  transition: 0.8s;
}

.burger-menu_nav li {
  list-style-type: none;
}

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

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

.burger-menu_link:hover {
  text-decoration: underline;
  color: #fff;
}

.burger-menu_link:hover {
  -webkit-filter: brightness(0.9);
          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: 9999999999999999;
}

.popup {
  border-radius: 5px;
  text-align: center;
  position: absolute;
  width: 640px;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  padding: 50px 100px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  background-color: #fff;
  color: #000;
  -webkit-box-shadow: 0px 4px 8px 8px rgba(0, 0, 0, 0.16);
  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);
  -webkit-box-sizing: border-box;
  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;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.close-popup:after {
  content: '';
  background-color: #000;
  position: absolute;
  height: 1px;
  width: 31px;
  top: 11px;
  -webkit-transform: rotate(45deg);
  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: 9999999999999999;
}

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

.popup-bg {
  height: auto;
  width: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: space-evenly;
  -ms-flex-pack: space-evenly;
  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: #000;
  position: absolute;
  height: 1px;
  width: 31px;
  top: 11px;
  left: -4px;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.close-popup-1:after {
  content: '';
  background-color: #000;
  position: absolute;
  height: 1px;
  width: 31px;
  top: 11px;
  -webkit-transform: rotate(45deg);
  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;
}

h1 {
  font-family: 'Dancing Script', cursive;
}

.a-btn {
  font-size: 25px;
  color: #fff;
  text-decoration: none;
  padding: 10px 40px;
  border: 2px solid #fff;
  display: inline-block;
  text-align: center;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
}

.a-btn:hover {
  background-color: #fff;
  color: #000;
}

.h2 {
  text-align: center;
  margin: 50px 0;
}

.h2 h2 {
  margin: 0;
  padding: 0;
  font-size: 50px;
  color: #636d76;
  font-weight: 100;
}

.header {
  background: url(../img/bg-1.jpg) center bottom/cover no-repeat;
}

.header .bg {
  background-color: rgba(0, 0, 0, 0.4);
}

.header .header-top {
  padding: 30px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.header .header-top .logo img {
  width: 120px;
}

.header .header-top .nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.header .header-top .nav nav ul {
  margin: 0;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.header .header-top .nav nav ul li {
  list-style-type: none;
}

.header .header-top .nav nav ul li a {
  color: #fff;
  text-transform: uppercase;
  text-decoration: none;
  margin-left: 40px;
  font-size: 20px;
}

.header .header-top .nav nav ul li a:hover {
  text-decoration: underline;
}

.header .header-top .nav .phone {
  color: #fff;
  font-weight: bold;
  margin-left: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-decoration: none;
  font-size: 20px;
}

.header .header-top .nav .phone:hover {
  text-decoration: underline;
}

.header .header-top .nav .phone img {
  width: 30px;
}

.header .header-top .nav .phone p {
  margin: 0;
  padding: 0;
  margin-left: 10px;
}

.header .header-center {
  margin: 10% 0;
}

.header .header-center .h1 {
  width: 60%;
  margin: 0 auto;
}

.header .header-center .h1 h1 {
  text-align: center;
  color: #fff;
  text-align: right;
  font-size: 62px;
}

.header .header-center .h1 p {
  color: #fff;
  text-align: right;
}

.header .header-center .p {
  font-size: 25px;
  color: #fff;
  margin-top: 50px;
  text-align: center;
}

.header .header-center .a {
  text-align: center;
  margin-top: 50px;
}

.header .header-bottom {
  margin-top: 100px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[7];
      grid-template-columns: repeat(7, 1fr);
  gap: 10px;
  padding-bottom: 50px;
}

.header .header-bottom .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.header .header-bottom .item img {
  width: 50px;
}

.header .header-bottom .item p {
  color: #fff;
  padding: 0;
  margin: 0;
  margin-left: 10px;
  font-size: 15px;
}

.block-text-img {
  background-color: #b61f24;
  padding: 50px 0;
  color: #fff;
}

.block-text-img .container {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
      grid-template-columns: repeat(2, 1fr);
  gap: 50px;
}

.block-text-img .container .text h2 {
  font-size: 50px;
}

.block-text-img .container .text p {
  font-size: 20px;
  text-align: justify;
}

.block-text-img .container .img {
  width: 100%;
}

.block-text-img .container .img img {
  width: 100%;
}

.gallery .carousel-indicators {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[7];
      grid-template-columns: repeat(7, 1fr);
  width: 100%;
  margin: 0 auto;
  height: 150px;
}

.gallery .carousel-indicators [data-bs-target] {
  position: relative;
  text-indent: 0;
  width: 100%;
  height: auto;
  background-color: transparent;
  margin: 0;
  padding: 0;
  opacity: 1;
}

.gallery .carousel-indicators [data-bs-target] img {
  width: 100%;
  height: 150px;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-filter: brightness(60%);
          filter: brightness(60%);
}

.gallery .carousel-indicators [data-bs-target] p {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  padding: 0;
  margin: 0;
  font-weight: bold;
  color: #fff;
  font-size: 20px;
}

.gallery .carousel-indicators .active img {
  -webkit-filter: brightness(40%);
          filter: brightness(40%);
}

.gallery .carousel-item img {
  height: 800px;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-filter: brightness(60%);
          filter: brightness(60%);
}

.gallery .carousel-item .carousel-caption {
  bottom: auto;
  top: 10%;
}

.gallery .carousel-item .carousel-caption h5 {
  font-size: 50px;
  font-weight: bold;
  margin: 0;
}

.gallery .carousel-item .carousel-caption .f-h2 {
  width: 300px;
  height: 3px;
  background-color: #fff;
  margin: 20px auto;
}

.gallery .carousel-item .carousel-caption p {
  font-size: 25px;
}

.gallery .carousel-control-next-icon {
  background: none;
}

.gallery .carousel-control-next-icon img {
  width: 30px;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.gallery .carousel-control-prev-icon {
  background: none;
}

.gallery .carousel-control-prev-icon img {
  width: 30px;
}

.book-form {
  margin: 50px 0;
}

.book-form .container {
  background-color: #f5f5f5;
  padding: 30px 60px;
}

.book-form .container .form-it {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
      grid-template-columns: repeat(2, 1fr);
  gap: 50px;
}

.book-form .container .form-it .input-email {
  width: 100%;
  border: none;
  border-bottom: 2px solid #b1b1b1;
  background-color: transparent;
  font-size: 20px;
  padding: 10px 0;
  outline: none;
  border-radius: 0;
}

.book-form .container .form-it ::-webkit-input-placeholder {
  color: #b1b1b1;
}

.book-form .container .form-it :-ms-input-placeholder {
  color: #b1b1b1;
}

.book-form .container .form-it ::-ms-input-placeholder {
  color: #b1b1b1;
}

.book-form .container .form-it ::placeholder {
  color: #b1b1b1;
}

.book-form .container .btn-n {
  text-align: center;
}

.book-form .container .lang {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 50px;
}

.book-form .container .lang-item {
  margin-left: 30px;
  margin-top: -5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.book-form .container .lang h3 {
  color: #636d76;
  font-weight: bold;
  font-size: 22px;
}

.book-form .container .lang label {
  color: #636d76;
  font-weight: bold;
  font-size: 22px;
  margin-left: 10px;
}

.book-form .container .lang #highload4 {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 20px;
  width: 20px;
  background-color: #f5f5f5;
  border-radius: 10%;
  border-radius: 100%;
  border: 1px solid #b61f24;
}

.book-form .container .lang #highload4:checked {
  background-color: #b61f24;
}

.book-form .container .lang #highload4:checked:before {
  content: "●";
  color: white;
  padding: initial;
  font-weight: bold;
}

.book-form .container .btn-email {
  background-color: #b61f24;
  border: 2px solid #b61f24;
  margin: 0 auto;
  margin-top: 50px;
  text-align: center;
}

.book-form .container .btn-email:hover {
  background-color: transparent;
  color: #b61f24;
}

.plans {
  padding: 50px 0;
}

.plans .items {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
      grid-template-columns: repeat(2, 1fr);
  gap: 100px;
}

.plans .items .item .img {
  height: 500px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.plans .items .item .img img {
  width: 100%;
  margin-bottom: 30px;
  -o-object-fit: cover;
     object-fit: cover;
}

.plans .items .item h3 {
  font-weight: bold;
  color: #707070;
}

.plans .items .item p {
  font-size: 18px;
  color: #707070;
}

.plans .btn-plans {
  text-align: center;
}

.plans .btn-plans a {
  background-color: #b61f24;
  border: 2px solid #b61f24;
  margin: 0 auto;
  margin-top: 50px;
  text-align: center;
}

.plans .btn-plans a:hover {
  background-color: transparent;
  color: #b61f24;
}

.img-bg {
  width: 100%;
}

.img-bg img {
  width: 100%;
}

.text-block {
  padding: 50px 0;
  text-align: center;
}

.text-block .btn-plans {
  text-align: center;
}

.text-block .btn-plans a {
  background-color: #b61f24;
  border: 2px solid #b61f24;
  margin: 0 auto;
  margin-top: 50px;
  text-align: center;
}

.text-block .btn-plans a:hover {
  background-color: transparent;
  color: #b61f24;
}

.text-block .p {
  font-size: 25px;
  color: #636d76;
}

.projects {
  padding: 50px 0;
}

.projects .items {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
      grid-template-columns: repeat(3, 1fr);
  gap: 50px;
}

.projects .items .item img {
  width: 100%;
  height: 300px;
  -o-object-fit: cover;
     object-fit: cover;
  margin-bottom: 20px;
}

.projects .items .item h3 {
  font-weight: bold;
}

.projects .items .item .g {
  color: #54a710;
}

.projects .items .item .b {
  color: #2460ce;
}

.projects .items .item .r {
  color: #b61f24;
}

.projects .items .item p {
  text-align: justify;
  color: #636d76;
  font-size: 17px;
  font-weight: 300;
}

.projects .items .item a {
  background-color: #b61f24;
  border: 2px solid #b61f24;
  margin: 0 auto;
  text-align: center;
}

.projects .items .item a:hover {
  background-color: transparent;
  color: #b61f24;
}

.video .h2 h2 {
  text-align: left;
}

.video iframe {
  margin-top: 30px;
}

.footer {
  padding: 30px 0;
  background-color: #b61f24;
}

.footer .title {
  margin: 0 auto;
  text-align: center;
}

.footer .title h2 {
  color: #fff;
  font-size: 40px;
  margin: 0;
}

.footer .title .figure-f {
  width: 200px;
  height: 2px;
  background-color: #fff;
  margin: 20px auto;
}

.footer .title a {
  color: #fff;
  text-decoration: none;
  font-size: 30px;
  font-weight: 100;
  letter-spacing: 2px;
}

.footer .title a:hover {
  text-decoration: underline;
}

.footer .media {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 30px;
}

.footer .media .site {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  font-size: 20px;
}

.footer .media .site:hover {
  text-decoration: underline;
}

.footer .media .social {
  margin: 0 auto;
}

.footer .media .social img {
  width: 30px;
  margin-left: 10px;
}

.footer .footer-span {
  margin-top: 30px;
  color: #fff;
  text-align: center;
}

.modal-header {
  border-bottom: none;
}

.modal-body .form-it {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[1];
      grid-template-columns: repeat(1, 1fr);
  gap: 30px;
  margin-bottom: 30px;
}

.modal-body ::-webkit-input-placeholder {
  color: #b1b1b1;
}

.modal-body :-ms-input-placeholder {
  color: #b1b1b1;
}

.modal-body ::-ms-input-placeholder {
  color: #b1b1b1;
}

.modal-body ::placeholder {
  color: #b1b1b1;
}

.modal-body .input-email {
  width: 100%;
  border: none;
  border-bottom: 2px solid #b1b1b1;
  background-color: transparent;
  font-size: 20px;
  padding: 10px 0;
  outline: none;
  border-radius: 0;
}

.modal-body .btn-n {
  text-align: center;
}

.modal-body .lang {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 50px;
}

.modal-body .lang-item {
  margin-left: 30px;
  margin-top: -5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.modal-body .lang h3 {
  color: #636d76;
  font-weight: bold;
  font-size: 22px;
}

.modal-body .lang label {
  color: #636d76;
  font-weight: bold;
  font-size: 22px;
  margin-left: 10px;
}

.modal-body .lang #highload4 {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 20px;
  width: 20px;
  background-color: #f5f5f5;
  border-radius: 10%;
  border-radius: 100%;
  border: 1px solid #b61f24;
}

.modal-body .lang #highload4:checked {
  background-color: #b61f24;
}

.modal-body .lang #highload4:checked:before {
  content: "●";
  color: white;
  padding: initial;
  font-weight: bold;
}

.modal-body .btn-email {
  background-color: #b61f24;
  border: 2px solid #b61f24;
  margin: 0 auto;
  margin-top: 50px;
  text-align: center;
}

.modal-body .btn-email:hover {
  background-color: transparent;
  color: #b61f24;
}

.thank {
  text-align: center;
  height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.thank h1 {
  font-size: 50px;
}

.thank h4 {
  margin: 20px 0;
}

.thank a {
  border: 2px solid #b61f24;
  color: #000;
}

@media (max-width: 1400px) {
  .header .header-center .h1 {
    width: 80%;
  }
  .block-text-img .container .text h2 {
    font-size: 45px;
  }
  .block-text-img .container .text p {
    font-size: 18px;
  }
}

@media (max-width: 1200px) {
  .header .header-top .nav nav ul li a {
    font-size: 16px;
  }
  .header .header-top .nav .phone p {
    font-size: 16px;
  }
  .header .header-top .nav .phone img {
    width: 20px;
  }
  .header .header-top .logo img {
    width: 90px;
  }
  .header .header-center .h1 {
    width: 100%;
  }
  .header .header-bottom {
    -ms-grid-columns: (1fr)[4];
        grid-template-columns: repeat(4, 1fr);
  }
  .block-text-img .container .text h2 {
    font-size: 35px;
  }
  .block-text-img .container .text p {
    font-size: 16px;
  }
  .a-btn {
    font-size: 22px;
  }
  .h2 h2 {
    font-size: 40px;
  }
}

@media (min-width: 991px) {
  .burger-menu {
    display: none;
  }
}

@media (max-width: 991px) {
  .block-text-img .container {
    -ms-grid-columns: (1fr)[1];
        grid-template-columns: repeat(1, 1fr);
  }
  .header .header-top .nav nav {
    display: none;
  }
  .projects .items {
    -ms-grid-columns: (1fr)[2];
        grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .header .header-bottom {
    -ms-grid-columns: (1fr)[2];
        grid-template-columns: repeat(2, 1fr);
  }
  .book-form .container .form-it {
    -ms-grid-columns: (1fr)[1];
        grid-template-columns: repeat(1, 1fr);
    gap: 20px;
  }
  .plans .items {
    -ms-grid-columns: (1fr)[1];
        grid-template-columns: repeat(1, 1fr);
    gap: 30px;
  }
  .plans .items .item .img {
    height: auto;
  }
  .projects .items {
    -ms-grid-columns: (1fr)[1];
        grid-template-columns: repeat(1, 1fr);
  }
  .book-form .container .lang {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
  }
  .book-form .container .lang-item {
    margin-left: 0;
    margin-top: 10px;
  }
}

@media (max-width: 500px) {
  .header .header-top .nav .phone p {
    display: none;
  }
  .header .header-top .nav .phone img {
    width: 30px;
  }
  .header .header-center .h1 h1 {
    text-align: center;
    font-size: 50px;
  }
  .header .header-center .h1 p {
    text-align: center;
    font-size: 16px;
  }
  .header .header-center .p {
    font-size: 16px;
  }
  .gallery .carousel-item .carousel-caption p {
    font-size: 20px;
  }
  .book-form .container {
    padding: 30px;
  }
  .text-block .p {
    font-size: 20px;
  }
  .a-btn {
    font-size: 18px;
  }
  .gallery .carousel-indicators [data-bs-target] p {
    font-size: 8px;
  }
  .gallery .carousel-indicators [data-bs-target] img {
    height: 100px;
  }
  .gallery .carousel-indicators {
    height: 100px;
  }
  .gallery .carousel-item img {
    height: 600px;
  }
  .gallery .carousel-item .carousel-caption .f-h2 {
    width: 100%;
  }
  .popup-bg {
    width: 90%;
    padding: 30px;
  }
  .block-text-img .text a {
    width: 100%;
  }
  .projects .items .item a {
    width: 100%;
  }
}
/*# sourceMappingURL=style.css.map */

.first-name {
  display: none;
}