/* Reset some default styles */
body,
h1,
h2,
p {
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Arial', 'sans-serif';
  background-color: #f4f4f4;
  line-height: 1.6;
}

/* Header Styles */
img {
  max-width: 100%;
  height: auto;
}

/* Top NavBar Styles */
.icon-bar {
  background-color: #333;
  overflow: hidden;
}

.icon-bar a {
  float: left;
  display: block;
  color: white;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
}

.icon-bar a:hover {
  background-color: #ddd;
  color: black;
}

.subnav {
  float: left;
  overflow: hidden;
}

.subnav .subnavbutton {
  font-size: 16px;
  border: none;
  outline: none;
  color: white;
  padding: 14px 16px;
  background-color: inherit;
  font-family: inherit;
  margin: 0;
}

.subnav:hover .subnav-content {
  display: block;
}

.subnav-content {
  display: none;
  position: absolute;
  text-align: left;
  background-color: #f9f9f9;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 1;
}

.subnav-content a {
  float: none;
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  text-align: left;
}

.subnav-content a:hover {
  background-color: #131111;
}

/* Slideshow Styles */
* {
  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 */
.slidetext {
  color: #f2f2f2;
  font-size: 15px;
  padding: 8px 12px;
  position: absolute;
  bottom: 8px;
  width: 100%;
  text-align: center;
}

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

.slideshow-container {
  max-width: 1000px;
  position: relative;
  margin: auto;
}

.mySlides {
  display: none;
}

img.text {
  position: absolute;
  bottom: 0;
  text-align: center;
  width: 100%;
  font-size: 20px;
  color: white;
  background: rgba(0, 0, 0, 0.5);
  padding: 10px;
}

.dot {
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

/* About Section Styles */
.textcentered {
  text-align: center;
}

/* Features Section Styles */
.features {
  text-align: center;
}

/* Destination Image Buttons Styles */
.destbutton {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
}

.container {
  position: relative;
  width: 200px;
  margin: 10px;
  overflow: hidden;
  border-radius: 10px;
}

a img {
  width: 100%;
  height: auto;
  display: block;
}

.destbuttontxt {
  position: absolute;
  bottom: 0;
  text-align: center;
  width: 100%;
  background: rgba(0, 0, 0, 0.5);
  color: #f4f0f0;
  padding: 5px;
}

/* Contact Us and Quick Navigation Section Styles */
.bottompage {
  display: flex;
  justify-content: space-around;
  background-color: #333;
  color: white;
  padding: 20px;
}

.contact,
.bottomnav {
  flex: 1;
  padding: 0 150px;
}

.bottomnav a {
  color: white;
  text-decoration: none;
  display: inline-block;
  margin-right: 19px;
  margin-top: 10px;
}

.bottomnav a:hover {
  text-decoration: underline;
}