@font-face {
  font-family: 'Geologica';
  src: url("../fonts/Geologica-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Geologica';
  src: url("../fonts/Geologica-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Geologica';
  src: url("../fonts/Geologica-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Geologica';
  src: url("../fonts/Geologica-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Geologica';
  src: url("../fonts/Geologica-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Geologica';
  src: url("../fonts/Geologica-Thin.ttf") format("truetype");
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}

/* Reset and base styles  */
* {
	padding: 0px;
	margin: 0px;
	border: none;
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

/* Links */

a, a:link, a:visited  {
    text-decoration: none;
}

a:hover  {
    text-decoration: none;
}

/* Common */

aside, nav, footer, header, section, main {
	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;
}

/* Form */

input, textarea, button, select {
	font-family: inherit;
    font-size: inherit;
    color: inherit;
    background-color: transparent;
}

input::-ms-clear {
	display: none;
}

button, input[type="submit"] {
    display: inline-block;
    box-shadow: none;
    background-color: transparent;
    background: none;
    cursor: pointer;
}

input:focus, input:active,
button:focus, button:active {
    outline: none;
}

button::-moz-focus-inner {
	padding: 0;
	border: 0;
}

label {
	cursor: pointer;
}

legend {
	display: block;
}

section {
  overflow: hidden;
  position: relative;
}

:root {
  --container-width: 1246px;
  --container-padding: 15px;

  --font-main: Geologica, sans-serif;
  --font-accent: "proxima-nova", sans-serif;

  --page-bg: #fff;
  --text-color: #151515;
  --text-accent: #555555;
  --accent: #59534f;
  --link-color: #FF512F;
  --footer-br: #3A3A3A;
  --footer-bg: #292929;
  --slide-item: #eeeeee;
  --slide-arrow: #9f9f9f;
  --slid-pag: #c5c5c5;
  --lang-line: #b8b8b8;
  --footer-text:#C5C5C5;
  --form-contact-text:#B4B4B4;
  --reviews-br:#CACACA;
  --border-accent:rgba(218, 218, 218, 1);
}



html {
	scroll-behavior: smooth;
	background-color: rgb(39, 39, 39);
}

body {
	background-color: var(--page-bg);
	color: var(--text-color);
	font-family: var(--font-main);
}

img {
	display: block;
}

a {
	color: var(--link-color);
}

code {
	background-color: #e9f1f6;
	padding: 0.2rem;
	border-radius: 4px;
}

pre.code {
	overflow-x: auto;
	background-color: #e9f1f6;
	padding: 1rem;
	border-radius: 4px;
}

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background:var(--link-color);
}

::-webkit-scrollbar-thumb:hover {
  background:var(--link-color);
}

/* Контейнеры */
.container {
	margin: 0 auto;
	padding: 0 var(--container-padding);

	max-width: var(--container-width);
	width: 100%;
}

.container-right {
  padding-left: calc(
    (100% - var(--container-width)) / 2 + var(--container-padding)
  );
}

.visually-hidden {
	position: absolute;
	width: 1px;
	height: 1px;
	margin: -1px;
	border: 0;
	padding: 0;
	white-space: nowrap;
	clip-path: inset(100%);
	clip: rect(0 0 0 0);
	overflow: hidden;
}

.page {
  height: 100%;
  font-size: 14px;
  font-family: Geologica, sans-serif;
  line-height: 18px;
}

.page__body {
  display: flex;
  flex-direction: column;
  min-width: 320px;
  min-height: 100%;
  margin: 0;
  background-color: #fff;
  color: #000000;
}

.page-main {
  flex-grow: 1;
}

.footer {
  margin-top: auto;
}

.footer {
  padding: 60px 0;
  background-color: #e3e3e3;
}


.mobile-nav {
  position: fixed;
  // top: 0;
  left: -110%;
  width: 45%;
  height: 100%;
  z-index: 110;

  display: flex;
  flex-direction: column;
  padding-bottom: 40px;
  background: var(--page-bg);
  box-shadow: 5px 0 10px rgba(0, 0, 0, 0.2);
  transition: all 0.5s ease-in;
}

.mobile-nav--open {
  left: 0;
}

.mobile-nav__list a {
  color: #151515;
  padding: 15px 10px 15px 35px;
  text-transform: uppercase;
  display: block;
}

.mobile-nav__list {
  display: flex;
  flex-direction: column;
  font-size: 16px;
  line-height: 22px;
  padding-top: 20px;

  & .active {
    opacity: 0.5;
  }
}

.mobile-nav__list li {
  position: relative;
}

.menu-title {
  min-height: 67px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  background-color: var(--link-color);
  text-transform: uppercase;
  font-size: 18px;
  line-height: 22px;
  padding: 7px 5px;
  position: relative;
}

.menu-title .menu__close {
  display: none;
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
}

.submenu {
  position: fixed;
  top: 0px;
  left: -100%;
  width: 45%;
  height: 100%;
  z-index: 100;

  display: flex;
  flex-direction: column;
  padding-bottom: 40px;
  background: var(--page-bg);
  transition: 0.5s ease-in;
}

.submenu--open {
  left: 0;
}

.submenu ul {
  padding-top: 20px;
}

.back-btn {
  position: absolute;
  z-index: 1000;
  left: 35px;
  top: 50%;
  transform: translateY(-50%);
  background-color: transparent;
  border: none;
  cursor: pointer;
}

.back-btn img {
  transform: rotate(90deg);
}

.item-arrow {
  position: relative;
}

.item-arrow img {
  position: absolute;
  transform: translateY(-50%) rotate(-90deg);
  right: 30px;
  top: 50%;
}

.mobile__social-list {
  margin-top: auto;
  display: none;
  align-items: center;
  gap: 9px;
  padding-left: 35px;
}

/* Nav Icon */
.mobile-nav-btn {
  --time: 0.1s;

  --width: 40px;
  --height: 30px;

  --line-height: 4px;
  --spacing: 6px;

  --color: #000;
  --radius: 4px;

  /* Fixed height and width */
  /* height: var(--height); */
  /* width: var(--width); */

  /* Dynamic height and width */
  height: calc(var(--line-height) * 3 + var(--spacing) * 2);
  width: var(--width);

  display: flex;
  justify-content: center;
  align-items: center;
}

.nav-icon {
  position: relative;
  width: var(--width);
  height: var(--line-height);
  background-color: var(--link-color);
  border-radius: var(--radius);
}

.nav-icon::before,
.nav-icon::after {
  content: "";
  display: block;

  position: absolute;
  left: 0;

  width: var(--width);
  height: var(--line-height);

  border-radius: var(--radius);
  background-color: var(--link-color);
  transition: transform var(--time) ease-in, top var(--time) linear var(--time);
}

.nav-icon::before {
  /* top: calc(var(--line-height) * -2); */
  top: calc(-1 * (var(--line-height) + var(--spacing)));
}

.nav-icon::after {
  /* top: calc(var(--line-height) * 2); */
  top: calc(var(--line-height) + var(--spacing));
}

.nav-icon.nav-icon--active {
  background-color: transparent;
}

.nav-icon.nav-icon--active::before,
.nav-icon.nav-icon--active::after {
  top: 0;
  transition: top var(--time) linear, transform var(--time) ease-in var(--time);
}

.nav-icon.nav-icon--active::before {
  transform: rotate(45deg);
}

.nav-icon.nav-icon--active::after {
  transform: rotate(-45deg);
}

/* Layout */

.mobile-nav-btn {
  z-index: 999;
  display: none;
}

.fixed-social {
  position: fixed;
  right: 20px;
  bottom: 12px;
  z-index: 200;
  transition: 0.7s ease;
}
.fixed-social__list {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.fixed-social__link {
  display: block;
  transform: rotate(0deg);
  transition: 0.7s ease;
}

.fixed-social__link img {
  width: 70px;
  height: 70px;
}

.fixed-social__link:hover {
  transform: rotate(360deg);
}

.fixed-social.hidden {
  opacity: 0;
  visibility: hidden;
  transition: 0.7s ease;
}

.slide-item {
  width: calc((100% - 45px) / 3.1) !important;
  flex-shrink: 0;
  display: flex !important;
  height: auto !important;
}





.swiper-wrapper {
  align-items: stretch;
}

.pagination .swiper-pagination-bullet {
  width: 14px;
  height: 14px;
  border: 1px solid var(--slide-arrow);
  background-color: transparent;
  opacity: 0.5;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.pagination .swiper-pagination-bullet-active {
  position: relative;
  opacity: 1;
}

.pagination-2 .swiper-pagination-bullet {
  width: 5px;
  height: 5px;
  background-color: #c5c5c5;
  opacity: 0.5;
  transition: all 0.3s ease;
  border-radius: 0;
}

.pagination-2 .swiper-pagination-bullet-active {
  width: 40px;
  background-color: var(--link-color);
}

.pagination .swiper-pagination-bullet-active::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto auto;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--link-color);
}

.slider-arrow {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--slide-arrow);
  border-radius: 50%;
  z-index: 50;
  cursor: pointer;
  transition: 0.4s linear;
}

.slider-arrow:focus,
.slider-arrow:hover,
.slider-arrow:active {
  border: 1px solid var(--accent);
}

.button-prev img {
  position: relative;
}

.button-next img {
  position: relative;
  transform: rotate(180deg);
}

.slide__block .swiper-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  position: relative;
  z-index: 10;
  bottom: 0 !important;
  width: auto !important;
}

.no-scroll {
  overflow: hidden;
}

.modal {
  position: fixed;
  width: 600px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -60%);
  z-index: 400;
  visibility: hidden;
  opacity: 0;
  transition: 0.7s ease;
}

.modal-bg {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 399;
  background-color: rgba(0, 0, 0, 0.3);
  visibility: hidden;
  opacity: 0;
}

.modal__active {
  visibility: visible;
  opacity: 1;
  transform: translate(-50%, -50%);
}

.modal__active-bg {
  visibility: visible;
  opacity: 1;
}

.modal__wrapper {
  display: flex;
  flex-direction: column;
  position: relative;
  background-color: #fff;
  z-index: 1;
  padding: 40px;
}

.modal__form {
  width: 100%;
}

.modal__top {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-bottom: 26px;
}

.modal-form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: flex-start;
}

.modal-form__top-inner {
  display: flex;
  gap: 15px;
}

.modal-form__top {
  display: flex;
  flex-direction: column;
  gap: 15px;
  width: 100%;
}

.modal-label {
  width: 100%;
}

.modal-label .modal-input {
  width: 100%;
}

.modal-label input::placeholder {
  color: #151515;
}

.modal__btn {
  position: absolute;
  right: 20px;
  top: 20px;
  width: 30px;
  height: 30px;
  background: transparent;
  border: none;
  cursor: pointer;
  transform: rotate(0deg);
  transition: transform 0.5s ease;
}

.modal__btn:hover {
  transform: rotate(25deg);
}

.modal-label .modal__input {
  color: #151515;
  border: 1px solid var(--link-color);
  padding: 13px 14px;
  width: 100%;
}

.modal__inner textarea {
  color: #151515;
  border: 1px solid var(--link-color);
  padding: 13px 14px;
  width: 100%;
}

.modal-label input::placeholder {
  color: #151515;
}

.modal__inner textarea::placeholder {
  color: #151515;
}

.modal-label input:focus,
.modal-label input:active {
  border: 1px solid var(--link-color);
  outline: none;
}

.modal__inner textarea:focus,
.modal__inner textarea:active {
  border: 1px solid var(--link-color);
  outline: none;
}

.modal-review {
  outline: none;
  resize: none;
  height: 99px;
  width: 100%;
}

.title-1 {
  font-size: 63px;
  line-height: 75px;
  font-weight: 600;
  font-family: var(--font-main);
  color: var(--page-bg);
}

.title-2 {
  font-size: 49px;
  line-height: 100%;
  font-weight: 400;
  font-family: var(--font-main);
  color: var(--text-color);
}

.title-3 {
  font-size: 39px;
  line-height: 45px;
  font-weight: 400;
  font-family: var(--font-main);
  color: var(--text-color);
}

.title-4 {
  font-size: 25px;
  line-height: 100%;
  font-weight: 500;
  font-family: var(--font-main);
  color: var(--text-color);
}

.text {
  font-size: 17px;
  line-height: 27px;
  font-weight: 300;
  font-family: var(--font-main);
  color: var(--text-accent);
}

.text-2 {
  font-size: 16px;
  line-height: 21px;
  font-weight: 300;
  font-family: var(--font-main);
  color: var(--text-accent);
}

.text-3 {
  font-size: 20px;
  line-height: 24px;
  font-weight: 300;
  font-family: var(--font-main);
  color: var(--text-accent);
}

.promo__text {
  font-size: 25px;
  line-height: 30px;
  font-weight: 400;
  font-family: var(--font-main);
  color: var(--page-bg);
}

.add-services-title {
  font-size: 20px;
  line-height: 100%;
  font-weight: 600;
  font-family: var(--font-main);
  color: var(--page-bg);
}

.slide-text {
  font-size: 23px;
  line-height: 26px;
  font-weight: 400;
  font-family: var(--font-main);
  color: var(--text-color);
}

.form__text {
  font-size: 16px;
  line-height: 24px;
  font-weight: 300;
  font-family: var(--font-main);
  color: #e5e5e5;
}

.form__contact-text-2 {
  font-size: 13px;
  line-height: 20px;
  font-weight: 400;
  font-family: var(--font-main);
  color: var(--form-contact-text);
}
.form__contact-text {
  font-size: 18px;
  line-height: 20px;
  font-weight: 400;
  font-family: var(--font-main);
  color: var(--page-bg);
}

.footer__title {
  font-size: 17px;
  line-height: 100%;
  font-weight: 400;
  font-family: var(--font-main);
  color: var(--page-bg);
  text-transform: uppercase;
}

.footer__text {
  font-size: 17px;
  line-height: 100%;
  font-weight: 250;
  font-family: var(--font-main);
  color: var(--footer-text);
  transition: 0.4s linear;
}
.footer__link:focus,
.footer__link:hover,
.footer__link:active {
  color: var(--link-color);
}

.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  font-family: var(--font-accent);
  font-weight: 700;
  font-size: 18px;
  line-height: 100%;
  color: var(--page-bg);
  background-color: var(--link-color);
  border-radius: 8px;
  padding: 20px 5px;
  transition: 0.4s linear;
  cursor: pointer;
}

