@font-face {
  font-family: 'Roboto Condensed';
  src: url('../fonts/RobotoCondensed-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'Roboto Condensed';
  src: url('../fonts/RobotoCondensed-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: 'Roboto Condensed';
  src: url('../fonts/RobotoCondensed-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: 'Roboto Condensed';
  src: url('../fonts/RobotoCondensed-Black.ttf') format('truetype');
  font-weight: 900;
  font-style: normal;
}

@font-face {
  font-family: 'Montserrat';
  src: url('../fonts/Montserrat-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: 'Montserrat';
  src: url('../fonts/Montserrat-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: 'Montserrat';
  src: url('../fonts/Montserrat-SemiBold.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
}

@font-face {
  font-family: 'Montserrat';
  src: url('../fonts/Montserrat-ExtraBold.ttf') format('truetype');
  font-weight: 800;
  font-style: normal;
}

@font-face {
  font-family: 'Montserrat';
  src: url('../fonts/Montserrat-Black.ttf') format('truetype');
  font-weight: 900;
  font-style: normal;
}

@font-face {
  font-family: 'InterTight';
  src: url('../fonts/InterTight-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
}

@media screen and (-webkit-min-device-pixel-ratio: 0) {
  select {
    font-family: sans-serif;
  }
}

/* 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 {
  box-sizing: border-box;
}

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;
}

:root {
  --container-width: 1246px;
  --container-padding: 15px;

  --font-main: Roboto Condensed, sans-serif;
  --font-accent: Montserrat, sans-serif;
  --font-accent-two: InterTight, sans-serif;
  --font-titles: var(--font-main);

  --page-bg: #fff;
  --text-color: #000;
  --accent: #151515;
  --link-color: #56a6b0;
  --footer-bg: #ededed;
  --border-cl: #cbcbcb;
  --text-accent: #666666;
  --border-accent:#dadada;
  --title-line:#444444;
  --color-date:#949494;
  --color-form:#cecece;

  --laptop-size: 1199px;
  --tablet-size: 959px;
  --mobile-size: 599px;
}

.dark {
  --page-bg: #252526;
  --text-color: #fff;
}

html {
	scroll-behavior: smooth;
	background-color: rgb(39, 39, 39);
}

body {
	padding-top: 87px;
	background-color: var(--page-bg);
	color: var(--text-color);
	font-family: var(--font-main);
	text-wrap: balance;
}

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; 
  border-radius: 10px;
}

::-webkit-scrollbar-thumb {
  background: #56a6b0; /* Голубовато-бирюзовый цвет */
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background: #4c949e; /* Чуть темнее при наведении */
}

.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;
}

.container {
	margin: 0 auto;
	padding: 0 var(--container-padding);

	max-width: var(--container-width);
	width: 100%;
}

.page {
  height: 100%;
  font-size: 14px;
  font-family: Roboto Condensed, 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;
  min-height: 100vh; /* Добавьте min-height */
  background-image: url('/storage/app/media/main-bg-1.png'); /* Замените на свой путь */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.footer {
  margin-top: auto;
}

.footer {
  padding: 60px 0;
  background-color: #e3e3e3;
}


.title-2 {
  font-size: 42px;
  line-height: 59px;
  font-family: var(--font-accent);
  color: var(--page-bg);
  text-transform: uppercase;
  letter-spacing: 5px;
}

.title-2 span {
  display: inline-block;
  font-weight: 900;
  position: relative;
}

.title-2 span::after {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background-color: var(--page-bg);
}

.title-3 {
  font-family: var(--font-accent);
  font-size: 40px;
  line-height: 50px;
  /* // letter-spacing: 5px; */
  font-weight: 500;
  text-transform: uppercase;
  
}

.title-3-line {
  position: relative;
}

.title-3-line::after {
  position: absolute;
  content: "";
  width: 55px;
  height: 2px;
  left: 0;
  bottom: -25px;
  background-color: var(--title-line);
}

.title-4 {
  font-weight: 600;
  font-size: 20px;
  line-height: 100%;
  letter-spacing: 1px;
  text-transform: uppercase;
  
}

.text {
  font-size: 20px;
  line-height: 27px;
  color: var(--text-accent);
  text-align: justify;
}

.text-2 {
  font-size: 16px;
  line-height: 18px;
  color: var(--text-accent);
  
}

.text-3 {
  font-size: 14px;
  line-height: 22px;
  color: var(--title-line);
  text-align: justify;
}

.promo__btn {
  width: 312px;
}

.form__btn {
  width: 227px;
}

.btn {
  text-align: center;
  background-color: var(--link-color);
  border: 1px solid var(--link-color);
  border-radius: 60px;
  color: var(--page-bg);
  font-weight: 700;
  font-size: 18px;
  line-height: 100%;
  padding: 20px 10px;
  cursor: pointer;
  transition: 0.5s ease;
}

.btn:focus,
.btn:hover,
.btn:active {
  background-color: transparent;
  color: var(--link-color);
}

.text-white {
  color: var(--page-bg);
  position: relative;
}

.title-3-white-line{
  position: relative;
}

.title-3-white-line::after {
  background-color: var(--page-bg);
  position: absolute;
  content: "";
  width: 55px;
  height: 2px;
  left: 0;
  bottom: -25px;
}

.read__more {
  font-family: var(--font-accent);
  font-weight: 700;
  font-size: 14px;
  line-height: 24px;
  color: var(--title-line);
  border: none;
  background-color: transparent;
  transition: color 0.5s ease;
}

.read__more:focus,
.read__more:hover,
.read__more:active {
  color: var(--link-color);
}

.nav {
  font-size: 16px;
}
.nav__list {
  display: flex;
  column-gap: 20px;
}

.nav__list a {
  font-family: var(--font-accent-two);
  color: var(--accent);
  transition: color 0.5s ease;
}

.nav__list a:focus,
.nav__list a:hover,
.nav__list a:active {
  color: var(--link-color);
}

.active {
  color: var(--link-color);
}

/* 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;
}

.pagination {
  position: absolute;
  z-index: 10;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
}

.pagination .slick-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  gap: 11px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.pagination .slick-dots li {
  width: 23px;
  height: 3px;
  background-color: #c7ccda;
  transition: 0.3s ease-in;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pagination .slick-dots .slick-active {
  width: 67px;
  background-color: var(--link-color);
}

.pagination .slick-dots button {
  width: 23px;
  height: 3px;
  background: transparent;
  transition: 0.3s ease-in;
  border: none;
  font-size: 0;
  cursor: pointer;
  padding: 0;
}

.pagination .slick-dots .slick-active button {
  width: 67px;
  background-color: var(--link-color);
}

.pagination .slick-dots li button:before {
  display: none;
}

.partner__slider .partner__slide {
  /* margin: 0 16px; */
  margin: 0 10px;
  background-color: #fff;
}

.stages__slider .stages__slide {
  margin: 0 5px;
  background-color: #fff;
}

.our-work__slider .our-work__slide {
  margin: 0 5px;
  background-color: #fff;
}

.reviews__slider .reviews__slide {
  /* margin: 0 16px; */
  margin: 0 10px;
  background-color: #fff;
}

.partner__slider .slick-list, .reviews__slider .slick-list {
  margin: 0 -10px; 
  overflow: hidden; 
}

.stages__slider .slick-list {
  margin: 0 -5px; 
  overflow: hidden; 
}

.our-work__slider .slick-list {
  margin: 0 -5px; 
  overflow: hidden; 
}

.mobile-nav {
  position: fixed;
  top: 0;
  left: -100%;
  width: 80%;
  height: 100%;
  z-index: 301;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 40px 40px 40px 40px;
  background: #fff;
  transition: all 0.5s ease;
}

.mobile-nav--open {
  left: 0;
}

.mobile-nav--bg {
  z-index: 1;
  left: -100%;
  width: 100%;
  height: 100%;
  position: fixed;
  background-color: rgba(0, 0, 0, 0.5);
  /* transition: all 0.5s ease; */
}

.mobile-nav--openBg {
  left: 0;
}

.mobile-nav a {
  display: block;
  color: #151515;
  line-height: 100%;
  padding: 20px 0;
  border-bottom: 1px solid rgba(0,0,0,0.7);
}

.mobile-nav__list {
  width: 100%;
  display: flex;
  flex-direction: column;
  font-size: 28px;
  text-transform: uppercase;
}

.page-header {
  position: fixed;
  background-color: var(--page-bg);
  top: 0;
  left: 0;
  width: 100%;
  min-height:65px;
  min-width: 320px;
  box-shadow: 0 0 10px 0 rgba(0,0,0,0.5);
  z-index: 300;
}

.header {
  background-color: #fff;
  padding: 10px 0;

  
}

.header__row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
  
.footer {
  background-color: var(--footer-bg);
  padding: 32px 0;
  color: var(--accent);
}

.footer a {
  color: var(--accent);
  text-decoration: none;
}

.footer__wrapper {
  display: flex;
  flex-direction: column;
  gap: 67px;
}

.footer__top {
  display: flex;
  position: relative;
  gap: 20px;
}

.footer__top::after {
  position: absolute;
  content: "";
  bottom: -30px;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: var(--border-cl);
}

.logo-text {
  font-family: var(--font-accent);
  font-size: 22px;
  font-weight: 700;
}
.footer__logo {
  display: flex;
  align-items: center;
  gap: 30px;
}
.social__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-left: auto;
}
.social__list {
  display: flex;
  align-items: center;
  gap: 10px;
}

.social__link {
  display: block;
  width: 46px;
  height: 46px;
  transform: rotate(0deg);
  transition: 0.7s ease;
}

.social__link:hover {
  transform: rotate(360deg);
}

.footer__copyright {
  padding: 10px 0;
  font-size: 16px;
  font-weight: 400;
}

.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;
  width: 36px;
  height: 36px;
  transform: rotate(0deg);
  transition: 0.7s ease;
}

.fixed-social__link:hover {
  transform: rotate(360deg);
}

.fixed-social.hidden {
  opacity: 0;
  visibility: hidden;
  transition: 0.7s ease;
}

.promo {
  height: 100vh;
}

.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: 40px;
  max-width: 860px;
}
.promo__info {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

/* .promo__text {
  font-size: 25px;
  line-height: 36px;
  color: var(--page-bg);
} */

.promo__text-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start; /* центрирует содержимое */
  position: relative;
  
}

.promo__text {
  display: inline-flex;
  align-items: center;
  vertical-align: middle;
  font-family: var(--font-main), sans-serif;
  font-size: 25px;
  line-height: 1.2;
  color: var(--page-bg);
  letter-spacing: 1px;
  white-space: normal; /* Это важно, чтобы текст мог переноситься */
  overflow-wrap: break-word; /* Переносит длинные слова, если они не помещаются */
  padding: 2px 0;
}

.typed-cursor {
  display: inline;
  font-weight: normal;
  font-size: inherit;
  color: var(--link-color);
  animation: blink 1s step-start infinite;
  vertical-align: baseline;
  transform: translateY(-2px); /* немного приподнимет курсор */
}

.promo__text-hidden {
  display: none;
}



@keyframes blink {
  50% {
    opacity: 0;
  }
}


.about {
  padding: 80px 0;
  min-width: 320px;
}

.about__wrapper {
  display: flex;
  gap: 25px;
}
.advantages__inner {
  display: flex;
  flex-direction: column;
  gap: 48px;
  max-width: 612px;
  position: relative;
}

.advantages__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 48px;
  position: relative;
}

.advantages__list::after {
  position: absolute;
  content: "";
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 100%;
  background-color: var(--border-accent);
}

.advantages__list::before {
  position: absolute;
  content: "";
  top: 0;
  right: -24px;
  width: 1px;
  height: 100%;
  background-color: var(--border-accent);
}

.advantages__item {
  display: flex;
  flex-direction: column;
  padding: 48px 26px 48px 0;
  position: relative;
  gap: 29px;
}

.advantages__item::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: var(--border-accent);
}

