*,

*::before,

*::after {

  box-sizing: border-box;

  margin: 0;

  padding: 0;

}



:root {

  --blue: #0A1628;

  --blue-mid: #0F2040;

  --blue-deep: #071020;

  --cyan: #2A7FD4;

  --cyan-light: #5BA3E8;

  --white: #F4F7FC;

  --text: #B8CADE;

  --black: #050C18;

}



html {

  scroll-behavior: smooth;

}



body {

  background: var(--blue);

  color: var(--text);

  font-family: 'Montserrat', sans-serif;

  font-weight: 300;

  overflow-x: hidden;

}



/* NAV */

nav {

  position: fixed;

  top: 0;

  left: 0;

  width: 100%;

  z-index: 100;

  display: flex;

  align-items: center;

  justify-content: space-between;

  padding: 22px 52px;

  background: linear-gradient(to bottom, rgba(5, 12, 24, 0.96) 0%, transparent 100%);

}



.nav-logo {

  font-family: 'Cormorant Garamond', serif;

  font-size: 22px;

  font-weight: 400;

  letter-spacing: 5px;

  color: var(--white);

  text-decoration: none;

  text-transform: uppercase;

}



.nav-logo span {

  color: var(--cyan);

}



.nav-links {

  display: flex;

  gap: 36px;

  list-style: none;

}



.nav-links a {

  color: var(--text);

  text-decoration: none;

  font-size: 11px;

  letter-spacing: 2px;

  text-transform: uppercase;

  transition: color 0.3s;

}



.nav-links a:hover {

  color: var(--cyan-light);

}



.nav-cta {

  background: var(--cyan);

  border: none;

  color: var(--white);

  padding: 11px 26px;

  font-family: 'Montserrat', sans-serif;

  font-size: 11px;

  letter-spacing: 2px;

  text-transform: uppercase;

  cursor: pointer;

  transition: all 0.3s;

}



.nav-cta:hover {

  background: var(--cyan-light);

}



/* HERO */

.hero {

  min-height: 100vh;

  padding: 100px 0;

  position: relative;

  display: flex;

  flex-direction: column;

  align-items: center;

  justify-content: center;

  text-align: center;

  overflow: hidden;

}



.hero-img {

  position: absolute;

  inset: 0;

  z-index: 0;

  background-size: cover;

  background-position: center 40%;

  transform: scale(1.05);

}



.hero-overlay {

  position: absolute;

  inset: 0;

  z-index: 1;

  background: linear-gradient(to bottom, rgba(5, 12, 24, 0.5) 0%, rgba(5, 12, 24, 1) 100%);

}



.hero-content {

  position: relative;

  z-index: 2;

  padding: 0 24px;

}



.hero-eyebrow {

  display: inline-flex;

  align-items: center;

  gap: 14px;

  font-size: 10px;

  letter-spacing: 5px;

  text-transform: uppercase;

  color: var(--white);

  margin-bottom: 28px;

  animation: fadeUp 1s ease both 0.2s;

}



.hero-eyebrow::before,

.hero-eyebrow::after {

  content: '';

  width: 36px;

  height: 1px;

  background: var(--cyan);

}



.hero-title {

  font-family: 'Cormorant Garamond', serif;

  font-size: clamp(56px, 9vw, 118px);

  font-weight: 300;

  line-height: 0.88;

  letter-spacing: -2px;

  color: var(--white);

  animation: fadeUp 1s ease both 0.4s;

}



.hero-title em {

  font-style: italic;

  color: var(--cyan-light);

  display: block;

}



.hero-divider {

  width: 80px;

  height: 1px;

  background: linear-gradient(to right, transparent, var(--cyan), transparent);

  margin: 32px auto;

  animation: fadeUp 1s ease both 0.6s;

}



.hero-subtitle {

  font-size: 14px;

  font-weight: 600;

  letter-spacing: 0.3px;

  line-height: 2;

  color: var(--white);

  max-width: 620px;

  margin: 0 auto;

  animation: fadeUp 1s ease both 0.7s;

}



.hero-actions {

  margin-top: 44px;

  display: flex;

  gap: 14px;

  justify-content: center;

  flex-wrap: wrap;

  animation: fadeUp 1s ease both 0.9s;

}



.btn-primary {

  background: var(--cyan);

  color: var(--white);

  padding: 15px 38px;

  border: none;

  cursor: pointer;

  font-family: 'Montserrat', sans-serif;

  font-size: 11px;

  letter-spacing: 2px;

  text-transform: uppercase;

  font-weight: 500;

  transition: all 0.3s;

}



