* {
  border: 0;
  margin: 0;
  padding: 0;
}

*,
:before,
:after {
  box-sizing: border-box;
}

:focus,
:active,
a:focus,
a:active {
  outline: none;
}

nav,
footer,
header,
aside {
  display: block;
}

html,
body {
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  width: 100%;
  height: 100%;
  font-size: 14px;
  line-height: 1;
}

input,
button,
textarea {
  font-family: inherit;
}

input::-ms-clear {
  display: none;
}

button {
  cursor: pointer;
  background: none;
}

button::-moz-focus-inner {
  border: 0;
  padding: 0;
}

a,
a:visited,
a:hover {
  text-decoration: none;
}

ul li {
  list-style: none;
}

img {
  vertical-align: top;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
}

a {
  color: inherit;
}

.header {
  z-index: 101;
  backdrop-filter: blur(7px);
  background-color: #ffffff6e;
  border-bottom: 1px solid #1e1c1c3a;
  width: 100%;
  padding: 10px 0;
  position: fixed;
}

.header .container {
  justify-content: space-between;
  align-items: center;
  display: flex;
}

@media (width <=1100px) {
  .header .container {
    justify-content: start;
  }
}

@media (width <=700px) {
  .header .btn {
    display: none;
  }

  .header__logo img {
    width: 170px;
  }
}

.header__nav ul {
  letter-spacing: .02em;
  color: #1e1c1c;
  align-items: center;
  gap: 40px;
  font-family: Lato, sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 125%;
  display: flex;
}

.header__nav a {
  margin-bottom: -10px;
  padding-bottom: 10px;
  display: block;
  position: relative;
  overflow: hidden;
}

.header__nav a:before {
  content: "";
  background-color: #1e1c1c;
  width: 100%;
  height: 1px;
  transition: all .3s;
  position: absolute;
  bottom: 0;
  transform: translateX(-110%);
}

.header__nav a:hover:before {
  transform: translateX(0);
}

@media (width <=1100px) {
  .header__nav {
    display: none;
  }
}

.dropdown__wrapper {
  position: relative;
}

.dropdown__wrapper a {
  align-items: center;
  gap: 20px;
  display: inline-flex;
}

.dropdown__wrapper a:hover:before {
  transform: translateX(-16px);
}

.js__dropdown-btn svg {
  transition: all .3s;
}

.js__dropdown-btn--active svg {
  transform: rotate(180deg);
}

.js__dropdown-list {
  opacity: 0;
  visibility: hidden;
  background: #928686;
  flex-direction: column;
  width: 320px;
  transition: all .3s;
  position: absolute;
  top: 45px;
  left: -16px;
  box-shadow: 0 12px 24px #0c0c0d99;
  gap: 0 !important;
}

.js__dropdown-list a {
  border-bottom: 1px solid #1e1c1c3a;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  width: 100%;
  padding: 16px;
  display: flex;
}

.js__dropdown-list li {
  width: 100%;
}

.js__dropdown-list li:last-child a {
  border: none;
}

.js__dropdown-list--active {
  opacity: 1;
  visibility: visible;
}

.header__contacts {
  align-items: center;
  gap: 16px;
  display: flex;
}

.header__contacts a {
  letter-spacing: .02em;
  color: #1e1c1c;
  font-family: Lato, sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 125%;
}

@media (width <=1100px) {
  .header__contacts a {
    display: none;
  }

  .header__contacts {
    margin-left: auto;
  }
}

.header__socials {
  align-items: center;
  gap: 8px;
  display: flex;
}



.header__socials a {
  display: block;
}

@media (width <=700px) {
  .header__socials {
    display: none;
  }
}

.js-burger__btn-open {
  margin-left: 20px;
  display: none;
}

@media (width <=1100px) {
  .js-burger__btn-open {
    display: block;
  }
}

.footer {
  background: #928686;
  padding-top: 100px;
  padding-bottom: 20px;
  position: relative;
}

@media (width <=900px) {
  .footer {
    padding-top: 50px;
  }
}

@media (width <=600px) {
  .footer {
    padding-top: 30px;
  }
}

.footer__bg {
  position: absolute;
  left: 0;
  pointer-events: none;
}

.footer__content {
  border-bottom: 1px solid #1e1c1c3a;
  gap: 140px;
  margin-bottom: 20px;
  padding-bottom: 40px;
  display: flex;
}

@media (width <=1300px) {
  .footer__content {
    gap: 30px;
  }
}

@media (width <=900px) {
  .footer__content {
    flex-direction: column;
    padding-bottom: 16px;
  }
}

.footer__logo {
  flex-direction: column;
  gap: 20px;
  display: flex;
}

.footer__logo img {
  width: 400px;
}

@media (width <=1300px) {
  .footer__logo img {
    width: 260px;
  }
}

@media (width <=900px) {
  .footer__logo img {
    width: 160px;
  }
}