.advantages__list .advantages__item:nth-child(3)::after {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: var(--border-accent);
}

.advantages__list .advantages__item:nth-child(4)::after {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: var(--border-accent);
}

.advantages__img {
  display: flex;
  flex-direction: column;
  align-items: flex-start;

  height: 80px;
  gap: 30px;
}
.advantages__info {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.about__inner {
  display: flex;
  flex-direction: column;
  gap: 48px;
  max-width: 579px;
  padding: 48px 0 15px 24px;
  position: relative;
}

.about__inner::before {
  position: absolute;
  content: "";
  top: 0;
  left: 20px;
  width: 90%;
  height: 1px;
  background-color: var(--border-accent);
}

.about__info {
  display: flex;
  flex-direction: column;
  gap: 42px;
}

.about__text {
  display: flex;
  flex-direction: column;
  gap: 15px;
  text-align: justify;
}

.about__link {
  display: block;
  max-width: 125px;
  max-height: 125px;
  cursor: pointer;
}

.circle-btn {
  width: 125px;
  height: 125px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.circle-btn::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: url("/storage/app/media/svg/about-circle.svg") no-repeat;
  background-size: cover;
  animation: 15s linear infinite rotate;
}


.partner {
  padding-bottom: 80px;
  min-width: 320px;
}

.partner__wrapper {
  display: flex;
  flex-direction: column;
  gap: 78px;
  position: relative;
}
.partner__top {
  display: flex;
}

.partner__slider {
  max-width: 100%;
  overflow: hidden;
}
.partner__slide {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 15px;
  /* border: 1px solid #e8e8e8; */
}

.partner__img {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 127px;
}

.partner__img img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.preparation {
  padding-bottom: 80px;
}

.preparation__wrapper {
  display: flex;
  flex-direction: column;
  gap: 80px;
}
.preparation__inner {
  display: flex;
  gap: 80px;
  justify-content: space-between;
}

.reverse {
  flex-direction: row-reverse;
}

.preparation__img img {
  border-radius: 20px;
  max-height: 100%;
}

.preparation__main-img{
	max-width: 533px;
	width: 100%;
	object-fit: cover;
	border-radius: 20px;
}

.preparation__block {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 42px;
  max-width: 579px;
  width: 100%;
}

.preparation__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.certificate {
  padding: 207px 0;
  min-width: 320px;
  position: relative;
  z-index: 1;
}

.certificate::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-color: rgba(0,0,0,0.6);
}