.btn-primary:hover {

  background: var(--cyan-light);

  transform: translateY(-2px);

}



.btn-outline {

  background: transparent;

  color: var(--white);

  padding: 14px 38px;

  border: 1px solid rgba(255, 255, 255, 0.3);

  cursor: pointer;

  font-family: 'Montserrat', sans-serif;

  font-size: 11px;

  letter-spacing: 2px;

  text-transform: uppercase;

  transition: all 0.3s;

}



.btn-outline:hover {

  border-color: var(--cyan);

  color: var(--cyan-light);

}



.hero-scroll {

  position: absolute;

  bottom: 32px;

  left: 50%;

  transform: translateX(-50%);

  display: flex;

  flex-direction: column;

  align-items: center;

  gap: 8px;

  z-index: 2;

  animation: fadeUp 1s ease both 1.2s;

}



.hero-scroll span {

  font-size: 9px;

  letter-spacing: 3px;

  text-transform: uppercase;

  color: var(--text);

}



.scroll-line {

  width: 1px;

  height: 48px;

  background: linear-gradient(to bottom, var(--cyan), transparent);

  animation: scrollLine 2s ease-in-out infinite;

}



@keyframes scrollLine {

  0% {

    transform: scaleY(0);

    transform-origin: top
  }



  50% {

    transform: scaleY(1);

    transform-origin: top
  }



  51% {

    transform: scaleY(1);

    transform-origin: bottom
  }



  100% {

    transform: scaleY(0);

    transform-origin: bottom
  }

}



/* STATS */

.stats {

  background: var(--black);

  border-top: 1px solid rgba(42, 127, 212, 0.2);

  border-bottom: 1px solid rgba(42, 127, 212, 0.2);

}



.stats-inner {

  max-width: 1200px;

  margin: 0 auto;

  display: grid;

  grid-template-columns: repeat(4, 1fr);

}



.stat-item {

  text-align: center;

  padding: 40px 24px;

  border-right: 1px solid rgba(42, 127, 212, 0.12);

}



.stat-item:last-child {

  border-right: none;

}



.stat-num {

  font-family: 'Cormorant Garamond', serif;

  font-size: 52px;

  font-weight: 300;

  color: var(--cyan-light);

  line-height: 1;

}



.stat-label {

  margin-top: 8px;

  font-size: 10px;

  letter-spacing: 2px;

  text-transform: uppercase;

  color: var(--text);

}



/* SECTION HEADER */

.section-header {

  text-align: center;

  padding: 88px 48px 56px;

}



.section-tag {

  font-size: 10px;

  letter-spacing: 5px;

  text-transform: uppercase;

  color: var(--cyan);

  margin-bottom: 16px;

}



.section-title {

  font-family: 'Cormorant Garamond', serif;

  font-size: clamp(38px, 5vw, 64px);

  font-weight: 300;

  color: var(--white);

  line-height: 1.05;

}



.section-title em {

  font-style: italic;

  color: var(--cyan-light);

}



.section-line {

  width: 56px;

  height: 1px;

  background: linear-gradient(to right, transparent, var(--cyan), transparent);

  margin: 24px auto 0;

}



/* FILTER */

.filter-bar {

  display: flex;

  justify-content: center;

  gap: 8px;

  flex-wrap: wrap;

  padding: 0 48px 52px;

}



.filter-btn {

  background: transparent;

  border: 1px solid rgba(42, 127, 212, 0.25);

  color: var(--text);

  padding: 8px 20px;

  cursor: pointer;

  font-family: 'Montserrat', sans-serif;

  font-size: 10px;

  letter-spacing: 2px;

  text-transform: uppercase;

  transition: all 0.25s;

}



.filter-btn.active,

.filter-btn:hover {

  background: var(--cyan);

  border-color: var(--cyan);

  color: var(--white);

}



/* PROJECTS */

.projects {

  max-width: 1280px;

  margin: 0 auto;

  padding: 0 40px 96px;

  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 3px;

}



.project-card {

  background: var(--black);

  position: relative;

  overflow: hidden;

  cursor: pointer;

  border: 1px solid rgba(42, 127, 212, 0.08);

  opacity: 0;

  transform: translateY(28px);

  transition: opacity 0.6s ease, transform 0.6s ease, box-shadow 0.3s ease;

}



