@font-face {
  font-family: "Montserrat-Bold";
  src: url(font/Montserrat/Montserrat-Black.ttf);
}
@font-face {
  font-family: "Montserrat";
  src: url(font/Montserrat/Montserrat-Light.ttf);
}
a {
  text-decoration: none;
}
p {
  margin: 0;
}
html,
body {
  width: 100%;
  height: 100%;
  background-color: rgb(243, 243, 243);
  margin: 0;
  padding: 0;
  line-height: normal;
}
.container {
  max-width: 1320px;
  margin: 0 auto;
}
.header {
  position: fixed;
  width: 100%;
  padding: 14px 0px;
  background-color: #273b54;
  z-index: 9;
}
.header__wrapper {
  display: flex;
  justify-content: space-around;
}
.header__logo {
  width: 250px;
}
.header__logo-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.header__info {
  height: 56px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #7f7f7f;
  padding-bottom: 5px;
}
.header__info-top1 {
  height: 56px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  padding-right: 50px;
}
.header__info-address {
  font-family: "Montserrat-Bold";
  color: #fff;
  font-weight: 600;
  font-size: 15px;
}
.header__menu__info-time {
  font-family: "Montserrat";
  font-weight: 400;
  font-size: 15px;
  color: #fff;
}
.header__info-top2 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}
.header__info-tele {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}
.header__info-scl {
  width: 30px;
  height: 30px;
}
.header__info-nmbr {
  font-family: "Montserrat-Bold";
  color: #fff;
}
.header__info-tel-btn {
  font-family: "Montserrat-Bold";
  background-color: #d5d5d5;
  padding: 10px;
  border: 2px solid #273b54;
  border-radius: 10px;
}
.header__info-btn-info {
  font-size: 16px;
  color: #273b54;
}

/* MODAL */
.modal {
  display: none;
  position: fixed;
  z-index: 9999999;
  padding-top: 150px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.4);
}
.modal-content {
  position: relative;
  background-color: #fff;
  margin: auto;
  padding: 0;
  width: 40%;
  box-shadow: 0 0 12px #bebebebb;
  -webkit-animation-name: animatetop;
  -webkit-animation-duration: 0.4s;
  animation-name: animatetop;
  animation-duration: 0.4s;
}
@-webkit-keyframes animatetop {
  from {
    top: -200px;
    opacity: 0;
  }
  to {
    top: 0;
    opacity: 1;
  }
}

@keyframes animatetop {
  from {
    top: -200px;
    opacity: 0;
  }
  to {
    top: 0;
    opacity: 1;
  }
}
.close {
  color: white;
  float: right;
  font-size: 30px;
  font-weight: bold;
  height: 45px;
}
.close:hover,
.close:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
}
.modal-header {
  padding: 2px 16px;
  background-color: #273b54;
  color: white;
}
.modal__title {
  font-family: "Montserrat-Bold";
  margin: 0 auto;
  padding: 10px 0px;
}
.modal_body {
  margin: 0 auto;
  padding: 30px 16px;
}
.modal__btn {
  background-color: #273b54;
  color: #fff;
  padding: 9px 8px;
  font-size: 16px;
  font-weight: bold;
  border: none;
  cursor: pointer;
  width: 100px;
  border-radius: 10px;
}
.modal__display {
  display: flex;
  justify-content: center;
}
.modal-footer {
  padding: 2px 16px;
  background-color: #273b54;
  color: #273b54;
}
.modal_body__bodytext {
  text-align: center;
}
.modal_body__text {
  font-family: "Montserrat";
  font-weight: 600;
  color: #404040;
}
.modal_body_form {
  display: grid;
  justify-content: center;
  width: 53%;
  margin: 0 auto;
  padding-top: 20px;
}
.modal_body__title-text {
  font-family: "Montserrat";
  font-weight: 600;
  font-size: 15px;
}
.connection__input {
  width: 250px;
  height: 30px;
  border: 1px solid #747474;
  border-radius: 10px;
  padding-left: 10px;
  margin-bottom: 15px;
}
.modal_body__title-btn {
  font-family: "Montserrat-Bold";
  background-color: tan;
  color: #fff;
  padding: 10px 30px;
  margin-top: 10px;
  border: 1px solid tan;
  border-radius: 20px;
}
.modal_body_form-btn {
  display: flex;
  justify-content: center;
}
.modal_body_form-text {
  font-family: "Montserrat";
  font-weight: 600;
  font-size: 11px;
  color: #666666;
  text-align: center;
  padding-top: 10px;
}
/* ******************* */

