/*
    Theme Name: COATLINE
    Author: Daria T.
*/

* {
  padding: 0;
  margin: 0;
  border: none;
}
*,
*::after,
*::before {
  box-sizing: border-box;
}
a {
  text-decoration: none;
}
a,
a:link,
a:visited {
  text-decoration: none;
}
a:hover {
  text-decoration: none;
}
aside,
footer,
header,
main,
nav,
section {
  display: block;
}
h1,
h2,
h3,
h4,
h5,
h6,
p {
  font-size: inherit;
  font-weight: inherit;
}
ul,
ul li {
  list-style: none;
}
img {
  vertical-align: top;
}
img,
svg {
  max-width: 100%;
  height: auto;
}
address {
  font-style: normal;
}
button,
input,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background-color: rgba(0, 0, 0, 0);
}
input::-ms-clear {
  display: none;
}
button,
input[type="submit"] {
  display: inline-block;
  box-shadow: none;
  background-color: rgba(0, 0, 0, 0);
  background: 0 0;
  cursor: pointer;
}
button:active,
button:focus,
input:active,
input:focus {
  outline: 0;
}
button::-moz-focus-inner {
  padding: 0;
  border: 0;
}
label {
  cursor: pointer;
}
legend {
  display: block;
}
:root {
  /* --text-color: #1f2326; */
  /* --blue-color: #5c6bc0; */
  --red-color: #f1573d;
  --white-color: #ffffff;
  --active-color: #fa6316;
  --grey-color: #929292;
  /* --yellow-color: #ffcd2d; */
}
body,
html {
  height: 100%;
  font-family: Montserrat, sans-serif;
  font-weight: 400;
  color: var(--text-color);
}
html {
  scroll-behavior: smooth;
}
.wrapper {
  height: 100vh;
  display: flex;
  flex-direction: column;
}
.wrapper-container {
  flex: 1 1 auto;
}
[class*="__container"] {
  max-width: 1330px;
  margin: 0 auto;
  padding: 0 15px;
}
.contact-page .contacts {
  padding-top: 50px;
}
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0);
}
::-webkit-scrollbar-thumb {
  background: #969696;
  border-radius: 20px;
}
::-webkit-scrollbar-thumb:hover {
  background: #969696;
}
* {
  scrollbar-width: thin;
  scrollbar-color: #969696 transparent;
}
.fancybox__container {
  z-index: 99999;
  max-width: 100%;
  padding: 0;
  margin: 0;
}
.fancybox__thumbs .carousel__slide .fancybox__thumb::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-width: 2px;
  border-style: solid;
  border-color: var(--primary-color);
  opacity: 0;
  transition: opacity 0.15s ease;
  border-radius: 4px;
}
.fancybox__nav {
  display: none;
}
.up {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: #1f2326;
  border: 2px solid var(--white-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.3s;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
}
.up.show {
  opacity: 1;
  visibility: visible;
}
.up:hover {
  background: var(--accent-color);
}
.up i {
  color: var(--white-color);
  font-size: 16px;
}

.header {
  position: absolute;
  background-color: var(--white-color);
  width: 100%;
  z-index: 999;
}
.header.slidedown {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99999;
  -webkit-animation: slidedown 0.7s forwards;
  animation: slidedown 0.7s forwards;
  box-shadow: rgba(149, 157, 165, 0.2) 0 8px 24px;
  background-color: var(--white-color);
}
@-webkit-keyframes slidedown {
  from {
    top: -250px;
  }
  to {
    top: 0;
  }
}
@keyframes slidedown {
  from {
    top: -250px;
  }
  to {
    top: 0;
  }
}
.header__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 7px 0;
}
.header__top::after {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  min-height: 38px;
  content: "";
  background-color: var(--primary-color);
  z-index: 0;
}
.header__details {
  display: flex;
  align-items: center;
  gap: 20px;
  z-index: 1;
}
.header__details * {
  color: var(--white-color);
  font-size: 14px;
}
.header__details a:hover {
  color: var(--accent-hover-color);
}
.header__details i {
  margin-right: 8px;
}
.header__details p {
  display: flex;
  align-items: center;
  gap: 5px;
}
.header__social {
  display: flex;
  align-items: center;
  gap: 15px;
  z-index: 1;
}
.header__social * {
  color: var(--white-color);
  font-size: 20px;
  transition: color 0.1s ease-in-out;
}
.header__social *:hover {
  color: var(--accent-hover-color);
}
.header__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 0;
}
.header .menu__list {
  display: flex;
  align-items: center;
  gap: 25px;
  z-index: 1;
}
.header .menu__list * {
  font-style: normal;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  font-family: Montserrat, sans-serif;
  color: var(--text-color);
}
.header .menu__list *:hover {
  color: var(--accent-hover-color);
}
.header .menu__list * a.active {
  color: var(--accent-hover-color);
  border-bottom: 2px solid var(--accent-hover-color);
}

.header .menu__list li.active > a {
  color: var(--accent-hover-color);
  border-bottom: 2px solid var(--accent-hover-color);
}