.project-card.visible {

  opacity: 1;

  transform: translateY(0);

}



.project-card:not([style*="opacity:0.55"]):hover {

  transform: translateY(-6px);

  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.6);

}



.project-card.featured {

  grid-column: span 2;

}



.card-visual {

  height: 230px;

  position: relative;

  overflow: hidden;

}



.project-card.featured .card-visual {

  height: 300px;

}



/* SLIDER */

.slider {

  position: relative;

  width: 100%;

  height: 100%;

  overflow: hidden;

}



.slider-track {

  display: flex;

  height: 100%;

  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);

}



.slider-track img {

  width: 100%;

  height: 100%;

  object-fit: cover;

  flex-shrink: 0;

  transition: transform 0.7s ease;

  filter: brightness(0.72) saturate(0.82);

}



.project-card:hover .slider-track img {

  filter: brightness(0.88) saturate(1);

}



.soldout-slider .slider-track img {

  filter: grayscale(70%) brightness(0.45);

}



.slider-arrow {

  position: absolute;

  top: 50%;

  transform: translateY(-50%);

  z-index: 5;

  background: rgba(5, 12, 24, 0.55);

  backdrop-filter: blur(6px);

  border: 1px solid rgba(255, 255, 255, 0.12);

  color: #fff;

  width: 32px;

  height: 32px;

  font-size: 18px;

  line-height: 1;

  cursor: pointer;

  border-radius: 50%;

  display: flex;

  align-items: center;

  justify-content: center;

  transition: opacity 0.3s, background 0.3s;

}



.slider-arrow:hover {

  background: rgba(42, 127, 212, 0.7);

}



.slider-prev {

  left: 10px;

}



.slider-next {

  right: 10px;

}



.slider-dots {

  position: absolute;

  bottom: 10px;

  left: 50%;

  transform: translateX(-50%);

  display: flex;

  gap: 6px;

  z-index: 5;

}



.slider-dot {

  width: 6px;

  height: 6px;

  border-radius: 50%;

  background: rgba(255, 255, 255, 0.35);

  border: none;

  padding: 0;

  cursor: pointer;

  transition: all 0.3s;

}



.slider-dot.active {

  background: #fff;

  transform: scale(1.3);

}



.card-img-overlay {

  position: absolute;

  inset: 0;

  background: linear-gradient(to bottom, transparent 35%, rgba(5, 12, 24, 0.92) 100%);

  pointer-events: none;

}



.card-badge {

  position: absolute;

  top: 14px;

  right: 14px;

  background: var(--cyan);

  color: var(--white);

  padding: 4px 10px;

  font-size: 9px;

  letter-spacing: 2px;

  text-transform: uppercase;

  font-weight: 500;

  z-index: 2;

}



.card-badge.soldout {

  background: rgba(255, 255, 255, 0.08);

  color: rgba(255, 255, 255, 0.35);

}



.card-district {

  position: absolute;

  bottom: 14px;

  left: 14px;

  font-size: 10px;

  letter-spacing: 2px;

  text-transform: uppercase;

  color: rgba(91, 163, 232, 0.9);

  z-index: 2;

}



.card-sea {

  position: absolute;

  bottom: 14px;

  right: 14px;

  font-size: 10px;

  color: rgba(180, 200, 220, 0.7);

  z-index: 2;

}



.card-body {

  padding: 24px 24px 28px;

}



.card-title {

  font-family: 'Cormorant Garamond', serif;

  font-size: 26px;

  font-weight: 400;

  color: var(--white);

  line-height: 1.1;

  margin-bottom: 10px;

}



.card-desc {

  font-size: 11px;

  line-height: 1.9;

  color: var(--text);

  margin-bottom: 16px;

}



.card-features {

  display: flex;

  flex-wrap: wrap;

  gap: 6px;

  margin-bottom: 20px;

}



.tag {

  font-size: 9px;

  letter-spacing: 1px;

  text-transform: uppercase;

  padding: 4px 9px;

  border: 1px solid rgba(42, 127, 212, 0.22);

  color: var(--text);

}



.card-footer {

  display: flex;

  align-items: flex-end;

  justify-content: space-between;

  padding-top: 16px;

  border-top: 1px solid rgba(42, 127, 212, 0.12);

}



.card-price-label {

  font-size: 9px;

  letter-spacing: 2px;

  text-transform: uppercase;

  color: var(--text);

  margin-bottom: 4px;

}



