@font-face {
  font-family: 'BellotaText';
  src: url("../fonts/BellotaText-Semibold.ttf") format("truetype");
  font-weight: 600;
  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: 1254px;
  --container-padding: 15px;

  --font-main: "Inter", sans-serif;
  --font-accent: 'BellotaText', sans-serif;

  --page-bg: #fff;
  --text-color: rgba(0, 0, 0, 1);
  --accent: rgba(102, 102, 102, 1);
  --link-color: rgba(204, 152, 51, 1);
  --header-link: rgba(128, 128, 128, 1);

  --card-bg: rgba(38, 38, 38, 1);
  --faq-btn: rgba(232, 232, 232, 1);
  --faq-br: rgba(217, 217, 217, 1);
  --footer-bg: rgba(38, 38, 38, 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%;
}

.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: var(--font-main);
  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;
}

/* Nav Icon */
.mobile-nav-btn {
  --time: 0.1s;

  --width: 42px;
  --height: 42px;

  --line-height: 6px;
  --spacing: 2px;

  --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); */
  height: 38px;
  width: var(--width);

  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid var(--link-color);
  border-radius: 6px;
  // background-color: rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(24px);
}

.nav-icon {
  margin: auto;
  position: relative;
  width: 24px;
  height: 1px;
  background-color: var(--link-color);
  border-radius: var(--radius);
}

.nav-icon::before,
.nav-icon::after {
  content: "";
  display: block;

  position: absolute;
  left: 0;

  width: 24px;
  height: 1px;

  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;
}

.reviews-slide {
  display: flex !important;
  height: auto !important;
}

.pagination .swiper-pagination-bullet {
  width: 11px;
  height: 11px;
  background-color: rgba(196, 196, 196, 1);
  border-radius: 0;
  transition: all 0.3s ease;
  border-radius: 50%;
}

.pagination .swiper-pagination-bullet-active {
  background-color: var(--link-color);
  opacity: 1;
}

.slider-arrow {
  position: relative;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  background-color: var(--tab-btns);
  z-index: 50;
  cursor: pointer;
  transition: 0.5s linear;
}

.slider-arrow:focus,
.slider-arrow:hover,
.slider-arrow:active {
  background-color: var(--link-color);
}

.slider-arrow:focus svg,
.slider-arrow:hover svg,
.slider-arrow:active svg {
  stroke: var(--page-bg);
}

.button-prev svg {
  position: relative;
}

.button-next svg {
  position: relative;
  transform: rotate(180deg);
}

.reviews__pagination.swiper-pagination {
  bottom: -45px !important;
}

.page-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  min-width: 320px;
  z-index: 98;
  transition: 0.2s linear;
  padding: 16px 0;
}

.header__active {
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.5);
  background-color: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(15px);
  padding: 10px 0;
}

.logo {
  flex-shrink: 0;
}

.header__row {
  display: flex;
  flex-grow: 1;
  align-items: center;
}

.header__nav {
  flex-grow: 1;
  margin-left: 56px;
  margin-right: 15px;
}

.nav__list {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 30px;
  flex-wrap: wrap;
}

.nav__list li {
  position: relative;
  cursor: pointer;
}

.nav__list a {
  font-size: 16px;
  line-height: 100%;
  font-weight: 500;
  font-family: var(--font-main);
  color: var(--header-link);
  transition: 0.4s linear;
}

.nav__list a:hover,
.nav__list a:focus,
.nav__list a:active {
  color: var(--link-color);
}

.header__right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  width: 25%;
}

.header__right-block {
  display: flex;
  align-items: center;

  gap: 42px;
}

.header__search-icon {
  flex-shrink: 0;
}

.header__lang {
  position: relative;
  display: flex;
  align-items: center;
  gap: 2px;
  flex-shrink: 0;
}

