:root {
  --bg: #f5f9fc;
  --card: #ffffff;
  --text: #17324d;
  --muted: #5f748a;
  --primary: #1d6fa5;
  --primary-dark: #14557f;
  --line: #dce8f1;
  --shadow: 0 18px 40px rgba(24, 61, 89, 0.08);
  --radius: 22px;
  --max: 1200px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.5;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.container {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
}

.section { padding: 88px 0; }

.section-title {
  font-size: clamp(28px, 4vw, 40px);
  margin: 0 0 16px;
  letter-spacing: -0.03em;
}

.section-subtitle {
  margin: 0 0 32px;
  color: var(--muted);
  max-width: 720px;
  font-size: 17px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  transition: 0.25s ease;
  cursor: pointer;
  white-space: nowrap;
}

.btn-primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 10px 24px rgba(29, 111, 165, 0.2);
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
}

.btn-secondary {
  background: rgba(255,255,255,0.14);
  color: #fff;
  border-color: rgba(255,255,255,0.35);
  backdrop-filter: blur(6px);
}

header {
  position: sticky;
  top: 0;
  z-index: 2000;
  background: rgba(245, 249, 252, 0.86);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(220, 232, 241, 0.75);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 82px;
  gap: 24px;
}

.logo {
  font-weight: 800;
  font-size: 20px;
  letter-spacing: -0.03em;
}

.menu-toggle {
  display: none;
}

.menu-btn {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
  position: relative;
  z-index: 2002;
}

.menu-btn span,
.menu-btn span::before,
.menu-btn span::after {
  content: "";
  display: block;
  width: 20px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  position: relative;
}

.menu-btn span::before,
.menu-btn span::after {
  position: absolute;
  left: 0;
}

.menu-btn span::before {
  top: -6px;
}

.menu-btn span::after {
  top: 6px;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 28px;
  padding: 0;
  margin: 0;
  color: var(--muted);
  font-weight: 500;
}

nav a:hover { color: var(--primary); }

.hero { padding: 22px 0 0; }



.hero-card {
  position: relative;
  min-height: 760px;
  border-radius: 34px;
  overflow: hidden;
  background: url("images/Gll.jpg") center/cover no-repeat;
  box-shadow: var(--shadow);
  display: flex;
  align-items: flex-end;
}



.hero-content {
  width: 100%;
  padding: 90px;
  color: #fff;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 32px;
  align-items: end;
}

.hero h1 {
  margin: 0 0 18px;
  font-size: clamp(44px, 6vw, 76px);
  line-height: 0.96;
  letter-spacing: -0.05em;
  max-width: 9ch;
}

.hero p {
  margin: 0 0 28px;
  max-width: 620px;
  font-size: 18px;
  color: rgba(255,255,255,0.9);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-panel {
  position: relative;
  z-index: 2;
  background: rgba(255,255,255,0.14);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 24px;
  padding: 24px;
  backdrop-filter: blur(12px);
}

.hero-panel h3 {
  margin: 0 0 14px;
  font-size: 20px;
}

.hero-facts {
  display: grid;
  gap: 14px;
  position: relative;
  z-index: 2;
}

.fact {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.18);
  font-size: 15px;
  position: relative;
  z-index: 2;
}

.fact:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.fact span:last-child {
  font-weight: 700;
}

.fact span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  position: relative;
  z-index: 3;
}
.fact-icon {
  width: 16px;
  height: 16px;
  display: block;
  flex: 0 0 16px;
}



.cards-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
}

.card-icon {
  width: 28px;
  height: 28px;
  margin-bottom: 14px;
}

.card h3 {
  margin: 0 0 10px;
  font-size: 20px;
}

.card p {
  margin: 0;
  color: var(--muted);
}

.routes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.route { overflow: hidden; padding: 0; }
.route img { width: 100%; height: 230px; object-fit: cover; }

.route-body { padding: 22px; }

.route-meta {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 12px;
}

.price {
  margin-top: 16px;
  font-size: 18px;
  font-weight: 800;
  color: var(--primary);
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: center;
}
.split-img {
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 4.6 / 5;
}

.split-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}


.list {
  display: grid;
  gap: 14px;
  padding: 0;
  margin: 24px 0 0;
  list-style: none;
}

.list li {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 16px 18px;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 10px;
}

.list-icon {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
}

