*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
li { list-style: none; }
a { text-decoration: none; }
a,
img,
span,
input,
label,
button,
ion-icon { display: block; }
input,
button {
  background: none;
  border: none;
  font: inherit;
}
button { cursor: pointer; }
input { width: 100%; }
ion-icon { pointer-events: none; }
html {
  font-family: "Poppins", sans-serif;
  scroll-behavior: smooth;
}
body { background: #ffffff; }
.container { padding-inline: 15px; }
.btn {
  color: #ffffff;
  text-transform: uppercase;
  font-size: 14px;
  border-radius: 100px;
  padding: var(--padding, 8px 18px);
  border: var(--border-width, 2px) solid transparent;
  transition: 0.25s ease-in-out;
}
.btn-primary {
  background: #3b79c9;
  border-color: #3b79c9;
}
.btn-primary:is(:hover, :focus) {
  background: #184c91;
  border-color: #184c91;
}
.btn-primary a{
  color: white;
}
.btn-secondary a{color: #ffffff; }
.btn-secondary { border-color: #ffffff; }
.btn-secondary:is(:hover, :focus) { background: #ffffff1a; }
.h1,
.h2,
.h3 {
  font-weight: 800;
  font-family: "Montserrat", sans-serif;
  text-transform: uppercase;
}
.h1 {
  color: #ffffff;
  font-size: calc(20px + 3.5vw);
}
.h2,
.h3 { color: #223544; }
.h2 { font-size: calc(18px + 1.6vw); }
.h3 {
  font-size: calc(16px + 0.45vw);
  font-weight: 700;
}
.section-subtitle {
  color: #3b79c9;
  font-size: 14px;
  text-transform: uppercase;
  font-family: "Montserrat", sans-serif;
  margin-bottom: 8px;
}
.section-title { margin-bottom: 15px; }
.section-text {
  color: #636774;
  margin-bottom: 30px;
}
.card-text {
  color: #636774;
  font-size: 14px;
}
.header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding-top: 61px;
  z-index: 4;
}
.header-top {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  transition: 0.25s ease-in-out;
  border-bottom: 1px solid #ffffff1a;
  padding-block: 15px;
  z-index: 1;
}
.header.active .header-top {
  position: fixed;
  background: #223544;
}
.header-top .container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  justify-items: flex-start;
  align-items: center;
}
.helpline-box .wrapper { display: none; }
.helpline-box .icon-box {
  background: #3b79c9;
  padding: 6px;
  border-radius: 50%;
  color: #ffffff;
}
.helpline-box .icon-box ion-icon { --ionicon-stroke-width: 40px; }
.header-top .logo { 
  margin-inline: auto; 
}
.logo h2{
  color: #ffffff;
}
.header-top .logo img { max-width: 100px; }
.header-btn-group {
  justify-self: flex-end;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #ffffff;
}
.search-btn,
.nav-open-btn {
  font-size: 30px;
  color: inherit;
}
.search-btn { font-size: 20px; }
.header-bottom { border-bottom: 1px solid hsla(0, 0%, 100%, 0.1); }
.header-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-block: 15px;
}
.social-list {
  display: flex;
  align-items: center;
  gap: 5px;
}
.social-link {
  color: #ffffff;
  padding: 8px;
  border: 1px solid hsla(0, 0%, 100%, 0.3);
  border-radius: 50%;
  font-size: 15px;
  transition: 0.25s ease-in-out;
}
.social-link:is(:hover, :focus) { background: hsla(0, 0%, 100%, 0.2); }
.header .btn { --padding: 4px 20px; }
.header .navbar {
  position: fixed;
  top: 0;
  right: -300px;
  width: 100%;
  max-width: 300px;
  height: 100%;
  background: #ffffff;
  visibility: hidden;
  pointer-events: none;
  transition: 0.15s ease-in;
  z-index: 3;
}
.navbar.active {
  right: 0;
  visibility: visible;
  pointer-events: all;
  transition: 0.25s ease-out;
}
.navbar-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 40px 15px;
}
.navbar-top .logo img { width: 150px; }
.nav-close-btn {
  font-size: 20px;
  color: #3b79c9;
}
.nav-close-btn ion-icon { --ionicon-stroke-width: 80px; }
.navbar-list { border-top: 1px solid hsla(0, 0%, 0%, 0.1); }
.navbar-list li { border-bottom: 1px solid hsla(0, 0%, 0%, 0.1); }
.navbar-link {
  padding: 15px 20px;
  color: #333333;
  font-weight: 500;
  font-size: 15px;
  transition: 0.25s ease-in-out;
  text-transform: capitalize;
}
.navbar-link:is(:hover, :focus) { color: #3b79c9; }
.overlay {
  position: fixed;
  inset: 0;
  background: #000000;
  opacity: 0;
  pointer-events: none;
  z-index: 2;
  transition: 0.25s ease-in-out;
}
.overlay.active {
  opacity: 0.7;
  pointer-events: all;
}
.hero {
  background-image: url("/assets/images/hero-banner.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-color: hsla(0, 0%, 0%, 0.7);
  background-blend-mode: overlay;
  display: grid;
  place-items: center;
  min-height: 600px;
  text-align: center;
  padding-top: 125px;
}
.hero-title { margin-bottom: 20px; }
.hero-text {
  color: #ffffff;
  font-size: calc(16px + 0.45vw);
  margin-bottom: 40px;
}
.btn-group {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
.tour-search {
  background: #3b79c9;
  padding-block: 60px;
}
.tour-search-form .input-label {
  color: #ffffff;
  font-size: 15px;
  margin-left: 20px;
  margin-bottom: 10px;
}
.tour-search-form .input-field {
  background: #ffffff;
  padding: 10px 15px;
  font-size: 14px;
  border-radius: 50px;
}
.tour-search-form .input-field::placeholder { color: #999999; }
.tour-search-form .input-field::-webkit-datetime-edit {
  color: #999999;
  text-transform: uppercase;
}
.tour-search-form .input-wrapper { margin-bottom: 15px; }
.tour-search .btn {
  width: 100%;
  --border-width: 1px;
  font-weight: 600;
  margin-top: 35px;
}
.popular { padding-block: 60px; }
.popular-list,
.popular-list > li:not(:last-child) { margin-bottom: 30px; }
.popular-card {
  position: relative;
  overflow: hidden;
  border-radius: 25px;
  height: 430px;
}
.popular-card .card-img:hover{
  transform:scale(110%);
}
.popular-card .card-img { height: 100%; }
.popular-card .card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.popular-card .card-content {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: #ffffff;
  border-radius: 25px;
  padding: 20px;
}
.card-content:hover{
  background-color: azure;
  
}
.popular-card .card-rating {
  background: #3b79c9;
  color: #ffffff;
  position: absolute;
  top: 0;
  right: 25px;
  display: flex;
  align-items: center;
  gap: 1px;
  transform: translateY(-50%);
  padding: 6px 10px;
  border-radius: 20px;
  font-size: 14px;
}
.popular-card .card-subtitle {
  color: #0084b8;
  font-size: 13px;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.popular-card .card-title { margin-bottom: 5px; }
.popular-card :is(.card-subtitle, .card-title) > a { color: inherit; }
.popular .btn { margin-inline: auto; }
.package { padding-block: 60px; }
.package-list { margin-bottom: 40px; }
.package-list > li:not(:last-child) { margin-bottom: 30px; }
.package-card {
  background: #fafafa;
  overflow: hidden;
  border-radius: 15px;
}
.package-card .card-banner { height: 250px; }
.package-card .card-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.package-card .card-content { padding: 30px 20px; }
.package-card .card-title { margin-bottom: 15px; }
.package-card .card-text {
  line-height: 1.6;
  margin-bottom: 20px;
}
.card-meta-list {
  background: #ffffff;
  max-width: max-content;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  padding: 8px;
  box-shadow: 0 0 5px hsla(0, 0%, 0%, 0.15);
  border-radius: 50px;
}
.card-meta-item { position: relative; }
.card-meta-item:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 4px;
  right: -1px;
  bottom: 4px;
  width: 1px;
  background: hsla(0, 0%, 0%, 0.3);
}
.meta-box {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  padding-inline: 9px;
  color: #636774;
  font-size: 11px;
}
.meta-box > ion-icon {
  color: #3b79c9;
  font-size: 13px;
}
.package-card .card-price {
  background: #588cd0;
  color: #ffffff;
  padding: 25px 20px;
  text-align: center;
}
.package-card .card-price .wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 5px 15px;
  margin-bottom: 10px;
}
.package-card .card-price .reviews { font-size: 14px; }
.package-card .card-rating {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1px;
  font-size: 14px;
}
.package-card .card-rating ion-icon:last-child { color: hsl(0, 0%, 80%); }
.package-card .price {
  font-size: calc(18px + 1.6vw);
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  margin-bottom: 20px;
}
.package-card .price span {
  font-size: 12px;
  font-weight: initial;
}
.package .btn { margin-inline: auto; }
.gallery { padding-block: 60px; }
.gallery-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.gallery-image {
  width: 100%;
  height: 100%;
  border-radius: 15px;
  overflow: hidden;
}
.gallery-item:nth-child(3) { grid-area: 1 / 2 / 3 / 3; }
.gallery-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cta {
  background: #3b79c9;
  padding-block: 60px;
}
.cta :is(.section-subtitle, .section-title, .section-text) { color: #ffffff; }
.cta .section-text { font-size: 14px; }
.footer-top {
  background: #223544;
  padding-block: 60px;
  color: #e0e0e0;
}
.footer-brand { margin-bottom: 30px; }
.footer-brand img { width: 180px; }
.footer-brand .logo { margin-bottom: 20px; }
.footer-text {
  font-size: 14px;
  line-height: 1.7;
}
.footer-contact { margin-bottom: 30px; }
.contact-title {
  position: relative;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  margin-bottom: 30px;
}
.contact-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 50px;
  height: 2px;
  background: #3b79c9;
}
.contact-text {
  font-size: 14px;
  margin-bottom: 15px;
  max-width: 200px;
}
.contact-item {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}
.contact-item ion-icon { --ionicon-stroke-width: 40px; }
.contact-link,
address {
  font-style: normal;
  color: #e0e0e0;
  font-size: 14px;
}
.contact-link:is(:hover, :focus) { color: #ffffff; }
.form-text {
  font-size: 14px;
  margin-bottom: 20px;
}
.footer-form .input-field {
  background: #ffffff;
  font-size: 14px;
  padding: 15px 20px;
  border-radius: 100px;
  margin-bottom: 10px;
}
.footer-form .btn { width: 100%; }
.footer-bottom {
  --gunmetal: hsl(205, 36%, 17%);
  background: #223544;
  padding-block: 20px;
  text-align: center;
}
.copyright {
  color: #e0e0e0;
  font-size: 14px;
  margin-bottom: 10px;
}
.copyright a {
  color: inherit;
  display: inline-block;
}
.copyright a:is(:hover, :focus) { color: #ffffff; }
.footer-bottom-list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 21px;
}
.footer-bottom-list > li { position: relative; }
.footer-bottom-list > li:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 3px;
  right: -10px;
  bottom: 3px;
  width: 1px;
  background: hsla(0, 0%, 100%, 0.2);
}
.footer-bottom-link {
  color: #e0e0e0;
  font-size: 12px;
  transition: 0.25s ease-in-out;
}
.footer-bottom-link:is(:hover, :focus) { color: #ffffff; }
.go-top {
  position: fixed;
  bottom: 15px;
  right: 15px;
  width: 35px;
  height: 35px;
  background: #3b79c9;
  color: #ffffff;
  display: grid;
  place-items: center;
  font-size: 18px;
  border-radius: 6px;
  box-shadow: 0 1px 3px hsla(0, 0%, 0%, 0.5);
  opacity: 0;
  transform: translateY(10px);
  visibility: hidden;
  transition: 0.25s ease-in-out;
}
.go-top.active {
  opacity: 0.8;
  transform: translateY(0);
  visibility: visible;
}
.go-top:is(:hover, :focus) { opacity: 1; }

@media (max-width: 580px) {
  .loginMsg button, .loginMsg .welcome{
    color: white;
    margin-right: 20px;
    
  }
}
@media (min-width: 580px) {
  .loginMsg button, .loginMsg .welcome{
    color: white;
    margin-right: 20px;
    
  }
  .content-info{
      width: +20%;
      position: relative;
      margin-top: 100px;
      border: 0.5px solid gray ;
      margin: 30px 10px;
      
    }
  .container {
    max-width: 580px;
    margin-inline: auto;
  }
  .btn {
    --fs-5: 16px;
    --padding: 12px 30px;
  }
  section:not(.cta) :is(.section-subtitle, .section-title, .section-text) {
    text-align: center;
  }
  .section-text { margin-bottom: 40px; }
  .card-text { --fs-5: 15px; }
  .header { padding-top: 83px; }
  .helpline-box .icon-box { padding: 14px; }
  .header-top .logo img { max-width: unset; }
  .search-btn { font-size: 30px; }
  .nav-open-btn { font-size: 40px; }
  .header .btn {
    --fs-5: 14px;
    --padding: 6px 20px;
  }
  .hero {
    min-height: 800px;
    padding-top: 85px;
  }
  .hero-text { --fs-5: 15px; }
  .btn-group { gap: 20px; }
  .tour-search-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: flex-end;
    gap: 15px;
  }
  .tour-search-form .input-wrapper { margin-bottom: 0; }
  .tour-search-form .input-field { padding: 16px 20px; }
  .tour-search .btn {
    grid-column: span 2;
    margin-top: 20px;
  }
  .popular-card .card-content { right: auto; }
  .footer .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
  .footer-form { grid-column: span 2; }
  .footer-bottom { text-align: left; }
  .copyright { margin-bottom: 0; }
  .footer-bottom-list { justify-content: flex-end; }
}
@media (min-width: 768px) {
  :root {
    --fs-5: 15px;
  }
  .loginMsg button, .loginMsg .welcome{
    color: white;
    margin-right: 20px;
    
  }
  .content-info{
    width: 100%;
      position: relative;
      margin-top: 100px;
      border: 0.5px solid gray ;
      margin: 30px auto;
      
    }
  .container { max-width: 800px; }
  .section-text {
    max-width: 63ch;
    margin-inline: auto;
  }
  .helpline-box {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
  }
  .helpline-box .wrapper {
    display: block;
    color: #ffffff;
    font-size: 13px;
  }
  .social-list { gap: 10px; }
  .popular-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 50px;
  }
  .popular-list > li:not(:last-child) { margin-bottom: 0; }
  .popular-card .card-content { right: 20px; }
  .package-list { margin-bottom: 50px; }
  .package-list > li:not(:last-child) { margin-bottom: 40px; }
  .package-card {
    display: grid;
    grid-template-columns: 1.3fr 1.5fr 1fr;
  }
  .package-card .card-banner { height: 100%; }
  .package-card .card-content { padding: 40px; }
  .package-card .card-price {
    display: grid;
    place-content: center;
  }
  .package-card .card-price .wrapper { margin-bottom: 15px; }
  .gallery { padding-bottom: calc(var(--section-padding * 2)); }
  .gallery-list {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
  .gallery-image { border-radius: 25px; }
  .cta .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .cta-content { width: calc(100% - 225px); }
  .cta .section-text { margin-inline: 0; }
  .form-wrapper {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 20px;
  }
  .footer-form .input-field { margin-bottom: 20px; }
  .footer-form .btn { width: max-content; }
}
@media (min-width: 992px) {
  .container { max-width: 1050px; }
  .header.active .header-top {
    position: unset;
    background: unset;
  }
  .nav-open-btn,
  .navbar-top { display: none; }
  .header-bottom { border-bottom: none; }
  .header.active .header-bottom {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #ffffff;
    color: #404040;
    box-shadow: 0 2px 5px hsla(0, 0%, 0%, 0.08);
    transition: 0.25s ease-in-out;
  }
  .header-bottom .container { padding-block: 0; }
  .header .navbar { all: unset; }
  .navbar-list {
    border-top: none;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .navbar-list li { border-bottom: none; }
  .navbar-link {
    color: #ffffff;
    --fs-4: 16px;
    font-weight: unset;
    text-transform: uppercase;
    padding: 20px 15px;
  }
  .loginMsg button, .loginMsg .welcome{
    color: white;
    margin-right: 20px;
    
  }
.loginMsg button:hover{
  color: #3b79c9;
}
.header.active .loginMsg button:hover{
  color: #3b79c9;
}
  .header.active .navbar-link  { color: #404040; }
  .header.active .loginMsg button ,.header.active .loginMsg .welcome{ color: #404040; }
  .header.active .navbar-link:is(:hover, :focus) { color: #3b79c9; }
  .header.active .social-link {
    color: #404040;
    border-color: hsla(0, 0%, 0%, 0.15);
  }
  .overlay { display: none; }
  .hero .container { max-width: 740px; }
  .tour-search-form { grid-template-columns: repeat(5, 1fr); }
  .tour-search .btn {
    --padding: 15px;
    grid-column: unset;
    margin-top: 0;
  }
  .popular-list { grid-template-columns: repeat(3, 1fr); }
  .meta-box { --fs-8: 13px; }
  .meta-box > ion-icon { font-size: 15px; }
  .cta .section-title { max-width: 25ch; }
  .footer-top .container {
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
  }
  .footer-form { grid-column: unset; }
  .form-wrapper { flex-direction: column; }
  .footer-form .btn { width: 100%; }
}
@media (min-width: 1200px) {
  :root {
    --section-padding: 100px;
  }
  .container { max-width: 1180px; }
}
.content-info{
width: 60%;
  position: relative;
  margin-top: 100px;
  border: 0.5px solid gray ;
  margin: 30px auto;
  
}
.content-info h2{
  text-align: center;
}
.content-info ul li{
  text-align: justify;
  margin: 10px 20px;
}
.login .container {
  width: 400px;
  margin: 50px auto;
  padding: 20px;
  background-color: #fff;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}
.login h1 {
  text-align: center;
  margin-bottom: 20px;
}
.login form {
  display: flex;
  flex-direction: column;
}
.login .form-group {
  margin-bottom: 15px;
}
.login label {
  display: block;
  margin-bottom: 5px;
}
.login input, .login select{
  width: 100%;
  padding: 8px;
  border: 1px solid #ccc;
  border-radius: 4px;
}
.login button {
  background-color: #007bff;
  color: #fff;
  padding: 10px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}
.login a {
  text-decoration: none;
  color: #007bff;
  margin-top: 10px;
}
.login *, *::before, *::after {
margin: 0;
padding: 0;
box-sizing: border-box;
}
.login li { list-style: none; }
.login a { text-decoration: none; }
.login a,
.login img,
.login span,
.login input,
.login label,
.login button,
.login ion-icon,
.login select
{ display: block; }
.logininput,
.loginbutton {
background: none;
border: none;
font: inherit;
}
.mySlides {display:none;
width: 100%;
height: 100%;
border-radius: 15px;
}