/*!***************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js!./src/scss/styles.scss ***!
  \***************************************************************************************************************/
@charset "UTF-8";
@font-face {
  font-family: "Montserrat";
  src: local("Montserrat Regular"), local("Montserrat-Regular"), url(../js/../fonts/Montserrat-Regular.ttf) format("truetype");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Montserrat";
  src: local("Montserrat Italic"), local("Montserrat-Italic"), url(../js/../fonts/Montserrat-Italic.ttf) format("truetype");
  font-weight: 400;
  font-style: italic;
}
@font-face {
  font-family: "Montserrat";
  src: local("Montserrat Bold"), local("Montserrat-Bold"), url(../js/../fonts/Montserrat-Bold.ttf) format("truetype");
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: "Montserrat";
  src: local("Montserrat BoldItalic"), local("Montserrat-BoldItalic"), url(../js/../fonts/Montserrat-BoldItalic.ttf) format("truetype");
  font-weight: 700;
  font-style: italic;
}
:root {
  --color1: var(--wp--preset--color--color-1);
  --color2: var(--wp--preset--color--color-2);
  --color3: var(--wp--preset--color--color-3);
  --color4: var(--wp--preset--color--color-4);
  --color5: var(--wp--preset--color--color-5);
  --color6: var(--wp--preset--color--color-6);
  --font-family: "Montserrat";
  --font-size: 16px;
  --white: #fff;
  --black: #222;
  --gray: #666;
  --lightgray: #f0f0f0;
  --sm: 576px;
  --md: 768px;
  --lg: 992px;
  --xl: 1200px;
  --xxl: 1400px;
  --radius: 6px;
}

html {
  font-family: var(--font-family);
  font-size: var(--font-size);
  font-weight: 400;
}

body {
  color: var(--black);
  font-size: 1rem;
  background-color: var(--white);
  margin: 0;
  padding: 0;
}

* {
  box-sizing: border-box;
}

.container-fluid {
  position: relative;
  background-size: cover;
  background-repeat: no-repeat;
  box-sizing: border-box;
}

p {
  line-height: 1.4;
}

a {
  color: var(--color2);
}

h1 {
  font-size: 2.6rem;
  font-weight: 400;
  line-height: 1.2;
}

h2 {
  font-weight: 400;
  font-size: 1.8rem;
  line-height: 1.2;
}
@media (min-width: 992px) {
  h2 {
    font-size: 2rem;
  }
}

h3 {
  font-weight: 400;
  font-size: 1.65rem;
}

.mtop {
  position: relative;
  z-index: 2;
  margin-top: -60px;
}
@media (min-width: 992px) {
  .mtop {
    margin-top: -100px;
  }
}