.reviews {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.review { display: grid; gap: 14px; }

.review-top {
  display: flex;
  align-items: center;
  gap: 12px;
}

.review-icon {
  width: 48px;
  height: 48px;
  object-fit: cover;
  border-radius: 50%;
}
.stars {
  color: #f0b429;
  letter-spacing: 2px;
  font-size: 15px;
}

.map-box {
  background: linear-gradient(180deg, #fff, #eef7fc);
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 26px;
  box-shadow: var(--shadow);
}

.map-placeholder {
  position: relative;
  height: 420px;
  border-radius: 22px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.1), rgba(255,255,255,0.1)),
    url("images/map.png") center/cover no-repeat;
}

.map-image {
  display: none;
}

.map-pin {
  position: absolute;
  width: 28px;
  height: 28px;
  z-index: 2;
}

.pin-one { left: 35%; top: 84%; }
.pin-two { left: 36%; top: 83%; }
.pin-three { left: 51%; top: 53%; }
.pin-four { left: 40%; top: 80%; }
.pin-five { left: 53%; top: 52%; }
.pin-six { left: 60%; top: 38%; }



.form-wrap {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 28px;
  box-shadow: var(--shadow);
}

form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

input, select, textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid var(--line);
  font: inherit;
  background: #fff;
  outline: none;
}

textarea {
  grid-column: 1 / -1;
  min-height: 120px;
  resize: vertical;
}

.form-actions {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-top: 6px;
}

.form-note {
  color: var(--muted);
  font-size: 14px;
}

.faq {
  display: grid;
  gap: 14px;
}

.faq-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 18px 20px;
}

.faq-item summary {
  cursor: pointer;
  font-weight: 700;
}

.faq-item p {
  margin: 12px 0 0;
  color: var(--muted);
}




footer {
  padding: 34px 0 54px;
  color: var(--muted);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid var(--line);
  padding-top: 26px;
  flex-wrap: wrap;
}

.footer-brand,
.footer-contacts,
.footer-meta {
  display: grid;
  gap: 8px;
}

.footer-contacts a,
.footer-meta a {
  color: var(--text);
}

.footer-contacts a:hover,
.footer-meta a:hover {
  color: var(--primary);
}

.footer-brand span {
  max-width: 280px;
}

@media (max-width: 800px) {
  .footer-inner {
    flex-direction: column;
  }
}



@media (max-width: 1100px) {
  .hero-content, .split { grid-template-columns: 1fr; }
  .cards-4, .routes-grid, .reviews { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 800px) {
  .container { width: min(var(--max), calc(100% - 28px)); }

  .header-inner {
    position: relative;
    min-height: 72px;
    gap: 14px;
    z-index: 2001;
  }

  .menu-btn {
    display: inline-flex;
    margin-left: auto;
  }

  nav {
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    right: 0;
    background: rgba(245, 249, 252, 0.98);
    backdrop-filter: blur(12px);
    border: 1px solid var(--line);
    border-radius: 5px;
    padding: 14px;
    box-shadow: var(--shadow);
    z-index: 2001;

    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    max-height: 0;
    overflow: hidden;
    pointer-events: none;
    transition:
      opacity 0.25s ease,
      transform 0.25s ease,
      max-height 0.25s ease,
      visibility 0s linear 0.25s;
  }

  nav ul {
    display: grid;
    gap: 10px;
  }

  nav ul li a {
    display: block;
    padding: 12px 14px;
    border-radius: 12px;
    background: #fff;
    border: 1px solid var(--line);
  }

  .menu-toggle:checked ~ nav {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    max-height: 500px;
    pointer-events: auto;
    transition-delay: 0s;
  }

  .hero-card { min-height: auto; }
  .hero-content { padding: 28px; }
  .cards-4, .routes-grid, .reviews, form { grid-template-columns: 1fr; }
  .section { padding: 64px 0; }
  .hero h1 { font-size: 38px; max-width: 100%; }
  .hero p { font-size: 16px; margin-bottom: 20px; }
  .hero-actions { flex-direction: column; }
  .btn { width: 100%; }
  .split-img { min-height: 260px; }
  .map-placeholder { height: 280px; }
  .footer-inner { flex-direction: column; }
}

@media (max-width: 520px) {
  .container { width: min(var(--max), calc(100% - 20px)); }

  .section { padding: 52px 0; }

  .logo { font-size: 18px; }

  .hero-content { padding: 18px; }

  .hero h1 { font-size: 32px; }

  .hero-panel { padding: 18px; }

  .hero-panel h3 { font-size: 18px; }

  .fact {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    font-size: 14px;
  }

  .card {
    padding: 18px;
  }

  .card h3 {
    font-size: 18px;
  }

  .card-icon {
    width: 24px;
    height: 24px;
  }

  .route-body {
    padding: 18px;
  }

  .route-meta {
    font-size: 13px;
  }

  .price {
    font-size: 17px;
  }

  .list li {
    padding: 14px 15px;
    font-size: 14px;
  }

  .map-box {
    padding: 16px;
  }


  .form-wrap {
    padding: 18px;
  }

  input, select, textarea {
    padding: 13px 14px;
  }

  .form-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .form-note {
    font-size: 13px;
  }
}

.form-consent {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.45;
  grid-column: 1 / -1;
}

.form-consent input {
  width: 16px;
  height: 16px;
  margin-top: 2px;
  accent-color: var(--primary);
  flex: 0 0 16px;
}

.form-consent a {
  color: var(--primary);
  text-decoration: underline;
}



.form-consent {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.45;
  grid-column: 1 / -1;
}

.form-consent input {
  width: 16px;
  height: 16px;
  margin-top: 2px;
  accent-color: var(--primary);
  flex: 0 0 16px;
}

.form-consent a {
  color: var(--primary);
  text-decoration: underline;
  cursor: pointer;
}

.modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(15, 39, 60, 0.55);
  z-index: 4000;
  padding: 20px;
}

