* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Montserrat', sans-serif;
}
img {
  max-width: 100%;
}
body {
  font-size: 16px;
  line-height: 1.5;
  color: #001515;
  background: #fff;
}
.inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.header {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: #212b36;
  background-size: cover;
}
.header:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  inset: 0;
  height: 149px;
  background: linear-gradient(180deg, #00000042 0%, rgba(0, 0, 0, 0) 100%);
}
.header:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  inset: 0;
  background: linear-gradient(
    89.57deg,
    rgb(0 0 0 / 23%) 47.51%,
    rgb(0 0 0 / 33%) 84.51%,
    rgb(0 0 0 / 30%) 99.38%
  );
}
.header.header-adaptive::before,
.header.header-adaptive::after {
  display: none;
}
.header .top {
  position: relative;
  display: flex;
  align-items: center;
  margin-bottom: 110px;
  padding: 20px 0;
  z-index: 2;
}
@media screen and (max-width: 1200px) {
  .header .top {
    margin-bottom: 40px;
  }
}
.header .top__logo {
  flex: 0 0 120px;
  max-width: 120px;
  margin-right: 75px;
}
@media screen and (max-width: 991px) {
  .header .top__logo {
    margin: 0 auto;
  }
}
.header .top__items {
  flex: 1;
  display: flex;
  justify-content: space-between;
  padding-bottom: 20px;
  border-bottom: 1px solid #212b36;
}
@media screen and (max-width: 991px) {
  .header .top__items {
    display: none;
  }
}
.header .top__menu {
  display: flex;
  align-items: center;
  list-style: none;
}
.header .top__menu__li + .top__menu__li {
  margin-left: 40px;
}
.header .top__menu__a {
  font-style: normal;
  font-weight: 500;
  font-size: 18px;
  line-height: 32px;
  text-align: center;
  letter-spacing: 1.5px;
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease-in;
}
.header .top__menu__a:hover {
  text-decoration: underline;
}
.header .top__phone {
  margin-left: 20px;
  font-style: normal;
  font-weight: 500;
  font-size: 24px;
  line-height: 32px;
  text-align: center;
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease-in;
}
.header .top__phone:hover {
  text-decoration: underline;
}
.header .mid {
  position: relative;
  z-index: 1;
  margin: 0 auto 110px;
}
@media screen and (max-width: 1024px) {
 .header .top__menu__a {
   font-size: 16px;
  }
 .header .top__phone {
   font-size: 19px;
  }
}
@media screen and (max-width: 1200px) {
  .header .mid {
    margin-bottom: 50px;
  }
}
@media screen and (max-width: 991px) {
  .header .mid {
    margin-left: 70px;
    margin-right: auto;
  }
}
@media screen and (max-width: 660px) {
  .header .mid {
    max-width: 100%;
    margin-left: 0;
  }
}
.header .mid__title {
  margin-bottom: 20px;
  font-style: normal;
  font-weight: 900;
  font-size: 70px;
  line-height: 70px;
  letter-spacing: 1.5px;
  color: #fff;
}
@media screen and (max-width: 1200px) {
  .header .mid__title {
    font-size: 40px;
    line-height: 40px;
  }
}
@media screen and (max-width: 660px) {
  .header .mid__title {
    margin-bottom: 10px;
    font-size: 30px;
    line-height: 30px;
  }
}
.header .mid__title span {
  display: block;
  color: #212b36;
}
.header .mid__subtitle {
  font-style: normal;
  font-weight: 700;
  font-size: 24px;
  line-height: 40px;
  letter-spacing: 1.5px;
  color: #f3eae3;
}
@media screen and (max-width: 767px) {
  .header .mid__subtitle {
    font-size: 20px;
    line-height: 30px;
  }
}
@media screen and (max-width: 660px) {
  .header .mid__subtitle {
    font-size: 18px;
    line-height: 20px;
  }
}
.header .mid__subtitle p {
  position: relative;
  margin: 0;
  padding: 0 0 0 15px;
}
.header .mid__subtitle p:before {
  position: absolute;
  content: '';
  top: 50%;
  left: 0;
  margin-top: -5px;
  width: 10px;
  height: 10px;
  background-color: #f3eae3;
  border-radius: 50%;
}
.header .bot {
  position: relative;
  z-index: 1;
  margin-bottom: 70px;
}
@media screen and (max-width: 991px) {
  .header .bot {
    margin-bottom: 10px;
  }
}
.header .bot__items {
  display: flex;
  flex-wrap: wrap;
  margin-left: -15px;
}
.header .bot__col {
  flex: 0 0 25%;
  max-width: 25%;
  padding: 0 0 0 15px;
}
@media screen and (max-width: 991px) {
  .header .bot__col {
    flex: 0 0 50%;
    max-width: 50%;
    padding: 0 0 15px 15px;
  }
}