.img__bg {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.certificate__wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 42px;
  max-width: 757px;
}

.certificate__inner {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.stages {
  padding: 80px 0;
  min-width: 320px;
  position: relative;
}

.stages__wrapper {
  display: flex;
  flex-direction: column;
  gap: 78px;
  position: relative;
}

.stages__slider {
  max-width: 100%;
  overflow: hidden;
}
.stages__slide {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
 /*  border: 1px solid #e8e8e8; */
}


.consulting {
  padding: 80px 0;
  min-width: 320px;
}

.consulting__wrapper {
  display: flex;
  flex-direction: column;
  gap: 80px;
}

.consulting__inner .preparation__block {
  max-width: 601px;
}

.our-work {
  padding-bottom: 80px;
  min-width: 320px;
  position: relative;
}

.our-work__wrapper {
  display: flex;
  flex-direction: column;
  gap: 78px;
  position: relative;
}

.our-work__slider {
  max-width: 100%;
  overflow: hidden;
}
.our-work__slide {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
 /*  border: 1px solid #e8e8e8; */
}

.our-work__img img{
	object-fit: cover;
}

.our-work__logo {
  min-width: 100%;
  height: 23em;
  border-radius: 10px;
}
.our-work__bottom {
  flex-grow: 1;
  padding: 30px 22px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
}


.reviews {
  padding-bottom: 80px;
  min-width: 320px;
  position: relative;
}

.reviews__wrapper {
  display: flex;
  flex-direction: column;
  gap: 78px;
  position: relative;
}

.reviews__slider {
  max-width: 100%;
  overflow: hidden;
}
.reviews__slide {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  /* border: 1px solid #e8e8e8; */
  padding: 30px 20px 27px 20px;
}

.reviews__slide .reviews__top {
  margin-bottom: 30px;
}

.reviews__slide .reviews__img {
  margin-bottom: 19px;
}

.reviews__slide .reviews__bottom {
  margin-bottom: 30px;
}

.reviews__top {
  display: flex;
  align-items: center;
}
.reviews__name {
  font-weight: 500;
  font-size: 17px;
  line-height: 22px;
  color: var(--accent);
}
.reviews__date {
  font-size: 16px;
  line-height: 46px;
  margin-left: auto;
  color: var(--color-date);
}
.reviews__img {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 123px;
  border-radius: 15px;
  border: 1px solid #e8e8e8;
}
.reviews__logo {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.reviews__text--hidden {
  max-height: 135px;
  overflow: hidden;
  transition: max-height 0.5s ease-in-out;
}

.reviews__text--expanded {
  max-height: 1000px;
}

.contact {
  padding-bottom: 80px;
  min-width: 320px;
}

.contact__wrapper {
  display: flex;
  gap: 44px;
}

.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;
}


.form__wrapper {
  display: flex;
  flex-direction: column;
  position: relative;
  background: url("/storage/app/media/contact/form-bg.jpg") no-repeat;
  /* background-size: 100% 100%; */
  background-size: cover;
  background-position: center;
  z-index: 1;
  border-radius: 25px;
  padding: 80px 140px 74px 85px;
}

.form__wrapper::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.5);
  z-index: -1;
  border-radius: 25px;
}