.card-price {

  font-family: 'Cormorant Garamond', serif;

  font-size: 24px;

  font-weight: 400;

  color: var(--white);

  line-height: 1;

}



.card-price.soldout {

  font-size: 14px;

  color: var(--text);

}



.card-yield {

  text-align: right;

  font-family: 'Cormorant Garamond', serif;

  font-size: 30px;

  font-weight: 300;

  color: var(--cyan);

}



.card-yield small {

  display: block;

  font-family: 'Montserrat', sans-serif;

  font-size: 9px;

  letter-spacing: 1px;

  color: var(--text);

}



.card-cta {

  display: block;

  width: 100%;

  margin-top: 16px;

  background: transparent;

  border: 1px solid rgba(42, 127, 212, 0.3);

  color: var(--cyan-light);

  padding: 11px;

  font-family: 'Montserrat', sans-serif;

  font-size: 10px;

  letter-spacing: 2px;

  text-transform: uppercase;

  cursor: pointer;

  text-align: center;

  transition: all 0.3s;

}



.card-cta:hover {

  background: var(--cyan);

  border-color: var(--cyan);

  color: var(--white);

}



/* WHY */

.why {

  background: var(--black);

  padding: 88px 0;

}



.why-inner {

  max-width: 1140px;

  margin: 0 auto;

  padding: 0 48px;

  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 80px;

  align-items: center;

}



.why-text .section-tag {

  text-align: left;

}



.why-text h2 {

  font-family: 'Cormorant Garamond', serif;

  font-size: clamp(36px, 4vw, 54px);

  font-weight: 300;

  color: var(--white);

  line-height: 1.1;

  margin: 16px 0 24px;

}



.why-text h2 em {

  font-style: italic;

  color: var(--cyan-light);

}



.why-text p {

  font-size: 13px;

  line-height: 2;

  color: var(--text);

  margin-bottom: 32px;

}



.why-list {

  list-style: none;

  display: flex;

  flex-direction: column;

  gap: 14px;

}



.why-list li {

  display: flex;

  gap: 16px;

  align-items: flex-start;

  font-size: 12px;

  color: var(--text);

  line-height: 1.7;

  padding-bottom: 14px;

  border-bottom: 1px solid rgba(42, 127, 212, 0.08);

}



.why-list li:last-child {

  border-bottom: none;

  padding-bottom: 0;

}



.why-list li::before {

  content: '→';

  color: var(--cyan);

  flex-shrink: 0;

}



.why-img-wrap {

  position: relative;

  overflow: hidden;

}



.why-img-wrap img {

  width: 100%;

  height: 420px;

  object-fit: cover;

  filter: brightness(0.68) saturate(0.8);

  display: block;

}



.why-img-overlay {

  position: absolute;

  inset: 0;

  background: linear-gradient(135deg, rgba(10, 22, 40, 0.4) 0%, transparent 60%);

}



.why-numbers {

  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 2px;

  margin-top: 2px;

}



.why-num-item {

  background: var(--blue-mid);

  padding: 28px 24px;

  border: 1px solid rgba(42, 127, 212, 0.1);

}



.why-num {

  font-family: 'Cormorant Garamond', serif;

  font-size: 44px;

  font-weight: 300;

  color: var(--cyan-light);

  line-height: 1;

}



.why-num-label {

  margin-top: 6px;

  font-size: 10px;

  letter-spacing: 1px;

  text-transform: uppercase;

  color: var(--text);

}



/* CONTACT */

.contacts {

  padding: 88px 48px;

  text-align: center;

  background: var(--blue-mid);

}



.contacts-inner {

  max-width: 560px;

  margin: 0 auto;

}



.contacts-title {

  font-family: 'Cormorant Garamond', serif;

  font-size: clamp(34px, 4vw, 54px);

  font-weight: 300;

  color: var(--white);

  line-height: 1.1;

  margin: 16px 0;

}



.contacts-title em {

  font-style: italic;

  color: var(--cyan-light);

}



.contacts-sub {

  font-size: 12px;

  color: var(--text);

  line-height: 2;

  margin-bottom: 40px;

}



.contact-form {

  display: flex;

  flex-direction: column;

  gap: 12px;

}