.header__info-bottom {
  padding-top: 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header__info-main {
  font-family: "Montserrat-Bold";
  font-weight: 600;
  text-transform: uppercase;
  color: #fff;
  font-size: 15px;
  position: relative;
  padding-bottom: 5px;
  z-index: 999;
}
.info-main-padding {
  margin-right: 40px;
}

.header__info-main:hover {
  color: tan;
}
.header__info-main::after {
  content: "";
  position: absolute;
  bottom: 0;
  height: 2px;
  width: 0;
  background-color: tan;
  transition: all 0.3s;
}
.header__info-main-hover::after {
  left: 50%;
}
.header__info-main-hover:hover::after {
  width: 100%;
}
.header__info-main-hover:hover::after {
  left: 0;
}
.menu_nmbr {
  display: none;
  font-family: "Montserrat-Bold";
  color: tan;
  font-size: 22px;
}
.menu_btn {
  display: none;
  font-family: "Montserrat-Bold";
  background-color: #d5d5d5;
  padding: 10px;
  border: 2px solid #273b54;
  border-radius: 10px;
  width: fit-content;
  margin-top: 10px;
}
.menu_time {
  display: none;
  font-family: "Montserrat";
  font-weight: 400;
  font-size: 18px;
  color: #fff;
  margin: 10px 0px;
}

/* banner */
.banner {
  position: relative;
  background: url(img/fon.png) no-repeat center center;
  background-size: cover;
  display: flex;
  justify-content: space-around;
  align-items: center;
  width: 100%;
  min-height: 650px;
  background-attachment: scroll;
  /* margin-top: -97px; */
}
.banner__body {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
  justify-items: center;
  /* overflow: hidden; */
}
.banner__info {
  box-sizing: border-box;
  word-wrap: break-word;
  width: 350px;
  padding: 20px;
  /* position: absolute;
  top: 40%;
  left: 10%; */
  border: 2.3px solid #273b54;
  border-radius: 10px;
}
.banner__info-title {
  font-family: "Montserrat-Bold";
  font-weight: 100;
  margin: 0;
  color: #273b54;
  padding-bottom: 10px;
  font-size: 21px;
}
.banner__info-subtitle {
  font-family: "Montserrat";
  padding-bottom: 20px;
}
.banner__info-btn {
  font-family: "Montserrat-Bold";
  background-color: #273b54;
  border: 1px solid #273b54;
  border-radius: 10px;
  padding: 10px;
  color: #fff;
}
.banner__body__img {
  width: 400px;
}
.banner__body__img-stl {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.banner__body_el {
  font-family: "Montserrat-Bold";
  color: #fff;
  width: 350px;
}
.banner__body_el1 {
  background-color: #547cad;
  padding: 15px;
  margin-bottom: 20px;
  border-radius: 10px;
}
.banner__body_el2 {
  display: grid;
  grid-template-columns: 60% 30%;
  background-color: #547cad;
  padding: 15px 0px 0px 15px;
  border-radius: 10px;
}
.banner__body_el2-img {
  width: 110px;
}

/* MODAL */
.closeBanner {
  color: white;
  float: right;
  font-size: 30px;
  font-weight: bold;
  height: 45px;
}
.closeBanner:hover,
.closeBanner:focus {
  color: tan;
  text-decoration: none;
  cursor: pointer;
}
/* ******************* */

/* krasota */
.krasota {
  position: relative;
}
.krasota:before {
  content: "";
  position: absolute;
  top: -119px;
  right: 0;
  bottom: -47px;
  left: 0;
  background-image: linear-gradient(
    45deg,
    rgb(243, 243, 243),
    rgb(243, 243, 243)
  );
  transform: skewY(3deg);
}
.krasota__content {
  position: relative;
  width: 90%;
  max-width: 800px;
  margin: 0 auto;
}

/* catalog */
.catalog {
  position: relative;
  background-color: rgb(243, 243, 243);
}
.catalog__title {
  font-family: "Montserrat-Bold";
  font-weight: normal;
  color: #273b54;
  text-align: center;
  padding: 12px;
  margin-top: -89px;
}
.catalog__body {
  display: grid;
  grid-template-columns: repeat(3, 30%);
  grid-template-rows: repeat(auto-fill, 1fr);
  justify-content: center;
  gap: 3%;
  width: 100%;
}
.catalog__body-el {
  display: grid;
  grid-template-columns: 45% 45%;
  justify-content: space-between;
  height: 200px;
  background-color: #fff;
  border: 0.1px solid rgb(203, 203, 203);
  border-radius: 10px;
  padding: 10px 0px 10px 10px;
  transition: box-shadow 0.3s;
}
.catalog__body-el:hover {
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.5);
}
.catalog__body-item {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.catalog__body-item-title {
  font-family: "Montserrat-Bold";
  font-size: 17px;
  margin: 0;
}
.catalog__body-item a {
  font-family: "Montserrat";
  word-wrap: break-word;
  color: black;
  font-size: 14px;
}
.catalog__body-item a:hover {
  color: #273b54;
}
.catalog__body-img {
  display: flex;
  align-items: center;
  width: 140px;
  max-height: 180px;
}
.catalog__body-item-strela {
  width: 30px;
}
.catalog__body-imgtut {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* krasota2 */
.krasota2 {
  padding: 10px 0px;
}
.krasota2 {
  font-family: "Montserrat-Bold";
  margin: 40px 0px 30px 0px;
  background-color: tan;
  position: absolute;
  text-align: center;
  width: 100%;
  font-size: 20px;
  color: #fff;
  letter-spacing: 2px;
}
.krasota2__title {
  font-family: "Montserrat-Bold";
}

/* advant */
.advant {
  margin-top: 122px;
}
.advant__body {
  display: grid;
  grid-template-columns: repeat(4, 20%);
  justify-content: center;
  gap: 4%; /* Отступ между колонками */
  width: 100%;
}
.advant__body__el {
  background-color: #6994c6;
  padding: 15px;
  border: 1px solid #6994c6;
  border-radius: 30px;
}
.advant__body__el-img {
  margin: 0 auto;
  width: 90px;
  height: 90px;
}
.body__el-img {
  object-fit: contain;
  width: 90px;
  height: 90px;
}
.advant__body__el-title {
  font-family: "Montserrat-Bold";
  text-transform: uppercase;
  font-weight: normal;
  font-size: 18px;
  margin: 0;
  text-align: center;
  padding: 10px 0 5px 0;
  color: #fff;
}
.advant__body__el-subtitle {
  font-family: "Montserrat";
  font-weight: 600;
  font-size: 13px;
  color: #fff;
}
.place {
  padding-top: 3px;
}

/* pay */
.pay__title {
  font-family: "Montserrat-Bold";
  color: #273b54;
  text-align: center;
  margin-top: 48px;
}
.pay__body {
  display: grid;
  grid-template-columns: 40% 50%;
  grid-template-rows: repeat(auto-fill, 1fr);
  justify-content: center;
  gap: 2%;
  width: 100%;
}
.pay__body__content1 {
  background-color: #273b54;
  padding: 25px;
  border: 1px solid #273b54;
  border-radius: 30px;
}
.pay__body__content1-title {
  font-family: "Montserrat-Bold";
  font-size: 28px;
  color: #fff;
  margin: 0;
  padding-bottom: 30px;
}
.title2 {
  color: #273b54;
  text-align: center;
  padding-bottom: 10px;
}
.pay__body__content1-title-span {
  background-color: tan;
  color: #fff;
  padding: 0px 4px;
  border-radius: 4px;
  line-height: 35px;
}
.pay__body__content1-placeimg {
  margin: 0 auto;
  width: 90%;
}
.pay__body__content1-img {
  width: 90%;
}
.pay__body__content1-place {
  display: grid;
  grid-template-columns: repeat(3, 25%);
  justify-content: center;
  gap: 3%;
  width: 100%;
}
.img__bank {
  width: 100%;
  height: auto;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.5);
}
.img__bank- {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.pay__body__content2 {
  border: 3px solid #273b54;
  border-radius: 30px;
  padding: 25px;
}

/* payOwn */
.payOwn {
  padding-bottom: 30px;
}
.payOwn__title {
  font-family: "Montserrat-Bold";
  font-size: 24px;
  margin-top: 40px;
  color: #273b54;
  text-align: center;
}
.payOwn__content {
  display: grid;
  grid-template-columns: repeat(3, 25%);
  grid-template-rows: repeat(auto-fill, 1fr);
  justify-content: center;
  width: 100%;
}
.payOwn__content1 {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3%;
  padding: 15px;
  border: 3px solid #273b54;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.5);
}
.payOwn__content1-placeimg {
  width: 80px;
  height: auto;
}
.payOwn__content1-img {
  width: 80px;
  height: auto;
}
.payOwn__content1-text {
  font-family: "Montserrat";
  font-size: 14px;
  font-weight: 600;
}
.pay__fon {
  background-color: #273b54;
  border: 2px solid #273b54;
}
.pay__text {
  color: #fff;
}
.payOwn__color {
  color: #273b54;
  font-weight: 600;
}
.payOwn__content1-placetext {
  font-family: "Montserrat-Bold";
  display: flex;
  justify-content: center;
  align-items: center;
  width: 80px;
  height: 80px;
}
.payOwn__procent {
  font-size: 50px;
  color: #273b54;
}
.payOwn__borders1 {
  border-top-left-radius: 30px;
  border-bottom-left-radius: 30px;
}
.payOwn__borders3 {
  border-top-right-radius: 30px;
  border-bottom-right-radius: 30px;
}

/* ownWork */
.ownWork {
  background-color: #273b54;
  padding: 30px 0px;
}
.ownWork__body {
  display: grid;
  grid-template-columns: 45% 45%;
  justify-content: center;
  width: 100%;
}
.ownWork__title {
  font-family: "Montserrat-Bold";
  color: #fff;
}
.ownWorl__carousel {
  display: flex;
  justify-content: center;
  width: 400px;
  margin: 0 auto;
}

.carousel {
  width: 400px;
  height: 400px;
}
.carousel-item {
  width: 100%;
  height: 100%;
}
.carousel-image {
  max-width: 100%;
  height: inherit;
  margin: 0 auto;
}
.carousel-inner {
  width: 400px;
  height: 400px;
}
.carousel-control-next,
.carousel-control-prev {
  width: 6%;
}
.carousel-control-next {
  right: -24px;
}
.ownWork__subtitle {
  font-family: "Montserrat";
  font-weight: 600;
  color: #fff;
}
.ownWork__subtitle-place {
  padding-bottom: 10px;
}
.carousel-control-prev {
  left: -27px;
}

.ownWork__form {
  margin-top: 60px;
  border: 2px solid #fff;
  border-radius: 20px;
  padding: 20px;
  box-shadow: 0 0 12px #ffffffbb;
}
.ownWork__form__title {
  font-family: "Montserrat-Bold";
  color: tan;
  padding-bottom: 10px;
}
.ownWork__form__title-text {
  font-family: "Montserrat";
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  padding-right: 5px;
}
.ownWork__form__title-btn {
  font-family: "Montserrat-Bold";
  background-color: tan;
  color: #fff;
  padding: 5px 10px;
  margin-left: 15px;
  border: 1px solid tan;
  border-radius: 20px;
}
.ownWork_connection__input {
  width: 180px;
  height: 30px;
  border: 1px solid #747474;
  border-radius: 10px;
  padding-left: 10px;
  margin-bottom: 15px;
}

/* question */
.question {
  padding: 40px 0px 5px 0px;
}
.question__body {
  display: grid;
  grid-template-columns: 40% 50%;
  justify-content: center;
  align-items: center;
  width: 100%;
}
.question__body__content-title {
  font-family: "Montserrat-Bold";
  color: #273b54;
  text-align: center;
}
.question__body__content-text {
  font-family: "Montserrat";
  font-weight: 600;
  font-size: 15px;
}

/* reviews */
.reviews__title {
  font-family: "Montserrat-Bold";
  color: #273b54;
  text-align: center;
  margin-bottom: 10px;
}
.reviews__body {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, 23%);
  justify-content: center;
  column-gap: 2%;
}
.reviews__body__el {
  background-color: #6994c6;
  padding: 15px;
  border-radius: 20px;
}
.reviews__body__el-place {
  display: flex;
  align-items: center;
  padding-bottom: 5px;
}
.reviews__body__el-placeimg {
  background-color: #6994c6;
  width: 40px;
  height: 40px;
}
.reviews__body__el-img {
  width: 40px;
}
.reviews__body__el-place-name {
  padding-left: 10px;
}
.reviews__body__el_text-title {
  font-family: "Montserrat-Bold";
  color: #fff;
  margin-bottom: 0px;
}
.reviews__body__el_text-subtitle {
  font-family: "Montserrat";
  font-weight: 600;
  font-size: 14px;
  color: #fff;
}

.rewiews__form__body {
  margin-top: 3%;
}
.reviews__form {
  width: 55%;
  border: 2px solid #6994c6;
  border-radius: 20px;
  padding: 20px 20px 20px 20px;
  box-shadow: 0 0 12px #6994c6;
  margin: 0 auto;
}
.reviews__form-body {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  justify-items: center;
}
.reviews__form__title {
  font-family: "Montserrat-Bold";
  color: #273b54d5;
  text-align: center;
  margin-top: 20px;
}
.reviews__input {
  font-family: "Montserrat";
  width: 200px;
  color: #273b54;
  font-weight: 600;
  font-size: 14px;
  padding-right: 5px;
  margin-right: 10px;
  height: 30px;
  border-radius: 10px;
  border: 1px solid black;
  padding-left: 6px;
}
.reviews__form__title-btn {
  font-family: "Montserrat-Bold";
  width: 150px;
  height: 35px;
  background-color: tan;
  color: #fff;
  padding: 5px 10px;
  border: 1px solid tan;
  border-radius: 20px;
  margin-top: 20px;
}

/* remained */
.remained {
  position: relative;
  background: url(img/fon.png) center center / cover no-repeat;
  width: 100%;
  max-height: 654px;
  background-attachment: scroll;
  margin-top: 40px;
}
.remained__body {
  width: 800px;
  margin: 0 auto;
  padding: 50px 30px 50px 30px;
}
.remained__body_text-title {
  font-family: "Montserrat-Bold";
  color: #577eaa;
  text-align: center;
  text-transform: uppercase;
}
.remained__body_text-subtitle {
  font-family: "Montserrat";
  color: #273b54;
  font-weight: 600;
  padding-bottom: 20px;
}
.remained__body_text-btn {
  display: flex;
  justify-content: space-around;
}
.remained__body_text-btn button {
  font-family: "Montserrat";
  color: #273b54;
  font-weight: 600;
  font-size: 14px;
  padding: 7px 20px;
  border: 1px solid #fff;
  border-radius: 10px;
  box-shadow: 0 0 12px #6994c6;
}
.remained__body_text-consult-img {
  width: 30px;
  margin-right: 10px;
}
/* MODAL */
.closeConsult {
  color: white;
  float: right;
  font-size: 30px;
  font-weight: bold;
  height: 45px;
}
.closeConsult:hover,
.closeConsult:focus {
  color: tan;
  text-decoration: none;
  cursor: pointer;
}
/* ******************* */
.remained__body_text-viber-img {
  width: 30px;
  height: 30px;
  margin-right: 10px;
}
/* MODAL */
.closeViber {
  color: white;
  float: right;
  font-size: 30px;
  font-weight: bold;
  height: 45px;
}
.closeViber:hover,
.closeViber:focus {
  color: tan;
  text-decoration: none;
  cursor: pointer;
}
/* ******************* */

/* footer */
.footer {
  background-color: #273b54;
  padding: 30px 0px;
}
.footer a:hover {
  color: tan;
}

.footer__body_content1 {
  display: flex;
  justify-content: space-around;
  border-bottom: 2px solid #d7d7d78f;
  padding-bottom: 50px;
}
.footer__body_content-main {
  display: block;
  font-family: "Montserrat-Bold";
  color: #d7d7d7;
  font-size: 14px;
  padding-bottom: 8px;
  border-bottom: 2px solid #d7d7d78f;
  width: calc(100% + 20px);
}
.footer__body_content1_body {
  display: grid;
  grid-template-columns: 30% 34% 35%;
  gap: 2%;
}
.footer__body_content1_body-el {
  padding-top: 15px;
}
.footer__body_content1_body a {
  font-family: "Montserrat";
  color: #d7d7d7;
  font-weight: 600;
  font-size: 14px;
}
.footer__body_content1-hat {
  margin: 20px 0px;
  width: auto;
}
.footer__body_content1-hat-btn {
  font-family: "Montserrat-Bold";
  color: #d7d7d7;
  font-size: 14px;
}

.footer__info {
  margin-bottom: 20px;
}
.footer__info-nmbr {
  font-family: "Montserrat-Bold";
  color: tan;
  font-size: 28px;
}
.footer__info-tel {
  text-align: center;
}
.footer__info-tel-btn {
  font-family: "Montserrat-Bold";
  background-color: #ffffffdf;
  width: 80%;
  padding: 10px;
  border: 2px solid #ffffffdf;
  border-radius: 10px;
  box-shadow: 0 0 12px #ffffffb7;
}
.footer__info-btn-info {
  font-size: 16px;
  color: #273b54;
}
.closeFooter {
  color: white;
  float: right;
  font-size: 30px;
  font-weight: bold;
  height: 45px;
}
.closeFooter:hover,
.closeFooter:focus {
  color: tan;
  text-decoration: none;
  cursor: pointer;
}

.footer__info-scl {
  display: flex;
  justify-content: center;
  gap: 10px;
  padding: 15px 0px;
}
.footer__info-sclEl {
  width: 40px;
  height: 40px;
}
.footer__info-text {
  font-family: "Montserrat";
  font-size: 13px;
  font-weight: 600;
  color: #b2b2b2;
  width: 260px;
  margin: 0 auto;
  line-height: 19px;
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  padding: 20px 50px 0px 50px;
}
.footer__bottom p {
  font-family: "Montserrat-Bold";
  color: #ffffffd9;
  font-size: 13px;
}
.footer__bottom a {
  color: #ffffffd9;
  text-decoration: underline;
}
.footer_menu {
  display: none;
}

.open {
  display: flex !important;
}
.nav {
  display: flex;
  width: 700px;
  padding: 0 40px;
}

.nav ul {
  width: 100%;
  list-style: none;
  display: flex;
  justify-content: space-between;
}
.burger_menu {
  display: none;
  position: relative;
  z-index: 50;
  align-items: center;
  justify-content: flex-end;
  width: 30px;
  height: 18px;
}

.burger_menu span {
  height: 2px;
  width: 80%;
  transform: scale(1);
  background-color: #faf6f2;
}

.burger_menu::before,
.burger_menu::after {
  content: "";
  position: absolute;
  height: 2px;
  width: 100%;
  background-color: #faf6f2;
  transition: all 0.3s ease 0s;
}
.burger_menu::before {
  top: 0;
}

.burger_menu::after {
  bottom: 0;
}

/* Добавляем класс active для анимации иконки бургера */
.burger_menu.active span {
  transform: scale(0);
}

.burger_menu.active::before {
  top: 50%;
  transform: rotate(-45deg) translate(0, -50%);
}

.burger_menu.active::after {
  bottom: 50%;
  transform: rotate(45deg) translate(0, 50%);
}
@keyframes burgerAnimation {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.nav {
  display: none;
}

.dropbtn {
  font-family: "Montserrat-Bold";
  background-color: #273b54;
  color: white;
  padding: 10px 35px 10px 0px;
  font-size: 18px;
  border: none;
  cursor: pointer;
}

.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-content {
  font-family: "Montserrat";
  font-weight: 600;
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #f1f1f1;
  min-width: 200px;
  box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
  border: 1px solid #ddd;
  z-index: 1000;
}

.dropdown-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

.dropdown-content a:hover {
  background-color: #ddd;
}

.dropdown-content.show {
  display: block;
}
.menu_svg {
  width: 14px;
}
.menu_logoPadding {
  padding-top: 10px;
}
.menu_dobl {
  background-color: #fff;
}

@media (max-width: 1200px) {
  .container {
    width: 1050px;
    padding: 0;
  }
  .header__logo {
    width: 230px;
  }
  .header__wrapper {
    gap: 20px;
  }
  .header__info-top1 {
    gap: 0px;
    padding-right: 0px;
  }
  .header__info-address {
    font-size: 14px;
    width: 120px;
  }
  .header__menu__info-time {
    font-size: 14px;
  }
  .header__info-scl {
    width: 35px;
    height: 35px;
  }
  .header__info-tele {
    gap: 10px;
  }
  .header__info-top2 {
    gap: 10px;
  }
  .info-main-padding {
    margin-right: 23px;
  }

  .banner {
    max-height: 500px;
    padding: 85px 0px;
  }
  .banner__info {
    width: 330px;
    padding: 10px;
  }
  .banner__body__img {
    width: 300px;
  }
  .banner__body_el1 {
    font-size: 15px;
  }
  .banner__body_el2 {
    font-size: 15px;
    gap: 15px;
  }
  .banner__body_el2-img {
    width: 100px;
  }

  .catalog__body-el {
    justify-content: left;
  }
  .catalog__body-img {
    width: 130px;
    max-height: 180px;
  }
  .catalog__title {
    padding-bottom: 0px;
  }
  .catalog__body-el {
    grid-template-columns: 50% 40%;
  }
  .catalog__body-item-title {
    width: 170px;
    font-size: 16px;
  }
  .catalog__body-item a {
    font-size: 13px;
  }

  .advant__body {
    grid-template-columns: repeat(4, 24%);
    gap: 2%;
  }
  .advant__body__el-title {
    font-size: 16px;
  }

  .pay__title {
    margin-top: 35px;
  }
  .pay__body__content1-title {
    font-size: 24px;
    padding-bottom: 20px;
  }
  .pay__body__content1-img {
    width: 100%;
    display: flex;
  }
  .pay__body__content1 {
    padding: 20px;
  }
  .pay__body__content1-place {
    gap: 5% 4%;
  }
  .pay__body__content2 {
    padding: 20px;
  }
  .payOwn__title {
    margin-top: 20px;
  }
  .payOwn__content {
    grid-template-columns: repeat(3, 30%);
  }

  .ownWork__body {
    grid-template-columns: 47% 47%;
  }
  .ownWork__title {
    font-size: 26px;
  }
  .ownWork__subtitle {
    font-size: 14px;
  }
  .ownWork__form {
    margin-top: 30px;
    padding: 15px;
  }
  .ownWork__form__title {
    margin-bottom: 10px;
    font-size: 18px;
    padding: 0;
  }
  .ownWork__form__title-text {
    font-size: 13px;
  }
  .ownWork__form__title-btn {
    padding: 8px 25px;
    margin-left: 32%;
  }
  .ownWork__form__title-text {
    padding-right: 14%;
  }
  .ownWork__form__title-text:last-of-type {
    padding-right: 0px;
  }

  .question__body__content-title {
    font-size: 30px;
  }
  .question__body-placeimg img {
    width: 475px;
  }

  .reviews__body {
    grid-template-columns: repeat(4, 24%);
    column-gap: 1%;
  }
  .reviews__body__el_text-subtitle {
    font-size: 13px;
  }
  .reviews__form {
    width: 66%;
    padding: 10px;
  }
  .reviews__form__title-btn {
    margin-top: 10px;
  }
  .remained__body {
    padding: 30px;
  }

  .modal-content {
    width: 50%;
  }
  .modal__title {
    font-size: 26px;
  }
  .modal_body__text {
    font-size: 14px;
  }
  .modal_body {
    padding: 20px 16px;
  }

  .footer__body_content-main {
    width: calc(100% + -42px);
  }
  .footer__body_content1_body {
    grid-template-columns: 30% 32% 32%;
    gap: 0%;
  }
  .footer__info-nmbr {
    font-size: 24px;
  }
  .footer__info-text {
    font-size: 12px;
    line-height: 16px;
  }
  .footer__body_content1 {
    padding-bottom: 30px;
    gap: 18px;
  }
}
@media (max-width: 1050px) {
  .container {
    width: 900px;
    padding: 0;
  }
  .burger_menu {
    display: flex;
    z-index: 1001;
  }
  .nav {
    display: none;
    flex-direction: column;
    position: fixed;
    height: 100%;
    width: 100%;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    overflow-y: auto;
    padding: 0px;
    background-color: #273b54;
    animation: burgerAnimation 0.4s;
  }
  .nav.open {
    display: flex; /* включаем меню при клике на бургер */
  }

  .nav dl {
    flex-direction: column;
    row-gap: 30px;
    margin-bottom: 3px;
  }

  .menu_mainTop {
    padding: 20px 20px 0px 20px;
  }
  .menu_dobl {
    padding: 0px 20px 0px 20px;
  }
  .menu_bottom {
    padding: 0px 20px 0px 20px;
  }
  .menu_main {
    font-family: "Montserrat-Bold";
    font-size: 18px;
    text-transform: uppercase;
  }
  .menu_title {
    font-family: "Montserrat-Bold";
    font-weight: 600;
    padding: 4px 0px;
    font-size: 18px;
  }
  .menu_title a {
    color: #fff;
  }
  .menu_subtitle {
    font-family: "Montserrat";
    padding-bottom: 4px;
    font-size: 18px;
  }
  .menu_subtitle a {
    color: #fff;
  }
  .menu_nmbr {
    display: flex;
    padding-top: 13px;
  }
  .menu_btn {
    display: flex;
  }
  .menu_time {
    display: flex;
  }
  .menuPB {
    padding-bottom: 10px;
    color: #273b54;
  }

  .header__wrapper {
    justify-content: space-between;
  }
  .header__info-address {
    display: none;
  }
  .header__menu__info-time {
    display: none;
  }
  .header__info-scl {
    width: 40px;
    height: 40px;
  }
  .header__info-nmbr {
    font-size: 18px;
  }
  .header__info-tele {
    gap: 30px;
  }
  .header__info-bottom {
    display: none;
  }
  .header__info {
    border-bottom: 1px solid #7f7f7f00;
    padding-bottom: 0px;
  }
  .header__info-tel-btn {
    display: none;
  }

  .banner {
    max-height: 500px;
    padding: 85px 0px;
  }
  .header .container {
    overflow: hidden;
  }
  .banner__body {
    grid-template-columns: 45% 45%;
    grid-auto-rows: auto;
    justify-content: center; /* чтобы элементы были по центру */
    gap: 10px;
  }
  .banner__body_el {
    display: none;
  }

  .catalog__body {
    grid-template-columns: repeat(2, 40%);
  }
  .catalog__title {
    font-size: 28px;
  }
  .catalog__body-item-title {
    font-size: 20px;
    width: 200px;
  }
  .catalog__body-item a {
    font-size: 16px;
  }

  .krasota2 {
    margin: 60px 0px 30px 0px;
  }
  .krasota2__title {
    font-size: 20px;
  }

  .advant__body {
    grid-template-columns: repeat(2, 40%);
  }
  .advant__body__el-title {
    font-size: 20px;
  }
  .advant__body__el-subtitle {
    font-size: 16px;
  }

  .pay__title {
    font-size: 28px;
    margin-top: 27px;
  }
  .pay__body__content1-title {
    font-size: 22px;
    padding-bottom: 20px;
  }
  .img__bank {
    width: 110%;
  }
  .pay__body {
    grid-template-columns: 1fr;
  }
  .pay__body__content1 {
    width: 60%;
    margin: 0 auto;
  }
  .pay__body__content1-title {
    font-size: 26px;
  }
  .pay__body__content2 {
    width: 70%;
    margin: 0 auto;
  }
  .payOwn__content1-text {
    font-size: 15px;
  }

  .ownWork__body {
    grid-template-columns: 80%;
    grid-auto-rows: auto;
    justify-content: center;
    gap: 10px;
  }
  .ownWork__body > :nth-child(1) {
    grid-column: 1;
    grid-row: 2;
    justify-self: center; /* центрируем */
  }
  .ownWork__body > :nth-child(2) {
    grid-column: 1;
    grid-row: 1;
  }
  .ownWork__title {
    font-size: 26px;
    text-align: center;
  }
  .ownWork__subtitle {
    font-size: 15px;
  }
  .ownWork__form__title {
    font-size: 20px;
  }
  .ownWork__form__title-text {
    padding-right: 2%;
  }
  .ownWork__form__title-text:last-of-type {
    padding-right: 2%;
  }
  .ownWork__form__title-text {
    font-size: 15px;
  }
  .ownWork__form__title-btn {
    margin-left: 0%;
  }
  .ownWork__form {
    padding: 15px;
    padding-bottom: 2px;
    margin-bottom: 20px;
  }

  .question__body__content-title {
    font-size: 24px;
  }
  .question__body-placeimg img {
    width: 380px;
  }
  .question__body__content-text {
    font-size: 15px;
  }

  .reviews__title {
    font-size: 28px;
  }
  .reviews__body {
    grid-template-columns: repeat(2, 40%);
    gap: 2% 2%;
  }
  .reviews__body__el_text-title {
    font-size: 18px;
  }
  .reviews__body__el_text-subtitle {
    font-size: 15px;
  }

  .reviews__form {
    width: 85%;
    padding: 10px;
  }
  .footerHref {
    display: none;
  }
  .footer__body_content1_body {
    display: block;
  }

  .footer__body_content1_body-el {
    display: none;
  }
  .footer_menu {
    display: contents;
  }
  .footer_menu_href {
    margin: 10px 0px;
  }
  .footer__body_content1-hat {
    margin: 10px 0px;
  }
  .footer__info-text {
    display: none;
  }
  .footer__info-tel-btn {
    padding: 9px;
  }
  .footer__body_content-main {
    width: calc(100% + -118px);
    font-size: 16px;
  }

  .modal-content {
    width: 70%;
  }
  .modal_body__text {
    font-size: 15px;
  }
  .modal_body_form-text {
    font-size: 12px;
  }
}

@media (max-width: 900px) {
  .container {
    width: 750px;
    padding: 0;
  }
  .menu_nmbr {
    display: flex;
  }
  .catalog__body-el {
    min-height: 230px;
  }
  .krasota2__title {
    font-size: 17px;
  }
  .ownWork__title {
    margin-top: 0px;
  }
  .modal {
    padding-top: 350px;
  }
  .banner {
    background: url(img/fon750.png) no-repeat center center;
    background-size: contain;
    min-height: 500px;
    padding: 85px 0px;
  }
  .remained__body {
    padding: 20px 0px;
    max-width: 750px;
  }
  .question__body {
    grid-template-columns: 30% 60%;
  }
  .question__body-placeimg img {
    width: 350px;
  }
}

@media (max-width: 750px) {
  .container {
    width: 600px;
    padding: 0;
  }
  .header__info-nmbr {
    display: none;
  }
  .header__info-scl {
    display: none;
  }
  .modal {
    padding-top: 200px;
  }
  .modal-content {
    width: 80%;
  }
  .banner__body {
    grid-template-columns: 45% 45%;
    grid-auto-rows: auto;
    justify-content: center;
    gap: 0px;
  }
  .banner__info {
    position: absolute;
    left: 5%;
    width: 330px;
    padding: 10px;
    z-index: 1;
    background-color: #ffffffb0;
  }
  .banner__body__img {
    position: absolute;
    right: 5%;
  }
  .catalog__body {
    grid-template-columns: repeat(1, 65%);
    gap: 1%;
  }
  .catalog__body-img {
    display: flex;
    align-self: center;
    justify-content: center;
    width: 150px;
    max-height: 180px;
  }
  .catalog_img {
    width: 95px;
  }
  .krasota2__title {
    font-size: 18px;
    letter-spacing: 1px;
  }
  .advant {
    margin-top: 142px;
  }
  .advant__body {
    grid-template-columns: repeat(2, 47%);
  }
  .pay__body__content1 {
    width: 80%;
  }
  .pay__body__content2 {
    width: 90%;
    margin: 0 auto;
    padding: 15px;
  }
  .img__bank {
    width: 100%;
  }
  .pay__body__content1-place {
    grid-template-columns: repeat(2, 35%);
  }
  .payOwn__content {
    grid-template-columns: repeat(3, 35%);
  }
  .payOwn__content1-placeimg {
    width: 60px;
  }
  .payOwn__content1-img {
    width: 60px;
    height: auto;
  }
  .payOwn__procent {
    font-size: 37px;
  }
  .ownWork__form__title {
    font-size: 18px;
  }
  .ownWork__form__title-btn {
    margin-left: 28%;
    margin-bottom: 3%;
  }
  .question__body-placeimg {
    display: none;
  }
  .question__body {
    grid-template-columns: 80%;
  }
  .reviews__body {
    grid-template-columns: repeat(2, 45%);
    gap: 2% 2%;
  }
  .reviews__form-body {
    grid-template-columns: 1fr;
  }
  .reviews__input {
    margin-right: 0px;
    margin-bottom: 15px;
  }
  .reviews__input:last-of-type {
    margin-bottom: 0px;
  }
  .reviews__form__title-btn {
    margin-top: 0px;
  }
  .remained__body {
    padding: 20px 0px;
    max-width: 550px;
    text-align: center;
  }
  .remained__body_text-btn {
    display: grid;
    grid-template-columns: 60%;
  }
  #myBtnConsult {
    margin-bottom: 15px;
  }
  .footer__info-nmbr {
    font-size: 17px;
  }
  .footer__info-tel-btn {
    padding: 6px;
  }
  .footer__bottom {
    padding: 10px 10px 0px 10px;
  }
  .catalog__body-item-strela {
    display: none;
  }
}

@media (max-width: 600px) {
  .container {
    width: 450px;
    padding: 0;
  }
  .header__logo {
    width: 200px;
  }
  .banner__body__img {
    width: 250px;
  }
  .banner {
    min-height: 430px;
  }
  .catalog__body {
    grid-template-columns: repeat(1, 75%);
  }
  .krasota2__title {
    font-size: 17px;
  }
  .advant__body {
    grid-template-columns: repeat(1, 75%);
  }
  .pay {
    margin-top: 80px;
  }
  .pay__body__content1-title {
    font-size: 24px;
  }
  .pay__body__content1 {
    width: 90%;
  }
  .payOwn__content1 {
    display: grid;
    grid-template-columns: 1fr;
    justify-items: center;
    align-content: flex-start;
    gap: 1%;
    padding: 10px;
  }
  .payOwn__content {
    grid-template-columns: 45%;
  }
  .payOwn__content1-placeimg {
    width: 50px;
  }
  .payOwn__content1-img {
    width: 50px;
    height: auto;
  }
  .payOwn__content1-placetext {
    width: 60px;
    height: 50px;
  }
  .payOwn__content1-text {
    font-size: 14px;
  }

  .ownWork__form__title {
    font-size: 20px;
    text-align: center;
  }
  .ownWork__form__title-text {
    margin-left: 15%;
  }
  .ownWork_connection__input {
    width: 230px;
  }

  .carousel {
    width: 300px;
    height: 300px;
  }
  .carousel-item {
    width: 100%;
    height: 100%;
  }
  .carousel-image {
    max-width: 100%;
    height: inherit;
    margin: 0 auto;
  }
  .carousel-inner {
    width: 300px;
    height: 300px;
  }
  .carousel-control-next,
  .carousel-control-prev {
    width: 6%;
  }
  .carousel-control-next {
    right: -24px;
  }
  .carousel-control-prev {
    left: -27px;
  }
  .ownWorl__carousel {
    width: 300px;
  }

  .question {
    padding: 10px 0px 5px 0px;
  }
  .question__body {
    grid-template-columns: 90%;
  }

  .reviews__body {
    grid-template-columns: repeat(1, 80%);
  }
  .reviews__form__title {
    margin-top: 60px;
  }
  .reviews__form {
    width: 60%;
    padding: 15px;
  }

  .remained__body {
    max-width: 450px;
  }
  .remained__body_text-btn {
    grid-template-columns: 60%;
  }
  .remained__body_text-btn {
    grid-template-columns: 70%;
  }

  .footer {
    padding: 20px 0px;
  }
  .footer__body_content1 {
    display: grid;
    grid-template-columns: 40% 40%;
    grid-auto-rows: auto auto;
    justify-content: center;
    gap: 5px 18px;
    padding-bottom: 20px;
  }
  .footer__body_content1-catalog {
    grid-column: 1; /* первая колонка */
    grid-row: 1; /* первая строка */
  }
  .footer_menuOther {
    grid-column: 2; /* вторая колонка */
    grid-row: 1; /* первая строка */
  }
  .footer_menuNmbr {
    grid-column: 1 / span 2; /* растягивается на обе колонки */
    grid-row: 2; /* вторая строка */
    width: 90%;
    display: flex;
    justify-content: center;
    gap: inherit;
  }
  .footer__info-tel-btn {
    display: none;
  }
  .footer__info {
    display: flex;
    align-items: center;
    margin-bottom: 0px;
    max-width: 180px;
  }
  .footer__info-scl {
    max-width: 180px;
    padding: 0px;
  }
  .footer__info-sclEl {
    width: 35px;
    height: 35px;
  }

  .modal__title {
    font-size: 18px;
  }
  .modal_body__text {
    font-size: 14px;
  }
  .payOwn__borders1 {
    border-top-left-radius: 30px;
    border-top-right-radius: 30px;
    border-bottom-left-radius: 0px;
  }
  .payOwn__borders3 {
    border-bottom-left-radius: 30px;
    border-bottom-right-radius: 30px;
    border-top-right-radius: 0px;
  }
}

@media (max-width: 450px) {
  .container {
    width: 95%;
    padding: 0;
  }
  .banner {
    min-height: 400px;
    background-size: cover;
  }
  .banner__body__img {
    width: 210px;
  }
  .banner__info-title {
    font-size: 18px;
  }
  .banner__info-subtitle {
    font-size: 15px;
  }
  .banner__info {
    left: 12%;
    width: 75%;
  }
  /* .banner__body {
        grid-template-columns: 1fr;
    }    */
  /* .banner__info {
        position: static;
    } */
  .banner__body__img {
    right: 20%;
    width: 220px;
  }

  .catalog__title {
    font-size: 24px;
  }
  .catalog__body {
    grid-template-columns: repeat(1, 85%);
  }
  .catalog__body-img {
    width: 130px;
  }
  .media_padding {
    width: 180px;
  }
  .krasota2__title {
    font-size: 16px;
  }
  .advant__body {
    grid-template-columns: repeat(1, 75%);
    gap: 1%;
  }
  .advant__body__el-subtitle {
    font-size: 14px;
  }
  .advant__body__el-img {
    width: 70px;
    height: 70px;
  }
  .body__el-img {
    width: 70px;
    height: 70px;
  }
  .pay__title {
    font-size: 24px;
  }
  .pay {
    margin-top: 45px;
  }
  .pay__body__content1-title {
    font-size: 22px;
    padding-bottom: 10px;
  }
  .pay__body__content1-placeimg {
    width: 95%;
  }
  .pay__body__content1-place {
    grid-template-columns: repeat(2, 45%);
    gap: 3% 3%;
  }
  .payOwn__title {
    margin-top: 20px;
    font-size: 22px;
  }
  .payOwn__content1-text {
    font-size: 13px;
  }
  .ownWork__title {
    font-size: 24px;
  }
  .ownWork__subtitle {
    font-size: 14px;
  }
  .ownWork__form__title {
    font-size: 18px;
  }
  .ownWork__form__title-text {
    font-size: 14px;
    margin-left: 5%;
  }
  .ownWork__form__title-btn {
    margin-left: 21%;
  }
  .ownWork__title {
    font-size: 22px;
  }

  .carousel {
    width: 270px;
    height: 270px;
  }
  .carousel-item {
    width: 100%;
    height: 100%;
  }
  .carousel-image {
    max-width: 100%;
    height: inherit;
    margin: 0 auto;
  }
  .carousel-inner {
    width: 270px;
    height: 270px;
  }
  .carousel-control-next,
  .carousel-control-prev {
    width: 7%;
  }
  .carousel-control-next {
    right: -24px;
  }
  .carousel-control-prev {
    left: -27px;
  }
  .ownWorl__carousel {
    width: 270px;
  }
  .question__body__content-title {
    font-size: 20px;
  }
  .question__body__content-text {
    font-size: 14px;
  }
  .reviews__title {
    font-size: 22px;
  }
  .reviews__body__el_text-title {
    font-size: 16px;
  }
  .reviews__body__el_text-subtitle {
    font-size: 14px;
  }
  .reviews__form__title {
    font-size: 22px;
  }
  .reviews__form {
    width: 70%;
  }
  .remained__body_text-title {
    font-size: 22px;
  }
  .remained__body_text-subtitle {
    font-size: 14px;
  }

  .remained__body_text-btn {
    grid-template-columns: 85%;
  }
  .footer__body_content-main {
    width: calc(100% + -67px);
    font-size: 14px;
  }
  .footer_menu_href {
    font-size: 14px;
  }
  .footer__body_content1 {
    gap: 5px 35px;
  }
  .footer_menuNmbr {
    display: none;
  }
  .footer__bottom {
    display: block;
  }
  .footer_end {
    text-align: center;
    padding-bottom: 5px;
  }
  .footer_endMe {
    text-align: center;
  }

  .modal__title {
    font-size: 17px;
  }
  .modal_body__text {
    font-size: 13px;
  }
  .modal_body_form-text {
    font-size: 10px;
  }
  .modal__title {
    font-size: 17px;
    text-align: center;
  }
  .menu_main {
    font-size: 17px;
  }
  .remained__body {
    max-width: 350px;
  }
}