.modal.open {
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-content {
  position: relative;
  background: #fff;
  border-radius: 18px;
  max-width: 720px;
  width: 100%;
  padding: 28px;
  box-shadow: var(--shadow);
  max-height: 85vh;
  overflow: auto;
}

.modal-close {
  position: absolute;
  top: 12px;
  right: 14px;
  border: 0;
  background: transparent;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  color: var(--muted);
}


@media (max-width: 480px) {
  .container {
    width: min(var(--max), calc(100% - 20px));
  }

  .section {
    padding: 44px 0;
  }

  .section-title {
    font-size: 26px;
    margin-bottom: 12px;
  }

  .section-subtitle {
    font-size: 15px;
    margin-bottom: 22px;
  }

  .hero {
    padding-top: 12px;
  }

  .hero-card {
    border-radius: 24px;
    min-height: auto;
  }

  .hero-content {
    padding: 18px;
    gap: 18px;
  }

  .hero h1 {
    font-size: 30px;
    line-height: 1;
  }

  .hero p {
    font-size: 15px;
    margin-bottom: 18px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
    padding: 13px 18px;
  }

  .cards-4,
  .routes-grid,
  .reviews,
  form,
  .split {
    grid-template-columns: 1fr;
  }

  .card,
  .route-body,
  .form-wrap,
  .map-box {
    padding: 16px;
  }

  .route img {
    height: 190px;
  }

  .split-img {
    min-height: 220px;
  }



  .list li {
    padding: 12px 14px;
    font-size: 14px;
  }

  input,
  select,
  textarea {
    padding: 12px 13px;
  }

  .form-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .form-consent {
    font-size: 12px;
    line-height: 1.4;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }
}

.routes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}

.route {
  overflow: hidden;
  padding: 0;
  display: flex;
  flex-direction: column;
}

.route-img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  object-position: center;
  display: block;
}

