/* 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: 1296px;
  --container-padding: 35px;

  --font-main: "Inter", sans-serif;
  --font-accent: "IBM Plex Sans", sans-serif;
  --font-titles: var(--font-accent);

  --page-bg: #fff;
  --text-color: rgba(0, 0, 0, 1);
  --accent: rgba(89, 89, 89, 1);
  --link-color: rgba(13, 115, 13, 1);
  --footer-text: rgba(0, 0, 0, 0.5);
  --promo-text: rgba(255, 255, 255, 0.5);

  --doc-bg: rgba(231, 233, 226, 1);
  --form-bg: rgba(12, 66, 48, 1);
  --footer-bg: rgba(231, 233, 226, 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;
}

/* Контейнеры */
.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;
  padding: 24px var(--container-padding);
}

.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(--page-bg);
  border-radius: 6px;
  background-color: rgba(12, 66, 48, 1);
  backdrop-filter: blur(24px);
}

.nav-icon {
  margin: auto;
  position: relative;
  width: 24px;
  height: 1px;
  background-color: var(--page-bg);
  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(--page-bg);
  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;
}

.page-header {
  position: fixed;
  top: 0;
  left: 0;
  min-width: 320px;
  width: calc(100% - 70px);
  margin: 24px 35px 0 35px;
  z-index: 98;
  transition: 0.2s linear;
  border-top-left-radius: 48px;
  border-top-right-radius: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.header__active {
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.5);
  background-color: rgba(30, 30, 30, 0.85);
  backdrop-filter: blur(15px);
  border-radius: 48px;
}

.logo {
  flex-shrink: 0;
}

.header__row {
  display: flex;
  flex-grow: 1;
  align-items: center;
  padding: 30px 0;
}

.header__nav {
  flex-grow: 1;
  margin-left: 48px;
  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: 13px;
  line-height: 100%;
  font-weight: 500;
  font-family: var(--font-main);
  color: rgba(255, 255, 255, 0.5);
  transition: 0.4s linear;
}

.nav__list a:hover,
.nav__list a:focus,
.nav__list a:active {
  color: var(--page-bg);
}

.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;
  gap: 2px;
  flex-shrink: 0;
}

.lang {
  display: flex;
  align-items: center;
  gap: 1px;
  color: var(--page-bg);
  font-size: 13px;
  line-height: 140%;
  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(--page-bg);
  font-size: 13px;
  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: 20px;
  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: 35px 0;
  font-size: 32px;
  color: rgba(0, 0, 0, 0.5);
  border-radius: 48px;
}

.footer__wrapper {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.footer__copyright a {
  font-size: 16px;
  line-height: 140%;
  font-weight: 400;
  font-family: var(--font-main);
  color: var(--footer-text);
}

.footer__copyright strong {
  color: var(--text-color);
  font-weight: 700;
}

.title-1 {
  font-size: 39px;
  line-height: 110%;
  font-weight: 500;
  font-family: var(--font-accent);
}

.title-1 strong {
  font-weight: 700;
}

.title-2 {
  font-size: 41px;
  line-height: 120%;
  font-weight: 500;
  font-family: var(--font-accent);
}

.title-3 {
  font-size: 31px;
  line-height: 120%;
  font-weight: 500;
  font-family: var(--font-accent);
}

.title-3 strong {
  font-weight: 700;
}

.title-4 {
  font-size: 25px;
  line-height: 140%;
  font-weight: 500;
  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);
}

.contact-title {
  font-size: 20px;
  line-height: 140%;
  font-weight: 600;
  font-family: var(--font-accent);
}

.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: 120%;
  font-weight: 400;
  font-family: var(--font-accent);
  color: var(--promo-text);
}

.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-accent);
  padding: 12px 6px;
  color: var(--link-color);
  background-color: var(--page-bg);
  border: 1px solid transparent;
  transition: 0.3s ease;
}

.btn:hover,
.btn:focus,
.btn:active {
  background-color: transparent;
  color: var(--page-bg);
  border-color: var(--page-bg);
}

.btn-2 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 16px;
  line-height: 24px;
  font-weight: 600;
  border-radius: 999px;
  font-family: var(--font-accent);
  padding: 12px 23px;
  color: var(--text-color);
  border: 1px solid var(--link-color);
  transition: 0.3s ease;
}

.btn-2:hover,
.btn-2:focus,
.btn-2:active {
  color: var(--link-color);
  border-color: var(--text-color);
}

.text-center {
  text-align: center;
}

.text-white {
  color: var(--page-bg);
}

.text-black {
  color: var(---text-color);
}

.promo-btn {
  width: 100%;
  max-width: 300px;
}

.btn-form {
  width: 100%;
  color: var(--text-color);
}

.btn-doc {
  width: 100%;
  color: var(--text-color);
}

