@import url("https://fonts.googleapis.com/css2?family=Cookie&family=Jost:ital,wght@0,100..900;1,100..900&display=swap");
.head {
  font-family: "Jost";
  font-size: 48px;
  font-weight: 500;
  color: #215559;
}

.subhead {
  font-family: "Cookie";
  font-size: 35px;
  font-weight: 500;
  color: #ff2268;
}

.text {
  font-family: "Jost";
  font-size: 16px;
  font-weight: 400;
  color: #565656;
}

.btn-main {
  background-color: #215559;
  font-family: "Jost";
  font-size: 16px;
  font-weight: 600;
  color: #fefefe;
}
.btn-main:hover {
  background-color: #173f42;
  color: #fefefe;
}

.btn-main-outline {
  background-color: transparent !important;
  font-family: "Jost";
  font-size: 16px;
  font-weight: 600;
  color: #fefefe;
  border: 3px solid #c8c8c8;
}
.btn-main-outline:hover {
  background-color: transparent !important;
  font-family: "Jost";
  font-size: 16px;
  font-weight: 600;
  color: #fefefe;
  border: 3px solid #FEFEFE;
}

h2 {
  font-family: "Jost";
  font-size: 55px;
  font-weight: 500;
  color: #fefefe;
}
@media (max-width: 575.98px) {
  h2 {
    font-size: 24px !important;
  }
}

.navbar {
  transition: all 0.3s ease;
}
.navbar .nav-link {
  font-family: "Jost";
  font-size: 13px;
  font-weight: 500;
  color: #3f3f3f;
}
.navbar .active {
  color: #215559 !important;
}

.navbar-scrolled {
  background-color: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.hero {
  background-image: url("../img/bg-hero.png");
  background-position: center;
  background-size: cover;
}
.hero h1 {
  font-family: "Jost";
  font-size: 100px;
  font-weight: 600;
  color: #fefefe;
  letter-spacing: 10px;
}
@media (max-width: 575.98px) {
  .hero h1 {
    font-size: 50px !important;
  }
}
.hero h2 {
  font-family: "Jost";
  font-size: 55px;
  font-weight: 500;
  color: #fefefe;
}
@media (max-width: 575.98px) {
  .hero h2 {
    font-size: 24px !important;
  }
}
.hero h3 {
  font-family: "Jost";
  font-size: 23px;
  font-weight: 400;
  color: #fefefe;
  letter-spacing: 5.1px;
  word-spacing: 3px;
}
@media (max-width: 575.98px) {
  .hero h3 {
    font-size: 18px !important;
  }
}

.itineraries {
  height: 100vh;
  background-image: url("../img/bg.png");
  background-position: center;
  background-size: cover;
}
@media (max-width: 575.98px) {
  .itineraries {
    height: auto;
    margin: 50px 0;
    padding: 50px 0;
  }
}
.itineraries .itineraries-card .img-box {
  position: relative;
  cursor: pointer;
}
.itineraries .itineraries-card .img-box img {
  width: 100%;
  height: auto;
  transition: opacity 0.3s ease;
}
.itineraries .itineraries-card .img-box .img-front {
  position: relative;
  opacity: 1;
}
.itineraries .itineraries-card .img-box .img-back {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}
.itineraries .itineraries-card .img-box:hover .img-front {
  opacity: 0;
}
.itineraries .itineraries-card .img-box:hover .img-back {
  opacity: 1;
}
.itineraries .itineraries-card .card-title {
  font-family: "Jost";
  font-size: 24px;
  font-weight: 400;
  color: #1b1b1b;
}
.itineraries .itineraries-card .card-text {
  font-family: "Jost";
  font-size: 24px;
  font-weight: 500;
  color: #0a5357;
}
.itineraries .itineraries-card .card-text span {
  font-family: "Jost";
  font-size: 15px;
  font-weight: 400;
  color: #404040;
}
.itineraries .itineraries-card .card-text strike {
  font-family: "Jost";
  font-size: 24px;
  font-weight: 400;
  color: #bbbbbb;
}

.features .feature-title {
  font-family: "Jost";
  font-size: 28px;
  font-weight: 500;
  color: #215559;
}
.features::after {
  content: url("../img/simplify-bg.png");
  position: absolute;
  width: 100%;
  top: 0 !important;
  z-index: -1;
}
@media (max-width: 575.98px) {
  .features::after {
    display: none;
  }
}

.blog .card {
  position: relative;
  height: 450px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.blog .card:hover::after {
  transform: scale(1.1);
}
.blog .blog-card-1::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../img/b1.webp");
  background-size: cover;
  background-position: center;
  transition: transform 0.3s ease;
}
.blog .blog-card-2::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../img/b2.webp");
  background-size: cover;
  background-position: center;
  transition: transform 0.3s ease;
}
.blog .blog-card-3::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../img/b3.webp");
  background-size: cover;
  background-position: center;
  transition: transform 0.3s ease;
}
.blog .date-pill {
  position: absolute;
  top: 20px;
  left: 20px;
  background: white;
  font-family: "Jost";
  font-size: 24px;
  font-weight: 500;
  color: #101010;
  text-transform: uppercase;
  padding: 8px 12px;
  border-radius: 8px;
  z-index: 2;
}
.blog .date-pill .date-month {
  font-size: 14px;
}
.blog .category-pill {
  position: absolute;
  bottom: 80px;
  left: 35%;
  background: #2A515E;
  padding: 6px 12px;
  border-radius: 4px;
  z-index: 2;
  font-family: "Jost";
  font-size: 14px;
  font-weight: 500;
  color: #fefefe;
}
.blog .title-area {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  z-index: 2;
}
.blog .title-area .title {
  line-height: 1.3;
  font-family: "Jost";
  font-size: 24px;
  font-weight: 400;
  color: #fefefe;
}

.footer {
  background-color: #f4f8fb;
}
.footer .nav-item > .nav-link {
  font-family: "Jost";
  font-size: 16px;
  font-weight: 400;
  color: #3f3f3f !important;
}
.footer .footer-text {
  font-family: "Jost";
  font-size: 16px;
  font-weight: 400;
  color: #3f3f3f !important;
}

.card-hover {
  padding: 10px;
  box-shadow: 2px 3px 14px transparent;
  background: #f4f8fb;
  border: none;
}
.card-hover .card-title {
  font-family: "Jost";
  font-size: 32px;
  font-weight: 600;
  color: #ff2268;
}
.card-hover .card-text {
  font-family: "Jost";
  font-size: 16px;
  font-weight: 400;
  color: #767676;
}
.card-hover img {
  max-width: 100px;
}
.card-hover:hover {
  background: #004646;
  box-shadow: 2px 3px 14px rgba(0, 0, 0, 0.16);
}
.card-hover:hover .card-title {
  font-family: "Jost";
  font-size: 32px;
  font-weight: 600;
  color: #fff;
}
.card-hover:hover .card-text {
  font-family: "Jost";
  font-size: 16px;
  font-weight: 400;
  color: #fff;
}/*# sourceMappingURL=style.css.map */