@media screen and (max-width: 768px) {
.header .bot__items {
  justify-content:center;
}
}

@media screen and (max-width: 660px) {
  .header .bot__col {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
.header .bot__item {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 19px;
  font-style: normal;
  font-weight: 700;
  font-size: 18px;
  line-height: 24px;
  text-align: center;
  letter-spacing: 1.5px;
  color: #fff;
  text-decoration: none;
  border: 2px solid #212b36;
  background: #212b36;
  border-radius: 10px;
  transition: all 0.3s ease-in;
}
/* .header .bot__item.active, */
.header .bot__item:hover {
  color: #fff;
  background: none;
}
.work__inner {
  padding: 97px 20px;
}
@media screen and (max-width: 1024px) {
  .work__inner {
    padding: 40px 20px;
  }
}
.work__title {
  margin-bottom: 60px;
  font-style: normal;
  font-weight: 700;
  font-size: 38px;
  line-height: 60px;
  letter-spacing: 1.5px;
  color: #212b36;
}
@media screen and (max-width: 1024px) {
  .work__title {
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 768px) {
  .work__title {
    font-size: 30px;
    line-height: 35px;
  }
}
.work__items {
  display: flex;
  flex-wrap: wrap;
  margin-left: -33px;
}
.work__col {
  flex: 0 0 50%;
  max-width: 50%;
  padding: 0 0 33px 33px;
}
@media screen and (max-width: 768px) {
  .work__col {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
.work__item {
  display: flex;
  align-items: center;
  height: 100%;
  padding: 47px 30px;
  background: #eeeeee;
  border-radius: 20px;
}
@media screen and (max-width: 768px) {
  .work__item {
    flex-direction: column;
    padding: 20px;
  }
}
.work__item img {
  flex: 0 0 80px;
  max-width: 80px;
  max-height: 80px;
  margin-right: 20px;
}
@media screen and (max-width: 768px) {
  .work__item img {
    flex: 0 0 60px;
    max-width: 60px;
    max-height: 60px;
    margin-right: 0;
    margin-bottom: 20px;
  }
}
.work__text {
  flex: 1;
  margin-bottom: 10px;
  font-style: normal;
  font-weight: 600;
  font-size: 24px;
  line-height: 25px;
  letter-spacing: 1.5px;
  color: #212b36;
}

.work__subtext {
  font-size: 20px;
  line-height: 20px;
  color: #212b36;
}
@media screen and (max-width: 1024px) {
  .work__text {
    font-size: 20px;
    line-height: 25px;
  }
}
@media screen and (max-width: 768px) {
  .work__text {
    font-size: 16px;
    line-height: 20px;
    text-align: center;
  }
}
.gallery .tabs__content {
  display: none;
}
.gallery .tabs__content.active {
  display: block;
}
.gallery__inner {
  padding-bottom: 100px;
}
@media screen and (max-width: 1024px) {
  .gallery__inner {
    padding-bottom: 50px;
  }
}
.gallery__inner#rent,
.gallery__inner#sell,
.gallery__inner#pass {
  display: none;
}
.gallery__tabsHeader {
  margin-bottom: 25px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid #212b36;
  list-style: none;
  overflow-y: hidden;
  height: 80px;
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  .gallery__tabsHeader {
    height: 60px;
  }
}
.gallery__tabsHeader li {
  font-style: normal;
  font-weight: 700;
  font-size: 24px;
  line-height: 60px;
  letter-spacing: 3px;
  color: rgba(255, 255, 255, 0.8);
  cursor: pointer;
  transition: all 0.3s ease-in;
}
@media screen and (max-width: 768px) {
  .gallery__tabsHeader li {
    font-size: 18px;
    line-height: 20px;
  }
}
.gallery__tabsHeader li + li {
  margin-left: 10px;
}
.gallery__tabsHeader li.active,
.gallery__tabsHeader li:hover {
  color: #212b36;
}
.gallery__items {
  display: flex;
  flex-wrap: wrap;
  margin-left: -33px;
}
.gallery__col {
  flex: 0 0 50%;
  max-width: 50%;
  padding: 0 0 33px 33px;
  /* display: none; */
}
.gallery__col:nth-child(1),
.gallery__col:nth-child(2),
.gallery__col:nth-child(3),
.gallery__col:nth-child(4),
.gallery__col.active {
  display: block;
}
@media screen and (max-width: 768px) {
  .gallery__col {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
.gallery__item {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 15px;
  background: #eeeeee;
  border-radius: 20px;
}
.gallery__pics {
  position: relative;
}
.gallery__pics .item img {
  max-width: 100%;
  max-height: 307px;
  border-radius: 15px;
}
.gallery__price {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  margin-top: 30px;
  margin-bottom: 30px;
  padding: 5px 8px;
  min-height: 47px;
  background: #212b36;
  border-radius: 15px;
  font-style: normal;
  font-weight: 700;
  font-size: 26px;
  line-height: 30px;
  letter-spacing: 1.5px;
  color: #fff;
  text-decoration: none;
  transition: all 0.5s ease-in-out;
}

.gallery__price:hover {
  background: #a7aaad;
}
@media screen and (max-width: 1024px) {
  .gallery__price {
    min-height: 30px;
    font-size: 18px;
    line-height: 20px;
  }
}
.gallery__rooms {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: 20px;
  color: #fff;
}

.gallery__rooms ul {
  margin: 0 20px;
}

@media screen and (max-width: 1024px) {
  .gallery__rooms {
    font-size: 18px;
    line-height: 20px;
  }
}
@media screen and (max-width: 768px) {
  .gallery__rooms {
    font-size: 15px;
    line-height: 18px;
  }
}

.gallery {
  background: #fff;
}
.gallery__rooms span:first-child {
  color: #212b36;
}
.gallery__rooms span {
  padding-right: 5px;
  padding-left: 5px;
}
.gallery__rooms span + span {
  border-left: 1px solid #7c7c7c;
}
.gallery__info {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 425px) {
  .gallery__info {
    align-items: flex-start;
    flex-direction: column;
  }
}
.gallery__left {
  font-style: normal;
  font-weight: 700;
  font-size: 18px;
  line-height: 20px;
  letter-spacing: 1.5px;
  color: #fff;
}
@media screen and (max-width: 1024px) {
  .gallery__left {
    font-size: 15px;
    line-height: 18px;
  }
}
@media screen and (max-width: 768px) {
  .gallery__left {
    font-size: 14px;
    line-height: 16px;
  }
}
.gallery__right {
  margin-left: 15px;
  font-style: normal;
  font-weight: 700;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 1.5px;
  color: #7c7c7c;
}
@media screen and (max-width: 1024px) {
  .gallery__right {
    font-size: 13px;
    line-height: 15px;
  }
}
@media screen and (max-width: 425px) {
  .gallery__right {
    margin-top: 10px;
    margin-left: 0;
  }
}
.gallery .owl-nav {
  position: absolute;
  top: 50%;
  margin-top: -10px;
  left: 15px;
  right: 15px;
}

.owl-theme .owl-nav [class*='owl-']:hover {
  text-decoration: none;
}

.aboutSlider .owl-nav button.owl-prev,
.gallery .owl-nav button.owl-prev {
  left: 0;
  background: #212b36 url('../images/arr-left.svg') 50% no-repeat;
  background-size: 13px;
}
.aboutSlider .owl-nav button.owl-next,
.gallery .owl-nav button.owl-next {
  right: 0;
  background: #212b36 url('../images/arr-right.svg') 50% no-repeat;
  background-size: 13px;
}

.aboutSlider .owl-nav button.owl-prev:hover,
.gallery .owl-nav button.owl-prev:hover {
  background: #212b36 url('../images/arr-left.svg') 50% no-repeat;
  background-size: 13px;
  transform: scale(1.1);
}

.aboutSlider .owl-nav button.owl-next:hover,
.gallery .owl-nav button.owl-next:hover {
  background: #212b36 url('../images/arr-right.svg') 50% no-repeat;
  background-size: 13px;
  transform: scale(1.1);
}
.gallery .owl-nav .owl-prev,
.gallery .owl-nav .owl-next {
  position: absolute;
  width: 17px;
  height: 45px;
  transition: all 0.3s ease-in;
}
.gallery .owl-nav .owl-prev span,
.gallery .owl-nav .owl-next span {
  font-size: 0;
}
.gallery__more {
  margin-top: 40px;
  font-style: normal;
  font-weight: 700;
  font-size: 28px;
  line-height: 60px;
  letter-spacing: 1.5px;
  color: #212b36;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .gallery__more {
    margin-top: 0;
  }
}
@media screen and (max-width: 425px) {
  .gallery__more {
    font-size: 14px;
    line-height: 16px;
  }
}
.gallery__more span {
  cursor: pointer;
}
.submit {
  position: relative;
  background: url('../images/submit-bg.jpeg') 0 0 no-repeat;
  background-size: cover;
}
.submit:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    89.57deg,
    rgb(0 0 0 / 23%) 47.51%,
    rgb(0 0 0 / 33%) 84.51%,
    rgb(0 0 0 / 30%) 99.38%
  );
}
.submit__inner {
  position: relative;
  z-index: 2;
  padding-top: 100px;
  padding-bottom: 200px;
}

.gallery .owl-nav,
.aboutSlider .owl-nav {
  position: absolute;
  top: 50%;
  margin-top: -10px;
  left: 15px;
  right: 15px;
}

.gallery .owl-nav .owl-prev,
.gallery .owl-nav .owl-next,
.aboutSlider .owl-nav .owl-prev,
.aboutSlider .owl-nav .owl-next {
  position: absolute;
  width: 17px;
  height: 45px;
  transition: all 0.3s ease-in;
}
.gallery .owl-nav .owl-prev span,
.gallery .owl-nav .owl-next span,
.aboutSlider .owl-nav .owl-prev span,
.aboutSlider .owl-nav .owl-next span {
  font-size: 0;
}

.about__img {
  order: -1;
  border-radius: 10px;
  max-width: 550px;
}

@media screen and (max-width: 520px) {
  .submit__inner {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}
.submit__title {
  margin-bottom: 100px;
  font-style: normal;
  font-weight: 700;
  font-size: 38px;
  line-height: 60px;
  letter-spacing: 1.5px;
  color: #fff;
}
@media screen and (max-width: 1024px) {
  .submit__title {
    margin-bottom: 50px;
  }
}
@media screen and (max-width: 520px) {
  .submit__title {
    margin-bottom: 30px;
    font-size: 28px;
    line-height: 30px;
  }
}
.submit__items {
  display: flex;
  flex-wrap: wrap;
  margin-left: -7px;
}
.submit__col {
  flex: auto;
  max-width: 100%;
  padding: 0 0 38px 7px;
}
@media screen and (max-width: 520px) {
  .submit__col {
    padding-bottom: 20px;
  }
}
@media screen and (max-width: 1024px) {
  .submit__items {
    flex-direction: column;
  }
}

@media screen and (max-width: 425px) {
  .submit__col:first-child {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

@media screen and (max-width: 425px) {
  .submit__col:nth-child(2),
  .submit__col:nth-child(3),
  .submit__col:nth-child(4) {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
.submit__item {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.submit__item br {
  display: none;
}
.submit__item label {
  min-height: 24px;
  margin-bottom: 7px;
  font-style: normal;
  font-weight: 400;
  font-size: 15px;
  line-height: 24px;
  color: #fff;
}
.submit__item input,
.submit__item select,
.submit__item textarea {
  width: 100%;
  max-height: 150px;
  min-height: 66px;
  height: 100%;
  padding: 15px;
  background: #fff;
  border: 2px solid #fff;
  border-radius: 10px;
  outline: none;
  text-align: left;
}
.submit__item.btns {
  display: flex;
  align-items: flex-end;
  flex-direction: row;
}
@media screen and (max-width: 425px) {
  .submit__item.btns {
    flex-direction: column;
  }
}
.submit__button {
  width: 100%;
  min-height: 66px;
  font-style: normal;
  font-weight: 700;
  font-size: 18px;
  line-height: 24px;
  text-align: center;
  letter-spacing: 1.5px;
  color: #bd9d80;
  border: 2px solid #212b36;
  border-radius: 10px;
  background: none;
  cursor: pointer;
  text-align: center !important;
  transition: all 0.3s ease-in;
}
.submit__button + .submit__button {
  margin-left: 8px;
}
@media screen and (max-width: 425px) {
  .submit__button + .submit__button {
    margin-left: 0;
    margin-top: 20px;
  }
}
.submit__button.active,
.submit__button:hover {
  color: #fff;
  background: #212b36;
}
.submit__button.active:hover {
  color: #fff;
  background: none;
}
.about__inner {
  padding-top: 93px;
  padding-bottom: 93px;
}
@media screen and (max-width: 1024px) {
  .about__inner {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}
.about__title {
  margin-bottom: 54px;
  font-style: normal;
  font-weight: 700;
  font-size: 38px;
  line-height: 60px;
  letter-spacing: 1.5px;
  color: #212b36;
}
@media screen and (max-width: 1024px) {
  .about__title {
    margin-bottom: 20px;
  }
}
.about__info {
  position: relative;
  display: flex;
  align-items: flex-start;
}

.about__info iframe {
  flex: 0 0 40%;
}

@media screen and (max-width: 1024px) {
  .about__info {
    min-height: auto;
  }
}
.about__text {
  z-index: 2;
  content: '';
  top: 0;
  left: 0;
  right: 0;
  max-height: 240px;
  overflow: hidden;
  padding: 20px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.6) 0%,
    rgba(255, 255, 255, 0.6) 77.08%,
    rgba(255, 255, 255, 0.42) 100%
  );
}
@media screen and (max-width: 1024px) {
  .about__text {
    position: relative;
    max-height: 100%;
  }
}

@media screen and (max-width: 768px) {
  .about__info {
    flex-direction: column;
  }
  .about__info iframe {
    flex: 0 0 500px;
  }
}
@media screen and (max-width: 425px) {
  .about__text {
    font-size: 16px;
    line-height: 18px;
  }
}
.about__img {
  order: -1;
}
@media screen and (max-width: 1024px) {
  .about__img {
    position: relative;
    width: 100%;
  }
}
.map {
  position: relative;
}
.map__inner {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  inset: 0;
  z-index: 9;
}
.map__address {
  position: absolute;
  content: '';
  top: 50%;
  max-width: 370px;
  margin-top: -140px;
  padding: 60px 25px;
  background: #212b36;
  border-radius: 10px;
}
@media screen and (max-width: 500px) {
  .map__address {
    max-width: 100%;
    margin: 0 auto;
    padding: 30px 15px;
    left: 20px;
    right: 20px;
    top: auto;
    bottom: 20px;
  }
}
.map__info {
  display: flex;
  align-items: flex-start;
  margin-bottom: 50px;
}
@media screen and (max-width: 500px) {
  .map__info {
    margin-bottom: 20px;
  }
}
.map__info img {
  max-width: 30px;
  width: 100%;
  margin-top: 10px;
  margin-right: 20px;
}
.map__text {
  font-style: normal;
  font-size: 20px;
  line-height: 30px;
  letter-spacing: 1.5px;
  color: #fff;
}
.map__text span {
  display: block;
  font-weight: bold;
}
.map__hours {
  font-style: normal;
  font-size: 20px;
  line-height: 25px;
  color: #fff;
}
.map__hours span {
  display: block;
  font-weight: bold;
}
.footer {
  background: #23252a;
}
.footer__inner {
  padding-top: 120px;
  padding-bottom: 50px;
}
.footer__logoWr {
  margin-bottom: 20px;
}
@media screen and (max-width: 1200px) {
  .footer__inner {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}
.footer__items {
  display: flex;
  flex-wrap: wrap;
  margin-left: -20px;
  margin-bottom: 50px;
}
@media screen and (max-width: 768px) {
  .footer__items {
    margin-bottom: 0;
  }
  .footer__logoWr img {
    max-width: 280px;
    width: 75%;
  }
}
.footer__col {
  /* flex: auto; */
  flex: 0 0 37%;
  max-width: 37%;
  max-width: 100%;
  padding: 0 0 0 20px;
}
.footer__col:first-child {
  flex: 0 0 26%;
  max-width: 26%;
}
@media screen and (max-width: 768px) {
  .footer__col,
  .footer__col:first-child {
    flex: 0 0 100%;
    max-width: 100%;
    padding-bottom: 30px;
  }
}
.footer__item {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
@media screen and (max-width: 1200px) {
  .footer__item {
    text-align: center;
  }
}
.footer__item .menu {
  display: flex;
  flex-direction: column;
  list-style: none;
}
.footer__item .menu__li + .menu__li {
  margin-top: 10px;
}
.footer__item .menu__a {
  font-style: normal;
  font-weight: 500;
  font-size: 18px;
  line-height: 32px;
  text-align: center;
  letter-spacing: 1.5px;
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease-in;
}
.footer__item .menu__a:hover {
  text-decoration: underline;
}
.footer__item .social__title {
  margin-bottom: 20px;
  font-style: normal;
  font-weight: 600;
  font-size: 18px;
  line-height: 32px;
  color: #fff;
}
.footer__item .social__items {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 1200px) {
  .footer__item .social__items {
    justify-content: center;
  }
}
.footer__item .social__item + .social__item {
  margin-left: 25px;
}
.footer__item .social__item {
  display: block;
  transition: all 0.3s ease-in;
}
.footer__item .social__item:hover {
  transform: scale(1.1);
}
.footer__item .social__item img {
  max-width: 35px;
}
.footer__item .phone {
  font-style: normal;
  font-weight: 500;
  font-size: 24px;
  line-height: 32px;
  text-align: center;
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease-in;
}
.footer__item .phone:hover {
  text-decoration: underline;
}
.footer__bot {
  font-style: normal;
  font-weight: 600;
  font-size: 14px;
  line-height: 32px;
  color: #fff;
  text-align: center;
}
.sandwich {
  cursor: pointer;
  display: none;
  height: 20px;
  position: relative;
  width: 32px;
}
@media screen and (max-width: 991px) {
  .sandwich {
    display: block;
  }
}
.sandwich--active .sandwich__line--top {
  top: 10px;
  transform: rotate(45deg);
}
.sandwich--active .sandwich__line--middle {
  opacity: 0;
}
.sandwich--active .sandwich__line--bottom {
  top: 10px;
  transform: rotate(-45deg);
}
.sandwich__line {
  background-color: #0077c9;
  display: block;
  height: 2px;
  left: 0;
  position: absolute;
  transition: all linear 0.4s;
  width: 100%;
}
.sandwich__line--top {
  top: 0;
}
.sandwich__line--middle {
  top: 9px;
}
.sandwich__line--bottom {
  top: 18px;
}
@media screen and (max-width: 600px) {
  .sandwich {
    display: flex;
    order: 1;
  }
  .sandwich--active .sandwich__line--top {
    top: 10px;
    transform: rotate(45deg);
  }
  .sandwich--active .sandwich__line--middle {
    opacity: 0;
  }
  .sandwich--active .sandwich__line--bottom {
    top: 10px;
    transform: rotate(-45deg);
  }
  .sandwich--active__line {
    background-color: #0077c9;
    display: block;
    height: 3px;
    left: 0;
    position: absolute;
    transition: all linear 0.4s;
    width: 100%;
  }
  .sandwich--active__line--top {
    top: 0;
  }
  .sandwich--active__line--middle {
    top: 9px;
  }
  .sandwich--active__line--bottom {
    top: 18px;
  }
}
.header-adaptive {
  display: none;
  position: absolute;
  top: 120px;
  left: 0;
  right: 0;
  bottom: 0;
  max-height: 340px;
  min-height: 340px;
}
.header-adaptive.adaptive--active {
  display: block;
  background: #212b36;
  border-radius: 10px;
  box-shadow: 0px 3px 4px 0 #212b36;
}
.header-adaptive.adaptive--active .header__right {
  display: block;
  flex: 1;
  max-width: 100%;
  padding-left: 0;
  padding: 30px;
  border-bottom-left-radius: 10px;
}
.header-adaptive.adaptive--active .header__right .top__menu {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  max-height: 340px;
  height: 280px;
  overflow-y: auto;
  width: 100%;
  white-space: nowrap;
  order: 1;
}
.header-adaptive.adaptive--active .header__right .top__menu .top__menu__li {
  margin-right: 0;
  margin-bottom: 5px;
}
.header-adaptive.adaptive--active .header__right .top__menu .top__menu__a,
.header-adaptive.adaptive--active .header__right .top__menu .top__phone {
  font-weight: 500;
  font-size: 24px;
  line-height: 32px;
  color: #fff;
}

.entry-title {
  display: none;
}

body .wpcf7 form .wpcf7-response-output {
  background: #fff;
  border-color: #00a0d2;
  padding: 20px;
  border-radius: 10px;
}

body .wpcf7-form-control.wpcf7-checkbox label {
  display: flex;
  align-items: center;
}

body .wpcf7-form-control.wpcf7-checkbox input {
  width: 30px;
  margin-right: 20px;
  accent-color: #0077c9;
}

.headerWrap .owl-dots {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0px;
    display: flex;
    justify-content: space-between;
}

.headerWrap {
    position: relative;
}

.headerWrap .owl-dot {
    flex: auto;
}
.owl-theme .owl-dots .owl-dot span {
width: auto;
}

.header .top {
  margin-bottom: 0;
}

.headerWrap {
  margin-top: -93px;
}

.headerSlider .header {
  padding-top: 93px;
}

.headerSlider .header {
  min-height: 90vh;
  justify-content: flex-end;
}

.headerSlider .header .mid {
  margin-bottom: 0px;
}

input.wpcf7-form-control.has-spinner.wpcf7-submit.submit__button {
  border:none;
}

.header .mid {
   margin-bottom: 0px;
   max-width: 50%;
   margin-left: 0;
}

@media screen and (max-width: 480px) {
  .headerSlider .header {
	min-height: 370px !important;
    background-size: 100% 100%;
  }
  }