.btn.btn-doc:hover,
.btn.btn-doc:focus,
.btn.btn-doc:active {
  background-color: var(--page-bg);
  color: var(--link-color);
}

.pt {
  padding-top: 90px;
}

.pb {
  padding-bottom: 90px;
}

.promo {
  height: 100%;
}

.promo__wrapper {
  min-width: 100%;
  height: 700px;
  position: relative;
  overflow: hidden;
  border-radius: 48px;
}

.banner::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(26, 26, 26, 0.9);
  z-index: 0;
  border-radius: 48px;
}

.banner {
  height: 100%;
  border-radius: 48px;
  position: relative;
}

.banner__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 48px;
}

.promo__block {
  display: flex;
  align-items: center;
  justify-content: 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: 32px;
  width: 600px;
  margin: 0 auto;
}

.promo__info {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.promo-btns {
  display: flex;
  gap: 32px;
  align-items: center;
  justify-content: center;
}

.about {
  min-width: 320px;
}

.about__wrapper {
  display: flex;
  gap: 24px;
}
.about__img {
  width: 50%;
}

.about__img img {
  border-radius: 24px;
  object-fit: cover;
  width: 100%;
}

.about__info {
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 15px;
}

.about__block {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.about__text {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.about__btns {
  display: flex;
  align-items: center;
  gap: 24px;
}

.advantages {
  min-width: 320px;
}

.advantages__wrapper {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.advantages__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 24px;
  row-gap: 48px;
}
.advantages__item {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.advantages__icon {
  display: block;
  width: 48px;
  height: 48px;
}

.advantages__info {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.info-section {
  min-width: 320px;
}

.info-section-2 {
  min-width: 320px;
}

.info-section__wrapper {
  display: flex;
  flex-direction: column;
  position: relative;
  padding: 42px 0;
  border-radius: 48px;
  overflow: hidden;
}

.info-section__wrapper::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(26, 26, 26, 0.9);
  z-index: 0;
  border-radius: 48px;
}

.info-section-2 .info-section__wrapper {
  background-color: var(--form-bg);
}

.info-section-2 .info-section__wrapper::after {
  display: none;
}

.info-section__img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 48px;
}

.info-section__img img {
  width: 100%;
  object-fit: cover;
  border-radius: 48px;
}

.info-section__wrapper .container {
  position: relative;
  z-index: 10;
}

.info-section__inner {
  display: flex;
  flex-direction: column;
  gap: 42px;
  width: 50%;
}

.info-section-2 .info-section__inner {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
}

.info-section__top {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.form {
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
}
.form__block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.form-label {
  width: 100%;
}

.form-label:nth-child(3) {
  grid-column: 1 / 3;
}

.form-input {
  width: 100%;
  font-size: 16px;
  line-height: 120%;
  font-family: var(--font-main);
  color: var(--page-bg);
  background-color: rgba(93, 93, 93, 0.75);
  border: 1px solid transparent;
  padding: 13px 20px;
  border-radius: 9999px;
  transition: 0.3s ease;
}

.form-input.form-input-2 {
  background-color: rgba(195, 233, 160, 0.1);
}

.form-input::placeholder {
  color: var(--promo-text);
}

.form-input:focus,
.form-input:hover,
.form-input:active {
  border-color: var(--page-bg);
}

.terms {
  min-width: 320px;
}

.terms__wrapper {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.terms__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.terms__item {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.terms__img {
  border-radius: 24px;
  overflow: hidden;
  height: 216px;
}

.terms__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 24px;
}

.terms__info {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.terms__top {
  display: flex;
  flex-direction: column;
}
.text.terms__step {
  font-weight: 700;
  color: var(--link-color);
}

.terms__text {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.doc {
  min-width: 320px;
}

.doc__wrapper {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.doc__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.doc__item {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
  background-color: var(--doc-bg);
  border-radius: 24px;
  padding: 20px;
  transition: 0.3s ease;
}

.doc__item:focus,
.doc__item:hover,
.doc__item:active {
  transform: translateY(-10px);
}

.doc__item-top {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact {
  min-width: 320px;
}

.contact__wrapper {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.contact__inner {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.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: 33px;
}

.contact-link {
  transition: 0.3s ease;
}

.contact-link:focus,
.contact-link:hover,
.contact-link:active {
  color: var(--link-color);
}

.contact__map {
  border-radius: 24px;
}

.contact__map iframe {
  border-radius: 24px;
}

.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%;
}

.btn.modal-form__btn{
	background-color: #0C4230;
	color: var(--page-bg);
	border:1px solid transparent;
}

.btn.modal-form__btn:focus,
.btn.modal-form__btn:hover,
.btn.modal-form__btn:active{
	background-color: var(--page-bg);
	color: #0C4230;
	border-color: #0C4230; 
}

.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: 5px;
  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;
  }
}