@import url("https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@500&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Satisfy&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@300&display=swap");
@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css");
* {
  box-sizing: border-box;
  margin: 0;
}

body,
html {
  margin: 0;
  padding: 0;
}



/* Video for itinerary */
.video-container {
  position: relative;
  width: 100%;
  max-width: 800px; /* Adjusted maximum width */
  margin: 0 auto; /* Center the container */
}
.video-container video {
  width: 100%;
  height: auto; /* Adjusted height to maintain aspect ratio */
}
.container {
  margin: 20px auto;
  max-width: 800px;
  padding: 0 20px;
}
.container h2 {
  text-align: center;
}
.row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.column {
  flex: 0 0 50%;
  max-width: 50%;
  padding: 0 15px;
}
@media screen and (max-width: 768px) {
  .column {
    flex: 0 0 100%;
    max-width: 100%;
  }
}




/*========================Nav Bar=========================*/
.nav-bar {
    display: flex;
    width: 100%;
    height: 90px;
    background-color: #fff;
    box-shadow: 3px 3px 10px lightslategray;
  justify-content: space-between;
  align-items: center;
    
  }
  
  .logo {
     padding: 20px;
    margin-left: 20px;
  
  }
  .nav-links {
    display: flex;
  
  }
  
  .nav-links li {
  margin: 20px;
    list-style: none;
    font-size: 17px;
    font-family: "Barlow Condensed";
    text-align: center;
  }
  
  .nav-links li a {
    text-decoration: none;
    color: #000;
    text-transform: uppercase;
  }
  
  .nav-links li a:hover {
    color: midnightblue;
    text-decoration: underline;
  }
.nav-bar {
  display: flex;
  width: 100%;
  height: 90px;
  background-color: #fff;
  box-shadow: 3px 3px 10px lightslategray;
justify-content: space-between;
align-items: center;
  
}

.logo {
   padding: 20px;
  margin-left: 20px;

}
.nav-links {
  display: flex;

}

.nav-links li {
margin: 20px;
  list-style: none;
  font-size: 17px;
  font-family: "Barlow Condensed";
  text-align: center;
}

.nav-links li a {
  text-decoration: none;
  color: #000;
  text-transform: uppercase;
}

.nav-links li a:hover {
  color: midnightblue;
  text-decoration: underline;
}

/*------------Zoom in Photos--------------*/
.zoom-img {
  float: left;
  position: relative;
  width: 100%;
  height: 320px;
  overflow: hidden;
}

.zoom-img .img-card {
  position: absolute;
  overflow: hidden;
}

.img-card img {
  -webkit-transition: 0.8s ease;
  transition: 0.8s ease;
}

.card:hover .zoom-img img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}


/*--===========Slide show===============--*/
* {box-sizing: border-box;}
body {font-family: Verdana, sans-serif;}
.mySlides {display: none;}
img {vertical-align: middle;}

/* Slideshow container */
.slideshow-container {
  max-width: 1000px;
  position: relative;
  margin: auto;
}

/* Caption text */
.text {
  color: #f2f2f2;
  font-size: 15px;
  padding: 8px 12px;
  position: absolute;
  bottom: 8px;
  width: 100%;
  text-align: center;
}

/* Number text (1/3 etc) */
.numbertext {
  color: #f2f2f2;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}

/* The dots/bullets/indicators */
.dot {
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.active {
  background-color: #717171;
}

/* Fading animation */
.fade {
  animation-name: fade;
  animation-duration: 1.5s;
}

@keyframes fade {
  from {opacity: .4} 
  to {opacity: 1}
}

/* On smaller screens, decrease text size */
@media only screen and (max-width: 300px) {
  .text {font-size: 11px}
}


/*--===========Social Media===============--*/
.socialmedia{
  justify-content: center;
  align-items: center;
display: flex;
margin-top: 2%;

}

.socialmedia .fa{
  padding: 20px;
  font-size: 20px;
  width: 60px;
  text-align: center;
  text-decoration: none;
  margin: 5px 10px;
  border-radius: 50%;
  margin-bottom: 2%;
}

.socialmedia .fa:hover {
  opacity: 0.7;
}

.socialmedia .fa-facebook {
background: #3B5998;
color: white;
}

.socialmedia .fa-twitter {
background: #55ACEE;
color: white;
}

.socialmedia .fa-linkedin {
background: #007bb5;
color: white;
}


.socialmedia .fa-instagram {
background: #125688;
color: white;
}


/*===============Footer===================*/
.footer {
  background-image: url("img/footer.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  width: 100%;
  height: 670px;
  position: relative;
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  align-items: center;
}

.footer::before {
  position: absolute;
  content: "";
  display: block;
  background-color: rgba(0, 0, 36, 0.8);
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}

.footer .links {
  position: relative;
  color: #fff;
  flex: 1;
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
}

.links ul {
  list-style-type: none;
}

.links h3 {
  font-family: Barlow Condensed;
  font-weight: normal;
  font-size: 23px;
  margin-bottom: 15px;
}

.links li {
  font-family: Roboto;
  cursor: pointer;
  padding: 15px 0;
}

.links li:hover {
  color: #ff0008;
}

#footer h4 {
  text-align: center;
  font-size: 1.1rem;
  padding: 2.1rem;
  font-weight: 500;
  color: #BE090B;
  background: white;
}