.btn:focus,
.btn:hover,
.btn:active {
  box-shadow: 0 0 20px var(--link-color);
}

.btn__two {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  font-family: var(--font-accent);
  font-weight: 700;
  font-size: 18px;
  line-height: 100%;
  color: var(--link-color);
  background-color: transparent;
  border: 1px solid var(--link-color);
  border-radius: 8px;
  padding: 20px 5px;
  transition: 0.4s linear;
  cursor: pointer;
}

.btn__two:focus,
.btn__two:hover,
.btn__two:active {
  box-shadow: 0 0 20px var(--link-color);
}

.btn__three {
  color: var(--link-color);
  background-color: var(--page-bg);
}

.form__btn {
  max-width: 255px;
  width: 100%;
}

.promo-btn {
  max-width: 255px;
  width: 100%;
}

.info__btn {
  max-width: 255px;
  width: 100%;
}



.text-white {
  color: var(--page-bg);
}


.page-header {
  min-width: 320px;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  background-color: var(--page-bg);
  width: 100%;
  z-index: 80;
  transition: 0.2s linear;
  padding: 25px 0;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.5);
}

.header__row {
  display: flex;
  align-items: center;
}

.logo {
  flex-shrink: 0;
}

.header__nav {
  flex-grow: 1;
  margin-left: 79px;
}