main,
section {
  padding-top: 40px;
  padding-bottom: 40px;
}
@media (min-width: 992px) {
  main,
  section {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}

.btn {
  background: transparent;
  border: 0;
  cursor: pointer;
}
.btn--default {
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: var(--radius);
  padding: 15px 40px;
  transition: all 0.2s ease-in-out;
}
.btn--small {
  font-size: 0.75rem;
  border-radius: var(--radius);
  padding: 5px 10px;
  transition: all 0.2s ease-in-out;
}
.btn--color1 {
  color: #fff;
  background-color: var(--color1);
}
.btn--color1:hover {
  background-color: var(--color2);
}
.btn--color2 {
  color: #fff;
  background-color: var(--color2);
}
.btn--color2:hover {
  background-color: var(--color1);
}
.btn--color3 {
  color: #fff;
  background-color: var(--color3);
}
.btn--color3:hover {
  background-color: var(--color3);
}
.btn--color4 {
  color: #fff;
  background-color: var(--color4);
}
.btn--color4:hover {
  background-color: var(--color4);
}
.btn--color5 {
  color: #fff;
  background-color: var(--color5);
}
.btn--color5:hover {
  background-color: var(--color5);
}
.btn--color6 {
  color: #fff;
  background-color: var(--color6);
}
.btn--color6:hover {
  background-color: var(--color6);
}
.btn--edit {
  background-color: var(--color5);
}

.header {
  display: flex;
  flex-direction: column;
  padding: 0;
}
@media (min-width: 768px) {
  .header {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}
@media (min-width: 992px) {
  .header {
    padding-right: calc(var(--bs-gutter-x) * 0.5);
    padding-left: calc(var(--bs-gutter-x) * 0.5);
  }
}
.header__wrap {
  background-color: var(--color2);
  border-bottom: 1px solid var(--color1);
  margin: 0;
  padding-top: 15px;
  padding-bottom: 15px;
}
.header__logo {
  text-decoration: none;
}
.header__logo-img {
  width: auto;
  max-height: 54px;
}
.header__contacts {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 200px;
}
@media (min-width: 1200px) {
  .header__contacts {
    min-width: 250px;
  }
}
.header__contacts .phone {
  color: var(--white);
  font-size: 1.25rem;
  line-height: 1;
  text-decoration: none;
}
.header__contacts .phone__label {
  color: #999;
  font-size: 0.75rem;
  line-height: 1.2;
}
@media (min-width: 992px) {
  .header__contacts .email {
    margin-top: 10px;
  }
}
.header__contacts .messengers {
  display: flex;
  flex-direction: row;
}
@media (min-width: 992px) {
  .header__contacts .messengers {
    margin-top: 10px;
  }
}
.header__contacts .messengers__link span {
  display: none;
}
@media (min-width: 768px) {
  .header__contacts .messengers__link span {
    display: inline;
    color: var(--white);
  }
}
.header__contacts--mobile {
  position: fixed;
  bottom: 0;
  right: 0;
  z-index: 10;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  background-color: var(--color1);
  width: calc(100% - 60px);
  height: 60px;
}
@media (min-width: 992px) {
  .header__contacts--mobile {
    position: relative;
    bottom: unset;
    right: unset;
    z-index: unset;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    background-color: unset;
    min-width: 200px;
    width: unset;
  }
}
@media (min-width: 1200px) {
  .header__contacts--mobile {
    min-width: 250px;
  }
}
.header__contacts--mobile .phone__label {
  display: none;
}
@media (min-width: 992px) {
  .header__contacts--mobile .phone__label {
    display: inline-block;
  }
}
.header__contacts--mobile .messengers {
  margin-left: 40px;
}
@media (min-width: 992px) {
  .header__contacts--mobile .messengers {
    margin-left: unset;
  }
}
.header__contacts--mobile .messengers__icon {
  width: 32px;
  height: 32px;
}
@media (min-width: 992px) {
  .header__contacts--mobile .messengers__icon {
    width: 20px;
    height: 20px;
  }
}
.header__space {
  height: 40px;
}
@media (min-width: 768px) {
  .header__space {
    flex-grow: 2;
  }
}

.footer__wrap {
  background-color: var(--color2);
  padding-top: 40px;
  padding-bottom: 40px;
}
.footer__contacts {
  margin-top: 40px;
}
.footer__contacts .phone {
  display: inline-block;
  color: var(--white);
  font-size: 1.25rem;
  text-decoration: none;
  margin-top: 10px;
  margin-bottom: 10px;
}
.footer__contacts .email {
  display: inline-block;
  color: var(--white);
  font-size: 1rem;
  margin-top: 10px;
  margin-bottom: 10px;
}
.footer__contacts .messengers {
  display: flex;
  flex-direction: row;
  margin-top: 10px;
  margin-bottom: 10px;
}
.footer__contacts .messengers__link {
  color: var(--white);
}
.footer__contacts .messengers__icon--whatsapp,
.footer__contacts .messengers__icon--telegram {
  filter: invert(92%) sepia(100%) saturate(0%) hue-rotate(46deg) brightness(108%) contrast(100%);
}
.footer__contacts .address {
  color: var(--white);
  font-size: 0.75rem;
}
.footer__contacts *:first-child {
  margin-top: 0;
}
.footer__contacts *:last-child {
  margin-bottom: 0;
}

.block {
  padding-top: 20px;
  padding-bottom: 20px;
}
@media (min-width: 992px) {
  .block {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}
@media (min-width: 1200px) {
  .block {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}

.menu__main-wrap {
  display: none;
  position: fixed;
  z-index: 10;
  bottom: 60px;
  left: 0;
  background-color: var(--color1);
  padding: 0;
}
@media (min-width: 992px) {
  .menu__main-wrap {
    position: relative;
    display: flex;
    flex-direction: row;
    bottom: unset;
    left: unset;
    z-index: unset;
    border-bottom: 1px solid var(--color2);
  }
}
.menu__main-burger {
  position: fixed;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  bottom: 0;
  left: 0;
  z-index: 10;
  background-color: var(--color2);
  width: 60px;
  height: 60px;
}
@media (min-width: 992px) {
  .menu__main-burger {
    display: none;
  }
}
.menu__main-burger img {
  filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(5%) hue-rotate(273deg) brightness(105%) contrast(101%);
  width: 28px;
  height: 28px;
}
.menu__main-burger-close {
  display: none;
}
.menu__main {
  display: flex;
  flex-direction: column;
  list-style: none;
  padding: 0;
  margin: 0;
}
@media (min-width: 992px) {
  .menu__main {
    display: flex;
    flex-direction: row;
  }
}
@media (min-width: 1200px) {
  .menu__main {
    padding-right: calc(var(--bs-gutter-x) * 0.5);
    padding-left: calc(var(--bs-gutter-x) * 0.5);
    margin-right: auto;
    margin-left: auto;
  }
}
@media (min-width: 992px) {
  .menu__main-item:first-child {
    margin-left: 0;
  }
  .menu__main-item:last-child {
    margin-right: 0;
  }
}
.menu__main-link {
  display: inline-block;
  box-sizing: border-box;
  color: var(--white);
  font-size: 0.875rem;
  text-transform: uppercase;
  text-decoration: none;
  letter-spacing: 0.05rem;
  padding: 12px 20px;
  width: 100%;
}
.menu__main-link:hover {
  text-decoration: none;
}
@media (min-width: 992px) {
  .menu__main-link {
    font-size: 1rem;
    letter-spacing: -0.01rem;
    text-transform: none;
    padding: 20px 12px;
    width: unset;
  }
}
@media (min-width: 992px) {
  .menu__main-link--current {
    border-color: var(--color2);
  }
}
.menu__footer-title {
  color: var(--white);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.1rem;
  text-transform: uppercase;
}
.menu__footer {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-left: 0;
}
.menu__footer-link {
  color: var(--white);
  margin-top: 5px;
  margin-bottom: 5px;
}

.form__wrap {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.form__wrap h3 {
  margin: 0;
}
.form__wrap > .wpcf7-response-output {
  margin: 0 !important;
}
.form__label {
  color: var(--black);
  font-size: 0.875rem;
}
.form__input, .form__textarea, .form__select {
  font-family: var(--font-family);
  font-size: 0.875rem;
  font-weight: 400;
  border-radius: var(--radius);
  border: 1px solid var(--gray);
  box-sizing: border-box;
  padding: 10px;
  width: 100%;
}
.form__input.error, .form__textarea.error, .form__select.error {
  border-color: #dc3545;
  box-shadow: 0 0 0 2px rgba(220, 53, 69, 0.25);
}
.form__textarea::placeholder {
  font-family: var(--font-family);
}

.popup__wrap {
  display: none;
  border-radius: var(--radius);
  max-width: 560px;
}

.breadcrumb {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
}
.breadcrumb__item:after {
  content: ">>";
  display: inline;
  font-size: 0.75rem;
  letter-spacing: -0.15rem;
  margin: 0 5px;
}
.breadcrumb__item.end::after {
  display: none;
}
.archive__item {
  display: flex;
  flex-direction: column;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.15), 0 22px 70px 4px rgba(0, 0, 0, 0.12), 0 0 0 1px rgba(0, 0, 0, 0);
  padding: 20px;
  margin-top: 20px;
  margin-bottom: 20px;
}
@media (min-width: 992px) {
  .archive__item {
    padding: 30px;
  }
}
.archive__item-img {
  max-width: 100%;
  height: auto;
  margin-bottom: 10px;
}
.archive__item-title {
  font-size: 1.25rem;
  text-decoration: none;
}

.offer {
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 2;
}
@media (min-width: 992px) {
  .offer {
    flex-direction: row;
  }
}
.offer__wrap {
  position: relative;
  overflow: hidden;
}
.offer__main {
  position: relative;
  z-index: 2;
  padding-top: 40px;
  padding-bottom: 40px;
}
@media (min-width: 992px) {
  .offer__main {
    max-width: 70%;
  }
}
@media (min-width: 1200px) {
  .offer__main {
    max-width: 50%;
    padding-top: 140px;
    padding-bottom: 140px;
  }
}
.offer__title {
  margin: 0;
}
.offer__title--white {
  color: var(--white);
}
.offer__desc {
  line-height: 1.6;
  margin-top: 40px;
  margin-bottom: 40px;
  max-width: 550px;
}
.offer__desc--white {
  color: var(--white);
}
.offer__img {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-grow: 1;
}
.offer__img img {
  max-width: 100%;
  height: auto;
}
.offer__video-bg {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  overflow: hidden;
  min-height: 100%;
  min-width: 100%;
  -webkit-transform-style: preserve-3d;
}
.offer__video-bg video {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1;
  min-height: 100%;
  min-width: 100%;
  height: auto;
  width: 100%;
  object-fit: cover;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.offer .breadcrumb {
  opacity: 0.6;
  margin-bottom: 20px;
}
.offer .breadcrumb__item,
.offer .breadcrumb__link {
  color: var(--white);
}
.offer {
  /* gutenberg */
}
.offer__edit-bg-btn {
  position: absolute;
  right: 40px;
  top: 40px;
  background-color: rgba(0, 0, 0, 0.1);
  border-radius: 3px;
}

.content__title {
  max-width: 600px;
  margin-bottom: 20px;
}
.content__left-column {
  position: sticky;
  top: 20px;
}
.content__managers {
  display: flex;
  flex-direction: column;
  background-color: var(--lightgray);
  padding: 30px;
}
.content__managers-title {
  color: var(--gray);
  font-size: 1.25rem;
}
.content__manager {
  display: flex;
  flex-direction: column;
  margin-top: 20px;
  margin-bottom: 20px;
}
.content__manager:first-child {
  margin-top: 0;
}
.content__manager:last-child {
  margin-bottom: 0;
}
.content__manager-name {
  font-size: 1.25rem;
}
.content__manager-phone, .content__manager-email {
  margin-top: 5px;
  margin-bottom: 5px;
}

.advantages__wrap.bg_layout:before {
  position: absolute;
  z-index: 0;
  top: 0;
  left: 0;
  display: block;
  content: "";
  background: rgb(255, 255, 255);
  background: linear-gradient(140deg, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0.6) 40%, rgba(255, 255, 255, 0.4) 100%);
  width: 100%;
  height: 100%;
}
.advantages__wrap.bg_layout .block {
  position: relative;
  z-index: 1;
}
.advantages__title {
  margin-bottom: 20px;
}
@media (min-width: 992px) {
  .advantages__title {
    max-width: 600px;
    margin-bottom: 60px;
  }
}
.advantages__desc {
  color: var(--gray);
  max-width: 800px;
  margin-top: 0;
}

.advantage__item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background-color: #fff;
  background-size: cover;
  background-position: left top;
  background-repeat: no-repeat;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.15), 0 22px 70px 4px rgba(0, 0, 0, 0.12), 0 0 0 1px rgba(0, 0, 0, 0);
  border-radius: var(--radius);
  height: 100%;
  padding: 20px;
  margin-top: 20px;
  margin-bottom: 20px;
}
@media (min-width: 992px) {
  .advantage__item {
    padding: 30px;
  }
}
.advantage__item-icon {
  filter: brightness(0) saturate(100%) invert(54%) sepia(99%) saturate(348%) hue-rotate(134deg) brightness(94%) contrast(94%);
  max-width: 100%;
  max-height: 100%;
  z-index: 1;
}
.advantage__item-icon--withoutcolor {
  filter: unset;
}
.advantage__item-title {
  color: #616161;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1;
  margin-top: 10px;
  margin-bottom: 10px;
  max-width: 230px;
  z-index: 1;
}
.advantage__item-title a {
  color: var(--color2);
}
.advantage__item-title--white {
  color: var(--white);
}
.advantage__item-title--white a {
  color: var(--white);
}
.advantage__item-desc {
  color: #787878;
  font-size: 0.875rem;
  letter-spacing: 0.03rem;
  line-height: 1.4;
  z-index: 1;
  margin: 0;
  max-width: 400px;
}
.advantage__item-desc--white {
  color: var(--white);
}
.advantage__item-edit-icon {
  font-size: 0.65rem;
  background-color: aliceblue;
  border: 1px solid #555;
  width: 60px;
  height: 60px;
  cursor: pointer;
}

.messengers__link {
  display: flex;
  flex-direction: row;
  align-items: center;
  font-size: 0.875rem;
  margin-right: 10px;
  margin-left: 10px;
}
.messengers__link:first-child {
  margin-left: 0;
}
.messengers__link:last-child {
  margin-right: 0;
}
.messengers__icon {
  width: 18px;
  height: 18px;
  margin-right: 3px;
}
.messengers__icon--telegram {
  filter: brightness(0) saturate(100%) invert(99%) sepia(98%) saturate(11%) hue-rotate(233deg) brightness(103%) contrast(100%);
}
@media (min-width: 992px) {
  .messengers__icon--telegram {
    filter: invert(60%) sepia(100%) saturate(1648%) hue-rotate(170deg) brightness(89%) contrast(104%);
  }
}
.messengers__icon--whatsapp {
  filter: brightness(0) saturate(100%) invert(99%) sepia(98%) saturate(11%) hue-rotate(233deg) brightness(103%) contrast(100%);
}
@media (min-width: 992px) {
  .messengers__icon--whatsapp {
    filter: invert(52%) sepia(96%) saturate(391%) hue-rotate(78deg) brightness(92%) contrast(88%);
  }
}

.calculator__wrap {
  background-color: var(--color6);
  border-radius: var(--radius);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  padding: 20px 0;
}
@media (min-width: 992px) {
  .calculator__wrap {
    padding: 40px;
  }
}
.calculator__row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 15px;
  align-items: flex-end;
}
@media (min-width: 992px) {
  .calculator__row {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}
.calculator__row--min {
  grid-template-columns: 2fr;
}
@media (min-width: 992px) {
  .calculator__row--min {
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  }
}
.calculator__col {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.calculator__buttons {
  display: flex;
  flex-direction: row;
  gap: 20px;
  background-color: var(--lightgray);
  border-top-left-radius: var(--radius);
  border-top-right-radius: var(--radius);
  border-bottom: 1px solid var(--color1);
  padding: 20px 20px 0 20px;
}
.calculator__button {
  cursor: pointer;
  color: var(--gray);
  font-size: 1rem;
  border: 1px solid var(--color1);
  border-bottom-width: 0;
  border-top-left-radius: var(--radius);
  border-top-right-radius: var(--radius);
  transition: all 0.3s ease;
  padding: 10px;
  margin: 0;
}
.calculator__button.active {
  color: var(--white);
  background-color: var(--color1);
}
.calculator__pane {
  display: none;
  background-color: var(--lightgray);
  border-bottom-left-radius: var(--radius);
  border-bottom-right-radius: var(--radius);
  padding: 20px;
}
.calculator__pane.active {
  display: block;
}
.calculator__tabs {
  margin: 20px 0;
}
.calculator__items {
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 20px;
  background: #fafafa;
}
.calculator__item {
  background: white;
  padding: 20px;
  border-radius: 6px;
  margin-bottom: 20px;
  border: 1px solid #e0e0e0;
}
.calculator__item-header {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  gap: 10px;
  border-bottom: 1px solid #e0e0e0;
  margin-bottom: 15px;
  padding-bottom: 10px;
}
@media (min-width: 992px) {
  .calculator__item-header {
    display: flex;
    flex-direction: row;
    align-items: center;
  }
}
.calculator__item-header h4 {
  margin: 0;
  color: #333;
}
/* Адаптивность */
@media (max-width: 768px) {
  .tabs-nav {
    flex-direction: column;
  }
  .tab-button {
    text-align: center;
  }
}
