body {
  font-family: switzer;
}
em {
  font-family: Eiko Italic;
}
.navbar {
  background-color: rgb(174, 174, 174);
}
nav .offcanvas a {
  text-decoration: none;
}

.start .container .t2 p {
  color: #fff;
  font-size: 20px;
}
.destination {
  width: 100vw;
  margin-top: 40px;
  margin-bottom: 40px;
}
.destination .con1 {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.destination .con1 .text {
  width: 40vw;
}

.destination .container .col .card {
  height: 300px;
  width: auto;
  align-items: center;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  transition: 0.5s;
}
.destination .container .col .card:hover {
  box-shadow: 0 0 0 200px rgba(128, 128, 128, 0.775) inset;
}
.destination .container .col .card .info {
  width: 65%;
  margin-bottom: 10px;
  opacity: 0;
  transform: scale(0);
  transition: 0.8s;
}
.destination .container .col .card:hover .info {
  opacity: 1;
  transform: scale(1);
  margin-bottom: 50px;
}

.destination .container .col .card .info p {
  color: #fff;
}
.destination .container .col .card a {
  text-decoration: none;
  color: #fff;
}
.destination .container .col .card .card-body {
  width: 350px;
  text-align: center;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.destination .container .col .card .card-body h4 {
  color: white;
}

.page-intro {
  padding: 20px 15px 10px;
  display: flex;
  align-items: flex-end;
  gap: 40px;
  flex-wrap: wrap;
  border-bottom: 1px solid #ece9e2;
}

.page-intro__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "Inter", sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #2f8f80;
  margin: 0 0 14px;
}

.page-intro__eyebrow::before {
  content: "";
  width: 18px;
  height: 1.5px;
  background: #2f8f80;
  display: inline-block;
}

.page-intro__heading {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 600;
  font-size: clamp(15px, 3.4vw, 37px);
  line-height: 1.12;
  letter-spacing: -0.01em;
  color: #1c1c1a;
  margin: 0;
}

.page-intro__heading em {
  font-style: italic;
  color: #2f8f80;
}

@media (max-width: 720px) {
  .page-intro {
    padding: 40px 24px 28px;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
}