.nav__list {
  display: flex;
  align-items: center;
  gap: 25px;
}
.nav__list li {
  position: relative;
}

.nav__list a {
  font-size: 16px;
  line-height: 100%;
  font-weight: 400;
  font-family: var(--font-main);
  color: var(--text-color);
  text-transform: uppercase;
  transition: 0.4s linear;
}

.nav__list a:focus,
.nav__list a:hover,
.nav__list a:active {
  color: var(--link-color);
}

.header__nav-contact {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 20px;
  margin-left: 10px;
}

.header__contact {
  display: flex;
  align-items: center;
  gap: 54px;
}

.header__contact-inner {
  display: flex;
  align-items: center;
  gap: 29px;
}

.header__lang {
  display: flex;
  gap: 21px;
}
.lang {
  position: relative;
  font-size: 16px;
  line-height: 100%;
  font-weight: 400;
  font-family: var(--font-main);
  color: var(--text-color);
  text-transform: uppercase;
}

.lang.lang-active {
  color: var(--link-color);
}

.lang:not(:last-child)::after {
  position: absolute;
  content: "/";
  right: -14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--lang-line);
}

.header__tel {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  line-height: 100%;
  font-weight: 400;
  font-family: var(--font-main);
  color: var(--text-color);
}

.header__social-list {
  display: flex;
  align-items: center;
  gap: 9px;
}