@media (width <=700px) {
  .footer__logo img {
    width: 100%;
  }
}

.footer__logo-info {
  letter-spacing: .02em;
  color: #1e1c1c66;
  flex-direction: column;
  gap: 6px;
  margin-top: auto;
  font-family: Lato, sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 125%;
  display: flex;
}

.footer__logo-info span {
  color: #1e1c1c;
  font-weight: 700;
}

.footer__cols {
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  display: grid;
}

@media (width <=900px) {
  .footer__cols {
    grid-template-columns: 1fr;
  }
}

.footer__col-title {
  letter-spacing: .02em;
  color: #1e1c1c;
  border-bottom: 1px solid #1e1c1c3a;
  margin-bottom: 20px;
  padding-bottom: 12px;
  font-family: Lato, sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 110%;
}

@media (width <=700px) {
  .footer__col-title {
    font-size: 20px;
  }
}

.footer__nav ul {
  letter-spacing: .02em;
  color: #1e1c1c;
  flex-direction: column;
  gap: 8px;
  font-family: Lato, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 125%;
  display: flex;
}

@media (width <=700px) {
  .footer__nav ul {
    font-size: 14px;
  }
}

.footer__col-contacts {
  flex-direction: column;
  gap: 8px;
  display: flex;
}

.footer__col-contacts a {
  letter-spacing: .02em;
  color: #1e1c1c;
  font-family: Lato, sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 125%;
}

@media (width <=700px) {
  .footer__col-contacts a {
    font-size: 14px;
  }
}

.footer__contacts-socials {
  margin-top: 4px;
}