.lang {
  display: flex;
  align-items: center;
  gap: 1px;
  color: var(--text-color);
  font-size: 16px;
  line-height: 120%;
  font-weight: 500;
  font-family: var(--font-main);
  text-transform: uppercase;
}

.lang option{
  color: var(--text-color);
}

.form-control {
    border: none;
    outline: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    position: relative;
    min-width: 45px;
    cursor: pointer;
}

.select-arr{
    position: absolute;
    right:0px;
    top:50%;
    transform:translateY(-55%);
}

.header__right-call {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-color);
  font-size: 16px;
  line-height: 140%;
  font-weight: 500;
  font-family: var(--font-main);
  transition: 0.4s linear;
}

.header__right-call:hover,
.header__right-call:focus,
.header__right-call:active {
  color: var(--link-color);
}

.mobile-nav {
  position: fixed;
  // top: 0;
  top: 0;
  left: -110%;
  width: 80%;
  height: 100%;
  z-index: 99;

  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 40px;
  padding: 50px 10px 40px 40px;
  background: var(--page-bg);
  transition: all 0.4s ease-in;
  box-shadow: 5px 0 10px rgba(0, 0, 0, 0.2);
}

.mobile-nav--open {
  left: 0;
}

.mobile-nav__list {
  display: flex;
  flex-direction: column;
}

.mobile-nav__list a {
  display: block;
  padding: 15px 0;
  font-family: var(--font-main);
  font-size: 24px;
  line-height: 110%;
  font-weight: 400;
  color: var(--text-color);
  transition: 0.4s linear;
  width: 100%;
  text-transform: uppercase;
}

.mobile-nav__list a:hover,
.mobile-nav__list a:focus,
.mobile-nav__list a:active {
  color: var(--accent);
}

.menu__close {
  display: none;
}

.footer {
  background-color: var(--footer-bg);
  padding: 32px 0;
}

.footer__wrapper {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.footer__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 32px;
  gap: 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}
.f-social__list {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.f-social__link {
  display: block;
  width: 48px;
  height: 48px;
  border-radius: 50%;
}
.footer__copyright a {
  font-size: 16px;
  line-height: 140%;
  font-weight: 400;
  font-family: var(--font-main);
  color: rgba(255, 255, 255, 0.5);
}

.footer__copyright strong {
  color: var(--page-bg);
  font-weight: 700;
}

.title-1 {
  font-size: 56px;
  line-height: 100%;
  font-weight: 600;
  font-family: var(--font-accent);
  color: var(--text-color);
}

.title-2 {
  font-size: 40px;
  line-height: 120%;
  font-weight: 700;
  font-family: var(--font-accent);
  color: var(--text-color);
}

.title-3 {
  margin: 1em 0 0.5em;
  font-size: 26px;
  font-weight: 700;
  font-family: var(--font-titles);
}

.title-4 {
  font-size: 20px;
  line-height: 120%;
  font-weight: 700;
  font-family: var(--font-accent);
}

.modal-title{
	font-size: 26px;
  line-height: 33px;
  font-weight: 600;
  font-family: var(--font-main);
}

.modal-text{
	font-size: 18px;
  line-height: 24px;
  font-weight: 400;
  font-family: var(--font-main);
}

.text {
  font-size: 16px;
  line-height: 140%;
  font-weight: 400;
  font-family: var(--font-main);
  color: var(--accent);
}

.promo__text {
  font-size: 20px;
  line-height: 140%;
  font-weight: 400;
  font-family: var(--font-main);
  color: var(--accent);
}

.services__text {
  font-size: 13px;
  line-height: 100%;
  font-weight: 700;
  font-family: var(--font-main);
  color: var(--page-bg);
}

.about__title {
  font-size: 28px;
  line-height: 100%;
  font-weight: 700;
  font-family: var(--font-accent);
  color: var(--text-color);
}

.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  font-size: 16px;
  line-height: 24px;
  font-weight: 600;
  border-radius: 9999px;
  font-family: var(--font-main);
  padding: 12px 6px;
  color: var(--page-bg);
  background-color: var(--link-color);
  border: 1px solid transparent;
  transition: 0.3s ease;
}