.header__social-link {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid var(--text-color);
  display: flex;
  align-items: center;
  justify-content: center;
}

// /////////////////////////////////////////////////////
.nav__submenu {
  position: relative;
  display: flex;
  gap: 4px;
  align-items: center;
}

.nav__submenu img {
  position: absolute;
  right: -5px;
  top: 52%;
  transform: translateY(-50%);
}

.header__submenu {
  display: flex;
  flex-direction: column;
  position: absolute;
  left: 0;
  top: 100%;
  opacity: 0;
  min-width: max-content;
  visibility: hidden;
  transform: translateY(-10px);
  transition: 0.5s linear;
}

.nav__list li:hover .header__submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.header__submenu li {
  border-bottom: 1px solid #151515;
}

.header__submenu li a {
  padding: 15px;
  display: flex;
  background-color: var(--page-bg);
  color: var(--text);
}

.header__submenu li a:hover {
  color: var(--link-color);
}

.nav__submenu svg path {
  stroke: #989898;
}

.footer {
  background-color: var(--footer-bg);
  padding: 50px 0 34px;
}

.footer__wrapper {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.footer__top {
  display: flex;
  align-items: flex-start;
  gap: 157px;
  padding-bottom: 52px;
  border-bottom: 1px solid var(--footer-br);
}

.footer-right {
  flex-grow: 1;
  display: flex;
  align-items: flex-start;
  gap: 68px;
  justify-content: space-between;
}
.footer__nav {
  display: flex;
  gap: 73px;
}
.footer__nav-block {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__social {
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer__social-link {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid #8f8f8f;
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer__btn {
	flex-shrink: 0;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(56, 56, 56, 1);
}
.footer__copyright a {
  font-size: 14px;
  line-height: 24px;
  font-weight: 300;
  color: #8c8c8c;
  font-family: var(--font-main);
}

.promo {
  height: 100vh;
}

.breadcrumbs__wrapper {
  display: flex;
  margin-top: 140px;
}

.breadcrumbs__wrapper-1 {
  position: absolute;
  left: 0;
  top: 130px;
  width: 100%;
  z-index: 15;
}

.breadcrumbs {
  display: flex;
  gap: 35px;
}

.breadcrumbs__link {
  font-size: 13px;
  line-height: 100%;
  font-weight: 400;
  font-family: var(--font-main);
  color: #969696;
  position: relative;
  text-transform: uppercase;
}

.breadcrumbs__link:not(:last-child) {
  padding-right: 10px;
}

.breadcrumbs__link:not(:last-child)::after {
  position: absolute;
  content: "/";
  right: -16px;
  top: 0;
}

.breadcrumbs__active {
  color: var(--text-color);
}

.promo__wrapper {
  min-width: 100%;
  height: 100vh;
  position: relative;
  overflow: hidden;
}

.promo__wrapper::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 0;
}

.banner {
  height: 100vh;
}

.banner__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.promo__block {
  display: flex;
  align-items: center;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.promo__inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 43px;
  /* max-width: 687px; */
}

.promo__info {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.promo__block-text {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.info {
  min-width: 320px;
  padding: 100px 0;
}

.info__layout {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.info__wrapper {
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding: 40px 36px;
  border: 1px solid var(--slid-pag);
  border-radius: 25px;
}

.reverse {
  flex-direction: row-reverse;
}

.info__inner {
  display: flex;
  align-items: center;
  gap: 69px;
}

.info__img-1 {
  max-width: 560px;
  width: 100%;
}

.info__img {
  border-radius: 25px;
}

.info__img img {
  width: 100%;
  object-fit: cover;
  border-radius: 25px;
}

.info__block {
  display: flex;
  flex-direction: column;
  gap: 30px;
  max-width: 520px;
  width: 100%;
}

.info__text {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.add-services {
  min-width: 320px;
  padding-bottom: 90px;
}

.add-services__wrapper {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.add-services__list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 32px;
}
.add-services__item {
  display: flex;
  align-items: flex-end;
  position: relative;
  padding: 20px;
  background-color: #d9d9d9;
  transition: 0.4s linear;
  height: 346px;
  overflow: hidden;
  border-radius: 15px;
}
.add-services__img {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  border-radius: 15px;
}

.add-services__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.4s linear;
  transform: scale(1);
  border-radius: 15px;
}

.add-services__item:focus .add-services__img img,
.add-services__item:hover .add-services__img img,
.add-services__item:active .add-services__img img {
  transform: scale(1.1);
}

.add-services__info {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  gap: 10px;
  width: 88%;
}

.add-services__bg {
  width: 100%;
  padding: 10px 13px;
  background-color: rgba(0, 0, 0, 0.38);
  backdrop-filter: blur(10px);
  border-radius: 8px;
}

.add-services__link {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--link-color);
  transition: 0.4s linear;
  border-radius: 8px;
}

.add-services__item:focus .add-services__link,
.add-services__item:hover .add-services__link,
.add-services__item:active .add-services__link {
  box-shadow: 0 0 20px var(--link-color);
}

.slide-1 {
  margin-bottom: 97px;
  min-width: 320px;
  overflow: hidden;
}

.slide-container {
  display: flex;
  position: relative;
}

.slide-img {
  flex-shrink: 0;
  width: 520px;
}

.slide-img img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  border-radius: 30px;
}

.slide__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  padding: 32px 0 64px 0;
  margin-left: -99px;
  width: 100%;
  position: relative;
  z-index: 5;
}

.slide__inner-top {
  display: flex;
  flex-direction: column;
  gap: 30px;
  max-width: 556px;
  width: 100%;
}

.slide__inner-top-inner {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.slide__block-layout {
  width: 100%;
  position: relative;
  flex-shrink: 1;
}

.slide__inner .title-2 {
  text-transform: uppercase;
}

.slide__block {
  position: relative;
  display: flex;
}

.slide-item {
  display: flex !important;
  flex-direction: column;
  gap: 15px;
  padding: 32px 41px 38px 41px;
  border-radius: 10px;
  background-color: var(--slide-item);
  min-height: 323px;
}

.slide-1__wrapper .slide-item {
  padding: 46px 25px 25px 26px;
}

.slide-item__icon {
  width: 65px;
  height: 55px;
}

.slide-item__icon-2 {
  width: 40px;
  height: 40px;
}

.slide-item__info {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.slide__btns {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  bottom: -66px;
  gap: 28px;
}

.home-about-2 {
  min-width: 320px;
  padding-top: 90px ;
}

.home-about__wrapper {
  display: flex;
  align-items: center;
  gap: 110px;
  border: 1px solid var(--slid-pag);
  border-radius: 25px;
}
.home-about__block {
  display: flex;
  flex-direction: column;
  gap: 36px;
  padding-left: 72px;
}

.info__img-2 {
  max-width: 488px;
  width: 100%;
}

.home-about__img img {
  width: 100%;
  object-fit: cover;
  border-radius: 25px;
}

.main-form {
  min-width: 320px;
}

.contact-form {
  min-width: 320px;
  padding: 54px 0;
}

.form__inner {
  display: flex;
  justify-content: space-between;
  gap: 104px;
  padding: 60px 72px;
  position: relative;
  z-index: 1;
  border-radius: 26px;
}

.form__inner::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 26px;
}

.form__contact {
  max-width: 416px;
  width: 100%;
}
.form__contact-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
.form__contact-item {
  display: flex;
  align-items: center;
  gap: 25px;
  background-color: rgba(234, 234, 234, 0.2);
  backdrop-filter: blur(20px);
  border-radius: 10px;
  padding: 18px 55px 18px 36px;
  min-height: 100px;
}
.form__contact-icon {
  flex-shrink: 0;
  width: 45px;
  height: 45px;
}
.form__contact-block {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.form__right {
  display: flex;
  flex-direction: column;
  gap: 23px;
  max-width: 545px;
  width: 100%;
}
.form__right-top {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.form {
  display: flex;
  flex-direction: column;
  gap: 26px;
}
.form-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}
.form__label {
  width: 100%;
}
.form__input {
  width: 100%;
  font-size: 18px;
  line-height: 24px;
  font-weight: 300;
  font-family: var(--font-main);
  color: var(--page-bg);
  padding: 18px 15px;
  backdrop-filter: blur(20px);
  background-color: rgba(156, 156, 156, 0.4);
  border-radius: 10px;
}

.form__input::placeholder {
  color: var(--page-bg);
}

.form__textarea {
  grid-column: 1 / 3;
  outline: none;
  resize: none;
  height: 164px;
}

.img__bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  border-radius: 26px;
}

.reviews {
  min-width: 320px;
  padding: 100px 0 164px 0;
}

.reviews__wrapper {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.reviews__card {
  position: relative;
}



.reviews__item-block {
  padding: 22px 33px 18px 23px;
  display: flex;
  flex-direction: column;
  border-radius: 15px;
  border: 2px solid var(--reviews-br);
}

.reviews__item-logo {
  flex-shrink: 0;
  width: 61px;
  height: 61px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.reviews__item-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.reviews__item-inner {
  padding-top: 5px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.reviews__item-inner-top {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.reviews__item-name {
  font-size: 19px;
  line-height: 24px;
  font-weight: 400;
  font-family: var(--font-main);
  color: var(--text-color);
}
.reviews__item-date {
  font-size: 16px;
  line-height: 21px;
  font-weight: 300;
  font-family: var(--font-main);
  color: #949494;
}
.reviews__item-text {
  font-size: 15px;
  line-height: 20px;
  font-weight: 300;
  font-family: var(--font-main);
  color: #949494;
  transition: all 0.3s ease;
}

.reviews__text--hidden {
	position: relative;
	z-index: 3;
  max-height: 200px;
  overflow: hidden;
  transition: max-height 0.5s ease-in-out;
}

.reviews__text--expanded {
  max-height: 1000px;
}

.reviews-more {
  font-size: 14px;
  line-height: 24px;
  font-weight: 700;
  font-family: var(--font-accent);
  color: var(--link-color);
  text-transform: uppercase;
  text-align: left;
  margin-top: 10px;
}

.reviews__item-img {
  width: 100%;
  min-height: 403px;
  border: 10px solid var(--text-color);
  border-radius: 15px;
  box-sizing: border-box;
  display: block;
}

.reviews__item-img img {
  object-fit: contain;
  width: 100%;
  height: 100%;
  border-radius: 15px;
}
.reviews__btns {
  position: absolute;
  bottom: -66px;
  left: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
}

.partners {
  padding-bottom: 100px;
  min-width: 320px;
  position: relative;
}

.partners__wrapper {
  display: flex;
  flex-direction: column;
  gap: 60px;
  position: relative;
}

.partners__block {
  position: relative;
}

.partners__swiper {
  position: relative;
}

.partners__inner {
  display: flex;
}

.partners__slide {
  border: 1px solid #e6e6e6;
  border-radius: 15px;
  background-color: var(--page-bg);
}

.partners__link {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 96px;
}
.partners__link img {
	width: 120px;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.work {
  min-width: 320px;
  padding-bottom: 100px;
}

.work__wrapper {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.advantages__list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  column-gap: 32px;
  position: relative;
}

.advantages__list::before {
  position: absolute;
  content: "";
  top: 0;
  left: 32.7%;
  transform: translateX(-50%);
  width: 1px;
  height: 100%;
  background-color: var(--border-accent);
}

.advantages__list::after {
  position: absolute;
  content: "";
  top: 0;
  right: 32.7%;
  width: 1px;
  height: 100%;
  background-color: var(--border-accent);
}

.advantages__item {
  display: flex;
  flex-direction: column;
  padding: 29px 62px 39px 0;
  position: relative;
  gap: 29px;
}

.advantages__item:not(:nth-of-type(1)):not(:nth-of-type(4)) {
  padding-left: 20px;
}

.advantages__item {
  position: relative;
}


.advantages__item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: var(--border-accent);
}


.advantages__item:nth-child(n+3):nth-child(-n+6)::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: var(--border-accent);
}

.advantages__img {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 104px;
  height: 94px;
  gap: 30px;
}
.advantages__info {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.services-about {
  min-width: 320px;
  padding: 100px 0;
}

.services-about__wrapper {
  display: flex;
  align-items: center;
  gap: 50px;
}
.services-about__img {
  max-width: 569px;
  width: 100%;
}

.services-about__img img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  border-radius: 25px;
}

.services-about__info {
  display: flex;
  flex-direction: column;
  gap: 36px;
  max-width: 50%;
  width: 100%;
}

.services-about__text {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.about-certificate {
  min-width: 320px;
}

.about-certificate__wrapper {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.about-certificate__link {
  width: 100%;
  border: 10px solid var(--text-color);
  border-radius: 15px;
  display: block;
}

.about-certificate__link img {
  object-fit: contain;
  width: 100%;
  height: 100%;
  border-radius: 15px;
}

.comment {
  min-width: 320px;
  padding: 50px 0 59px 0;
}

.comment__card {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 32px;
}

.form__success {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.form__success .alert-success {
  width: 500px;
  background-color: white;
  padding: 20px;
  position: relative;
  border-radius: 15px;
}

.form__success .alert-success button {
  width: 20px;
  height: 20px;
  position: absolute;
  right: 10px;
  top: 10px;
  font-size: 19px;
  line-height: 23px;
  color: #151515;
  background: url("/storage/app/media/svg/close-success-2.svg") no-repeat;
  background-size: cover;
  background-position: center;
}

.form__success .alert-success button span {
  visibility: hidden;
}

.form__success .alert-success p {
  font-size: 19px;
  line-height: 23px;
  color: #151515;
}