.footer__row {
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.footer__row span {
  letter-spacing: .02em;
  color: #1e1c1c66;
  font-family: Lato, sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 125%;
}

.footer__row a {
  letter-spacing: .02em;
  text-decoration-skip-ink: none;
  color: #1e1c1c;
  font-family: Lato, sans-serif;
  font-size: 12px;
  font-weight: 700;
  line-height: 125%;
  text-decoration: underline;
}

@media (width <=700px) {
  .footer__row {
    gap: 10px;
  }
}

.footer__row-links {
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
  display: flex;
}

@media (width <=700px) {
  .footer__row-links {
    gap: 10px;
  }
}

.burger {
  z-index: 103;
  opacity: 0;
  visibility: hidden;
  background: #0000006b;
  width: 100%;
  height: 100%;
  transition: all .3s;
  display: flex;
  position: fixed;
}

.burger--active {
  opacity: 1;
  visibility: visible;
}

@media (width <=700px) {
  .burger img {
    width: 170px;
  }
}

.burger__content {
  background: #928686;
  flex-direction: column;
  padding: 10px 15px 40px;
  display: flex;
  overflow-y: auto;
  width: 100%;
  max-width: 450px;
  gap: 20px;
}

.burger__head {
  border-bottom: 1px solid #1e1c1c3a;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  width: 100%;
  margin-bottom: 15px;
  padding-bottom: 15px;
  display: flex;
}

.burger__nav {
  letter-spacing: .02em;
  color: #1e1c1c;
  font-family: Lato, sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 110%;
  margin: auto 0;
}

.burger__nav ul {
  flex-direction: column;
  gap: 15px;
  display: flex;
  align-items: center;
}

.acc-item {
  transition: all .3s;
  overflow: hidden;
}

.acc-item--active .acc-body {
  max-height: 500px;
  margin-top: 15px;
}

.acc-item--active svg {
  transform: rotate(180deg);
}

.acc-head {
  letter-spacing: .02em;
  color: #1e1c1c;
  align-items: center;
  gap: 10px;
  font-family: Lato, sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 110%;
  display: flex;
  justify-content: center;
}

.acc-head svg {
  transition: all .3s;
}

.acc-body {
  letter-spacing: .02em;
  color: #1e1c1c;
  max-height: 0;
  font-family: Lato, sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 110%;
  transition: all .3s;
  gap: 15px !important;
}

.burger__contacts {
  flex-direction: column;
  gap: 8px;
  margin-bottom: auto;
  display: flex;
  align-items: center;
}

.burger__contacts a {
  letter-spacing: .02em;
  color: #1e1c1c;
  font-family: Lato, sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 125%;
  margin: 0 10px;
  text-align: center;
}

.burger__socials {
  margin: 4px 0;
}

.overlay {
  z-index: 103;
  background: #00000056;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  transition: all .3s;
  display: flex;
  position: fixed;
}

.overlay--hidden {
  opacity: 0;
  visibility: hidden;
}

.overlay__content {
  background: #928686;
  padding: 20px;
  position: relative;
  box-shadow: 0 12px 24px #0c0c0d99;
}

.overlay__content .contacts__form {
  max-width: 540px;
}

.overlay__content .contacts__form-title,
.overlay__content .contacts__form-text {
  text-align: center;
}

.js-overlay__btn-close {
  position: absolute;
  top: 15px;
  right: 15px;
}



.main-section {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 100vh;
  min-height: 680px;
  position: relative;
}


.main-section .container {
  flex-direction: column;
  justify-content: end;
  padding-bottom: 60px;
  display: flex;
  position: relative;
  z-index: 2;
}

.main-section {
  position: relative;
}

/* .main-section::before {
  content: '';
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  /* top: 60px; */
/* background: linear-gradient(180deg, rgb(146 134 134 / 5%) 0%, #928686 100%); 
  background: linear-gradient(180deg, rgba(146, 134, 134, 0) 0%, #928686 38.46%);
} */

.main-section h1 {
  letter-spacing: .02em;
  text-transform: uppercase;
  color: #1e1c1c;
  max-width: 1250px;
  margin-bottom: 22px;
  font-family: Lato, sans-serif;
  font-size: 60px;
  font-weight: 700;
  line-height: 110%;
}

@media (width <=1380px) {
  .main-section h1 {
    max-width: 1030px;
    font-size: 38px;
  }
}

@media (width <=800px) {
  .main-section h1 {
    font-size: 40px;
  }
}

@media (width <=700px) {
  .main-section h1 {
    font-size: 21px;
    margin-bottom: 10px;
  }
}

.main-section--about {
  align-items: end;
  height: auto;
  min-height: 400px;
  display: flex;
  padding-top: 100px;
}

.main-section {
  position: relative;
}

.main-section.swiper-slide::before {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(146, 134, 134, 0) 0%, #000000 160%);
}

@media (max-width: 1000px) {
  .main-section--about {
    min-height: 330px;
  }

  .main-section.swiper-slide::before {
    display: none;
  }

  .main-section.swiper-slide:first-child::before {
    display: block;
  }

  .main-section.swiper-slide::before {
    background: linear-gradient(180deg, rgba(146, 134, 134, 0) 0%, #000000 39%);
  }
}

.main-section--about .container {
  width: 100%;
}

.main-section--about .container h1 {
  max-width: none;
}

.main-section__row {
  border-top: 1px solid #1e1c1c5e;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin-bottom: 40px;
  padding-top: 22px;
  display: flex;
}

.main-section__row-first {
  padding-top: 0;
  margin-bottom: 20px;
  border: none;
  gap: 0;
}

.main-section__row p {
  letter-spacing: .02em;
  color: #1e1c1c;
  max-width: 690px;
  font-family: Lato, sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 125%;
}

@media (width <=1400px) {
  .main-section__row p {
    font-size: 18px;
  }
}

@media (width <=800px) {
  .main-section__row p {
    max-width: 328px;
    font-size: 16px;
  }
}

@media (width <=700px) {
  .main-section__row p {
    max-width: none;
    font-size: 14px;
  }

  .main-section__row {
    flex-direction: column;
    width: 100%;
    margin-bottom: 10px;
  }
}

.main-section__btns {
  align-items: center;
  gap: 20px;
  display: flex;
}

@media (width <=700px) {
  .main-section__btns {
    width: 100%;
  }

  .main-section__btns .btn {
    width: 100%;
    max-width: none;
  }
}

.main-section__cards {
  grid-template-columns: repeat(4, 1fr);
  display: grid;
}

@media (width <=800px) {
  .main-section__cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (width <=700px) {
  .main-section__cards {
    grid-template-columns: 1fr;
  }
}

.main-section__cards-item {
  border: 1px solid #1e1c1c1a;
  padding: 20px;
}

@media (width <=700px) {
  .main-section__cards-item {
    padding: 5px 0;
  }
}

.main-section__item-title {
  letter-spacing: .02em;
  text-align: center;
  color: #1e1c1c;
  font-family: Lato, sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 110%;
}

@media (width <=700px) {
  .main-section__item-title {
    font-size: 20px;
  }
}

.main-section__item-text {
  letter-spacing: .02em;
  text-align: center;
  color: #1e1c1c;
  font-family: Lato, sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 125%;
}

@media (width <=1280px) {
  .main-section__item-text {
    font-size: 16px;
  }
}

@media (width <=700px) {
  .main-section__item-text {
    font-size: 14px;
  }
}

.services__content {
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  display: grid;
}

@media (width <=1150px) {
  .services__content {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (width <=700px) {
  .services__content {
    grid-template-columns: 1fr;
    gap: 15px;
  }
}

.services__content-item {
  position: relative;
  overflow: hidden;
}

.services__content-item img {
  object-fit: cover;
  width: 100%;
  height: 450px;
  transition: all .3s;
}

@media (width <=1280px) {
  .services__content-item img {
    height: 320px;
  }
}

@media (width <=700px) {
  .services__content-item img {
    height: 260px;
    min-height: 260px;
  }
}

.services__content-item:before {
  content: "";
  z-index: 1;
  opacity: 0;
  visibility: hidden;
  background: linear-gradient(#0c0c0d00 0%, #0c0c0dcc 40%);
  width: 100%;
  height: 60%;
  transition: all .3s;
  position: absolute;
  bottom: 0;
}

@media (width <=900px) {
  .services__content-item:before {
    display: none;
  }
}

.services__content-item:hover img {
  transform: scale(1.1);
}

.services__content-item:hover .services__item-descr {
  top: 20px;
}

.services__content-item:hover svg {
  transform: rotate(-180deg);
}

.services__content-item:hover:before {
  opacity: 1;
  visibility: visible;
}

@media (width <=900px) {
  .services__content-item {
    flex-direction: column;
    display: flex;
  }
}

.services__item-descr {
  z-index: 2;
  flex-direction: column;
  width: calc(100% - 40px);
  height: calc(100% - 40px);
  transition: all .3s;
  display: flex;
  position: absolute;
  top: 370px;
  left: 20px;
}

@media (max-width: 1480px) {
  .services__item-descr {
    top: 360px;
  }
}

@media (width <=1280px) {
  .services__item-descr {
    top: 280px;
  }
}

@media (width <=900px) {
  .services__item-descr {
    background: #0f0f0f;
    width: 100%;
    height: 100%;
    padding: 16px;
    position: static;
  }
}

.services__item-head {
  justify-content: space-between;
  align-items: end;
  gap: 20px;
  display: flex;
}

.services__item-head svg {
  transition: all .3s;
  flex-shrink: 0;
}

@media (width <=900px) {
  .services__item-head svg {
    display: none;
  }
}

.services__item-title {
  letter-spacing: .02em;
  color: #fff;
  font-family: Lato, sans-serif;
  font-size: 28px;
  font-weight: 700;
  line-height: 110%;
}



@media (width <=1480px) {
  .services__item-title {
    font-size: 22px;
  }
}

@media (width <=900px) {
  .services__item-title {
    margin-bottom: 12px;
    font-size: 24px;
  }
}

.services__item-content {
  margin-top: auto;
}

.services__item-content p {
  letter-spacing: .02em;
  color: #fff;
  border-bottom: 1px solid #1e1c1c3a;
  margin-bottom: 16px;
  padding-bottom: 16px;
  font-family: Lato, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 125%;
}

.services__content-first {
  display: flex;
  flex-direction: column;
  position: relative;
  padding: 20px;
  background: #1e1c1c;
  border-left: 1px solid rgba(236, 236, 236, 0.6);
}

.services__content-first .btn {
  position: relative;
  z-index: 3;
}

.services__content-first svg {
  position: absolute;
  right: 0;
  z-index: 1;
  bottom: 0;
}

.services__content-first .btn {
  margin-top: auto;
}

.services__first-title {
  font-family: Lato, sans-serif;
  font-weight: 700;
  font-size: 40px;
  line-height: 110%;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 20px;
}

.services__first-text {
  font-weight: 400;
  font-size: 20px;
  line-height: 125%;
  letter-spacing: 0.02em;
  color: #fff;
}


@media (width <=900px) {
  .services__item-content p {
    font-size: 14px;
  }
}

.services__item-row {
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  display: flex;
}

.services__item-price {
  letter-spacing: .02em;
  color: #fff;
  font-family: Lato, sans-serif;
  font-size: 32px;
  font-weight: 700;
  line-height: 110%;
}

@media (width <=1280px) {
  .services__item-price {
    font-size: 28px;
  }
}

@media (width <=900px) {
  .services__item-price {
    font-size: 24px;
  }
}

.ba-wrap {
  user-select: none;
  border-radius: var(--border-radius-lg);
  aspect-ratio: 16 / 9;
  cursor: col-resize;
  background: #111;
  width: 100%;
  min-height: 280px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

@media (width <=700px) {
  .ba-wrap {
    min-height: 180px;
  }
}

.ba-img {
  object-fit: cover;
  pointer-events: none;
  width: 100%;
  height: 100%;
  min-height: 280px;
  display: block;
  position: absolute;
  inset: 0;
}

@media (width <=700px) {
  .ba-img {
    min-height: 180px;
  }
}

.ba-divider {
  pointer-events: none;
  z-index: 10;
  background: #fff;
  width: 2px;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.ba-handle {
  z-index: 11;
  pointer-events: none;
  background: #fff;
  border: 2px solid #000;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 16px;
  height: 16px;
  display: flex;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 1px 6px #0000002e;
}

.ba-arrows {
  color: #444;
  align-items: center;
  gap: 24px;
  font-size: 15px;
  display: flex;
  position: relative;
  top: 2px;
}

.ba-label {
  letter-spacing: .02em;
  color: #1e1c1c;
  pointer-events: none;
  z-index: 9;
  background: #0c0c0d;
  padding: 12px 16px;
  font-size: 16px;
  font-weight: 400;
  line-height: 125%;
  position: absolute;
  bottom: 14px;
}

@media (width <=800px) {
  .ba-label {
    padding: 10px;
    font-size: 12px;
  }
}

.ba-label-before {
  color: #fff;
  max-height: max-content;
  top: 8px;
  left: 8px;
}

.ba-label-after {
  color: #fff;
  max-height: max-content;
  top: 8px;
  right: 8px;
}

.ba-range {
  width: 100%;
  margin-top: 14px;
}

.ba-hint {
  text-align: center;
  color: var(--color-text-secondary);
  margin-top: 8px;
  margin-bottom: 0;
  font-size: 13px;
}

#imgAfter {
  clip-path: inset(0 0 0 50%);
}

.works__swiper {
  padding-bottom: 60px;
}

.works__swiper-wrapper-prev {
  width: 36px;
  height: 36px;
  margin: 0;
  inset: auto 48px 0 auto;
}

.works__swiper-wrapper-prev:after {
  display: none;
}

@media (width <=800px) {
  .works__swiper-wrapper-prev {
    left: 0;
    right: auto;
  }
}

.works__swiper-wrapper-next {
  width: 36px;
  height: 36px;
  margin: 0;
  top: auto;
  left: auto;
  bottom: 0 !important;
  right: 0 !important;
}

.works__swiper-wrapper-next:after {
  display: none;
}

.works__swiper-pagination {
  z-index: 10;
  background: #ffffff17;
  bottom: 15px;
  width: calc(100% - 116px) !important;
  top: auto !important;
}

.works__swiper-pagination .swiper-pagination-progressbar-fill {
  background-color: #fff;
}

@media (width <=800px) {
  .works__swiper-pagination {
    left: 52px !important;
  }
}

.about__content-wrapper {
  gap: 40px;
  display: flex;
}

@media (width <=1000px) {
  .about__content-wrapper {
    flex-direction: column;
    gap: 30px;
  }
}

.about__descr {
  width: 100%;
  max-width: 940px;
}

.about__descr img,
.about__descr video {
  object-fit: cover;
  width: 100%;
  height: auto;
  min-height: 220px;
}

.about__descr-texts {
  align-items: start;
  gap: 24px;
  margin-bottom: 24px;
  display: flex;
}

.about__descr-texts p {
  letter-spacing: .02em;
  color: #1e1c1c;
  opacity: .6;
  font-family: Lato, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 125%;
}

@media (width <=1000px) {
  .about__descr-texts p {
    font-size: 14px;
  }
}

@media (width <=700px) {
  .about__descr-texts {
    flex-direction: column;
    gap: 20px;
  }

  .about__descr-texts .btn {
    max-width: none;
  }
}

.about__col {
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  max-width: 680px;
  display: flex;
}

.about__col-item {
  border-bottom: 1px solid #1e1c1c1a;
  align-items: center;
  gap: 24px;
  width: 100%;
  padding: 40px 20px;
  display: flex;
}

@media (width <=700px) {
  .about__col-item {
    flex-direction: column;
    align-items: start;
    gap: 10px;
    margin-bottom: 10px;
    padding: 0 0 10px;
  }
}

.about__item-title {
  letter-spacing: .02em;
  color: #1e1c1c;
  width: 100%;
  font-family: Oswald, sans-serif;
  font-size: 50px;
  font-weight: 700;
  line-height: 110%;
}

@media (width <=1100px) {
  .about__item-title {
    font-size: 40px;
  }
}

@media (width <=700px) {
  .about__item-title {
    font-size: 30px;
  }
}

.about__item-text {
  letter-spacing: .02em;
  color: #1e1c1c;
  opacity: .6;
  width: 100%;
  max-width: 280px;
  font-family: Lato, sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 125%;
}

@media (width <=1100px) {
  .about__item-text {
    font-size: 16px;
  }
}

@media (width <=700px) {
  .about__item-text {
    font-size: 14px;
  }
}

.contacts .container {
  gap: 10px;
  display: flex;
}

@media (width <=1200px) {
  .contacts .container {
    grid-template-columns: 200px 1fr;
    gap: 32px 0;
    display: grid;
  }
}

@media (width <=700px) {
  .contacts .container {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

.contacts iframe {
  width: 100%;
  max-width: 780px;
  height: 400px;
}

@media (width <=1200px) {
  .contacts iframe {
    max-width: none;
  }
}

@media (width <=700px) {
  .contacts iframe {
    margin-bottom: 20px;
  }
}

.contacts__col {
  width: 100%;
  max-width: 320px;
}

.contacts__card {
  z-index: 3;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border-left: 1px solid #ececec66;
  flex-direction: column;
  gap: 8px;
  width: 370px;
  margin-top: 80px;
  padding: 20px;
  display: flex;
  position: relative;
}

.contacts__card a {
  letter-spacing: .02em;
  color: #ececec;
  font-family: Lato, sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 125%;
}

@media (width <=700px) {
  .contacts__card a {
    font-size: 16px;
  }

  .contacts__card {
    width: 100%;
    margin-top: -10px;
  }
}

.contacts__card-socials {
  gap: 12px;
  margin-top: 32px;
  display: flex;
}

.contacts__form {
  width: 100%;
  max-width: 400px;
  margin-left: auto;
}

.contacts__form form {
  flex-direction: column;
  display: flex;
}

.contacts__form textarea {
  height: 110px;
}

.contacts__form input:not(.custom-checkbox input, .btn),
.contacts__form textarea {
  letter-spacing: .02em;
  color: #fff;
  resize: none;
  background: none;
  border-bottom: 1px solid #1e1c1c;
  width: 100%;
  padding: 12px 0;
  font-family: Lato, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 125%;
}

.contacts__form input:not(.custom-checkbox input, .btn)::placeholder,
.contacts__form textarea::placeholder {
  color: #1e1c1c66;
}

.contacts__form .btn {
  max-width: none;
}

@media (width <=1200px) {
  .contacts__form {
    grid-column: 1 / -1;
    margin: 0 auto;
  }
}

@media (width <=700px) {
  .contacts__form {
    max-width: none;
  }
}

.contacts__form-title {
  letter-spacing: .02em;
  color: #1e1c1c;
  margin-bottom: 12px;
  font-family: Lato, sans-serif;
  font-size: 32px;
  font-weight: 700;
  line-height: 110%;
}

@media (width <=1200px) {
  .contacts__form-title {
    text-align: center;
  }
}

@media (width <=700px) {
  .contacts__form-title {
    font-size: 24px;
  }
}

.contacts__form-text {
  letter-spacing: .02em;
  color: #1e1c1c;
  opacity: .6;
  margin-bottom: 20px;
  font-family: Lato, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 125%;
}

@media (width <=1200px) {
  .contacts__form-text {
    text-align: center;
  }
}

@media (width <=700px) {
  .contacts__form-text {
    font-size: 14px;
  }
}

.custom-checkbox {
  letter-spacing: .02em;
  color: #1e1c1c66;
  cursor: pointer;
  align-items: center;
  margin: 15px 0;
  font-family: Lato, sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 125%;
  display: flex;
}

.custom-checkbox input {
  appearance: none;
  cursor: pointer;
  vertical-align: middle;
  background: #1e1c1c1a;
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  margin-right: 8px;
  display: inline-block;
  position: relative;
}

.custom-checkbox input:checked:after {
  content: "";
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='10' height='9' fill='none'><path stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.495' d='M1 4.5 3.667 8 9 1'/></svg>") center / contain no-repeat;
  width: 10px;
  height: 9px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.service-info__content-wrapper {
  position: relative;
}

.service-info__text {
  letter-spacing: .02em;
  color: #1e1c1c;
  padding-right: 420px;
  font-family: Lato, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 125%;
}

@media (width <=1100px) {
  .service-info__text {
    padding: 0;
    font-size: 14px;
  }
}

.service-info__img-abs {
  position: absolute;
  top: 0;
  right: 0;
}

@media (min-width: 1000px) {
  .service-info__img-abs {
    height: 220px;
    width: 400px;
    object-fit: cover;
  }
}


@media (width <=1100px) {
  .service-info__img-abs {
    position: static;
  }
}

.service-info__texts {
  margin-bottom: 20px;
}

@media (width <=1100px) {
  .service-info__texts {
    gap: 20px;
    display: flex;
  }
}

@media (width <=700px) {
  .service-info__texts {
    flex-direction: column;
    margin-bottom: 15px;
  }
}

.service-info__content {
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  display: grid;
  position: relative;
}

@media (width <=1100px) {
  .service-info__content {
    grid-template-columns: 1fr;
  }
}

.service-info__static-img {
  object-fit: cover;
  width: 100%;
  min-height: 380px;
  max-height: 470px;
}

.service-info__content-img {
  z-index: -1;
  position: absolute;
  top: 0;
  right: 450px;
}

@media (width <=1200px) {
  .service-info__content-img {
    display: none;
  }
}

.service-info__items {
  flex-direction: column;
  margin-top: auto;
  display: flex;
}

.service-info__item {
  border-bottom: 1px solid #1e1c1c3a;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 40px 20px;
  display: flex;
}

@media (width <=700px) {
  .service-info__item {
    flex-direction: column;
    align-items: start;
    padding: 0 0 15px;
  }
}

.service-info__item-title {
  letter-spacing: .02em;
  color: #1e1c1c;
  font-family: Lato, sans-serif;
  font-size: 50px;
  font-weight: 700;
  line-height: 110%;
}

@media (width <=1300px) {
  .service-info__item-title {
    font-size: 48px;
  }
}

.service-info__item-text {
  letter-spacing: .02em;
  color: #1e1c1c;
  opacity: .6;
  max-width: 280px;
  font-family: Lato, sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 125%;
}

@media (width <=1300px) {
  .service-info__item-text {
    font-size: 20px;
  }
}

@media (width <=700px) {
  .service-info__item-text {
    font-size: 16px;
  }
}

.price-list__head {
  grid-template-columns: repeat(6, 1fr);
  display: grid;
}

.price-list__head div:first-child {
  border-bottom: 1px solid #1e1c1c3a;
  border-right: 1px solid #1e1c1c3a;
}

@media (width <=1000px) {
  .price-list__head {
    display: none;
  }
}

.price-list__item {
  letter-spacing: .02em;
  color: #fff;
  background: #0f0f0f;
  border: 1px solid #1e1c1c3a;
  border-left: 0;
  padding: 16px 20px;
  font-family: Lato, sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 110%;
}

.price-list_row {
  grid-template-columns: repeat(6, 1fr);
  display: grid;
}

@media (width >=1000px) {
  .price-list_row:hover .price-list_row-wrapper {
    background: rgba(30, 28, 28, 0.16);
  }
}

@media (width <=1000px) {
  .price-list_row {
    flex-direction: column;
    padding: 24px 16px;
    display: flex;
  }

  .price-list_row:nth-child(odd) {
    background: rgba(30, 28, 28, 0.16);
  }
}

.price-list_row-wrapper {
  grid-column: 5 span;
  grid-template-columns: repeat(5, 1fr);
  transition: all .3s;
  display: grid;
}

@media (width <=700px) {
  .price-list_row-wrapper {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
}

.price-list__row-title {
  letter-spacing: .02em;
  color: #fff;
  background: #0f0f0f;
  border: 1px solid #1e1c1c3a;
  border-top: 0;
  align-items: center;
  padding: 16px 20px;
  font-family: Lato, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 125%;
  display: flex;
}

@media (width <=1000px) {
  .price-list__row-title {
    letter-spacing: .02em;
    color: #1e1c1c;
    background: none;
    border-left: none;
    border-right: none;
    padding: 0 0 16px;
    font-family: Lato, sans-serif;
    font-size: 20px;
    font-weight: 700;
    line-height: 110%;
  }
}

.price-list__row-item {
  letter-spacing: .02em;
  color: #1e1c1c;
  border: 1px solid #1e1c1c3a;
  border-top: 0;
  border-left: 0;
  flex-direction: column;
  justify-content: center;
  padding: 16px 20px;
  font-family: Lato, sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 125%;
  display: flex;
}

.price-list__row-item span {
  letter-spacing: .02em;
  color: #1e1c1c66;
  font-family: Lato, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 125%;
  display: none;
}

@media (width <=1000px) {
  .price-list__row-item span {
    display: block;
  }

  .price-list__row-item {
    border: none;
    padding: 16px 0 0;
  }
}

.why .section-title {
  text-align: center;
}

.why__cards {
  grid-template-columns: repeat(3, 1fr);
  display: grid;
}

@media (width <=700px) {
  .why__cards {
    grid-template-columns: 1fr;
  }
}

.why__cards-item {
  border: 1px solid #1e1c1c1a;
  flex-direction: column;
  align-items: center;
  padding: 20px;
  display: flex;
}

@media (width <=700px) {
  .why__cards-item {
    padding: 16px;
  }

  .why__cards-item img {
    width: 40px;
    height: 40px;
  }
}

.why__item-title {
  letter-spacing: .02em;
  text-align: center;
  color: #1e1c1c;
  margin-top: 12px;
  margin-bottom: 4px;
  font-family: Lato, sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 125%;
}

@media (width <=1000px) {
  .why__item-title {
    font-size: 16px;
  }
}

.why__item-text {
  letter-spacing: .02em;
  text-align: center;
  color: #1e1c1c66;
  font-family: Lato, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 125%;
}

@media (width <=1000px) {
  .why__item-text {
    font-size: 14px;
  }
}

.faq__content-wrapper {
  gap: 40px;
  display: flex;
}

.faq__content-wrapper .section-title {
  width: 100%;
  max-width: 400px;
}

@media (width <=1000px) {
  .faq__content-wrapper .section-title {
    max-width: none;
  }

  .faq__content-wrapper {
    flex-direction: column;
    gap: 0;
  }
}

.faq__content {
  flex-direction: column;
  gap: 20px;
  width: 100%;
  display: flex;
}

.faq__content .acc-item {
  background: #0f0f0f;
  padding: 20px 20px 0;
}

.faq__content .acc-item--active .acc-body {
  padding-bottom: 20px;
}

@media (width <=1000px) {
  .faq__content .acc-item--active .acc-body {
    padding-bottom: 16px;
  }

  .faq__content .acc-item {
    padding: 16px 16px 0;
  }
}

.faq__content .acc-head {
  letter-spacing: .02em;
  color: #fff;
  border-bottom: 1px solid #1e1c1c3a;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding-bottom: 20px;
  font-family: Lato, sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 110%;
  display: flex;
}

.faq__content .acc-head svg {
  flex-shrink: 0;
}

@media (width <=1000px) {
  .faq__content .acc-head {
    padding-bottom: 16px;
    font-size: 16px;
  }
}

.faq__content .acc-body {
  letter-spacing: .02em;
  color: #fff;
  font-family: Lato, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 125%;
}

@media (width <=1000px) {
  .faq__content .acc-body {
    font-size: 14px;
  }
}

.rights_download {
  text-decoration-skip-ink: none;
  color: #1e1c1c;
  font-weight: 700;
  text-decoration: underline;
}

.wrapper {
  width: 100%;
  min-height: 100%;
  overflow: hidden;
}

.container {
  max-width: 1675px;
  height: 100%;
  margin: 0 auto;
  padding: 0 15px;
}

html,
body {
  color: #fff;
  background: #928686;
  font-family: Lato, sans-serif;
}

.btn {
  letter-spacing: .02em;
  color: #1e1c1c;
  text-align: center;
  cursor: pointer;
  white-space: nowrap;
  border-bottom: 1px solid #1e1c1c;
  justify-content: center;
  align-items: center;
  gap: 8px;
  width: 100%;
  max-width: max-content;
  padding: 20px 32px;
  font-family: Lato, sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 125%;
  transition: all .3s;
  display: flex;
  background: transparent;
}

.btn:hover {
  color: #fff;
  background: #1e1c1c;
}

.btn:active {
  background: #1e1c1ccc;
  border-color: #1e1c1ccc;
}

.btn--mini {
  padding: 12px 16px;
}

.btn--white {
  border-color: #fff;
  color: #fff;
}

.btn--white::hover {
  border-color: #1e1c1ccc;
  color: #1e1c1ccc;
}

@media (width <=1100px) {
  .btn--mini {
    padding: 9.25px 12px;
  }
}

@media (width <=1100px) {
  .btn {
    font-size: 14px;
  }
}

@media (width <=700px) {
  .btn {
    padding: 16px;
  }
}

.section {
  margin-bottom: 120px;
}

@media (width <=1000px) {
  .section {
    margin-bottom: 80px;
  }
}

@media (width <=700px) {
  .section {
    margin-bottom: 50px;
  }
}

.section-head {
  border-bottom: 1px solid #1e1c1c3a;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 40px;
  padding-bottom: 20px;
  display: flex;
}

.section-head .section-title {
  margin-bottom: 0;
}

@media (width <=800px) {
  .section-head {
    flex-direction: column;
    gap: 8px;
    margin-bottom: 30px;
  }
}

.section-title {
  letter-spacing: .02em;
  text-transform: uppercase;
  color: #1e1c1c;
  margin-bottom: 40px;
  font-family: Lato, sans-serif;
  font-size: 40px;
  font-weight: 700;
  line-height: 110%;
}

@media (width <=1280px) {
  .section-title {
    font-size: 36px;
  }
}

@media (width <=800px) {
  .section-title {
    font-size: 32px;
  }
}

@media (width <=600px) {
  .section-title {
    font-size: 28px;
  }
}

.section-text {
  letter-spacing: .02em;
  color: #1e1c1c;
  opacity: .6;
  width: 100%;
  max-width: 680px;
  font-family: Lato, sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 125%;
}

@media (width <=1280px) {
  .section-text {
    font-size: 16px;
  }
}

@media (width <=800px) {
  .section-text {
    font-size: 14px;
  }
}

.main-section__btns-wrapper {
  display: flex;
  align-items: center;
  gap: 15px;
}

.main-section__counter {
  font-weight: 700;
  font-size: 24px;
  line-height: 110%;
  letter-spacing: 0.02em;
  color: rgba(30, 28, 28, 0.4);
}

.main-section__counter-current {
  font-weight: 700;
  font-size: 28px;
  line-height: 110%;
  letter-spacing: 0.02em;
  color: #1e1c1c;
}

.main-section__counter-total {
  font-weight: 700;
  font-size: 24px;
  line-height: 110%;
  letter-spacing: 0.02em;
  color: rgba(30, 28, 28, 0.4);
}


.header__contacts .btn {
  border-color: transparent !important;
}

.header__contacts .btn:hover {
  border-bottom: 1px solid #1e1c1c !important;
  background: transparent !important;
  color: #1e1c1c !important;
}

.burger .acc-body {
  font-size: 14px;
  text-align: center;
}

@media (max-width: 1000px) {
  .main-section.swiper-slide {
    background-color: #000;
  }
}


.main-section h1,
.main-section__counter-current,
.main-section__row p,
.main-section__item-title,
.main-section__counter {
  color: #ffffff;
}

.main-section__cards-item,
.main-section__row {
  border-color: #ffffff1a;
}

.main-section__counter-total,
.main-section__item-text {
  color: rgb(255 255 255);
}

@media (max-width: 600px) {
  .main-section {
    background-position: 0px 50px !important;
    background-size: contain !important;
  }

  .main-section h1 {
    font-size: 16px !important;
  }
}