.btn:hover,
.btn:focus,
.btn:active {
  background-color: transparent;
  color: var(--link-color);
  border-color: var(--link-color);
}

.text-white {
  color: var(--page-bg);
}

.text-black {
  color: var(--text-color);
}

.promo__btn {
  width: 100%;
  max-width: 268px;
}

.info-section__btn {
  width: 100%;
  max-width: 259px;
  background-color: var(--page-bg);
  color: var(--text-color);
}

.info-section__btn:hover,
.info-section__btn:focus,
.info-section__btn:active {
  background-color: transparent;
  color: var(--page-bg);
  border-color: var(--page-bg);
}

.form-btn {
  width: 100%;
  max-width: 264px;
}

.pt {
  padding-top: 140px;
}

.pb {
  padding-bottom: 140px;
}

.pt-2 {
  padding-top: 76px;
}

.promo {
  height: 664px;
  position: relative;
  overflow: hidden;
  margin-top: 80px;
}

.promo__wrapper {
  min-width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.banner {
  height: 100%;
}

.banner__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.promo__block {
  display: flex;
  align-items: flex-end;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
  padding-bottom: 64px;
}

.promo__inner {
  display: flex;
  flex-direction: column;
  gap: 167px;
  max-width: 400px;
}

.promo__info {
  display: flex;
  flex-direction: column;
  gap: 25px;
  width: 100%;
}

.promo__text-block {
  width: 100%;
}

.promo__btns {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.promo-laptop {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
}

.promo-laptop__container {
  position: relative;
}

.promo-laptop__img {
  position: absolute;
  right: -80px;
  bottom: 0;
  object-fit: contain;
  pointer-events: none;
  width: 895px;
  height: 635px;
}

.services {
  min-width: 320px;
}

.services__wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.services__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}
.services__item {
  height: 225px;
  position: relative;
  overflow: hidden;
  transition: 0.3s ease;
  cursor: pointer;
}

.services__item::after {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background: linear-gradient(
    to left,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.5) 100%
  );
}

.services__item::before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.5) 100%
  );
}

.services__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.3s ease;
}

.services__item:focus .services__img,
.services__item:hover .services__img,
.services__item:active .services__img {
  transform: scale(1.1);
}

.services__info {
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: absolute;
  left: 20px;
  bottom: 20px;
  right: 20px;

  padding-top: 12px;
  border-top: 1px solid var(--page-bg);
  z-index: 3;
}

.services__info .title-4 {
  text-transform: uppercase;
}

.services__block {
  display: flex;
  align-items: center;
  gap: 4px;
}

.why {
  min-width: 320px;
}