.contact-form input {

  background: rgba(5, 12, 24, 0.6);

  border: 1px solid rgba(42, 127, 212, 0.2);

  color: var(--white);

  padding: 14px 20px;

  font-family: 'Montserrat', sans-serif;

  font-size: 12px;

  outline: none;

  transition: border-color 0.3s;

  width: 100%;

}



.contact-form input::placeholder {

  color: var(--text);

}



.contact-form input:focus {

  border-color: var(--cyan);

}



.contact-row {

  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 12px;

}



.contact-messengers {

  display: flex;

  gap: 12px;

  margin-top: 4px;

}



.msg-btn {

  flex: 1;

  padding: 13px;

  border: 1px solid rgba(42, 127, 212, 0.2);

  background: transparent;

  color: var(--text);

  cursor: pointer;

  font-family: 'Montserrat', sans-serif;

  font-size: 10px;

  letter-spacing: 2px;

  text-transform: uppercase;

  transition: all 0.3s;

  text-decoration: none;

  display: flex;

  align-items: center;

  justify-content: center;

  gap: 8px;

}



.msg-btn:hover {

  border-color: var(--cyan);

  color: var(--cyan-light);

}



.submit-btn {

  background: var(--cyan);

  border: none;

  color: var(--white);

  padding: 16px;

  cursor: pointer;

  font-family: 'Montserrat', sans-serif;

  font-size: 11px;

  letter-spacing: 3px;

  text-transform: uppercase;

  font-weight: 500;

  transition: all 0.3s;

  margin-top: 8px;

}



.submit-btn:hover {

  background: var(--cyan-light);

}



/* FOOTER */

footer {

  background: var(--black);

  border-top: 1px solid rgba(42, 127, 212, 0.12);

  padding: 32px 52px;

  display: flex;

  align-items: center;

  justify-content: space-between;

  flex-wrap: wrap;

  gap: 16px;

}



.footer-logo {

  font-family: 'Cormorant Garamond', serif;

  font-size: 18px;

  letter-spacing: 4px;

  color: var(--white);

  text-transform: uppercase;

}



.footer-logo span {

  color: var(--cyan);

}



.footer-links {

  display: flex;

  gap: 24px;

}



.footer-links a {

  font-size: 10px;

  letter-spacing: 1px;

  color: var(--text);

  text-decoration: none;

  transition: color 0.3s;

}



.footer-links a:hover {

  color: var(--cyan-light);

}



.footer-copy {

  font-size: 10px;

  color: var(--text);

}



/* MODAL */

.modal-overlay {

  display: none;

  position: fixed;

  inset: 0;

  z-index: 200;

  background: rgba(0, 0, 0, 0.88);

  backdrop-filter: blur(10px);

  align-items: center;

  justify-content: center;

}



.modal-overlay.open {

  display: flex;

}



.modal {

  background: var(--blue-mid);

  border: 1px solid rgba(42, 127, 212, 0.25);

  padding: 48px;

  max-width: 460px;

  width: 90%;

  position: relative;

  animation: fadeUp 0.4s ease;

}



.modal-close {

  position: absolute;

  top: 16px;

  right: 20px;

  background: none;

  border: none;

  color: var(--text);

  font-size: 18px;

  cursor: pointer;

  transition: color 0.3s;

}



.modal-close:hover {

  color: var(--cyan-light);

}



.modal-title {

  font-family: 'Cormorant Garamond', serif;

  font-size: 34px;

  font-weight: 300;

  color: var(--white);

  margin-bottom: 8px;

}



.modal-sub {

  font-size: 11px;

  color: var(--text);

  margin-bottom: 28px;

  line-height: 1.8;

}



@keyframes fadeUp {

  from {

    opacity: 0;

    transform: translateY(24px)
  }



  to {

    opacity: 1;

    transform: translateY(0)
  }

}



/* RESPONSIVE */

@media(max-width:1024px) {

  .projects {

    grid-template-columns: 1fr 1fr;

    padding: 0 24px 60px
  }



  .project-card.featured {

    grid-column: span 1
  }



  .why-inner {

    grid-template-columns: 1fr;

    gap: 48px
  }



  .why-img-wrap img {

    height: 300px
  }

}



@media(max-width:768px) {

  .stats-inner {

    grid-template-columns: repeat(2, 1fr)
  }



  .stat-item:nth-child(2) {

    border-right: none
  }



  nav {

    padding: 18px 24px
  }



  .nav-links {

    display: none
  }

}



