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;
}