.form {
  max-width: 487px;
  width: 100%;
}

.form__top {
  display: flex;
  flex-direction: column;
  gap: 66px;
  margin-bottom: 26px;
}

.form__text {
  font-size: 19px;
  line-height: 23px;
  color: var(--color-form);
}
.form__inner {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 30px;
}

.form__inner-top {
  display: flex;
  gap: 15px;
}

.form-label input::placeholder {
  color: var(--page-bg);
}

.form__inner textarea::placeholder {
  color: var(--page-bg);
}

.form__top{
  display: flex;
  flex-direction: column;
  gap: 35px;
  margin-bottom: 26px;
}

.form__top.title-3-white-line::after {
  bottom: -10px;
}


.form-label{
	width: 100%
}

.form-label .form-input {
    width: 100%;
}

 .form-input {
  color: var(--page-bg);
  font-size: 20px;
  font-weight: 400;
  line-height: 100%;
  padding: 11px 0 11px 24px;
  background-color: rgba(255,255,255,0.3);
  backdrop-filter: blur(7px);
  border-radius: 7px;
}

.form-label .form-input:focus, .form-label .form-input:active{
  border: 2px solid #fff;
  outline: none;
}

.form__inner textarea:focus, .form__inner textarea:active{
  border: 2px solid #fff;
  outline: none;
}