.header .burger-menu,
.header .close {
  display: none;
  cursor: pointer;
}
.header .burger-menu i {
  color: var(--text-color);
}
.head {
  background-color: #f6f6f6;
  margin-top: 110px;
}
.head__blocks {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between;
  -webkit-column-gap: 20px;
  -moz-column-gap: 20px;
  column-gap: 20px;
  row-gap: 5px;
  padding: 35px 0;
}
.head__blocks h1 {
  font-style: normal;
  font-weight: 500;
  font-size: 23px;
  line-height: 1.44;
  font-family: Montserrat, sans-serif;
  letter-spacing: 0;
  color: var(--text-color);
  text-transform: uppercase;
}
.head .breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  -webkit-column-gap: 10px;
  -moz-column-gap: 10px;
  column-gap: 10px;
}
.head .breadcrumbs__browse {
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.75;
  font-family: Roboto, sans-serif;
  letter-spacing: 0;
  color: var(--text-color);
  opacity: 0.7;
}
.head .breadcrumbs__wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 7px;
}
.head .breadcrumbs__item {
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.75;
  font-family: Roboto, sans-serif;
  letter-spacing: 0;
  color: var(--text-color);
  opacity: 0.7;
}
.breadcrumbs a {
  color: #79787f !important;
  transition: color 0.1s ease-in-out;
}
.breadcrumbs a:hover {
  color: var(--text-color) !important;
}
.head .breadcrumbs__item-target {
  text-decoration: underline;
  max-width: 200px;
  display: inline-block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 100%;
  margin-bottom: -1px;
}
.footer {
  background: #1f2326;
  z-index: 9;
}
.footer .main__info {
  margin-top: 0;
  margin-bottom: 0;
  padding: 0;
  border-bottom: none;
}
.footer .logo {
  font-size: 25px;
  color: var(--accent-color);
  font-family: Montserrat, sans-serif;
  font-weight: 700;
  letter-spacing: 1.2px;
}
.footer * {
  color: var(--white-color);
}
.footer .footer-details__blocks {
  padding: 64px 0;
  display: flex;
  justify-content: space-between;
  gap: 60px;
}
.footer .footer-details__left {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.footer .footer-details .footer-menu__list {
  display: flex;
  flex-wrap: wrap;
  row-gap: 12px;
  -webkit-column-gap: 24px;
  -moz-column-gap: 24px;
  column-gap: 24px;
  max-width: 400px;
  width: 100%;
}
.footer .footer-details .footer-menu__list * {
  color: var(--white-color);
  font-family: Montserrat, sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  transition: color 0.1s ease-in-out;
}
.footer .footer-details .footer-menu__list *:hover {
  color: var(--accent-hover-color);
}
.footer .footer-details__right {
  display: flex;
  align-items: start;
  gap: 60px;
}
.footer .footer-details__info {
  display: flex;
  flex-direction: column;
  align-items: end;
  text-align: right;
  gap: 24px;
}
.footer .footer-details .social {
  display: flex;
  align-items: center;
  gap: 20px;
}
.footer .footer-details .social svg {
  color: var(--white-color);
  height: 24px;
  width: 24px;
  transition: -webkit-transform 0.1s ease-in-out;
  transition: transform 0.1s ease-in-out;
  transition:
    transform 0.1s ease-in-out,
    -webkit-transform 0.1s ease-in-out;
  background-color: rebeccapurple;
}

.footer .footer-details .social a {
  transition: -webkit-transform 0.1s ease-in-out;
  transition: transform 0.1s ease-in-out;
  transition:
    transform 0.1s ease-in-out,
    -webkit-transform 0.1s ease-in-out;
}

.footer .footer-details .social a i {
  transition: -webkit-transform 0.1s ease-in-out;
  transition: transform 0.1s ease-in-out;
  transition:
    transform 0.1s ease-in-out,
    -webkit-transform 0.1s ease-in-out;
  color: var(--white-color);
  font-size: 20px;
}

.footer .footer-details .social a:hover,
.footer .footer-details .social a:hover {
  -webkit-transform: scale(0.9);
  transform: scale(0.9);
}
.footer .footer-details .social-link {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.footer .footer-details .social-link * {
  font-family: Montserrat, sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: var(--white-color);
  line-height: 20px;
}
.footer .footer-details .social-link a {
  transition: color 0.1s ease-in-out;
}
.footer .footer-details .social-link a:hover {
  color: var(--accent-hover-color);
}
.footer .schedule {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.footer .schedule h3 {
  font-family: Montserrat, sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  color: var(--white-color);
}
.footer .schedule__list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer .schedule__item {
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer .schedule * {
  font-family: Montserrat, sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: var(--white-color);
}
.footer .schedule span {
  color: var(--white-color);
}
.main {
  background-size: cover;
  background-position: bottom;
  background-repeat: no-repeat;
  min-height: 800px;
  position: relative;
}

.main__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: bottom;
  background-repeat: no-repeat;
  z-index: 0;
  object-fit: cover;
}
.main__blocks {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 20px;
  padding-top: 200px;
  z-index: 9;
}
.main__blocks h1 {
  color: var(--white-color);
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 1px;
  font-size: 60px;
  max-width: 780px;
  width: 100%;
}
.main__blocks h1 strong {
  color: var(--accent-color);
  font-weight: 600;
}
.main__blocks .descript a,
.main__blocks .descript {
  color: rgba(255, 255, 255, 0.712) !important;
  font-weight: 400;
  font-size: 16px;
  max-width: 780px;
  line-height: 23px;
  width: 100%;
}

.main__blocks .descript a {
  text-decoration: underline;
  transition: color 0.1s ease-in-out;
}

.main__blocks .descript a:hover {
  color: var(--accent-hover-color) !important;
}
.main__blocks .btns {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 30px;
}
.main__blocks .btns .btn {
  font-family: Montserrat, Sans-serif;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  line-height: 1.3em;
  letter-spacing: 0.48px;
  color: var(--white-color);
  border: 2px solid var(--white-color);
  border-radius: 2px 2px 2px 2px;
  padding: 17px 37px 17px 37px;
  text-align: center;
}
.main__blocks .btns .btn-about {
  transition: all 0.2s ease-in-out;
}
.main__blocks .btns .btn-about:hover {
  border: 2px solid var(--primary-color);
  background-color: var(--primary-color);
}
.main__blocks .btns .btn-services {
  background-color: var(--primary-color);
  border: 2px solid var(--primary-color);
  color: var(--white-color);
  transition: all 0.2s ease-in-out;
}
.main__blocks .btns .btn-services:hover {
  border: 2px solid var(--primary-hover-color);
  background-color: var(--primary-hover-color);
}
.consultation {
  position: relative;
  z-index: 9;
}
.consultation__blocks {
  padding: 40px 25px 30px 25px;
  background-color: var(--primary-color);
  margin: 0 10px;
  margin-top: -120px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.consultation__top {
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: center;
  margin-bottom: 20px;
}
.consultation__top h2 {
  font-family: Montserrat, Sans-serif;
  font-size: 32px;
  font-weight: 500;
  text-transform: uppercase;
  line-height: 1.3em;
  letter-spacing: 0.64px;
  color: var(--white-color);
  text-align: center;
}
.consultation__top .descript {
  color: var(--white-color);
}
.consultation-form__blocks {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 10px;
}

.consultation-form__blocks p {
  width: 100%;
}

.consultation-form__blocks input,
.consultation-form__blocks select {
  background-color: rgba(0, 0, 0, 0);
  border-style: solid;
  border-width: 1px 1px 1px 1px;
  border-color: var(--white-color);
  width: 100%;
  color: var(--white-color) !important;
  font-family: Roboto, Sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.64em;
  letter-spacing: 0;
  padding: 10px 10px;
}
.consultation-form__blocks input::-webkit-input-placeholder,
.consultation-form__blocks select::-webkit-input-placeholder {
  font-family: Roboto, Sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.64em;
  color: var(--white-color);
  letter-spacing: 0;
}
.consultation-form__blocks input:-ms-input-placeholder,
.consultation-form__blocks select:-ms-input-placeholder {
  font-family: Roboto, Sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.64em;
  color: var(--white-color);
  letter-spacing: 0;
}
.consultation-form__blocks input::-ms-input-placeholder,
.consultation-form__blocks select::-ms-input-placeholder {
  font-family: Roboto, Sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.64em;
  color: var(--white-color);
  letter-spacing: 0;
}
.consultation-form__blocks input::placeholder,
.consultation-form__blocks select::placeholder {
  font-family: Roboto, Sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.64em;
  color: var(--white-color);
  letter-spacing: 0;
}
.consultation-form__blocks option {
  color: #1f2326;
}
.consultation-form__blocks select {
  outline: 0;
  padding: 10px 10px;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  width: 100%;
  background-image: url('data:image/svg+xml;utf8,<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M6 9L12 15L18 9" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" stroke="white"/></svg>');
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 18px;
  color: var(--white-color);
  cursor: pointer;
}
.consultation-form__blocks .consultation-form__button {
  background-color: #1f2326;
  color: var(--white-color);
  text-decoration: none;
  max-width: 240px;
  width: 100%;
  font-weight: 500;
  padding: 13.5px 10px;
  font-size: 12px;
  height: 100%;
  font-family: Montserrat, sans-serif;
  transition: all 0.2s ease-in-out;
  text-transform: uppercase;
  border: 0px;
}
.consultation-form__blocks .consultation-form__button:hover {
  background-color: var(--white-color);
  color: #1f2326 !important;
}
.services {
  padding: 100px 0 60px 0;
}
.services__blocks {
  display: flex;
  flex-direction: column;
}
.services h2 {
  font-family: Montserrat, Sans-serif;
  font-size: 32px;
  font-weight: 500;
  text-transform: uppercase;
  line-height: 1.3em;
  letter-spacing: 0.64px;
  max-width: 640px;
  width: 100%;
  margin: 0 auto;
  text-align: center;
  margin-bottom: 40px;
}
.services h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 2px;
  background-color: var(--accent-color);
  margin: 20px auto 0;
}
.services__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  justify-content: space-between;
  gap: 25px;
}
.services__info {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 0 20px 0 10px;
}
.services__info h3 {
  font-family: Montserrat, Sans-serif;
  font-size: 20px;
  font-weight: 500;
  text-transform: uppercase;
  color: var(--text-color);
}
.services__info p {
  font-weight: 400;
  font-family: Montserrat, Sans-serif;
  font-size: 15px;
  color: var(--text-color);
  opacity: 0.7;
}
.services__img {
  min-height: 300px;
  height: 300px;
  overflow: hidden;
  margin-bottom: 23px;
}
.services__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.services__item .services__img img {
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition:
    transform 0.3s ease-in-out,
    -webkit-transform 0.3s ease-in-out;
}
.services__item:hover .services__img img {
  -webkit-transform: scale(1.2);
  transform: scale(1.2);
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition:
    transform 0.3s ease-in-out,
    -webkit-transform 0.3s ease-in-out;
}
.services .btn {
  font-family: Montserrat, Sans-serif;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  line-height: 1.3em;
  letter-spacing: 0.48px;
  color: var(--white-color);
  border: 2px solid var(--primary-color);
  background-color: var(--primary-color);
  border-radius: 2px 2px 2px 2px;
  padding: 15px 37px 15px 37px;
  text-align: center;
  max-width: 270px;
  width: 100%;
  margin: 0 auto;
  margin-top: 50px;
}
.services .btn-more {
  transition: all 0.2s ease-in-out;
}
.services .btn-more:hover {
  border: 2px solid var(--primary-hover-color);
  background-color: var(--primary-hover-color);
}
.about-us {
  background-size: cover;
  background-repeat: no-repeat;
  margin-top: 0;
  overflow: hidden;
}
.about-us__blocks {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.about-us__block {
  padding: 60px 0;
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 25px;
  max-width: 600px;
  width: 100%;
}
.about-us__top {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.about-us__top span {
  font-family: Montserrat, Sans-serif;
  font-size: 20px;
  font-weight: 500;
  text-transform: uppercase;
  color: var(--accent-hover-color);
}
.about-us__top h2 {
  font-family: Montserrat, Sans-serif;
  font-size: 35px;
  font-weight: 500;
  text-transform: uppercase;
  line-height: 1.3em;
  letter-spacing: 0.64px;
}
.about-us__info {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.about-us__info li,
.about-us__info p {
  font-weight: 400;
  font-family: Montserrat, Sans-serif;
  font-size: 16px;
  line-height: 1.5em;
  color: var(--text-color);
  opacity: 0.7;
}
.about-us__info ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.about-us__info li {
  position: relative;
  line-height: 1.3em;
  margin-left: 30px;
}
.about-us__info li::before {
  content: "";
  position: absolute;
  left: -17px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 5px;
  height: 5px;
  background-color: var(--text-color);
  border-radius: 100px;
}
.about-us__picture {
  z-index: 1;
  position: relative;
  min-height: 400px;
  height: 400px;
  max-width: 600px;
  width: 600px;
  width: 100%;
}
.about-us__picture img {
  z-index: 1;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.about-us__picture::after {
  content: "";
  position: absolute;
  top: 25px;
  left: 25px;
  width: 100%;
  z-index: -1;
  height: 100%;
  background-color: var(--primary-color);
}
.about-us .btn {
  font-family: Montserrat, Sans-serif;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  line-height: 1.3em;
  letter-spacing: 0.48px;
  color: #1f2326;
  border: 1px solid #1f2326;
  border-radius: 2px 2px 2px 2px;
  padding: 17px 37px 17px 37px;
  text-align: center;
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 10px;
}
.about-us .btn-about {
  transition: all 0.1s ease-in-out;
}
.about-us .btn-about i {
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition:
    transform 0.3s ease-in-out,
    -webkit-transform 0.3s ease-in-out;
}
.about-us .btn-about:hover {
  background-color: var(--primary-hover-color);
  border: 1px solid var(--primary-hover-color);
  color: var(--white-color);
}
.about-us .btn-about:hover i {
  -webkit-transform: translateX(3px);
  transform: translateX(3px);
}
.advantages {
  position: relative;
  padding-top: 50px;
}
.advantages__container {
  max-width: 1500px;
  width: 100%;
  margin: 0 auto;
  margin: 0 auto;
}
.advantages__blocks {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.advantages__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  row-gap: 70px;
  justify-items: center;
}
.advantages__icon {
  width: 150px;
  height: 150px;
  margin: 0 auto;
  margin-bottom: 20px;
}
.advantages__item {
  display: flex;
  flex-direction: column;
  text-align: center;
  max-width: 350px;
  width: 100%;
}
.advantages__item h3 {
  margin-bottom: 16px;
  font-family: Montserrat, Sans-serif;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.3em;
  color: var(--text-color);
}
.advantages__item .descript {
  font-family: Montserrat, Sans-serif;
  font-weight: 400;
  line-height: 1.5em;
  color: var(--text-color);
  opacity: 0.7;
}
.baner {
  background-color: var(--primary-color);
  margin-top: 100px;
  padding: 70px 0 80px 0;
  position: relative;
}
.baner::after {
  position: absolute;
  right: 0;
  top: 0;
  width: 50%;
  height: 100%;
  content: "";
  background-image: url(../img/main/brush.webp);
  background-repeat: no-repeat;
  background-size: cover;
  z-index: 0;
}
.baner__blocks {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  text-align: center;
  z-index: 9;
  position: relative;
}
.baner__blocks h2 {
  font-family: Montserrat, Sans-serif;
  font-size: 46px;
  font-weight: 500;
  line-height: 1.3em;
  letter-spacing: 0;
  color: var(--white-color);
}
.baner__blocks .btn-contacts {
  font-family: Montserrat, Sans-serif;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  line-height: 1em;
  letter-spacing: 0.48px;
  color: var(--white-color);
  background-color: rgba(92, 107, 192, 0);
  border: 2px solid var(--white-color);
  border-radius: 2px 2px 2px 2px;
  padding: 17px 37px 17px 37px;
  transition: all 0.2s ease-in-out;
}
.baner__blocks .btn-contacts:hover {
  background-color: var(--white-color);
  color: var(--text-color);
}
.result__blocks {
  padding: 80px 0 40px 0;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.result__top {
  display: flex;
  flex-direction: column;
  text-align: center;
  gap: 8px;
}
.result__top h2 {
  font-family: Montserrat, Sans-serif;
  font-weight: 500;
  font-size: 40px;
  line-height: 110%;
  text-align: center;
  color: var(--black-color);
}
.result__wrapper {
  max-width: 930px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 32px;
}
.result__pictures {
  display: flex;
  gap: 8px;
  position: relative;
}
.result__pictures .after,
.result__pictures .before {
  border: 2px solid #323e4a;
  border-radius: 8px;
  overflow: hidden;
  min-height: 385px;
  height: 385px;
  width: 385px;
}
.result__pictures .after img,
.result__pictures .before img {
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.result .after-before {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  border: 2px solid #1b2936;
  background: var(--white-color);
  font-family: Helvetica;
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  color: var(--black-color);
  border-radius: 8px;
  padding: 2px 8px;
}
.result__arrow {
  min-width: 40px;
  height: 40px;
  padding: 12px;
  border: 1px solid #1b2936;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  transition: background-color 0.1s ease-in-out;
}
.result__arrow:hover {
  background-color: var(--primary-hover-color);
  color: var(--white-color);
  border: 1px solid var(--primary-hover-color);
}

.rating {
  padding: 0 0 40px 0;
}
.rating__blocks {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 40px 0;
  gap: 70px;
}
.rating__block {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
}
.rating__block h3 {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  font-size: 32px;
  line-height: 110%;
  text-align: center;
  color: var(--black-color);
}
.rating__block h3 span {
  color: var(--accent-color);
}
.rating__block .number {
  color: var(--black-color);
}
.rating__block p {
  font-weight: 400;
  font-size: 16px;
  color: var(--text-color);
  opacity: 0.7;
}
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.gallery__item {
  min-height: 370px;
  height: 370px;
}
.gallery__item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.gallery__item iframe {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.gallery .baner {
  margin: 0;
}
.gallery .baner::after {
  display: none;
}
.response__blocks {
  padding: 70px 0 20px 0;
  display: flex;
  flex-direction: column;
  gap: 50px;
}
.response__blocks h2 {
  font-family: Montserrat, Sans-serif;
  font-size: 32px;
  font-weight: 500;
  text-transform: uppercase;
  line-height: 1.3em;
  letter-spacing: 0.64px;
  max-width: 450px;
  width: 100%;
  margin: 0 auto;
  text-align: center;
}
.response-comment {
  color: var(--text-color);
  font-family: Roboto, Sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.64em;
  letter-spacing: 0;
  background-color: #f2f4f5;
  border-radius: 0;
  padding: 25px 15px 25px 15px;
  margin: 0 0 26px 0;
  align-self: flex-start;
  text-align: left;
  order: 3;
  position: relative;
}
.response-comment::after {
  content: "";
  position: absolute;
  left: 8%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10px 10px 0 10px;
  border-color: #f2f4f5 transparent transparent transparent;
  bottom: -10px;
}
.response-info {
  display: flex;
  align-items: center;
  gap: 15px;
}
.response-info p {
  color: var(--primary-color);
  font-family: Roboto, Sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.64em;
  letter-spacing: 0;
}
.response-info__author {
  min-width: 70px;
  width: 70px;
  min-height: 70px;
  height: 70px;
}
.response-info__detail {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.response-info .response-rating {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 14px;
  color: #ffcd2d;
}
.response__slider {
  width: 100%;
}
.response .swiper-wrapper {
  display: flex;
}
.response .swiper-pagination {
  position: relative;
  text-align: center;
  margin-top: 60px;
}
.response .swiper-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: #e7e7e7;
  opacity: 1;
  margin: 0 5px;
  border-radius: 50%;
  transition: all 0.3s;
}
.response .swiper-pagination .swiper-pagination-bullet-active {
  background: var(--accent-color);
  width: 20px;
  height: 10px;
  border-radius: 10px;
}
.faq {
  margin: 100px 40px;
}
.faq .faq__container {
  max-width: 1500px;
  width: 100%;
  margin: 0 auto;
  margin: 0 auto;
}
.faq * {
  font-family: Monsserat, sans-serif;
}
.faq__blocks {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 80px;
  height: 100% !important;
}
.faq .title {
  display: none;
}
.faq__left {
  display: flex;
  flex-direction: column;
  gap: 40px;
  justify-content: space-between;
  height: 100% !important;
  max-width: 400px;
  width: 100%;
}
.faq__details {
  min-height: 550px;
  padding: 24px 30px;
  border-radius: 33px;
  background-color: var(--accent-color);
  display: flex;
  flex-direction: column;
  gap: 23px;
  position: relative;
  overflow: hidden;
  flex-grow: 1;
}
.faq__details::after {
  position: absolute;
  height: 100%;
  width: 100%;
  content: "";
  background-image: url(./assets/img/main/faq-design.webp);
  background-repeat: no-repeat;
  background-size: cover;
}
.faq__details .pic {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 9;
}
.faq__details h2 {
  font-weight: 700;
  font-size: 32px;
  line-height: 116%;
  color: var(--white-color);
  max-width: 200px;
  width: 100%;
  position: relative;
  z-index: 99;
}
.faq__details p {
  font-weight: 400;
  font-size: 16px;
  line-height: 116%;
  color: var(--white-color);
  max-width: 180px;
  width: 100%;
  position: relative;
  z-index: 99;
}
.faq__details p span {
  font-weight: 700;
  font-size: 16px;
  line-height: 116%;
  color: var(--white-color);
}

.phone-wrapper {
  position: relative;
  min-width: 67px;
  max-width: 67px;
  width: 67px;
  min-height: 67px;
  height: 67px;
}

.phone-wrapper::before {
  content: "";
  position: absolute;
  width: 80px;
  height: 80px;
  background-color: var(--accent-color);
  opacity: 0.2;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 0;
}

.faq .phone {
  min-width: 67px;
  max-width: 67px;
  width: 67px;
  min-height: 67px;
  height: 67px;
  background-color: var(--white-color);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100px;
  position: relative;
  z-index: 1;
}

.faq__title {
  border: 1px solid #e0e0e0;
  padding: 60px 20px 60px 32px;
  border-radius: 12px;
  position: relative;
  z-index: 99;
}
.faq__title h2 {
  font-weight: 700;
  font-size: 40px;
  line-height: 120%;
  color: var(--text-color);
}
.faq__list {
  max-width: 1230px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 15px;
  height: 780px;
  overflow-y: auto;
}
.faq__item {
  position: relative;
}
.faq__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 12px 32px 12px 40px;
  background-color: #f8f8f8;
  border-radius: 10px;
  cursor: pointer;
}
.faq__question p {
  font-weight: 500;
  font-size: 20px;
  font-family: Roboto, sans-serif;
  line-height: 25px;
}
.faq__question .plus {
  min-width: 60px;
  max-width: 60px;
  width: 60px;
  min-height: 60px;
  height: 60px;
  background-color: var(--white-color);
  border-radius: 56px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: -webkit-transform 0.35s ease;
  transition: transform 0.35s ease;
  transition:
    transform 0.35s ease,
    -webkit-transform 0.35s ease;
}
.faq__item--active .plus {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.faq__inner {
  height: 0;
  overflow: hidden;
  transition: height 0.35s ease;
}
.faq__answer {
  font-weight: 400;
  font-size: 16px;
  line-height: 25px;
  color: var(--text-color);
  opacity: 0.7;
  max-width: 90%;
  padding: 25px 32px 10px 40px;
}
.contacts__container {
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
  margin: 0 auto;
}
.contacts__blocks {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-bottom: 70px;
  margin-top: 50px;
}
.contacts h2 {
  font-family: Montserrat, Sans-serif;
  font-size: 35px;
  font-weight: 500;
  text-transform: uppercase;
  line-height: 1.3em;
  letter-spacing: 0.64px;
  text-align: center;
  margin-bottom: 30px;
}
.contacts h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 2px;
  background-color: var(--accent-color);
  margin: 20px auto 0;
}
.contacts__wrap {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 70px;
}
.contacts__list {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 25px;
}
.contacts__item {
  display: flex;
  align-items: center;
  gap: 20px;
}

.contacts__item * {
  color: var(--text-color);
}

.contacts__item:hover .contacts__icon::before {
  opacity: 0.3;
  -webkit-transform: scale(1);
  transform: scale(1);
}
.contacts__icon {
  min-width: 82px;
  width: 82px;
  min-height: 82px;
  height: 82px;
  background-color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  position: relative;
  z-index: 1;
}
.contacts__icon::before {
  content: "";
  position: absolute;
  inset: -6px;
  background-color: var(--primary-color);
  border-radius: 50%;
  opacity: 0.3;
  -webkit-transform: scale(0.8);
  transform: scale(0.8);
  transition: 0.3s;
  z-index: -1;
}
.contacts__icon i {
  font-size: 28px;
  color: var(--white-color);
}
.contacts__info {
  display: flex;
  flex-direction: column;
}
.contacts__info * {
  color: var(--text-color);
  font-family: Montserrat, Sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.64em;
  letter-spacing: 0;
}
.contacts__info a {
  transition: color 0.2s ease-in-out;
}
.contacts__info a:hover {
  color: var(--accent-color);
}
.contacts__column {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 25px;
}
.contacts iframe {
  min-height: 350px;
  width: 100%;
}
.contacts .contacts-form__blocks {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}
.contacts .contacts-form__inputs {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.contacts .contacts-form__inputs .consultation-form__input,
.contacts .contacts-form__inputs .consultation-form__select,
.contacts .contacts-form__inputs .consultation-form__textarea {
  background-color: rgba(0, 0, 0, 0);
  color: #1f2326;
  border-style: solid;
  border-width: 1px 1px 1px 1px;
  border-color: #1f2326;
  width: 100%;
  font-family: Roboto, Sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.64em;
  letter-spacing: 0;
  padding: 10px 15px;
}
.contacts
  .contacts-form__inputs
  .consultation-form__input::-webkit-input-placeholder,
.contacts
  .contacts-form__inputs
  .consultation-form__select::-webkit-input-placeholder,
.contacts
  .contacts-form__inputs
  .consultation-form__textarea::-webkit-input-placeholder {
  font-family: Roboto, Sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.64em;
  color: #1f2326;
  letter-spacing: 0;
}
.contacts
  .contacts-form__inputs
  .consultation-form__input:-ms-input-placeholder,
.contacts
  .contacts-form__inputs
  .consultation-form__select:-ms-input-placeholder,
.contacts
  .contacts-form__inputs
  .consultation-form__textarea:-ms-input-placeholder {
  font-family: Roboto, Sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.64em;
  color: #1f2326;
  letter-spacing: 0;
}
.contacts
  .contacts-form__inputs
  .consultation-form__input::-ms-input-placeholder,
.contacts
  .contacts-form__inputs
  .consultation-form__select::-ms-input-placeholder,
.contacts
  .contacts-form__inputs
  .consultation-form__textarea::-ms-input-placeholder {
  font-family: Roboto, Sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.64em;
  color: #1f2326;
  letter-spacing: 0;
}
.contacts .contacts-form__inputs .consultation-form__input::placeholder,
.contacts .contacts-form__inputs .consultation-form__select::placeholder,
.contacts .contacts-form__inputs .consultation-form__textarea::placeholder {
  font-family: Roboto, Sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.64em;
  color: #1f2326;
  letter-spacing: 0;
}
.contacts .contacts-form__inputs .consultation-form__button {
  background-color: #1f2326;
  color: var(--white-color);
  text-decoration: none;
  max-width: 240px;
  width: 100%;
  font-weight: 500;
  padding: 16px 15px;
  font-size: 12px;
  height: 100%;
  font-family: Montserrat, sans-serif;
  transition: all 0.2s ease-in-out;
  text-transform: uppercase;
  height: auto;
  display: flex;
  justify-content: center;
  margin: 0 0 0 auto;
}
.contacts .contacts-form__inputs .consultation-form__button:hover {
  background-color: var(--primary-color);
  color: var(--white-color);
}
.contacts .contacts-form .wpcf7-form-control-wrap,
.contacts .contacts-form .consultation-form__select,
.contacts select {
  padding: 10px 15px;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  width: 100%;
  background-image: url('data:image/svg+xml;utf8,<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M6 9L12 15L18 9" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" stroke="black"/></svg>');
  background-repeat: no-repeat;
  background-position: right 10px center !important;
  background-size: 20px !important;
  cursor: pointer;
  outline: 0;
}
.contacts .contacts-form .consultation-form__textarea,
.contacts textarea {
  height: 155px !important;
  outline: 0;
  resize: none;
}

select,
textarea {
  outline: 0;
  resize: none;
}

.quote-btn {
  padding: 10px 20px;
  background: var(--primary-color);
  color: var(--white-color);
  border: none;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 600;
  line-height: 100%;
  box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.1s ease-in-out;
}
.quote-btn:hover {
  background-color: var(--primary-hover-color);
}
.quote-wrapper {
  position: fixed;
  right: -300px;
  bottom: 30px;
  -webkit-transform: translateY(0);
  transform: translateY(0);
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 7px;
  z-index: 1000;
  transition: right 0.4s ease;
}
.quote-wrapper.show {
  right: 20px;
}
.quote-wrapper.hide {
  opacity: 0;
  pointer-events: none;
  -webkit-transform: translateY(-50%) translateX(120%);
  transform: translateY(-50%) translateX(120%);
}
.quote-close {
  border-radius: 50%;
  border: none;
  padding: 5px 7px;
  background-color: #1f2326;
  color: var(--white-color);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
  font-size: 12px;
}
.quote-close:hover {
  color: var(--white-color);
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}
.modal {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 999999;
}
.modal.active {
  display: block;
}
.modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
}
.modal__top {
  background-color: var(--primary-color);
  padding: 30px 30px 20px 20px;
  overflow: hidden;
  border-radius: 10px 10px 0 0;
}
.modal__top * {
  color: var(--white-color);
}
.modal__top h2 {
  max-width: 300px;
  width: 100%;
  color: var(--white-color);
  font-size: 20px;
  font-family: Monsserrat, sans-serif;
  line-height: 120%;
}
.modal__info {
  background: var(--white-color);
  padding: 40px 20px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  border-radius: 0 0 10px 10px;
}
.modal__info-item {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 18px 25px;
  border-radius: 50px;
  color: var(--white-color);
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}
.modal__info-item i {
  font-size: 18px;
  transition: 0.3s;
}
.modal__info-item span {
  line-height: 1.44;
  font-family: Montserrat, sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0.3px;
}
.modal__info-item:hover {
  -webkit-transform: translateY(-3px);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.25);
}
.modal__info-item:nth-child(1) {
  background: linear-gradient(135deg, #ff6b2c, #ff8c42);
}
.modal__info-item:nth-child(1):hover {
  background: linear-gradient(135deg, #ff8c42, #ff6b2c);
}
.modal__info-item:nth-child(2) {
  background: linear-gradient(135deg, #fbc02d, #f9a825);
}
.modal__info-item:nth-child(2):hover {
  background: linear-gradient(135deg, #f9a825, #fbc02d);
}
.modal__info-item:nth-child(3) {
  background: linear-gradient(135deg, #00bcd4, #0097a7);
}
.modal__info-item:nth-child(3):hover {
  background: linear-gradient(135deg, #0097a7, #00bcd4);
}
.modal__info-item:nth-child(4) {
  background: linear-gradient(135deg, #43a047, #2e7d32);
}
.modal__info-item:nth-child(4):hover {
  background: linear-gradient(135deg, #2e7d32, #43a047);
}
.modal__content {
  position: relative;
  max-width: 500px;
  margin: 100px auto;
  border-radius: 10px;
  z-index: 2;
}
.modal__close {
  position: absolute;
  right: 15px;
  top: 10px;
  font-size: 24px;
  background: 0 0;
  border: none;
  cursor: pointer;
}
.about-page .expertise__blocks {
  display: flex;
  flex-direction: column;
  gap: 70px;
  padding: 120px 0 20px 0;
}
.about-page .expertise__block {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
}
.about-page .expertise__block:nth-child(even) .btn {
  margin: 0 0 0 auto;
}
.about-page .expertise__picture {
  max-width: 450px;
  width: 100%;
  min-height: 450px;
  height: 450px;
  overflow: hidden;
  border-radius: 50%;
  background-color: var(--accent-color);
}
.about-page .expertise__picture img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.about-page .expertise__content {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 30px;
  max-width: 700px;
  width: 100%;
}
.about-page .expertise__content h4 {
  font-family: Montserrat, Sans-serif;
  font-size: 32px;
  font-weight: 500;
  text-transform: uppercase;
  line-height: 1.3em;
  letter-spacing: 0.64px;
}
.about-page .expertise__content:nth-child(odd) * {
  text-align: right;
}
.about-page .expertise__content:nth-child(even) * {
  text-align: left;
}
.about-page .expertise__descript {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.about-page .expertise__descript p {
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.643;
  font-family: Monsserat, sans-serif;
  letter-spacing: 0;
  color: var(--text-color);
  opacity: 0.7;
}
.about-page .expertise .btn {
  font-family: Montserrat, Sans-serif;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  line-height: 1.3em;
  letter-spacing: 0.48px;
  color: var(--text-color);
  border: 1px solid var(--text-color);
  border-radius: 2px 2px 2px 2px;
  padding: 17px 37px 17px 37px;
  text-align: center;
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 10px;
  transition: all 0.1s ease-in-out;
}
.about-page .expertise .btn i {
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition:
    transform 0.3s ease-in-out,
    -webkit-transform 0.3s ease-in-out;
}
.about-page .expertise .btn:hover {
  background-color: var(--primary-color);
  border: 1px solid var(--primary-color);
  color: var(--white-color);
}
.about-page .expertise .btn:hover i {
  -webkit-transform: translateX(3px);
  transform: translateX(3px);
}
.about-page .our-team {
  margin: 120px 0 50px 0;
  background-color: #f6f6f6;
}
.about-page .our-team__container {
  max-width: 1500px;
  width: 100%;
  margin: 0 auto;
  margin: 0 auto;
}
.about-page .our-team__swiper {
  overflow: hidden;
}
.about-page .our-team__blocks {
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding: 80px 0;
}
.about-page .our-team__top {
  display: flex;
  flex-direction: column;
  gap: 15px;
  text-align: center;
  margin-bottom: 40px;
}
.about-page .our-team__top::after {
  content: "";
  display: block;
  width: 60px;
  height: 2px;
  background-color: var(--accent-color);
  margin: 20px auto 0;
}
.about-page .our-team__top h2 {
  font-family: Montserrat, Sans-serif;
  font-size: 35px;
  font-weight: 500;
  text-transform: uppercase;
  line-height: 1.3em;
  letter-spacing: 0.64px;
}
.about-page .our-team__top p {
  font-family: Montserrat, Sans-serif;
  font-size: 16px;
  font-weight: 400;
  max-width: 700px;
  width: 100%;
  margin: 0 auto;
  line-height: 1.5em;
  color: var(--text-color);
  opacity: 0.7;
}
.about-page .our-team .card-person {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 15px;
  background-color: var(--white-color);
}
.about-page .our-team .card-person__picture {
  height: 350px;
  min-height: 350px;
  max-height: 350px;
  padding: 10px;
}
.about-page .our-team .card-person__picture img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.about-page .our-team .card-person__content {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 0 10px 20px 20px;
}
.about-page .our-team .card-person__top {
  display: flex;
  flex-direction: column;
  gap: 5px;
  text-align: center;
}
.about-page .our-team .card-person__top h3 {
  color: var(--primary-color);
  font-family: Montserrat, Sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.44em;
}
.about-page .our-team .card-person__descript {
  font-family: Montserrat, Sans-serif;
  font-size: 14px;
  font-weight: 400;
  margin: 0 auto;
  line-height: 1.5em;
  text-align: center;
  color: var(--text-color);
  opacity: 0.7;
}
.about-page .our-team .team__slider {
  width: 100%;
}
.about-page .our-team .swiper-wrapper {
  display: flex;
}
.about-page .our-mission .about-us__picture {
  z-index: 1;
  position: relative;
}
.about-page .our-mission .about-us__picture img {
  z-index: 1;
}
.about-page .our-mission .about-us__picture::after {
  content: "";
  position: absolute;
  top: 25px;
  left: auto;
  right: 25px !important;
  width: 100%;
  z-index: -1;
  height: 100%;
  background-color: var(--primary-color);
}
.about-page .response__blocks {
  padding: 70px 0 50px 0;
  display: flex;
  flex-direction: column;
  gap: 50px;
}
.about-main {
  padding: 70px 0 80px 0;
  position: relative;
  margin-bottom: 50px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.about-main::before {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  content: "";
  background-color: var(--primary-color);
  opacity: 0.5;

  z-index: 99;
}
.about-main__blocks {
  display: flex;
  align-items: end;
  justify-content: end;
  z-index: 99;
  position: relative;
}
.about-main__info {
  max-width: 575px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 30px;
  justify-content: center;
  align-items: center;
}
.about-main__info-top {
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: center;
  justify-content: center;
}
.about-main__info-top h2 {
  font-family: Montserrat, Sans-serif;
  font-size: 46px;
  font-weight: 500;
  line-height: 1.3em;
  letter-spacing: 0;
  color: var(--white-color);
}
.about-main__info-top p {
  max-width: 460px;
  width: 100%;
  color: var(--white-color);
  font-family: Montserrat, Sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.43em;
  letter-spacing: 0;
  text-align: center;
  margin: 0 auto;
}
.about-main__button {
  font-family: Montserrat, Sans-serif;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  line-height: 1em;
  letter-spacing: 0.48px;
  color: #1e1d24;
  background-color: var(--white-color);
  border-radius: 2px 2px 2px 2px;
  padding: 19px 39px 19px 39px;
  transition: all 0.2s ease-in-out;
}
.about-main__button:hover {
  background-color: var(--text-color);
  color: var(--white-color);
}
.services-page .contacts__blocks {
  margin-bottom: 80px;
  margin-top: 100px;
}
.services-page .services-sec__blocks {
  display: flex;
  align-items: start;
  gap: 30px;
  padding: 70px 0 80px 0;
}
.services-page .services-sec__btns {
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-width: 350px;
  width: 100%;
  position: sticky;
  top: 130px;
}
.services-page .services-sec__btn {
  padding: 18px 36px 18px 36px;
  display: flex;
  align-items: center;
  gap: 30px;
  background-color: var(--primary-color);
  transition: all 0.1s ease-in-out;
  cursor: pointer;
}
.services-page .services-sec__btn:hover {
  background-color: var(--primary-hover-color);
}
.services-page .services-sec__btn * {
  color: var(--white-color);
}
.services-page .services-sec__btn i {
  font-size: 25px;
}
.services-page .services-sec__btn h2 {
  color: var(--white-color);
  font-family: Montserrat, Sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.64em;
  letter-spacing: 0;
  text-align: left;
}
.services-page .services-sec__content {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-left: 30px;
  border-left: 1px solid #d3d3d3;
}
.services-page .services-sec__content p {
  color: var(--text-color);
  opacity: 0.7;
  font-family: Roboto, Sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.64em;
  letter-spacing: 0;
}
.services-page .services-sec__content img {
  margin: 10px 0;
}
.services-page .services-sec__content h1,
.services-page .services-sec__content h2,
.services-page .services-sec__content h3,
.services-page .services-sec__content h4,
.services-page .services-sec__content h5,
.services-page .services-sec__content h6 {
  font-weight: 500;
  font-family: Montserrat, sans-serif;
  font-size: 30px;
}
.services-page .services-sec .plan {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.services-page .services-sec .plan__table {
  max-width: 750px;
  width: 100%;
}
.services-page .services-sec .plan__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding: 20px 15px;
}
.services-page .services-sec .plan__row span {
  font-family: Roboto, Sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.64em;
  letter-spacing: 0;
  color: var(--text-color);
  opacity: 0.7;
}
.services-page .services-sec .plan__row strong {
  font-family: Montserrat, Sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.64em;
  letter-spacing: 0;
  color: var(--text-color);
}
.services-page .services-sec .plan .plan__row:nth-child(odd) {
  background-color: #f2f2f2;
}
.services-page .services-sec .plan .plan__row:nth-child(even) {
  background-color: var(--white-color);
}
.services-page .faq__list {
  max-width: 1230px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
  height: auto;
  overflow-y: auto;
}
.services-page .faq__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 12px 20px 12px 30px;
  background-color: #f8f8f8;
  border-radius: 10px;
  cursor: pointer;
}
.services-page .faq__question p {
  font-family: Montserrat, Sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.64em;
  letter-spacing: 0;
  color: var(--text-color);
}
.services-page .faq__question .plus {
  min-width: 40px !important;
  max-width: 40px !important;
  width: 40px !important;
  min-height: 40px !important;
  height: 40px !important;
  background-color: var(--white-color);
  border-radius: 56px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: -webkit-transform 0.35s ease;
  transition: transform 0.35s ease;
  transition:
    transform 0.35s ease,
    -webkit-transform 0.35s ease;
}
.services-page .faq__question img {
  margin: 0 0;
  width: 14px !important;
  height: 14px !important;
}
.services-page .faq__answer {
  font-weight: 400;
  font-size: 14px !important;
  line-height: 25px;
  color: var(--text-color);
  opacity: 0.7;
  max-width: 90%;
  padding: 15px 20px 10px 30px !important;
}
.services-page .services-sec__content {
  display: none;
  flex-direction: column;
}
.services-page .services-sec__content:first-child {
  display: flex;
}
.services-page .services-sec__btn.active {
  background-color: var(--text-color);
  cursor: pointer;
}
.gallery-page .baner {
  margin-top: 0;
  background-color: #d6d6d6;
}
.gallery-page .gallery__item {
  display: none;
}
.gallery-page .gallery__item.visible {
  display: block;
}
.gallery-page .filter-btn.active {
  font-weight: 700;
  border: none;
  border: 1px solid var(--primary-color) !important;
  background-color: var(--primary-color);
  color: var(--white-color);
}
.gallery-page .gallery__filters {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
  padding: 0 0 50px 0;
}
.gallery-page .gallery .btn {
  font-family: Montserrat, Sans-serif;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  line-height: 1.3em;
  letter-spacing: 0.48px;
  color: var(--white-color);
  border: 2px solid var(--primary-color);
  background-color: var(--primary-color);
  border-radius: 2px 2px 2px 2px;
  padding: 15px 37px 15px 37px;
  max-width: 270px;
  width: 100%;
  margin: 0 auto;
  margin-top: 50px;
  margin-bottom: 50px;
  display: flex !important;
  text-align: center;
  justify-content: center;
  align-items: center;
}
.gallery-page .gallery .filter-btn {
  font-size: 16px;
  font-family: Montserrat, Sans-serif;
  border: 1px solid var(--text-color);
  border-radius: 2px;
  padding: 5px 15px;
  transition: all 0.1s ease-in-out;
}
.gallery-page .gallery .filter-btn:hover {
  border: 1px solid var(--primary-color);
  background-color: var(--primary-color);
  color: var(--white-color);
}
.gallery-page .gallery__load-more {
  transition: all 0.2s ease-in-out;
}
.gallery-page .gallery__load-more:hover {
  border: 2px solid var(--primary-hover-color);
  background-color: var(--primary-hover-color);
}
.blogs__blocks {
  padding: 50px 0 80px 0;
}
.blogs__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  row-gap: 40px;
  -webkit-column-gap: 20px;
  -moz-column-gap: 20px;
  column-gap: 20px;
}
.blogs__item {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.blogs__item .blogs__picture img {
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition:
    transform 0.3s ease-in-out,
    -webkit-transform 0.3s ease-in-out;
}
.blogs__item:hover .blogs__picture img {
  -webkit-transform: scale(1.2);
  transform: scale(1.2);
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition:
    transform 0.3s ease-in-out,
    -webkit-transform 0.3s ease-in-out;
}
.blogs__picture {
  min-height: 280px;
  height: 280px;
  border-radius: 20px;
  overflow: hidden;
}
.blogs__picture img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.blogs__info {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.blogs__info * {
  color: var(--text-color);
}
.blogs__info h2 {
  font-family: Monsserat, sans-serif;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.2em;
  color: var(--text-color);
}
.blogs__info span {
  font-family: Monsserat, sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: var(--text-color);
  opacity: 0.7;
}
.pagination {
  display: flex;
  justify-content: center;
  margin: 100px 0 0 0;
  font-family: Arial, sans-serif;
}
.page-numbers {
  list-style: none;
  display: flex;
  gap: 12px;
  padding: 0;
  margin: 0;
}

.page-numbers a {
  display: block;
  text-decoration: none;
  color: #333333;
  transition:
    background 0.2s,
    color 0.2s;
}
.page-numbers a:hover {
  color: var(--primary-color);
}
.page-numbers * {
  color: #666666;
  border: none;
  cursor: default;
}
.page-numbers a.active {
  color: var(--primary-color);
}

.blog-single-page .bg {
  height: 100%;
  width: 100%;
  background-position: top;
  min-height: 600px;
  height: 600px;
}
.blog-single-page .bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.blog-single-page .contacts {
  margin-top: 80px;
}
.blog-single {
  position: relative;
  min-height: 550px;
}
.blog-single__blocks {
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 250px 0 30px 0;
  z-index: 999;
  position: relative;
}
.blog-single__blocks h2 {
  font-size: 55px;
  font-weight: 800;
  color: var(--white-color);
}
.blog-single__blocks p {
  font-size: 20px;
  text-align: center;
  color: var(--text-color);
  opacity: 0.7;
  max-width: 800px;
  margin: 0 auto;
  width: 100%;
}
.blog-single-content {
  margin-top: -100px;
  position: relative;
  z-index: 99;
  margin-bottom: 70px;
}
.blog-single-content__top {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 0 auto;
  text-align: center;
}
.blog-single-content__top .headline {
  font-size: 12px;
  font-weight: 700;
  font-family: Montserrat, sans-serif;
  text-transform: uppercase;
  line-height: 16px;
  letter-spacing: 1.2px;
  color: var(--primary-color);
}
.blog-single-content__top h2 {
  font-family: Montserrat, sans-serif;
  font-size: 42px;
  font-weight: 700;
  color: #212121;
  line-height: 110%;
}
.blog-single-content__top ul {
  display: flex;
  align-items: center;
  margin: 0 auto;
  gap: 20px;
}
.blog-single-content__top ul li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  font-weight: 400;
  color: var(--text-color);
  opacity: 0.7;
  font-family: Montserrat, sans-serif;
}
.blog-single-content__top ul li i {
  color: var(--text-color);
  opacity: 0.4;
}
.blog-single-content .title {
  font-weight: 700;
  font-size: 20px;
  font-family: Montserrat, sans-serif;
}
.blog-single-content__list {
  display: flex;
  flex-direction: column;
  gap: 25px;
}
.blog-single-content__blocks {
  background-color: var(--white-color);
  box-shadow: rgba(100, 100, 111, 0.2) 0 7px 29px 0;
  display: flex;
  flex-direction: column;
  gap: 30px;
  max-width: 970px;
  margin: 0 auto 40px;
  padding: 40px 60px;
  border-radius: 12px;
}
.blog-single-content__blocks p {
  font-weight: 400;
  font-family: Montserrat, Sans-serif;
  font-size: 16px;
  line-height: 170%;

  color: var(--text-color);
  opacity: 0.7;
}

.blog-single-content__blocks * {
  font-size: 16px;
  line-height: 1.5em;
  color: var(--text-color);
}

.blog-single-content__blocks h1 {
  font-size: 23px;
  font-weight: 600;
  line-height: 1.5em;
  color: var(--text-color);
}

.blog-single-content__pictures img {
  min-height: 400px;
  height: 400px;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.blog-single-content .quotes {
  background-color: rgba(206, 233, 255, 0.568);
  border-radius: 5px;
  position: relative;
}
.blog-single-content .quotes__blocks {
  padding: 30px 20px;
}
.blog-single-content .quotes__blocks p {
  font-weight: 200;
  font-size: 16px;
  font-family: Roboto, sans-serif;
  line-height: 130%;
  opacity: 0.7;
  font-style: italic;
}
.blog-single-content .quotes__blocks i {
  position: absolute;
  right: 10px;
  bottom: 5px;
  font-size: 35px;
  color: #ffffff;
  line-height: 100%;
}
.post-navigation {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  padding: 40px 0;
  border-top: 1px solid #eee;
  margin-top: 60px;
}
.post-navigation__item {
  flex: 1;
  max-width: 48%;
  text-decoration: none;
  padding: 20px;
  border-radius: 12px;
  background: #f9f9f9;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}
.post-navigation__item:hover {
  background: #f1f1f1;
  -webkit-transform: translateY(-3px);
  transform: translateY(-3px);
}
.post-navigation__label {
  font-size: 12px;
  text-transform: uppercase;
  color: #999;
  margin-bottom: 10px;
  letter-spacing: 1px;
}
.post-navigation__title {
  font-size: 16px;
  font-weight: 600;
  color: #222;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.post-navigation__item--next {
  text-align: right;
  align-items: flex-end;
}
@media (max-width: 1550px) {
  [class*="__container"] {
    max-width: 1200px;
  }

  .consultation-form__blocks .consultation-form__button {
    max-width: 100%;
    width: 100%;
  }

  .faq {
    margin: 50px 40px 68px 40px;
  }
  .faq__blocks {
    gap: 40px;
  }
  .faq__details {
    padding: 20px 30px;
  }
  .faq__details p {
    font-size: 16px;
  }
  .faq__details p span {
    font-size: 14px;
  }
  .faq__title {
    padding: 40px 20px 40px 32px;
  }
  .faq__title h2 {
    font-size: 40px;
  }
  .faq__list {
    gap: 15px;
  }
  .faq__question {
    padding: 12px 20px 12px 30px;
  }
  .faq__question p {
    font-size: 22px;
  }
  .faq__question .plus {
    min-width: 60px;
    max-width: 60px;
    width: 60px;
    min-height: 60px;
    height: 60px;
  }
  .faq__question .plus img {
    width: 10px;
    height: 10px;
  }
}
@media (max-width: 1240px) {
  .up {
    width: 40px;
    height: 40px;
    bottom: 20px;
    right: 20px;
  }
  .up i {
    font-size: 14px;
  }
  .quote-btn.show {
    right: 20px;
    top: 87%;
  }
}
@media (max-width: 1200px) {
  .consultation-form__blocks {
    gap: 15px;
    flex-direction: column;
  }
}
@media (max-width: 1024px) {
  .contacts__wrap {
    gap: 30px;
  }
  .contacts__list {
    gap: 20px;
  }
  .contacts__item {
    gap: 15px;
  }
  .contacts__icon {
    min-width: 60px;
    width: 60px;
    min-height: 60px;
    height: 60px;
  }
  .contacts__icon i {
    font-size: 20px;
  }
  .contacts__info * {
    font-size: 14px;
  }
  .contacts .contacts-form__blocks {
    grid-template-columns: repeat(1, 1fr);
    width: 100%;
  }
  .about-page .expertise__blocks {
    gap: 60px;
  }
  .about-page .expertise__block {
    gap: 30px;
  }
  .about-page .expertise__picture {
    max-width: 350px;
    width: 100%;
    min-height: 350px;
    height: 350px;
  }
  .about-page .expertise__content {
    gap: 20px;
  }
  .about-page .expertise__content h4 {
    font-size: 25px;
  }
}
@media (max-width: 992px) {
  .header .menu-wrap {
    position: fixed;
    top: 0;
    right: -100%;
    width: 60%;
    height: 100vh;
    background: #1f2326;
    transition: right 0.3s ease;
    z-index: 9999;
  }
  .header .menu-wrap.active {
    right: 0;
  }
  .header .menu-wrap .menu__list {
    list-style: none;
    padding: 120px 20px 20px;
    margin: 0;
    display: flex;
    flex-direction: column;
  }
  .header .menu-wrap .menu__list li {
    margin-bottom: 20px;
  }
  .header .menu-wrap .menu__list a {
    color: var(--white-color);
    text-decoration: none;
    font-size: 18px;
  }
  .header .menu-wrap .close {
    display: none;
  }
  .header .burger-menu {
    display: none;
    cursor: pointer;
  }
  .header .burger-menu i {
    font-size: 25px;
  }
  .main__blocks h1 {
    font-size: 40px;
    max-width: 600px;
    width: 100%;
  }
  .main__blocks .descript a,
  .main__blocks .descript {
    font-size: 14px;
    max-width: 500px;
    width: 100%;
  }
  .consultation__blocks {
    padding: 40px 25px 30px 25px;
  }
  .consultation__top h2 {
    font-size: 28px;
  }
  .consultation__top .descript {
    font-size: 14px;
  }
  .consultation-form__blocks input,
  .consultation-form__blocks select {
    max-width: 100%;
    width: 100%;
  }
  .consultation-form__blocks .consultation-form__button {
    max-width: 100%;
    width: 100%;
  }
  .services {
    padding: 70px 0 60px 0;
  }
  .services h2 {
    font-size: 28px;
  }
  .services__list {
    gap: 15px;
    grid-template-columns: repeat(2, 1fr);
    row-gap: 30px;
  }
  .services__info {
    padding: 0 5px 0 10px;
  }
  .services__info h3 {
    font-size: 16px;
  }
  .services__info p {
    font-size: 12px;
  }
  .services__img {
    margin-bottom: 15px;
    min-height: 250px;
    height: 250px;
  }
  .about-us {
    margin-top: 0;
  }
  .about-us__blocks {
    gap: 20px;
  }
  .about-us__block {
    padding: 30px 0;
  }
  .about-us__top span {
    font-size: 16px;
  }
  .about-us__top h2 {
    font-size: 25px;
  }
  .about-us__info li,
  .about-us__info p {
    font-size: 14px;
  }
  .advantages__list {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 50px;
  }
  .advantages__icon {
    width: 120px;
    height: 120px;
  }
  .advantages__item h3 {
    font-size: 20px;
  }
  .advantages__item .descript {
    font-size: 14px;
  }
  .baner {
    margin-top: 70px;
    padding: 50px 0 60px 0;
  }
  .baner__blocks h2 {
    font-size: 35px;
  }
  .result__blocks {
    padding: 40px 0 40px 0;
    gap: 35px;
  }
  .result__top h2 {
    font-size: 32px;
  }
  .result__wrapper {
    gap: 20px;
  }
  .rating__blocks {
    padding: 30px 0;
    gap: 30px;
  }
  .gallery__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .faq__blocks {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  .faq .title {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    font-weight: 700;
    font-size: 24px;
    line-height: 26px;
    letter-spacing: -0.72px;
    text-align: center;
    color: var(--accent-color);
    max-width: 220px;
    width: 100%;
  }
  .faq__left {
    display: none;
  }
  .faq__list {
    height: 550px;
    gap: 10px;
  }
  .faq__question {
    padding: 13px 13px 12px 20px;
  }
  .faq__question .plus {
    min-width: 40px;
    max-width: 40px;
    width: 40px;
    min-height: 40px;
    height: 40px;
  }
  .faq__question .plus img {
    width: 10px;
    height: 10px;
  }
  .faq__answer {
    padding: 25px 20px 10px 20px;
    font-size: 14px;
    line-height: 20px;
    max-width: 95%;
  }
  .contacts h2 {
    margin-bottom: 20px;
    font-size: 25px;
  }
  .contacts__wrap {
    flex-direction: column;
    width: 100%;
  }
  .contacts__list {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
  }
  .contacts__item {
    display: flex;
    flex-direction: column;
  }
  .contacts__icon {
    min-width: 82px;
    width: 82px;
    min-height: 82px;
    height: 82px;
  }
  .contacts__icon i {
    font-size: 28px;
  }
  .contacts__info * {
    font-size: 16px;
  }
  .contacts__column {
    width: 100%;
  }
  .contacts .contacts-form__inputs {
    gap: 15px;
    flex-direction: column;
  }
  .contacts .contacts-form__inputs .consultation-form__input,
  .contacts .contacts-form__inputs .consultation-form__select,
  .contacts .contacts-form__inputs .consultation-form__textarea {
    max-width: 100%;
    width: 100%;
  }
  .contacts .contacts-form__inputs .consultation-form__button {
    max-width: 400px;
    width: 100%;
  }
  .quote-btn {
    font-size: 14px;
  }
  .quote-btn.show {
    right: 20px;
    top: 88%;
  }
  .about-page .our-team__top h2 {
    font-size: 25px;
  }
  .about-main {
    margin-bottom: 30px;
  }
  .about-main {
    padding: 40px 0 50px 0;
  }
  .about-main__blocks {
    align-items: center;
    justify-content: center;
  }
  .about-main__info-top h2 {
    line-height: 1.2em;
    font-size: 35px;
  }
  .about-main__info-top p {
    font-size: 14px;
  }
  .services-page .contacts__blocks {
    margin-top: 70px;
  }
  .services-page .services-sec__blocks {
    padding: 50px 0 60px 0;
    flex-direction: column;
  }
  .services-page .services-sec__btns {
    margin: 0 auto;
    justify-content: center;
    align-items: center;
    gap: 10px;
    position: relative;
    top: 0;
    max-width: 100%;
  }
  .services-page .services-sec__btn {
    width: 100%;
  }
  .services-page .services-sec__btn i {
    font-size: 20px;
  }
  .services-page .services-sec__btn h2 {
    font-size: 14px;
  }
  .services-page .services-sec__content {
    padding-left: 0;
    padding-top: 20px;
    border-top: 1px solid #d3d3d3;
    border-left: none;
  }
  .gallery-page .gallery__filters {
    padding-top: 20px;
  }
  .blogs__list {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 40px;
    -webkit-column-gap: 15px;
    -moz-column-gap: 15px;
    column-gap: 15px;
  }
  .blog-single__blocks {
    padding: 100px 0 30px 0;
    gap: 10px;
  }
  .blog-single__blocks h2 {
    font-size: 40px;
  }
  .blog-single__blocks p {
    font-size: 18px;
    max-width: 600px;
  }
  .blog-single-content__top h2 {
    font-size: 30px;
  }
  .blog-single-content__top ul {
    gap: 15px;
  }
  .blog-single-content__top ul li {
    font-size: 14px;
  }
  .blog-single-content .title {
    font-size: 16px;
  }
  .blog-single-content__list {
    gap: 20px;
  }
  .blog-single-content__blocks {
    gap: 20px;
    padding: 30px 40px;
  }
  .blog-single-content__blocks .descript {
    font-size: 14px;
  }
  .blog-single-content .quotes__blocks p {
    font-size: 16px;
  }
  .blog-single-content .quotes__blocks i {
    font-size: 30px;
  }
}
@media (max-width: 992px) and (max-width: 576px) {
  .header .menu-wrap {
    width: 100%;
  }

  .gallery__item {
    min-height: 220px;
    height: 220px;
  }
}
@media (max-width: 992px) and (max-width: 640px) {
  .header .menu-wrap .menu__list {
    padding: 100px 20px 20px;
    gap: 10px;
  }
  .header .menu-wrap .menu__list a {
    font-size: 16px;
  }
}
@media (max-width: 992px) and (max-width: 992px) {
  .header .menu-wrap .close {
    display: flex;
    position: absolute;
    right: 20px;
    top: 20px;
    font-size: 24px;
    cursor: pointer;
    color: var(--white-color);
  }
  .header .burger-menu {
    display: flex;
  }
}
@media (max-width: 840px) {
  .footer .footer-details__blocks {
    flex-direction: column;
    gap: 40px;
    width: 100%;
    padding: 40px 0;
  }
  .footer .footer-details .footer-menu__list {
    max-width: 100%;
    width: 100%;
  }
  .footer .footer-details__right {
    max-width: 100%;
    justify-content: space-between;
    width: 100%;
    gap: 25px;
  }
  .about-page .expertise__block {
    flex-direction: column;
  }
  .about-page .expertise__block:nth-child(even) {
    flex-direction: column-reverse;
  }
}
@media (max-width: 768px) {
  .about-us__blocks {
    flex-direction: column;
    align-items: start;
  }
  .about-us__picture::after {
    display: none;
  }
  .result__pictures {
    gap: 5px;
  }
  .result__pictures .after,
  .result__pictures .before {
    min-height: 300px;
    height: 300px;
    width: 300px;
  }
  .result .after-before {
    font-size: 16px;
  }
  .rating__blocks {
    gap: 20px;
    grid-template-columns: repeat(2, 1fr);
  }
  .rating__block h3 {
    font-size: 25px;
  }
  .rating__block p {
    font-size: 14px;
  }
  .response__blocks {
    gap: 30px;
    padding: 50px 0 20px 0;
  }
  .about-page .our-mission .about-us__picture::after {
    display: none;
  }
  .about-page .response__blocks {
    gap: 30px;
    padding: 20px 0 70px 0;
  }
  .pagination {
    margin: 70px 0 0 0;
  }
  .post-navigation {
    flex-direction: column;
    gap: 20px;
  }
  .post-navigation__item {
    max-width: 100%;
  }
  .post-navigation__item--next {
    text-align: left;
    align-items: flex-start;
  }
}
@media (max-width: 678px) {
  .header__details {
    gap: 5px;
  }
  .header__details * {
    font-size: 12px;
  }
  .header__social {
    gap: 12px;
  }
  .header__social * {
    font-size: 16px;
  }

  .header__top::after {
    min-height: 33px;
  }
}
@media (max-width: 668px) {
  .blogs__picture {
    min-height: 240px;
    height: 240px;
  }
  .blogs__info h2 {
    font-size: 16px;
  }
  .blogs__info span {
    font-size: 12px;
  }
}
@media (max-width: 576px) {
  .contact-page .contacts {
    padding-top: 20px;
  }
  .up {
    display: none;
  }
  .head__blocks {
    padding: 25px 0;
  }
  .head__blocks h1 {
    font-size: 16px;
  }
  .head .breadcrumbs * {
    font-size: 14px;
  }
  .head .breadcrumbs__item {
    font-size: 12px;
  }
  .main {
    min-height: 700px;
  }
  .main__blocks h1 {
    font-size: 30px;
    max-width: 500px;
    width: 100%;
  }
  .main__blocks .descript a,
  .main__blocks .descript {
    font-size: 12px;
    max-width: 400px;
    width: 100%;
    line-height: 150%;
  }
  .main__blocks .btns {
    gap: 15px;
  }
  .main__blocks .btns .btn {
    padding: 15px 20px 15px 20px;
  }
  .services .btn {
    padding: 15px 20px 15px 20px;
  }
  .about-us .btn {
    padding: 15px 20px 15px 20px;
  }
  .result__pictures {
    flex-direction: column;
  }
  .result__pictures .after,
  .result__pictures .before {
    width: 100%;
    min-height: 200px;
    height: 200px;
  }
  .result .after-before {
    line-height: 23px;
    font-size: 14px;
  }
  .response__blocks h2 {
    font-size: 24px;
  }
  .response-comment {
    margin: 0 0 23px 0;
    padding: 20px 15px 20px 15px;
  }
  .response-info p {
    font-size: 14px;
  }
  .response-info__author {
    min-width: 50px;
    width: 50px;
    min-height: 50px;
    height: 50px;
    margin-left: 3px;
  }
  .response-info .response-rating {
    font-size: 12px;
  }
  .faq {
    margin: 50px 0 68px 0;
  }
  .faq__question p {
    font-size: 16px;
  }
  .faq__answer {
    max-width: 100%;
    font-size: 12px;
  }
  .quote-btn {
    padding: 10px 15px;
  }
  .quote-btn * {
    font-size: 12px;
  }
  .quote-wrapper.show {
    bottom: 15px;
    right: 10px;
  }
  .quote-btn {
    font-size: 14px;
  }
  .quote-btn.show {
    right: 10px;
    top: 92%;
  }
  .about-page .expertise .btn {
    padding: 15px 20px 15px 20px;
  }
  .about-page .our-team {
    margin: 80px 0 50px 0;
  }
  .about-page .our-team__blocks {
    gap: 20px;
  }
  .about-page .our-team__top {
    margin-bottom: 30px;
  }
  .about-page .our-team__top p {
    font-size: 14px;
  }
  .about-page .our-team .card-person {
    gap: 15px;
  }
  .about-page .our-team .card-person__content {
    gap: 15px;
  }
  .about-page .our-team .card-person__descript {
    font-size: 14px;
  }
  .services-page .services-sec__content p {
    font-size: 14px;
  }
  .services-page .services-sec__content h1,
  .services-page .services-sec__content h2,
  .services-page .services-sec__content h3,
  .services-page .services-sec__content h4,
  .services-page .services-sec__content h5,
  .services-page .services-sec__content h6 {
    font-size: 25px;
  }
  .services-page .services-sec .plan__row {
    padding: 15px 10px;
  }
  .services-page .services-sec .plan__row span {
    line-height: 1.4em;
    font-size: 12px;
  }
  .services-page .services-sec .plan__row strong {
    line-height: 1.4em;
    font-size: 12px;
  }
  .services-page .faq__question {
    padding: 12px 20px 12px 15px;
  }
  .services-page .faq__question p {
    line-height: 1.3em;
    font-size: 14px;
  }
  .services-page .faq__answer {
    font-size: 12px !important;
    padding: 15px 20px 10px 15px !important;
    max-width: 100%;
  }
  .gallery-page .gallery .btn {
    padding: 15px 20px 15px 20px;
  }
  .gallery-page .gallery .filter-btn {
    font-size: 14px;
  }
  .blog-single-page .bg {
    min-height: 300px;
    height: 300px;
  }
  .blog-single {
    display: none;
  }
  .blog-single-content {
    margin-bottom: 40px;
    margin-top: 40px;
  }
  .blog-single-content__blocks {
    background-color: rgba(0, 0, 0, 0);
    padding: 0;
    box-shadow: none;
  }
}
@media (max-width: 520px) {
  .header__top {
    gap: 10px;
  }
  .header__top::after {
    min-height: 53px;
  }
  .header__details {
    flex-direction: column;
    align-items: start;
  }
  .head {
    margin-top: 130px;
  }
  .advantages__icon {
    width: 100px;
    height: 100px;
  }
}
@media (max-width: 480px) {
  [class*="__container"] {
    padding: 0 10px;
  }
  .header__top::after {
    min-height: 48px;
  }
  .header__details * {
    font-size: 10px;
  }
  .header__details i {
    margin-right: 4px;
  }
  .services__list {
    grid-template-columns: repeat(1, 1fr);
    row-gap: 30px;
  }
  .about-us__picture {
    min-height: 300px;
    height: 300px;
  }
  .advantages__list {
    row-gap: 30px;
  }
  .advantages__icon {
    width: 80px;
    height: 80px;
  }
  .advantages__item h3 {
    font-size: 18px;
  }
  .advantages__item .descript {
    font-size: 12px;
  }
  .baner__blocks h2 {
    font-size: 30px;
  }
  .baner__blocks .btn-contacts {
    padding: 15px 37px;
  }
  .gallery__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .about-page .expertise__blocks {
    padding: 80px 0 20px 0;
    gap: 40px;
  }
  .about-page .expertise__picture {
    max-width: 300px;
    width: 100%;
    min-height: 300px;
    height: 300px;
  }
  .about-page .expertise__content h4 {
    font-size: 20px;
  }
  .about-page .expertise__descript {
    gap: 12px;
  }
  .about-main__info-top h2 {
    line-height: 1.2em;
    font-size: 25px;
  }
  .about-main__info-top p {
    font-size: 12px;
  }
  .blogs__list {
    grid-template-columns: repeat(1, 1fr);
    row-gap: 40px;
    -webkit-column-gap: 15px;
    -moz-column-gap: 15px;
    column-gap: 15px;
  }
  .blog-single__blocks h2 {
    font-size: 30px;
    text-align: center;
  }
  .blog-single__blocks p {
    font-size: 16px;
    text-align: center;
  }
  .blog-single-content__top h2 {
    font-size: 23px;
  }
  .blog-single-content__pictures img {
    min-height: 250px;
    height: 250px;
  }

  .contacts__blocks {
    margin-bottom: 20px;
  }
}
@media (max-width: 440px) {
  .main__blocks .btns {
    flex-direction: column;
    width: 100%;
    align-items: start;
  }
  .consultation__blocks {
    padding: 30px 15px;
    margin: 0;
    margin-top: -80px;
  }
  .consultation__top {
    margin-bottom: 0;
  }
  .consultation__top h2 {
    font-size: 18px;
  }
  .services h2 {
    font-size: 25px;
  }
}
@media (max-width: 425px) {
  .blog-single-content__top ul {
    gap: 30px;
  }
  .blog-single-content__top ul li {
    font-size: 12px;
  }
  .blog-single-content .quotes__blocks {
    padding: 30px 15px 30px 15px;
  }
  .blog-single-content .quotes__blocks p {
    font-size: 12px;
  }
}
@media (max-width: 420px) {
  .result__wrapper {
    gap: 10px;
  }
}
@media (max-width: 425px) {
  .footer .footer-details__left {
    gap: 30px;
  }
  .footer .footer-details__left .logo {
    text-align: center;
  }
  .footer .footer-details .footer-menu__list {
    display: flex;
    justify-content: center;
  }
  .footer .footer-details__right {
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
  }
  .footer .footer-details__info {
    gap: 15px;
    align-items: center;
    flex-direction: column-reverse;
    text-align: center;
    width: 100%;
  }
  .footer .footer-details .social {
    gap: 15px;
  }
  .footer .schedule {
    gap: 15px;
    align-items: center;
    text-align: center;
    width: 100%;
  }
  .footer .schedule__list {
    align-items: center;
    text-align: center;
    width: 100%;
  }
}
@media (max-width: 375px) {
  .result__arrow {
    min-width: 35px;
    height: 35px;
    width: 35px;
    padding: 10px;
  }
  .gallery__item {
    min-height: 250px;
    height: 250px;
  }
}

/* Contact form 7 */

.wpcf7 form.sent .wpcf7-response-output {
  border-color: #5dff79;
}

.wpcf7 form .wpcf7-response-output {
  margin: 0;
  margin-top: 20px;
  padding: 0.5em 1em;
  border: 2px solid var(--white-color);
  color: white;
}

.wpcf7-not-valid-tip {
  color: #ff6161;
  font-size: 1em;
  font-weight: normal;
  display: block;
  margin-top: 8px;
}

.contacts .wpcf7 form .wpcf7-response-output {
  color: var(--text-color) !important;
}

/* = */

.has-white-background-color {
  background-color: transparent !important;
}

:root :where(p.has-background) {
  padding: 0 !important;
}

/* =================== */

.error {
  padding: 200px 0 30px 0;
  min-height: 100vh;
  position: relative;
}
.error-picture {
  position: absolute;
  right: 0;
  bottom: 30px;
  z-index: -1;
}
.error__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.error__content h2 {
  font-size: 170px;
  font-family: Montserrat, sans-serif;
  font-style: normal;
  font-weight: 700;
  line-height: 100%;
  color: var(--primary-color);
}
.error__content p {
  font-size: 48px;
  font-weight: 700;
  font-family: Montserrat, sans-serif;
  color: var(--primary-color);
}
.error__content .error-btn {
  border: 2px solid var(--text-color);
  color: solid var(--primary-color);
  text-decoration: none;
  max-width: 240px;
  width: 100%;
  font-weight: 600;
  padding: 13.5px 10px;
  font-size: 14px;
  height: 100%;
  font-family: Montserrat, sans-serif;
  transition: all 0.2s ease-in-out;
  text-transform: uppercase;
  margin-top: 30px;
}
.error__content .error-btn:hover {
  background-color: var(--text-color);
  color: var(--white-color);
  border: 2px solid var(--text-color);
}

@media (max-width: 756px) {
  .error {
    padding: 150px 0 30px 0;
  }
  .error__content h2 {
    font-size: 100px;
  }
  .error__content p {
    font-size: 30px;
  }

  .error__content .error-btn {
    border: 1px solid var(--text-color);
    color: solid var(--primary-color);
    text-decoration: none;
    max-width: 200px;
    width: 100%;
    font-weight: 500;
    padding: 13.5px 10px;
    font-size: 12px;
    height: 100%;
    font-family: Montserrat, sans-serif;
    transition: all 0.2s ease-in-out;
    text-transform: uppercase;
    margin-top: 30px;
  }

  .error__content .error-btn:hover {
    background-color: var(--text-color);
    color: var(--white-color);
    border: 1px solid var(--text-color);
  }
}

@media (max-width: 420px) {
  .error__content h2 {
    font-size: 90px;
  }

  .error__content p {
    font-size: 25px;
  }
}