@media(max-width:580px) {

  .projects {

    grid-template-columns: 1fr;

    padding: 0 16px 60px
  }



  .contact-row {

    grid-template-columns: 1fr
  }



  footer {

    flex-direction: column;

    text-align: center
  }



  .filter-bar {

    padding: 0 20px 32px
  }



  .section-header {

    padding: 60px 24px 36px
  }



  .contacts {

    padding: 60px 24px
  }



  .why-inner {

    padding: 0 24px
  }

}

/* ── intl-tel-input ── */
.iti {
  width: 100%;
  display: block !important;
}

/* Кнопка выбора страны */
.iti__selected-country,
.iti__selected-country-primary {
  background: rgba(5, 12, 24, 0.6) !important;
  border: none !important;
  border-right: none !important;
  transition: border-color 0.3s !important;
}

.iti__selected-country:hover,
.iti__selected-country:focus,
.iti__selected-country[aria-expanded="true"] {
  background: rgba(42, 127, 212, 0.1) !important;
}

/* Стрелка */
.iti__arrow {
  border-top-color: #B8CADE !important;
  margin-left: 6px !important;
}

.iti__arrow--up {
  border-bottom-color: #5BA3E8 !important;
  border-top-color: transparent !important;
}

/* Код выбранной страны рядом с флагом */
.iti__selected-dial-code {
  color: #B8CADE !important;
  font-family: 'Montserrat', sans-serif !important;
  font-size: 12px !important;
  margin: 0 8px!important;
}

/* Поле ввода телефона */
.iti input[type="tel"] {
  background: rgba(5, 12, 24, 0.6) !important;
  border: 1px solid rgba(42, 127, 212, 0.2) !important;
  color: #F4F7FC !important;
  font-family: 'Montserrat', sans-serif !important;
  font-size: 12px !important;
  padding-top: 14px !important;
  padding-right: 20px !important;
  padding-bottom: 14px !important;
  outline: none !important;
  transition: border-color 0.3s !important;
  width: 100% !important;
}

.iti input[type="tel"]:focus {
  border-color: #2A7FD4 !important;
}

.iti input[type="tel"].iti-invalid {
  border-color: rgba(192, 57, 43, 0.8) !important;
}

.iti input[type="tel"]::placeholder {
  color: #B8CADE !important;
}

/* Сообщение об ошибке валидации */
.iti-error-msg {
  display: block;
  margin-top: 5px;
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  letter-spacing: 0.5px;
  color: rgba(231, 76, 60, 0.9);
}

/* Выпадающий список */
.iti__dropdown-content {
  background: #0A1628 !important;
  border: 1px solid rgba(42, 127, 212, 0.25) !important;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.7) !important;
  border-radius: 0 !important;
  z-index: 300 !important;
}

/* Поле поиска в дропдауне */
.iti__search-input {
  background: rgba(15, 32, 64, 0.9) !important;
  border: none !important;
  border-bottom: 1px solid rgba(42, 127, 212, 0.2) !important;
  color: #F4F7FC !important;
  font-family: 'Montserrat', sans-serif !important;
  font-size: 11px !important;
  padding: 10px 14px !important;
  outline: none !important;
  width: 100% !important;
}

.iti__search-input::placeholder {
  color: #B8CADE !important;
}

/* Список стран */
.iti__country-list {
  background: transparent !important;
  border: none !important;
  scrollbar-width: thin !important;
  scrollbar-color: rgba(42, 127, 212, 0.3) transparent !important;
}

.iti__country-list::-webkit-scrollbar {
  width: 4px;
}

.iti__country-list::-webkit-scrollbar-track {
  background: transparent;
}

.iti__country-list::-webkit-scrollbar-thumb {
  background: rgba(42, 127, 212, 0.3);
}

/* Страна */
.iti__country {
  padding: 9px 14px !important;
  transition: background 0.15s !important;
}

.iti__country:hover,
.iti__country.iti__highlight {
  background: rgba(42, 127, 212, 0.12) !important;
}

.iti__country.iti__active {
  background: rgba(42, 127, 212, 0.2) !important;
}

.iti__country-name {
  color: #B8CADE !important;
  font-family: 'Montserrat', sans-serif !important;
  font-size: 11px !important;
}

.iti__dial-code {
  color: rgba(91, 163, 232, 0.7) !important;
  font-size: 11px !important;
}

/* Разделитель */
.iti__divider {
  border-bottom: 1px solid rgba(42, 127, 212, 0.15) !important;
  margin: 4px 0 !important;
}
