@charset "UTF-8";
/* CSS Document */
/* CSS styles for the banner, nav bar, and divs */

body {
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
}

header {
  background-color: #666;
  color: #fff;
  padding: 20px;
  width: 80%; /* Changed from 'Width' to 'width' */
  margin: auto;
  margin-top: 30px;
  border-radius: 23px;
  text-align: center;
  max-width: 800px;
}

nav {
  background-color: #97D1D4;
  padding: 2px;
  text-align: center;
  margin-top: 18px;
}

nav a {
  padding: 10px;
  text-decoration: none;
  color: #333;
}

footer {
  background-color: #666;
  color: #ffffff;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  padding: 6%;
}

.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-content {
  display: none;
  position: absolute;
  min-width: 140px;
  z-index: 1;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  font-size: 90%;
  text-align: left;
}

.dropdown-content a {
  font-family: "ccmeanwhile", sans-serif;
  color: #ffffff;
  padding: 6px 14px;
  margin-bottom: 0px;
  font-size: 70%;
  text-decoration: none;
  display: block;
  z-index: 999;
  background-color: #B9AF90;
}

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

.dropbtn {
  background-color: #87CCCA;
  color: #77B0B3;
  padding: 2px;
  margin-right: 30px;
  font-size: 8px;
  border: none;
  cursor: pointer;
}

.dropbtn:hover,
.dropbtn:focus {
  background-color: #B9AF90;
}

.service-container {
  /*background-color: #6495ED;*/
  overflow: auto;
  text-align: center;
  padding: 0%;
}

.service {
  background-color: #fff;
  /* padding: 20px; */
  margin: auto;
  margin-top: 1px;
  margin-bottom: 5px;
  text-align: left;
  width: 80%;
 /* border-radius: 23px;*/
  font-family: "Gill Sans", "Gill Sans MT", "Myriad Pro", "DejaVu Sans Condensed", Helvetica, Arial, "sans-serif";
  display: flex;
  flex-direction: column;
}

.travel {
  text-align: center;
  margin-top: 10px;
}

.serviceSub {
  margin: 80px;
  padding: 0;
  flex: 1;
}

.serviceSubWrapper {
  display: flex;
  justify-content: space-between;
}

h1 {
  font-family: "ltc-flash", sans-serif;
  font-weight: 600;
  font-size: 400%;
  font-style: normal;
  color: #bc0b8d;
  margin-bottom: 18px;
  margin-top: 10px;
  line-height: 90%;
}

h1b {
  font-family: "ltc-flash", sans-serif;
  font-weight: 600;
  font-size: 200%;
  font-style: normal;
  color: #450433;
  line-height: 80%;
}

h1a {
  font-family: verdana, arial, helvetica, sans-serif;
  font-weight: bold; /* Changed from '30%' to 'bold' */
  font-size: 200%;
  /*font-style: normal;*/
  color: #ffffff;
}

h3 {
  font-family: verdana, arial, helvetica, sans-serif;
  font-size: 100%;
  font-weight: bold;
  font-style: normal;
  text-decoration: none;
  text-transform: none;
  margin: 0px;
  padding: 0px;
  color: #982c2c;
}

.dropbtn {
  font-family: "ccmeanwhile", sans-serif;
  font-size: 80%;
}

/*------------------------------------- Progressive -------------------------------------*/
@media screen and (max-width: 600px) {
  .serviceSubWrapper {
    flex-direction: column;
  }
  .serviceSub {
    margin: 10px 0;
  }
}