.route-body {
  padding: 22px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.route-body p {
  margin-bottom: 18px;
}

.price {
  margin-top: auto;
  font-size: 18px;
  font-weight: 800;
  color: var(--primary);
}

@media (max-width: 1100px) {
  .hero-content,
  .split {
    grid-template-columns: 1fr;
  }

  .cards-4,
  .routes-grid,
  .reviews {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 800px) {
  .container {
    width: min(var(--max), calc(100% - 28px));
  }

  .header-inner {
    position: relative;
    min-height: 72px;
    gap: 14px;
    z-index: 2001;
  }

  .menu-btn {
    display: inline-flex;
    margin-left: auto;
  }

  nav {
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    right: 0;
    background: rgba(245, 249, 252, 0.98);
    backdrop-filter: blur(12px);
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 14px;
    box-shadow: var(--shadow);
    z-index: 2001;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    max-height: 0;
    overflow: hidden;
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s ease, max-height 0.25s ease, visibility 0s linear 0.25s;
  }

  nav ul {
    display: grid;
    gap: 10px;
  }

  nav ul li a {
    display: block;
    padding: 12px 14px;
    border-radius: 12px;
    background: #fff;
    border: 1px solid var(--line);
  }

  .menu-toggle:checked ~ nav {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    max-height: 500px;
    pointer-events: auto;
    transition-delay: 0s;
  }

  .hero-card {
    min-height: auto;
  }

  .hero-content {
    padding: 28px;
  }

  .cards-4,
  .routes-grid,
  .reviews,
  form {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 64px 0;
  }

  .hero h1 {
    font-size: 38px;
    max-width: 100%;
  }

  .hero p {
    font-size: 16px;
    margin-bottom: 20px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .split-img {
    min-height: 260px;
  }

  .footer-inner {
    flex-direction: column;
  }
}

@media (max-width: 520px) {
  .container {
    width: min(var(--max), calc(100% - 20px));
  }

  .section {
    padding: 52px 0;
  }

  .logo {
    font-size: 18px;
  }

  .hero-content {
    padding: 18px;
  }

  .hero h1 {
    font-size: 32px;
  }

  .hero-panel {
    padding: 18px;
  }

  .hero-panel h3 {
    font-size: 18px;
  }

  .fact {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    font-size: 14px;
  }

  .card {
    padding: 18px;
  }

  .card h3 {
    font-size: 18px;
  }

  .card-icon {
    width: 24px;
    height: 24px;
  }

  .route-body {
    padding: 18px;
  }

  .route-meta {
    font-size: 13px;
  }

  .price {
    font-size: 17px;
  }

  .list li {
    padding: 14px 15px;
    font-size: 14px;
  }




.map-placeholder {
  position: relative;
  width: 100%;
  max-width: 1200px;
  aspect-ratio: 1200 / 800;
}

.map-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.map-pin {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 60px;
  height: 60px;
  background: red;
  z-index: 9999;
}

.map-placeholder .map-pin.pin-one {
  top: 40%;
  left: 56%;
}

.map-placeholder .map-pin.pin-two {
  top: 41%;
  left: 56%;
}

.map-placeholder .map-pin.pin-three {
  top: 65%;
  left: 72%;
}



  .form-wrap {
    padding: 18px;
  }

  input,
  select,
  textarea {
    padding: 13px 14px;
  }

  .form-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .form-note {
    font-size: 13px;
  }

  .form-consent {
    font-size: 13px;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }
}

@media (max-width: 480px) {
  .section {
    padding: 44px 0;
  }

  .section-title {
    font-size: 26px;
    margin-bottom: 12px;
  }

  .section-subtitle {
    font-size: 15px;
    margin-bottom: 22px;
  }

  .hero {
    padding-top: 12px;
  }

  .hero-card {
    border-radius: 24px;
  }

  .hero-content {
    gap: 18px;
  }

  .hero h1 {
    font-size: 30px;
    line-height: 1;
  }

  .hero p {
    font-size: 15px;
    margin-bottom: 18px;
  }

  .btn {
    padding: 13px 18px;
  }

  .route img {
    height: 190px;
  }

  .split-img {
    min-height: 220px;
  }

  .map-placeholder {
    height: 220px;
  }

  .map-pin {
    width: 20px;
    height: 20px;
  }

  .list li {
    padding: 12px 14px;
  }

  input,
  select,
  textarea {
    padding: 12px 13px;
  }

  .form-consent {
    font-size: 12px;
    line-height: 1.4;
  }
}


/* Стиль для неактивной кнопки */
.btn-primary:disabled {
    background-color: #ccc; /* Серый цвет */
    color: #888;
    cursor: not-allowed; /* Перечеркнутый круг */
    opacity: 0.7;
    transform: none;
    box-shadow: none;
}






.route-img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  object-position: center;
  display: block;
}


.route-preview {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 320px;
  height: 220px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow);
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px) scale(0.98);
  transition: 0.22s ease;
  z-index: 5000;
  pointer-events: none;
}

.route-preview.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.route-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}



.routes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}

.route {
  overflow: hidden;
  padding: 0;
  display: flex;
  flex-direction: column;
}

.route-img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  object-position: center;
  display: block;
  cursor: pointer;
}

.route-body {
  padding: 22px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.route-body p {
  margin-bottom: 18px;
}

.price {
  margin-top: auto;
  font-size: 18px;
  font-weight: 800;
  color: var(--primary);
}

.route-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(15, 39, 60, 0.65);
  z-index: 6000;
  padding: 20px;
}

.route-modal.open {
  display: flex;
  align-items: center;
  justify-content: center;
}

.route-modal-content {
  position: relative;
  width: min(920px, 100%);
  max-height: 90vh;
  background: #fff;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.route-modal-content img {
  width: 100%;
  max-height: 72vh;
  object-fit: cover;
  display: block;
}

.route-modal-caption {
  padding: 16px 20px 20px;
  font-weight: 700;
  color: var(--text);
}

.route-modal-close {
  position: absolute;
  top: 10px;
  right: 14px;
  z-index: 2;
  border: 0;
  background: rgba(255, 255, 255, 0.92);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

@media (max-width: 1100px) {
  .cards-4,
  .routes-grid,
  .reviews {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 800px) {
  .cards-4,
  .routes-grid,
  .reviews,
  form {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .route-img {
    height: 190px;
  }
}