.form-review {
  outline: none;
  min-height: 100%;
  resize: none;
  height: 87px;
}

.address__wrapper {
  display: flex;
  flex-direction: column;
  gap: 46px;
  border-radius: 25px;
  background-color: #fff;
  /* border: 1px solid #e8e8e8; */
  padding: 80px 126px 70px 44px;
}

.address__layout {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.address__inner {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.address__img {
  display: flex;
  align-items: center;
  gap: 5px;
}
.address__img-title {
  font-size: 15px;
  line-height: 15px;
  color: #a7a7a7;
  text-transform: uppercase;
}

.address__info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 13px;
}

.contact-title {
  font-size: 20px;
  line-height: 24px;
  color: var(--accent);
}

.contact__map {
  display: block;
  position: relative;
  font-size: 17px;
  line-height: 19px;
  
}

.contact__map::after {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: var(--link-color);
}

.input-error {
  border: 2px solid red;
  outline: none;
}


.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;
  border-radius: 25px;
  padding: 40px;
}


.modal__form {
  width: 100%;
}

.modal__top {
  display: flex;
  flex-direction: column;
  gap: 35px;
  margin-bottom: 26px;
}

.modal__top .title-3-white-line::after {
  bottom: -10px;
}



.modal-label {
  width: 100%;
}

.modal-label .form-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 .form-input{
	color: #151515;
	border:1px solid #56a6b0;
	background-color: transparent;
  	backdrop-filter: none;
}

.modal__inner textarea{
	color: #151515;
	border:1px solid #56a6b0;
	background-color: transparent;
  	backdrop-filter: none;
}

.modal-label input::placeholder {
  color: #151515;
}

.modal__inner textarea::placeholder {
  color: #151515;
}

.modal-label input:focus, .modal-label input:active{
  border: 1px solid #56a6b0;
  outline: none;
}

.modal__inner textarea:focus, .modal__inner textarea:active{
  border: 1px solid #56a6b0;
  outline: none;
}

.modal__top .form__text{
	color: #151515;
}