.why__wrapper {
  display: flex;
  flex-direction: column;
  gap: 48px;
}
.why__top {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.text.why-text {
  color: var(--link-color);
  text-transform: uppercase;
  font-weight: 500;
}
.why__top-block {
  display: flex;
  align-items: flex-start;
  gap: 24px;
}

.why__top-info {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.why__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.why__item {
  padding: 24px;
  background-color: var(--card-bg);
  display: flex;
  flex-direction: column;
  gap: 36px;
}
.why__icon {
  display: block;
  width: 48px;
  height: 48px;
}

.why__icon img {
  object-fit: contain;
}

.why__item-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.text.why__item-text {
  color: rgba(255, 255, 255, 0.6);
}

.customs {
  min-width: 320px;
}

.customs__wrapper {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.customs__inner {
  display: flex;
  flex-direction: column;
  gap: 32px;
  width: 66%;
}

.customs__info {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.customs__img {
  width: 100%;
  height: 408px;
}

.customs__img img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.info-section {
  min-width: 320px;
  background-color: var(--link-color);
  padding: 71px 0;
}

.info-section__wrapper {
  display: flex;
  gap: 24px;
}
.info-section__img {
  width: 40%;
  position: relative;
}

.info-section__img::before {
  position: absolute;
  content: "";
  left: -71px;
  top: -71px;
  background-color: var(--text-color);
  width: 359px;
  height: 359px;
  z-index: 1;
}

.info-section__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: relative;
  z-index: 2;
}

.info-section__inner {
  position: relative;
  z-index: 10;
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
}

.info-section__block {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.text.info-section-text {
  color: var(--page-bg);
  text-transform: uppercase;
  font-weight: 500;
}

.info-section__top {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.info-section__text {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.about {
  min-width: 320px;
}

.about__wrapper {
  display: flex;
  gap: 24px;
}
.about__info {
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: space-between;
  width: 50%;
}
.about__top {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.about__text {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.about__list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
}
.about__item {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.about__img {
  width: 50%;
}

.about__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.reviews {
  min-width: 320px;
}

.reviews__wrapper {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.reviews__top {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.reviews-btns {
  display: flex;
  align-items: center;
  gap: 10px;
}

.reviews__inner {
  position: relative;
}

.reviews-slide {
  border: 1px solid var(--faq-br);
  flex-direction: column;
  gap: 16px;
  padding: 28px 24px;
}

.reviews-slide-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
.reviews__ava {
  display: flex;
  align-items: center;
  gap: 8px;
}

.reviews__icon{
	width: 40px;
	height: 40px;
	display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(217, 217, 217, 1);
  border-radius: 50%;
}

.ava-text{
	font-size: 16px;
  line-height: 100%;
  font-weight: 400;
  font-family: var(--font-main);
  color: var(--accent);
}

.reviews-names {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.reviews-social {
  display: block;
  width: 56px;
  height: 24px;
}

.reviews-social img {
  width: 56px;
  height: 24px;
}

.reviews__info {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.reviews__stars {
  display: flex;
  align-items: center;
  gap: 8px;
}

.faq {
  min-width: 320px;
}

.faq__wrapper {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.faq__list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.faq__item {
  display: flex;
  flex-direction: column;
  padding: 12px 24px;
  border: 1px solid var(--faq-br);
}

.faq__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  cursor: pointer;
}

.faq__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 48px;
  height: 48px;
  background-color: var(--faq-btn);
  border-radius: 999px;
  transition: 0.3s ease;
}

.faq__plus {
  position: relative;
  display: block;
  width: 2px;
  height: 12px;
  background-color: var(--accent);
  transition: 0.3s ease;
  border-radius: 8px;
}

.faq__plus::after {
  position: absolute;
  content: "";
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 12px;
  height: 2px;
  background-color: var(--accent);
  transition: 0.3s ease;
  border-radius: 8px;
}

.active .faq__btn {
  background-color: var(--text-color);
}

.active .faq__plus {
  background-color: var(--page-bg);
  transform: rotate(45deg);
}

.active .faq__plus::after {
	height: 3px;
  background-color: var(--page-bg);
}

.faq__info {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.faq-hidden {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, opacity 0.3s ease;
  opacity: 0;
  visibility: hidden;
}

.faq-content-inner {
  padding-top: 0;
  transition: padding 0.3s ease;
  opacity: 0;
  transform: translateY(-4px);
  transition: padding 0.3s ease, opacity 0.3s ease, transform 0.3s ease;
}

.active .faq-hidden {
  max-height: 500px;
  opacity: 1;
  visibility: visible;
}

.active .faq-content-inner {
  padding-top: 16px;
  opacity: 1;
  transform: translateY(0);
}

.contact {
  min-width: 320px;
}

.contact__wrapper {
  display: flex;
  gap: 24px;
}
.contact__left {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
  width: 50%;
}
.contact__left-block {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.contact__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.contact__item:first-child {
  grid-column: 1/ 3;
}

.contact__item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.contact__item-top {
  display: flex;
  align-items: center;
  gap: 10px;
}

.contact__item-info {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding-left: 30px;
}

.contact-link {
  transition: 0.3s ease;
}

.contact-link:focus,
.contact-link:hover,
.contact-link:active {
  color: var(--link-color);
}

.contact__right {
  width: 50%;
  display: flex;
  flex-direction: column;
  gap: 32px;
  background-color: rgba(248, 248, 248, 1);
  padding: 24px;
}
.contact__right-top {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  position: relative;
}

.form__block {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.form-input {
  width: 100%;
  font-size: 16px;
  line-height: 120%;
  font-family: var(--font-main);
  color: var(--text-color);
  background-color: var(--page-bg);
  border: 1px solid transparent;
  padding: 13px 20px;
  border-radius: 9999px;
  transition: 0.3s ease;
}

.form-input::placeholder {
  color: var(--accent);
}

.form-input:focus,
.form-input:hover,
.form-input:active {
  border-color: var(--link-color);
}

.no-scroll {
  overflow: hidden;
}

.modal {
  position: fixed;
  width: 643px;
  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: var(--page-bg);
  z-index: 1;
  border-radius: 16px;
  padding: 50px;
}

.modal__form {
  width: 100%;
}

.modal__top {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-bottom: 20px;
  position: relative;
}

.modal-form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.modal-form__top-inner {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.modal-form__top {
  display: flex;
  flex-direction: column;
  gap: 15px;
  width: 100%;
}

.modal__block {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.modal-label {
  width: 100%;
}

.modal-label .modal-input {
  width: 100%;
}

.modal-label {
  width: 100%;
  font-size: 18px;
  line-height: 27px;
  font-weight: 700;
  font-family: var(--font-main);
  color: var(--text-color);
}
.modal__input {
  width: 100%;
  font-size: 15px;
  line-height: 24px;
  font-weight: 400;
  font-family: var(--font-main);
  color: var(--text-color);
  padding: 17px 20px;
  background-color: transparent;
  border-radius: 12px;
  border: 1px solid var(--link-color);
  transition: 0.3s ease;
  cursor: pointer;
}

.modal-input::placeholder {
  color: var(--form-place);
}

.modal__btn {
  position: absolute;
  right: 10px;
  top: 10px;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  cursor: pointer;
  transform: rotate(0deg);
  transition: transform 0.5s ease;
}

.modal__btn:hover {
  transform: rotate(25deg);
}

.modal__input:focus,
.modal__input:hover,
.modal__input:active {
  border: 1px solid var(--link-color);
  outline: none;
}

.modal-review {
  outline: none;
  resize: none;
  height: 82px;
  width: 100%;
}

.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: 0;
  top: -25px;
  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;
}

.fixed-social {
  position: fixed;
  right: 20px;
  bottom: 12px;
  z-index: 200;
  transition: 0.7s ease;
}

.fixed-social__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
}

.fixed-social__item {
  position: relative;
}

.fixed-social__link {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  overflow: visible; 
  transition: transform 0.4s ease;
  z-index: 1;
}

.fixed-social__link img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  z-index: 2;
  position: relative;
}


.fixed-social__link:hover {
  transform: scale(1.08);
}


.fixed-social__link::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  z-index: 0;
  opacity: 0.6;
  transform-origin: center;
  animation: pulse 2.5s ease-in-out infinite;
}


.fixed-social__item:nth-child(2) .fixed-social__link::after {
  background: #E4405F; 
  box-shadow: 0 0 25px 5px rgba(228, 64, 95, 0.5);
}

.fixed-social__item:nth-child(1) .fixed-social__link::after {
  background: #25D366; 
  box-shadow: 0 0 25px 5px rgba(37, 211, 102, 0.5);
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.7;
  }
  50% {
    transform: scale(1.3);
    opacity: 0.2;
  }
  100% {
    transform: scale(1);
    opacity: 0.7;
  }
}