@import url("https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100..900;1,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto+Condensed:ital,wght@0,100..900;1,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");

@font-face {
  font-family: "Roboto";
  src: url("../fonts/Roboto-Bold.ttf") format("truetype");
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Roboto";
  src: url("../fonts/Roboto-Regular.ttf") format("truetype");
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "RobotoCondensed";
  src: url("../fonts/RobotoCondensed-Bold.ttf") format("truetype");
  font-weight: bold;
  font-style: normal;
}

@font-face {
  font-family: "RobotoCondensed";
  src: url("../fonts/RobotoCondensed-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "Raleway";
  src: url("../fonts/Raleway-Regular.woff2") format("woff2"),
    url("../fonts/Raleway-Regular.woff") format("woff");
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Raleway";
  src: url("../fonts/Raleway-Medium.woff2") format("woff2"),
    url("../fonts/Raleway-Medium.woff") format("woff");
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: "Raleway";
  src: url("../fonts/Raleway-Bold.woff2") format("woff2"),
    url("../fonts/Raleway-Bold.woff") format("woff");
  font-weight: 700;
  font-display: swap;
}

:root {
  --textColorDefault: #303030;
  --accentColor: #ff9900;
  --accentColorLight: #fcc600;
  --accentColor2: #dd6b00;
  --backColor: #ffffff;
  --footerColorDark: #65656a;
  --backColor2: #f2eeea;
  --backDarkColor: #a2a2a2;
  --headerHeight: 90px;
  font-family: RalewayRegular, sans-serif;
}

@media (max-width: 767px) {
  :root {
    --headerHeight: 70px;
  }
}

*,
:after,
:before {
  box-sizing: border-box;
}

a {
  text-decoration: none;
  font-family: "RobotoCondensed", sans-serif;
  font-weight: normal;
  color: var(--accentColorDarker);
}

section p a {
  font-family: RalewayBold, sans-serif;
}

a:hover {
  color: var(--accentColorDark);
}

body,
html {
  height: 100%;
  font-size: 18px;
}

body {
  background-color: var(--backColor);
  font-family: RalewayRegular, sans-serif;
  font-size: 16px;
  font-weight: normal;
  font-style: normal;
  line-height: 1.3;
  position: relative;
  visibility: visible;
  overflow-x: hidden;
  color: var(--textColorDefault);
  padding-right: 0 !important;
}

@media (max-width: 1280px) {
  body,
  html {
    font-size: 16px;
  }
}

@media (max-width: 767px) {
  body,
  html {
    font-size: 14px;
  }
}

@media (max-width: 500px) {
  body,
  html {
    font-size: 14px;
  }
}

p {
  line-height: 1.5;
}

p b {
  font-weight: normal;
  font-family: RalewayBold, sans-serif;
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
  margin-top: 0;
  margin-bottom: 0.5rem;
  line-height: 1.2;
  color: inherit;
}

h2 {
  font-family: "RobotoCondensed", sans-serif;
  font-weight: normal;
  font-size: 40px;
  padding-bottom: 15px;
  margin-bottom: 15px;
  color: var(--accentColor);
  border-bottom: 2px solid var(--accentColor);
}

h3 {
  font-weight: normal;
  font-family: RobotoCondensed, sans-serif;
  font-size: 24px;
  text-transform: uppercase;
  color: var(--textColorDark);
  margin-bottom: 25px;
}

@media (max-width: 767px) {
  .benefit-item h3 {
    padding-top: 0;
  }
}

@media (max-width: 1280px) {
  h2 {
    font-size: 35px;
  }
}

@media (max-width: 767px) {
  h2 {
    font-size: 30px;
    padding-bottom: 4px;
    margin-bottom: 0;
  }

  h3 {
    font-size: 18px;
    margin-bottom: 10px;
  }

  .section-about h3 {
    margin-top: 20px;
  }
}

.container {
  max-width: 1440px;
}

.header-container {
  max-width: 1440px;
  align-items: center;
}

.header-container h3,
.header-container h2,
.header-container h4,
.header-container a {
  text-decoration: none;
}

h4 {
  font-size: 20px;
  font-family: "RobotoCondensed", sans-serif;
  font-weight: normal;
  margin: 32px 0 16px 0;
  color: var(--accentColor2);
}

@media (max-width: 767px) {
  h4 {
    font-size: 16px;
    margin-top: 20px;
  }
}

.header-container h3 {
  font-weight: bold;
  font-family: RalewayBold, sans-serif;
  color: var(--accentColor);
}

.logo,
.sticky-header .logo,
.sticky-header.sticky .logo {
  height: 45px;
}

@media (max-width: 767px) {
  .sticky-header .logo,
  .sticky-header.sticky .logo {
    max-width: 130px;
  }
}

.logo-block {
  display: flex;
  align-items: center;
}

.header-area {
  height: var(--headerHeight);
}

.row {
  --bs-gutter-x: 40px;
  --bs-gutter-y: 0;
}

.header-area div {
  height: 100%;
}

.header-mobile .logo-block p {
  margin-left: 15px;
  margin-bottom: 0;
  font-size: 12px;
  line-height: 1.2;
}

.header-mobile-logo-row .col-9 {
  padding-right: 0;
}

.header-addresses,
.header-phones {
  display: flex;
  column-gap: 30px;
  margin: 0;
}

@media (max-width: 990px) {
  .header-addresses,
  .header-phones {
    display: flex;
    flex-direction: column;
    gap: 6px;
    align-items: flex-end;
  }
}

.header-contacts {
  align-items: center;
  overflow: hidden;
  column-gap: 30px;
}

@media (max-width: 500px) {
  .header-contacts {
    margin-left: 0;
  }
}

.header-button-wrapper {
  justify-content: center;
  display: flex;
  align-items: center;
  flex: 1;
}

.header-contacts button {
  margin-right: 7px;
}

@media (max-width: 1280px) {
  .header-contacts button {
    display: none;
  }
}

.section-contacts img,
.header-contacts img {
  height: 24px;
  width: 24px;
  margin-right: 10px;
}

@media (max-width: 500px) {
  .header-contacts img {
    margin-right: 0;
  }
}

@media (max-width: 500px) {
  .header-contacts img {
    display: none;
  }

  .header-contacts a img {
    display: block;
  }
}

.section-contacts a,
.service-section a,
.contacts-block .contacts-row.phone a,
.header-contacts p,
.header-contacts a {
  font-size: 20px;
  font-weight: bold;
  text-decoration: none;
  display: flex;
  align-items: center;
  margin-bottom: 0;
  font-family: "RobotoCondensed", sans-serif;
}

.service-section a:hover {
  color: var(--accentColor);
}

.header-contacts a:hover {
  color: var(--accentColor);
}

.header-contacts a.button-accent {
  height: fit-content;
}

.header-contacts p,
.header-contacts a {
  color: var(--textColorDefault);
}

@media (max-width: 767px) {
  .section-contacts p,
  .section-contacts a,
  .header-contacts p,
  .header-contacts a {
    font-size: 16px;
  }

  .section-contacts a,
  .header-contacts a {
    color: var(--accentColorDark);
    padding: 4px 0;
    border-bottom: 2px solid var(--accentColorDark);
  }

  .section-contacts a:hover,
  .header-contacts a:hover {
    color: var(--accentColor);
  }
}

.header-contacts p img,
.header-contacts a img {
  width: 24px;
  height: 24px;
}

.header-social {
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: flex-end;
}

.header-social img {
  width: 40px;
  height: 40px;
}

.header-navigation {
  display: flex;
  gap: 30px;
  align-items: center;
}

@media (max-width: 1060px) {
  .header-navigation {
    margin-left: 20px;
    gap: 20px;
  }
}

.header-icons {
  height: 100px;
  gap: 20px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.header-icons img {
  width: 28px;
  height: 28px;
}

.header-navigation a {
  font-size: 18px;
  font-family: "RobotoCondensed", sans-serif;
  text-transform: none;
  color: var(--textColorDefault);
  text-decoration: none;
  padding: 10px 0;
  border-bottom: 2px solid transparent;
  border-top: 2px solid transparent;
}

.header-navigation a strong {
  text-transform: uppercase;
}

.header-navigation a:hover {
  color: var(--accentColor2);
  border-bottom: 2px solid var(--accentColor);
}

.main-content {
  padding-top: var(--headerHeight);
}

.main-content-back {
  background-size: auto;
}

.section-hero {
  position: relative;
  display: flex;
  align-items: center;
}

.section-hero,
.hero.container {
  max-width: 100%;
  height: calc(100vh - 90px);
  /*background: url("./../images/hero_background3.jpg") no-repeat center;*/
  background: linear-gradient(90deg, #00004040, transparent), url(./../images/hero_background3.jpg) no-repeat center;
  background-size: cover;
}

.hero-box {
  display: flex;
  flex-direction: column;
  padding: 120px 0;
  width: 100%;
}

.hero-box a,
.hero-box button {
  margin-right: 15px;
}

.hero-box a img {
  width: 32px;
  height: 32px;
}

.hero-box a:has(> img) {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 2px solid var(--accentColor);
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 767px) {
  .hero-box a,
  .hero-box button {
    margin-right: 10px;
  }

  .hero-box a img {
    width: 40px;
    height: 40px;
    padding: 4px;
  }
}

.hero-box a:hover {
  background-color: var(--accentColor);
  border-radius: 50px;
  box-shadow: 3px 3px 4px rgba(96, 96, 96, 0.8);
}

.hero-box a:hover img.viber {
  content: url("./../images/icon-viber.svg");
}

.hero-box a:hover img.telegram {
  content: url("./../images/icon-telegram.svg");
}

.hero-title {
  color: var(--accentColor);
  font-family: "RobotoCondensed", sans-serif;
  font-weight: bold;
  font-size: 55px;
  /*text-shadow: 1px 2px 8px #00000040;*/
  text-shadow: 1px 2px 3px rgba(0, 0, 0, 0.7);
}

.hero-title span {
  color: white;
}

.title_big {
  font-size: clamp(2.25rem, 1.5285rem + 3.1628vw, 4.375rem);
}

.title_uppercase {
  text-transform: uppercase;
}

.hero-text {
  font-size: 24px;
  line-height: normal;
  color: var(--textColorDefault);
  margin: 30px 0;
}

@media (min-width: 1440px) {
  .hero-text {
    width: 80%;
  }
}

@media (max-width: 1440px) {
  .hero-title {
    font-size: 55px;
  }
}

@media (max-width: 1280px) {
  .hero-title {
    font-size: 45px;
  }

  .hero-text {
    font-size: 20px;
  }
}

@media (max-width: 991px) {
  .hero-title {
    width: calc(100vw - 40px);
  }
}

@media (max-width: 767px) {
  .hero-box {
    padding: 60px 0;
  }

  .hero-title {
    font-size: 30px;
  }

  .hero-text {
    font-size: 16px;
  }
}

.hero-image {
  height: 100%;
  width: 100%;
  object-fit: contain;
  object-position: bottom;
}

@media (max-width: 767px) {
  .hero-image {
    max-height: 500px;
  }
}

.section-hero section,
.hero.container section {
  height: 100%;
}

.section-hero section .container,
.hero.container section .container {
  height: 100%;
  display: flex;
  align-items: center;
  width: 100%;
}

.section-hero section .container .row,
.hero.container section .container .row {
  width: 100%;
}

.section .section-title {
  padding-bottom: 40px;
}

.button-light {
  padding: 15px 30px;
  border: none;
  background: linear-gradient(
    180deg,
    var(--accentColor) 0%,
    var(--accentColor) 100%
  );
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: 3px 3px 4px rgba(96, 96, 96, 0.8);
  color: #fff;
  text-transform: uppercase;
  border-radius: 4px;
  transition: all 0.2s ease-in-out, border-radius 0.5s ease;
}

@media (max-width: 767px) {
  .button-light {
    padding: 10px 20px;
    font-size: 16px;
  }
}

.button-light:hover {
  background: linear-gradient(0deg, #e87001 0%, #fcc600 100%);
  color: white;
  border-radius: 4px;
}

.button-light:active {
  background-color: var(--backDarkColor);
  color: white;
}

.button-light span {
  z-index: 2;
  position: relative;
}

.benefit-item {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

@media (max-width: 767px) {
  .benefit-item {
    padding-top: 10px;
    flex-direction: row;
    column-gap: 20px;
    align-items: flex-start;
    text-align: left;
  }
}

.wrap_img_benefit {
  width: fit-content;
  transition: all 0.5s ease-out;
}

.wrap_img_benefit:hover {
  transform: scale(1.02);
}

.wrap_img_benefit img {
  object-fit: contain;
  height: 250px;
  width: 250px;
  border: 3px solid var(--accentColor);
  border-radius: 50%;
  margin-bottom: 40px;
}

.wrap_img_benefit img:hover {
  box-shadow: 0 0 15px rgba(96, 96, 96, 0.5);
  border-color: transparent;
}

@media (max-width: 767px) {
  .wrap_img_benefit img {
    object-fit: contain;
    height: 100%;
    width: 100%;
  }
}

.wrap_img_benefit {
  text-align: center;
}

.section-about h4 {
  padding-bottom: 30px;
}

.about-illustration {
  width: 100%;
  height: 100%;
  background-image: url("../images/about_block.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.about-illustration_stir {
  background-image: url("../images/stiralka.png");
}

.about-illustration2 {
  min-height: 500px;
  width: 100%;
  height: 100%;
  background-image: url("../images/floor_block.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

@media (max-width: 500px) {
  .about-illustration {
    min-height: 400px;
  }

  .about-illustration2 {
    min-height: 400px;
  }

  .about-illustration_stir {
    min-height: 350px;
  }
}

.back-color {
  background-color: var(--backColor2);
  padding: 70px 0;
}

.gallery {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
}

.gallery > * {
  flex: 1;
  min-width: 30%;
  height: 350px;
}

@media (max-width: 767px) {
  .gallery > * {
    min-width: 45%;
    max-height: 250px;
  }

  .gallery {
    gap: 15px;
  }
}

@media (max-width: 500px) {
  .gallery > * {
    min-width: 90%;
    max-height: 250px;
  }
}

.gallery div:has(img) {
  overflow: hidden;
  border: 3px solid transparent;
}

.gallery div:has(img):hover {
  border: 3px solid var(--accentColor);
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.4);
}

.gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  cursor: pointer;
  transition: transform 0.5s ease;
}

.gallery img:hover {
  transform: scale(1.02, 1.02);
}

.popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  justify-content: center;
  align-items: center;
  z-index: 100;
}

.popup-wrap {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 80%;
}

.popup img {
  border: 8px solid #fff;
  height: 100%;
  width: 100%;
  object-fit: cover;
  background-color: white;
}

.popup .caption {
  color: white;
  text-align: center;
  margin-top: 10px;
}

.popup .close {
  display: block;
  position: absolute;
  float: right;
  top: -10px;
  right: -30px;
  font-size: 36px;
  color: rgb(255, 255, 255);
  cursor: pointer;
  opacity: 0.7;
  -webkit-transition: opacity 0.2s;
  -moz-transition: opacity 0.2s;
  -o-transition: opacity 0.2s;
  transition: opacity 0.3s;
}

@media (max-width: 768px) {
  .popup-wrap {
    width: 85%;
  }

  .popup img {
    width: 100%;
  }

  .popup .close {
    top: -10px;
    right: -20px;
    font-size: 24px;
  }
}

.close:hover,
.close:focus {
  color: #bbb;
  text-decoration: none;
  cursor: pointer;
}

.section {
  margin-top: 80px;
}

@media (max-width: 990px) {
  .section {
    margin-top: 50px;
  }

  .back-color {
    padding: 40px 0;
  }
}

.sticky-header {
  transition: all 0.4s ease-out;
  -webkit-transition: all 0.4s ease-out;
  -moz-transition: all 0.4s ease-out;
  -ms-transition: all 0.4s ease-out;
  -o-transition: all 0.4s ease-out;
}

.sticky-header.sticky-show {
  animation-name: a !important;
}

.sticky-header.sticky {
  background-color: white;
  box-shadow: 0 10px 10px -10px rgba(0, 0, 0, 0.2);
  position: fixed;
  left: 0;
  top: 0 !important;
  width: 100%;
  z-index: 59;
  transition: all 0.4s ease-out;
  -webkit-transition: all 0.4s ease-out;
  -moz-transition: all 0.4s ease-out;
  -ms-transition: all 0.4s ease-out;
  -o-transition: all 0.4s ease-out;
}

.footer-area {
  background-color: var(--footerColorDark);
  padding: 50px 0;
  color: white;
}

@media (max-width: 500px) {
  .footer-area {
    padding: 20px 0 50px 0;
  }
}

.footer-area ul {
  padding-left: 0;
}

.footer-area li {
  list-style: none;
  padding-bottom: 5px;
}

.footer-area li p,
.footer-area li a {
  color: var(--accentColor);
  text-decoration: none;
}

.footer-area li a:hover {
  color: var(--accentColorDark);
}

.footer-area li p img,
.footer-area li a img {
  height: 28px;
  width: 28px;
  margin-right: 6px;
}

.footer-area .footer-main .footer1 .col-12 {
  padding-top: 30px;
}

.footer-menu {
  font-size: 18px;
}

.footer-menu ul li a {
  color: white;
  border-bottom: 2px solid transparent;
  padding: 5px 0;
}

.footer-menu ul li a:hover {
  color: white;
  border-bottom: 2px solid white;
}

.footer-buttons-block {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 50px;
  border-top: 1px solid #e0e0e0;
  padding-top: 30px;
  padding-bottom: 30px;
}

@media (max-width: 450px) {
  .footer-buttons-block {
    gap: 20px;
    border-top: 0;
    padding-top: 0;
    padding-bottom: 30px;
  }
}

.input-field {
  padding: 16px 32px;
  background-color: white;
  border-radius: 2px;
  border: 1px solid var(--borderLightColor);
  max-width: 300px;
}

.request-call-form {
  text-align: center;
  text-align: -webkit-center;
}

.request-call-form input,
.request-call-form button {
  width: 240px;
}

@media (max-width: 500px) {
  .request-call-form input,
  .request-call-form button {
    width: 100%;
    max-width: 100%;
  }
}

.modal-body {
  padding: 40px;
}

form textarea,
form input {
  background: #f0f0f0;
  border-radius: 3px;
  padding: 8px 16px;
  border: 0;
  width: 100%;
}

form button {
  display: block;
  margin-top: 20px;
  min-width: 200px;
  width: 100%;
}

@media (max-width: 767px) {
  form button {
    margin-top: 0;
  }
}

.section-contacts h6 {
  font-size: 22px;
  font-family: RalewayRegular, sans-serif;
  color: var(--accentColorDarker);
  margin-bottom: 10px;
  margin-top: 20px;
  font-weight: 700;
}

.section-contacts .contacts-block img {
  margin-right: 10px;
  height: 28px;
  width: 28px;
}

.section-contacts .contacts-block.social img {
  margin-right: 20px;
  height: 36px;
  width: 36px;
}

@media (max-width: 500px) {
  .section-contacts h6 {
    font-size: 18px;
    margin-top: 40px;
  }

  .section-contacts h4 {
    font-size: 18px;
  }
}

.section-contacts iframe {
  width: 100%;
  height: 100%;
  border-radius: 3px;
  min-height: 300px;
}

.header-menu-btn-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}

.header-menu-btn {
  background-color: transparent;
  border: none;
  margin: 0 10px 0 10px;
  padding: 0;
  display: none;
}

@media only screen and (max-width: 767px),
  only screen and (min-width: 768px) and (max-width: 991px) {
  .header-menu-btn {
    display: inline-block;
  }
}

.header-menu-btn span {
  background-color: var(--textColorDefault);
  width: 20px;
  height: 2px;
  display: block;
  margin-bottom: 4px;
  border-radius: 50px;
}

.header-menu-btn span:last-child {
  margin-bottom: 0;
}

/*.offcanvas {
  z-index: 110;
}*/

.btn-menu-close {
  color: var(--accentColorDark);
  padding: 10px 20px;
  border: 0;
  font-size: 18px;
  background-color: transparent;
}

.btn-menu-close i {
  margin-left: 10px;
}

.offcanvas-body ul {
  padding-left: 0;
}

.offcanvas-body ul li ul {
  margin-left: 20px;
  margin-top: 10px;
}

.offcanvas-body ul li {
  list-style: none;
}

.offcanvas-body ul li img {
  width: 32px;
  height: 32px;
  margin-right: 10px;
}

.offcanvas-nav-parent,
.offcanvas-nav-parent a {
  text-decoration: none;
  color: var(--textColorDefault);
  padding-top: 10px;
  padding-bottom: 10px;
}

.header-mobile {
  text-align: left;
  height: var(--headerHeight);
}

.header-mobile .logo {
  width: 200px !important;
  margin: 0 0 0 20px;
}

@media (max-width: 500px) {
  .header-mobile .logo {
    width: 120px !important;
  }
}

.header-mobile .justify-content-end {
  display: flex;
  justify-content: flex-end;
}

.header-mobile .header-button {
  padding: 8px 16px;
  font-size: 15px;
  height: auto;
  margin-right: 0;
}

.header-mobile .header-contacts {
  padding-left: 20px;
  gap: 15px;
  justify-content: flex-end;
}

@media (max-width: 990px) {
  .header-mobile .header-contacts {
    padding-left: 0;
  }
}

.header-mobile .header-contacts a img {
  width: 24px;
  height: 24px;
}

.header-mobile .row > * {
  padding-right: 5px;
  padding-left: 5px;
}

.d-sm-none {
  display: inherit !important;
}

@media (max-width: 991px) {
  .d-sm-none {
    display: none !important;
  }
}

.section-single-service img.service-photo {
  width: 100%;
  height: 300px;
  object-fit: contain;
}

@media (max-width: 995px) {
  .section-single-service img.service-photo {
    width: 100%;
    height: 200px;
    object-fit: contain;
  }
}

.section-single-service h4 {
  color: #404040;
  line-height: 1.3;
}

.section-single-service h3 {
  margin-top: 30px;
  color: #000000;
}

.section-stages ul,
.section-single-service ul {
  list-style-image: url("../images/icons/icon-arrow-right.svg");
}

.section-stages li,
.section-single-service li {
  font-size: 18px;
  color: #404040;
  margin: 10px 0;
  padding-left: 10px;
}

@media (max-width: 450px) {
  .section-stages li,
  .section-single-service li {
    font-size: 15px;
    color: #404040;
    margin: 10px 0;
    padding-left: 10px;
  }
}

.contacts-row {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.footer-contacts .button-light {
  margin-top: 40px;
}

.contacts-row img {
  height: 28px;
  width: 28px;
  margin-right: 15px;
}

.contacts-row img.social {
  height: 32px;
  width: 32px;
}

.contacts-row p,
a.contacts-row,
.contacts-row a {
  font-size: 20px;
  font-weight: normal;
  text-decoration: none;
  display: flex;
  align-items: center;
  margin-bottom: 0;
  font-family: "RobotoCondensed", sans-serif;
  font-weight: normal;
}

a.contacts-row:hover,
.contacts-row a:hover {
  color: var(--accentColor);
}

form div:has(textarea),
form div:has(input) {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
  min-width: 150px;
}

.form-row {
  display: flex;
  gap: 15px;
  margin-top: 20px;
  flex-wrap: wrap;
  flex-direction: row;
}

.form-column {
  display: flex;
  gap: 15px;
  margin-top: 20px;
  flex-wrap: wrap;
  flex-direction: column;
}

ol,
ul {
  padding-left: 1.2rem;
}

ol li,
ul li {
  margin-bottom: 0.3rem;
}

.a-scroll-overhead.a-scroll-overhead {
  margin-top: -100px;
  padding-top: 100px;
}

.header-back-placeholder {
  position: absolute;
  background-color: var(--accentColorDarker);
  right: 0;
  width: 30%;
  z-index: -1;
}

.offcanvas-menu-nav .header-phones {
  justify-content: flex-start;
  align-items: flex-start;
  margin-bottom: 20px;
  margin-top: 40px;
}

.offcanvas-menu-nav .header-phones a {
  font-family: RobotoBold, sans-serif;
  font-weight: normal;
  font-size: 1.2rem;
  color: var(--accentColor);
  display: flex;
  align-items: center;
  column-gap: 10px;
}

.off-canvas-wrapper.offcanvas.offcanvas-start.show {
  height: 100vh;
}

.offcanvas-body {
  position: relative;
  padding: 1rem 2rem;
}

.buttons-row {
  display: flex;
  gap: 50px;
  align-items: center;
}

@media (max-width: 500px) {
  .buttons-row {
    margin-top: 20px;
    display: flex;
    gap: 10px;
    flex-direction: column;
  }
}

.footer-main .footer-contacts p b {
  color: white;
}

.offcanvas-header {
  display: flex;
  justify-content: space-between;
}

.offcanvas-header .language-selector a {
  color: white;
  padding: 5px;
}

.offcanvas-header a.current,
.language-selector a.current {
  color: var(--accentColor);
  pointer-events: none;
  cursor: default;
}

.contacts-block-wrapper {
  height: 100%;
  display: flex;
  align-items: center;
  position: absolute;
  left: 50%;
  margin-left: -700px;
  top: 0;
  z-index: 10;
  width: 90%;
  max-width: 460px;
}

.contacts-block {
  background-color: #fffffff0;
  padding: 40px;
  overflow: hidden;
  border-radius: 56px;
  z-index: 2;
  -webkit-box-shadow: 0 5px 20px 0 rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 0 5px 20px 0 rgba(0, 0, 0, 0.3);
  box-shadow: 0 5px 20px 0 rgba(0, 0, 0, 0.3);
}

@media (max-width: 1280px) {
  .contacts-block-wrapper {
    max-width: 400px;
  }

  .contacts-block {
    padding: 20px;
  }
}

@media (max-width: 500px) {
  .contacts-block-wrapper {
    max-width: 340px;
  }

  .contacts-block {
    border-radius: 32px;
  }
}

@media (max-width: 990px) {
  .section .contacts-block-wrapper {
    height: auto;
    display: flex;
    align-items: center;
    position: static;
    margin-left: 0;
    width: 100%;
    max-width: 100%;
  }

  .section .contacts-block {
    background-color: #fffffff0;
    padding: 40px 20px;
    border-radius: 0;
    z-index: 2;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
  }

  .section .contacts-block button {
    max-width: 340px;
  }
}

.contacts-social {
  display: flex;
  column-gap: 20px;
  align-items: center;
  margin-top: 20px;
}

.contacts-social img {
  width: 48px;
  height: 48px;
}

.fade {
  backdrop-filter: blur(20px);
}

.modal-content {
  border: 0;
  border-radius: 4px;
}

form textarea,
form input {
  background: #f0f0f0;
  border: 0;
  width: 100%;

  padding: 15px 15px;
  color: black;
  font-family: RalewayRegular, sans-serif;
  font-weight: normal;
  font-size: 16px;
  border-radius: 4px;
}

@media (max-width: 767px) {
  form textarea,
  form input {
    padding: 10px;
  }
}

input,
textarea {
  margin-bottom: 20px;
}

footer .requisites {
  color: white;
  opacity: 0.7;
  font-family: "RobotoCondensed", sans-serif;
  font-weight: normal;
  font-size: 16px;
}

footer p.logo-desc {
  color: var(--accentColor);
  font-family: RalewayRegular, sans-serif;
  font-weight: normal;
  font-size: 14px;
  margin-bottom: 0;
}

.footer-logo-block {
  display: flex;
  flex-direction: column;
  row-gap: 10px;
  align-items: center;
}

.footer-logo-block img {
  width: fit-content;
}

header .logo-block p {
  line-height: 1.1;
  color: var(--accentColor);
  font-family: "RalewayRegular", sans-serif;
  font-weight: normal;
  font-size: 20px;
}

img.logo {
  object-fit: contain;
}

.header-area .header-mobile {
  padding: 0 10px;
}

#AsideOffcanvasMenu {
  background-color: white;
}

div.wrapper {
  overflow-x: hidden;
}

.hero-frame a img {
  height: 60px;
  width: 60px;
}

.hero-instagram-button {
  font-size: 14px;
  font-family: "RalewayBold", sans-serif;
  color: var(--accentColor);
  display: flex;
  flex-direction: column;
}

a.hero-instagram-button:hover {
  color: white;
}

.hero-frame a.hero-instagram-button img {
  width: 36px;
  height: 36px;
}

/*.modal {
  z-index: 100;
}*/

form {
  display: flex;
  flex-direction: column;
}

form h4 {
  margin: 0 0 30px 0;
}

@media (max-width: 767px) {
  form h4 {
    margin: 0 0 10px 0;
  }

  .section-contacts .form-block {
    margin-top: 20px;
  }
}

/*Секция Наши преимущества*/
.section-benefit {
  margin-top: 60px;
}

.offcanvas-body .header-phones a {
  display: flex;
  align-items: center;
  column-gap: 10px;
}

.offcanvas-body .header-phones img {
  width: 28px;
  height: 28px;
}

.offcanvas-body .header-phones {
  row-gap: 15px;
}

.dialog-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #00000080;
  z-index: 100;
}

.error-dialog {
  background-color: white;
  padding: 30px;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  width: 320px;
}

.dialog-button {
  border-radius: 0;
  border: 2px solid var(--accentColor);
  padding: 10px 32px 12px 32px;
  text-align: center;
  width: fit-content;
  align-self: flex-end;
  margin-top: 10px;
  background-color: transparent;
  outline: none;
}

.dialog-button:hover {
  background-color: var(--accentColor);
  border: 2px solid var(--accentColor);
  color: white;
}

.dialog-button,
.error-dialog-message {
  font-size: 16px;
}

@media (max-width: 767px) {
  .dialog-button,
  .error-dialog-message {
    font-size: 12px;
  }
}

/*Отзывы карусель*/
.carousel {
  display: flex;
  justify-content: center;
  /*width: 100%;*/
  position: relative;
  margin: 40px;
}

.bttn {
  position: absolute;
  top: 50%;
  transform: translateY(-24px);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: var(--accentColor);
  z-index: 5;
  border: none;
}

.bttn-check:checked + .bttn,
.bttn.active,
.bttn.show,
.bttn:first-child:active,
:not(.bttn-check) + .bttn:active {
  background-color: var(--backDarkColor);
}

.bttn:hover {
  background-color: var(--backDarkColor);
}

.dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-top: clamp(40px, 20vw, 70px);
}

.dot {
  cursor: pointer;
  height: 10px;
  width: 10px;
  border-radius: 50%;
  background-color: var(--backDarkColor);
  transition: background-color 0.2s ease;
}

.dot:hover {
  background-color: var(--accentColor);
}

span.dot.active {
  background-color: var(--accentColor);
  outline: 2px solid var(--accentColor);
  outline-offset: 3px;
}

.item {
  opacity: 0;
  display: none;
  transition: opacity 0.5s ease-in-out;
}

.active {
  opacity: 1;
  display: block;
}

.slider-inner {
  display: flex;
  flex-direction: column;
}

.slider-inner .podpis {
  font-family: "RobotoCondensed", sans-serif;
  font-size: 1rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 10px;
  font-weight: 500;
  text-transform: uppercase;
}

.slider-inner .opinion-text {
  font-family: "Raleway", sans-serif;
  font-weight: normal;
  color: var(--textColorDefault);
  text-align: center;
  font-size: 0.875rem;
  margin-bottom: 0;
}

.slider-inner p.text {
  font-family: "Raleway", sans-serif;
  font-weight: normal;
  font-style: italic;
  text-align: center;
  margin-bottom: 20px;
}

.slider-inner {
  position: relative;
  padding-top: 40px;
}

.slider-inner * {
  position: relative;
  z-index: 2;
}

.slider {
  position: relative;
}

.slider-inner::before {
  position: absolute;
  content: "”";
  font-family: "Raleway", sans-serif;
  font-size: 300px;
  font-weight: bold;
  color: var(--textColorLight);
  opacity: 0.1;
  top: -100px;
  /*right: 30%;*/
  right: 0;
  z-index: 10;
}

.slider:after {
  content: "";
  z-index: 1;
  position: absolute;
  top: -40px;
  height: calc(100% + 80px);
  left: -60px;
  width: calc(100% + 120px);
  background-color: var(--backColor);
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(96, 96, 96, 0.4);
}

.bttn-check:focus + .bttn,
.bttn:focus {
  outline: 0;
  box-shadow: 0 0 0 0.25rem hsla(0, 100%, 70%, 0);
}

@media (max-width: 990px) {
  .bttn {
    width: 30px;
    height: 30px;
    top: 100%;
  }

  .bttn img {
    width: 16px;
  }
}

.prev {
  left: 0;
}

.next {
  right: 0;
}

.builder {
  background-image: url(../images/builder.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: right bottom;
  height: 355px;
}

.scroll-to-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  padding: 10px 12px;
  background-color: var(--accentColor);
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 18px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.scroll-to-top:hover {
  background-color: var(--footerColorDark);
}

.section-contacts {
  background-image: url(../images/builder.png);
  background-position: right bottom;
  background-repeat: no-repeat;
  background-size: contain;
  padding-bottom: 70px;
}

@media (max-width: 767px) {
  .builder {
    height: 250px;
    background-position: center bottom;
    margin-top: 20px;
  }

  .footer-area {
    margin-top: 0;
  }

  .footer-logo-block img {
    height: 30px;
  }

  .hero-box {
    height: 550px;
    justify-content: space-between;
  }

  .section-hero {
    background-position: 60% center;
  }
}

@media (991px<width<1060px) {
  .header-navigation a {
    font-size: 15px;
  }
}

@media (max-width: 991px) {
  .footer-area {
    margin-top: 0;
  }

  .section-contacts {
    background-image: none;
  }
}

.button-call {
  font-family: "Raleway";
  font-weight: 500;
}

.hero-box a.button-call:hover {
  border-radius: 0;
}
