/* 
 * Best Andaman Deal - Main Stylesheet
 * Faithful visual recreation of the live site styles and layout.
 */

@import url('https://fonts.googleapis.com/css?family=Lato:300,400,700,900');
@import url('https://fonts.googleapis.com/css?family=Dancing+Script');

/* Core variables & Theme Tokens */
:root {
  --primary-teal: #35b8ad;
  --dark-teal: #013530;
  --hover-accent: #2cfff8;
  --text-muted: #888888;
  --text-dark: #333333;
  --bg-cream: #eadcd4;
  --font-main: 'Lato', sans-serif;
  --font-cursive: 'Dancing Script', cursive;
}

/* Base Reset */
* {
  box-sizing: border-box;
}

body {
  padding: 0;
  margin: 0;
  font-family: var(--font-main);
  color: var(--text-dark);
  min-width: 320px;
  background-color: #fff;
  overflow-x: hidden;
}

/* Layout Utilities */
.clearfix::after {
  content: "";
  clear: both;
  display: table;
}

/* Header & Banner Styles */
.head {
  background: rgba(0, 0, 0, 0.2);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 999999 !important;
  transition: 0.5s;
}

.stuck {
  background: rgba(53, 184, 171, 0.93) !important;
  width: 100%;
  top: 0px !important;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  animation: appear 0.6s forwards;
}

.stuck .logo_main,
.stuck .register_sec {
  display: none !important;
}


@keyframes appear {
  0% {
    transform: translateY(-80px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

.logo_main {
  padding-top: 15px;
  padding-bottom: 15px;
}

.logo_main img {
  height: 55px;
  width: auto;
  transition: 0.5s;
}

.register_sec {
  text-align: right;
  padding-top: 20px;
  padding-bottom: 15px;
}

.register_sec span {
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  margin-top: 15px;
  display: inline-block;
  margin-bottom: -11px;
}

.register_sec span i {
  margin-right: 5px;
  font-size: 18px;
}

.register_sec span:last-child {
  margin-left: 30px;
}

.register_sec a.mailto {
  border: none !important;
  background: transparent !important;
  color: #fff !important;
  width: auto !important;
  font-size: 14px !important;
  font-weight: 700;
  outline: none;
  padding: 0 !important;
  margin: 0 !important;
  display: inline !important;
}

.register_sec a.mailto:hover {
  color: var(--hover-accent) !important;
  text-decoration: none;
}

/* Navigation System */
.navigation {
  background: rgba(74, 191, 180, 0.6);
  text-align: center;
  height: 60px;
  box-shadow: 0 0 3px 0.5px rgba(0, 0, 0, 0.09);
  transition: 0.5s;
}

.stuck .navigation {
  background: transparent !important;
  box-shadow: none !important;
}

.menu_container {
  position: relative;
  text-align: right;
}

.nav_logo {
  float: left;
  width: 90px;
  margin-top: 8px;
  display: none;
}

.stuck .nav_logo {
  display: block;
}

.menu-header-menu-container {
  display: inline-block;
}

.menu-header-menu-container ul {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: right;
}

.menu-header-menu-container ul li {
  display: inline-block;
  position: relative;
}

.menu-header-menu-container ul li a {
  display: block;
  padding: 18px 18px 22px 18px;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  outline: none;
  transition: 0.3s;
  cursor: pointer;
}

.menu-header-menu-container ul li a:hover,
.menu-header-menu-container ul li.current-menu-item > a {
  color: var(--dark-teal);
}

.stuck .menu-header-menu-container ul li a:hover {
  color: #fff;
}

/* Sub Menu / Dropdowns */
.menu-header-menu-container ul li ul.sub-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: rgba(74, 191, 180, 0.95);
  min-width: 220px;
  z-index: 99999;
  text-align: left;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
  padding: 10px 0;
}

.stuck .menu-header-menu-container ul li ul.sub-menu {
  background: rgba(53, 184, 171, 0.95) !important;
}

.menu-header-menu-container ul li:hover ul.sub-menu {
  display: block;
}

.menu-header-menu-container ul li ul.sub-menu li {
  display: block;
  width: 100%;
}

.menu-header-menu-container ul li ul.sub-menu li a {
  padding: 10px 20px;
  font-size: 14px;
  text-transform: none;
  font-weight: 500;
}

.menu-header-menu-container ul li ul.sub-menu li a:hover {
  background: rgba(0, 0, 0, 0.1);
  color: #fff !important;
}

/* Mobile Menu Button */
.menu {
  display: none;
  background: none;
  border: none;
  padding: 10px;
  margin-top: 10px;
  outline: none;
  cursor: pointer;
  z-index: 9999;
}

.menu .bar {
  display: block;
  width: 25px;
  height: 3px;
  background-color: #fff;
  margin: 5px 0;
  transition: 0.4s;
}

.menu_toggle {
  display: none;
  position: absolute;
  top: 15px;
  right: 15px;
  background: none;
  border: none;
  color: #fff;
  font-size: 24px;
  cursor: pointer;
}

/* Hero Banner */
.home_banner {
  height: 100vh;
  background-size: cover;
  background-position: center;
  position: relative;
  width: 100%;
}

.black {
  background: rgba(0, 0, 0, 0.4);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.banner_text {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  text-align: left;
  color: #fff;
  z-index: 10;
  position: relative;
  width: 100%;
}

.text_container {
  width: 100%;
  text-align: left;
}

.text_container h1 {
  font-family: var(--font-cursive);
  color: #fff;
  font-size: 118px;
  text-shadow: 0px 1px 1px #646464;
  margin: 0;
  font-weight: normal;
}

.text_container h2 {
  margin: 10px 0 0 0;
  color: #fff;
  font-size: 20px;
  letter-spacing: 3px;
  font-weight: 300;
  line-height: 40px;
  text-shadow: 0px 1px 1px #646464;
}

.banner_button {
  padding-top: 36px;
}

.banner_button a {
  display: inline-block;
  width: 197px;
  height: 48px;
  text-transform: uppercase;
  text-align: center;
  border: 2px solid #fff;
  border-radius: 50px;
  padding-top: 14px;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transition: 0.5s;
}

.banner_button a:hover {
  text-decoration: none;
  background: rgb(53, 184, 171);
  border: 2px solid #35b8ab;
  color: #fff;
}

.banner_button a:first-child {
  background: rgba(53, 184, 171, 0.85);
  border: 2px solid rgba(53, 184, 171, 0.85);
  margin-right: 14px;
}

.banner_button a:first-child:hover {
  background: #fff;
  color: rgb(53, 184, 171);
  border: 2px solid #fff;
}


.scroll_down {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  z-index: 15;
}

.scroll_down .mouse {
  height: 40px;
  display: block;
  margin: 0 auto 5px auto;
  cursor: pointer;
}

.scroll_down .mouse_down {
  width: 15px;
  display: block;
  margin: 0 auto;
  animation: mouse-down 1.2s infinite;
  cursor: pointer;
}

@keyframes mouse-down {
  0% { transform: translateY(0); opacity: 1; }
  50% { transform: translateY(6px); opacity: 0.3; }
  100% { transform: translateY(0); opacity: 1; }
}

/* Sections Base Styling */
section {
  padding: 110px 0;
}

section h2 {
  font-size: 36px;
  font-weight: 900;
  color: var(--primary-teal);
  margin-bottom: 20px;
  text-align: center;
}

section p {
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.8;
  max-width: 800px;
  margin: 0 auto 40px auto;
  text-align: center;
}

/* Best Packages Section */
.best_packages {
  background-image: url('../assets/coral.jpg');
  background-position: bottom center;
  background-repeat: no-repeat;
  padding-bottom: 120px;
}

.slider_container {
  margin: 40px 0;
}

/* Package Card Layout */
.package {
  box-shadow: 0 9px 27px 2px rgba(0,0,0,0.1);
  max-width: 314px;
  margin: 15px auto;
  background: #fff;
  border-radius: 5px;
  overflow: hidden;
  transition: 0.3s;
}

.package:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.packge_pic {
  height: 337px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.overlay {
  opacity: 0;
  background: rgba(53, 184, 171, .85);
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.5s;
}

.package:hover .overlay {
  opacity: 1;
}

.overlay a {
  display: inline-block;
  width: 132px !important;
  height: 39px !important;
  line-height: 35px;
  border: 2px solid #fff;
  border-radius: 50px;
  color: #fff;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  transition: 0.3s;
}

.overlay a:hover {
  background: #fff;
  color: var(--primary-teal);
}

.package_details {
  padding: 20px 25px;
  text-align: left;
}

.package_details h2 {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-dark);
  text-align: left;
  margin-top: 0;
  margin-bottom: 12px;
}

.package_details ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: space-between;
  border-top: 1px solid #eee;
  padding-top: 12px;
}

.package_details ul li {
  font-size: 13px;
  color: var(--text-muted);
}

.package_details ul li:first-child {
  color: var(--primary-teal);
  font-weight: 700;
}

/* Destinations Section */
.top_destinations {
  background-color: #fff;
}

.slider.bxslider {
  display: flex;
}

.one.slide {
  height: 360px;
  background-size: cover;
  background-position: center;
  position: relative;
  border-radius: 5px;
  overflow: hidden;
  margin: 0 10px;
}

.desti_black {
  background: rgba(0, 0, 0, 0.4);
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
  transition: 0.5s;
}

.one.slide:hover .desti_black {
  background: rgba(0, 0, 0, 0.7);
}

.desti_black h3 {
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 20px;
}

.desti_black a {
  display: inline-block;
  width: 120px;
  height: 36px;
  line-height: 32px;
  border: 2px solid #fff;
  border-radius: 50px;
  color: #fff;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  opacity: 0;
  transform: translateY(10px);
  transition: 0.4s;
}

.one.slide:hover .desti_black a {
  opacity: 1;
  transform: translateY(0);
}

.desti_black a:hover {
  background: #fff;
  color: #333;
}

/* Booking Section */
.booking {
  background-color: #f7f7f7;
  padding-bottom: 80px;
}

.booking h2 {
  text-align: left;
  font-size: 28px;
  margin-bottom: 30px;
}

.booking form {
  background: #fff;
  padding: 30px;
  border-radius: 5px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.booking .form-group {
  margin-bottom: 20px;
}

.booking label {
  font-weight: 700;
  color: #555;
  margin-bottom: 8px;
  display: block;
}

.booking input.form-control,
.booking select.form-control {
  height: 48px;
  border-radius: 5px;
  border: 1px solid #ccc;
  border-left: 5px solid var(--primary-teal);
  color: #333;
  box-shadow: none;
  transition: 0.3s;
}

.booking input.form-control:focus,
.booking select.form-control:focus {
  border-color: #aaa;
  border-left-color: var(--primary-teal);
  box-shadow: none;
}

.booking button {
  background: var(--primary-teal);
  color: #fff;
  border: none;
  border-radius: 5px;
  height: 50px;
  padding: 0 40px;
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  transition: 0.3s;
  width: 100%;
}

.booking button:hover {
  background: var(--dark-teal);
}

/* Day Tour List inside Booking */
.list_packages {
  background: #fff;
  margin-bottom: 20px;
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  display: flex;
}

.pack_pic {
  width: 160px;
  min-height: 140px;
  background-size: cover;
  background-position: center;
}

.pack_price {
  padding: 20px;
  flex: 1;
}

.pack_price h3 {
  font-size: 16px;
  font-weight: 700;
  margin-top: 0;
  margin-bottom: 5px;
}

.pack_price a.head_anchor {
  color: var(--text-dark);
  text-decoration: none;
}

.pack_price a.head_anchor:hover {
  color: var(--primary-teal);
}

.pack_price .currency {
  color: var(--primary-teal);
  font-weight: 700;
}

.pack_price .price {
  font-size: 18px;
  font-weight: 700;
  color: var(--primary-teal);
}

.pack_price p {
  font-size: 13px;
  color: var(--text-muted);
  text-align: left;
  margin: 8px 0;
  line-height: 1.4;
  height: 38px;
  overflow: hidden;
}

.pack_price a:last-child {
  color: var(--primary-teal);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}

.pack_price a:last-child:hover {
  text-decoration: underline;
}

/* Seashore Separator Section */
.sea {
  padding: 120px 0;
  background-image: url('../assets/seashore.png');
  background-size: 100% auto;
  background-repeat: no-repeat;
  background-position: center bottom;
  background-color: #fff;
}

/* Testimonials Section */
.testimonials {
  background-image: url('../assets/footprint.jpg');
  background-size: cover;
  background-position: center;
  padding: 100px 0;
}

.clients_quotes {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.clients_quotes h2 {
  color: #fff;
  margin-bottom: 40px;
}

.clients_quotes .bx-wrapper {
  box-shadow: none !important;
  border: none !important;
  background: none !important;
  margin-bottom: 0px !important;
}

.quotes {
  text-align: center;
  padding: 25px 0;
}

.testimonial_wrapper {
  background-color: var(--bg-cream);
  padding: 40px 60px;
  border-radius: 10px;
  position: relative;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  max-width: 800px;
  margin: 0 auto;
}

.testimonial_wrapper img.leftcomma {
  position: absolute;
  top: 25px;
  left: -15px;
  height: 25px;
}

.testimonial_wrapper img.rightcomma {
  position: absolute;
  bottom: 25px;
  right: -15px;
  height: 25px;
}

.quotes p {
  font-size: 16px;
  line-height: 1.8;
  max-width: 730px;
  margin: 0 auto;
  color: #503929;
  padding-top: 15px;
  padding-bottom: 12px;
  text-align: center;
}

.quotes h3 {
  font-family: var(--font-cursive);
  font-size: 30px !important;
  color: #7f624f;
  margin: 10px 0 0 0;
  font-weight: 500;
  text-align: center;
}

.clients_quotes a {
  display: inline-block;
  margin-top: 30px;
  font-size: 30px;
  color: #fff;
  background: var(--primary-teal);
  width: 50px;
  height: 50px;
  line-height: 44px;
  border-radius: 50%;
  text-decoration: none;
  font-weight: 700;
  transition: 0.3s;
}

.clients_quotes a:hover {
  background: #fff;
  color: var(--primary-teal);
}


/* Why We Are The Best Section */
.best {
  background-color: #fff;
  text-align: center;
}

.best h2 {
  margin-bottom: 30px;
}

.best p {
  color: #555;
  font-size: 16px;
  line-height: 1.8;
  max-width: 900px;
  margin: 0 auto 20px auto;
  text-align: center;
}

.best strong {
  color: var(--primary-teal);
}

/* Custom Quote/Callback Form Section */
.tourist_booking {
  padding: 130px 0;
  background-image: url('../assets/form.jpg');
  background-size: cover;
  background-position: center;
}

.tourist_booking form {
  max-width: 1000px;
  margin: 0 auto;
  background: rgba(0, 0, 0, 0.4);
  padding: 40px;
  border-radius: 10px;
}

.tourist_booking .form-group {
  margin-bottom: 20px;
}

.tourist_booking label {
  color: #fff;
  font-weight: 700;
  margin-bottom: 8px;
  display: block;
}

.tourist_booking input {
  height: 50px;
  border-radius: 5px;
  border: 1px solid #ccc;
  border-left: 5px solid var(--primary-teal);
  width: 100%;
  padding-left: 15px;
  color: #333;
}

.tourist_booking textarea {
  width: 100%;
  height: 120px;
  border-radius: 5px;
  border: 1px solid #ccc;
  border-left: 5px solid var(--primary-teal);
  padding: 15px;
  color: #333;
  resize: vertical;
}

.tourist_booking button {
  background: var(--primary-teal);
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 12px 50px;
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  transition: 0.3s;
  display: block;
  margin: 20px auto 0 auto;
}

.tourist_booking button:hover {
  background: var(--hover-accent);
  color: #333;
}

/* Footer Section */
footer {
  background: #ededed;
  padding: 60px 0 20px 0;
  color: #666;
}

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

.left_lists {
  flex: 1;
  padding-right: 15px;
}

.left_lists h4 {
  font-weight: 700;
  color: #333;
  margin-bottom: 20px;
  font-size: 16px;
  border-bottom: 2px solid #ddd;
  padding-bottom: 8px;
}

.left_lists ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.left_lists ul li {
  margin-bottom: 12px;
}

.left_lists ul li a {
  color: #666;
  text-decoration: none;
  font-size: 14px;
  transition: 0.3s;
}

.left_lists ul li a:hover {
  color: var(--primary-teal);
}

.footer_right {
  padding-left: 30px;
}

.footer_right h2 {
  font-size: 18px;
  color: #333;
  text-align: left;
  margin-top: 0;
  margin-bottom: 15px;
  font-weight: 700;
}

.footer_right form {
  display: flex;
  margin-bottom: 30px;
}

.footer_right input.subscribe {
  flex: 1;
  height: 45px;
  padding-left: 15px;
  border: 1px solid #ccc;
  border-radius: 5px 0 0 5px;
}

.footer_right button {
  background: var(--primary-teal);
  color: #fff;
  border: none;
  width: 60px;
  border-radius: 0 5px 5px 0;
  cursor: pointer;
  font-weight: 700;
}

.footer_right button:hover {
  background: var(--dark-teal);
}

.social_links a {
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  border-radius: 50%;
  background: #ddd;
  color: #666;
  text-align: center;
  font-size: 18px;
  margin-right: 10px;
  transition: 0.3s;
}

.social_links a.facebook:hover { background: #3d5697; color: #fff; }
.social_links a.twitter:hover { background: #00abed; color: #fff; }
.social_links a.linkedin:hover { background: #007fb1; color: #fff; }
.social_links a.youtube:hover { background: #de332c; color: #fff; }

.footer_bottom {
  border-top: 1px solid #ddd;
  margin-top: 40px;
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
}

.footer_bottom p {
  margin: 0;
}

.footer_bottom a {
  color: #666;
  text-decoration: none;
  margin-left: 20px;
}

.footer_bottom a:hover {
  color: var(--primary-teal);
}

/* Floating Elements */
.float_buttons {
  position: fixed;
  bottom: 25px;
  right: 25px;
  z-index: 999999;
}

.float_whatsapp {
  display: block;
  width: 55px;
  height: 55px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50%;
  text-align: center;
  line-height: 55px;
  font-size: 30px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  margin-bottom: 15px;
  transition: 0.3s;
}

.float_whatsapp:hover {
  transform: scale(1.1);
}

.scroll_to_top {
  display: none;
  width: 45px;
  height: 45px;
  background-color: var(--primary-teal);
  color: #fff;
  border-radius: 50%;
  text-align: center;
  line-height: 45px;
  font-size: 20px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  cursor: pointer;
  transition: 0.3s;
}

.scroll_to_top:hover {
  background-color: var(--dark-teal);
}

/* responsive overrides */
@media (max-width: 1200px) {
  .menu {
    display: block;
    float: right;
  }
  .nav_container {
    position: fixed;
    top: 0;
    right: -400px;
    width: 300px;
    height: 100vh;
    background: var(--primary-teal);
    z-index: 9999999 !important;
    padding-top: 60px;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.2);
    transition: 0.4s ease-in-out;
  }
  .nav_container.open {
    right: 0 !important;
  }
  .menu_toggle {
    display: block;
  }
  .menu-header-menu-container {
    display: block;
    width: 100%;
  }
  .menu-header-menu-container ul {
    text-align: left !important;
  }
  .menu-header-menu-container ul li {
    display: block !important;
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  .menu-header-menu-container ul li a {
    padding: 15px 25px !important;
  }
  .menu-header-menu-container ul li ul.sub-menu {
    position: static !important;
    display: none;
    background: rgba(0, 0, 0, 0.1) !important;
    box-shadow: none !important;
    padding: 0 !important;
  }
  .menu-header-menu-container ul li.open ul.sub-menu {
    display: block !important;
  }
  .register_sec span:last-child {
    margin-left: 10px;
  }
}

@media (max-width: 991px) {
  .logo_main {
    text-align: center;
  }
  .register_sec {
    text-align: center;
    padding-top: 0;
  }
  .booking .col-md-6 {
    margin-bottom: 50px;
  }
  .footer_left {
    flex-direction: column;
  }
  .left_lists {
    margin-bottom: 30px;
  }
  .footer_right {
    padding-left: 0;
    margin-top: 20px;
  }
}

@media (max-width: 767px) {
  .text_container h1 {
    font-size: 50px;
  }
  .text_container h2 {
    font-size: 18px;
  }
  .banner_button a {
    padding: 8px 20px;
    font-size: 14px;
    margin-bottom: 10px;
  }
  .tourist_booking form {
    padding: 20px;
  }
  .footer_bottom {
    flex-direction: column;
    text-align: center;
  }
  .footer_bottom div {
    margin-top: 15px;
  }
  .footer_bottom a {
    margin: 0 10px;
  }
}

/* Itinerary Timeline Section Styles */
.itenerary {
  padding: 100px 0px 0px 0px;
}

.list {
  margin-top: 40px;
}

.list ul {
  padding-left: 23px;
  padding-top: 20px;
}

.list:first-child {
  padding-top: 48px;
}

.buttons {
  float: left;
  width: 15%;
  border-right: 5px solid #ddd7d7;
  padding: 40px 0px 0px 0px;
  margin-top: -40px;
}

.dash {
  display: inline-block;
  width: 80px;
  height: 4px;
  background: #ddd7d7;
  position: absolute;
  top: 50%;
  margin-top: -2px;
  left: 100%;
  transition: .5s;
}

.squaredash {
  position: absolute;
  display: inline-block;
  height: 10px;
  width: 10px;
  background: #ddd7d7;
  right: -8px;
  top: -3px;
  transform: rotate(45deg);
}

.show_dash {
  width: 150px !important;
  background-color: #37b6a9;
}

.content {
  float: right;
  display: block;
  width: 80%;	
  position: relative;
  background-color: #fff;
}

.day {
  width: 86px;
  height: 35px;
  background: #ddd7d7;
  color: #666666;
  border: none;
  margin-bottom: 70px;
  font-weight: 700;
  position: relative;
  transition: .5s;
}

.day_active {
  background: #37b6a9;
  color: #fff;
}

.content h2 {
  background: #37b6a9;
  letter-spacing: normal;
  font-weight: 700;
  padding-left: 15px;
  color: #fff;
  line-height: 45px;
  font-size: 20px;
}

.content h3 {
  color: #37b6a9;
  padding-left: 15px;
  font-size: 16px;
  font-weight: 700;
}

.content h4 {
  font-size: 16px;
  font-weight: 600;
  line-height: 18px;
  padding-left: 15px;
}

.cont_pic {
  height: 203px;
  width: 297px;
  background-position: center;
  margin-left: 15px;
  background-size: cover;
  float: left;
}

.con_det {
  float: right;
  min-height: 203px;
  width: 598px;
  padding-left: 50px;
  color: #888888;
  line-height: 24px;
  font-size: 16px;
  padding-right: 10px;
}

.scedule {
  background-color: #fff;
  padding-bottom: 50px;
  position: absolute;
  width: 100%;
  min-height: 390px;
  opacity: 0;
  border: 1px solid #49bfb3;
  margin-top: 50px;
  transition: .5s;
  z-index: 1;
}

.show_det {
  margin-top: 0px;
  opacity: 1 !important;
  z-index: 10;
}

/* Daytour media queries for itinerary responsive views */
@media (max-width: 1199px) {
  .con_det {
    width: 100% !important;
    padding-left: 15px;
    padding-right: 15px;
    float: none;
  }
  .cont_pic {
    float: none;
    margin: 0 auto 20px auto;
  }
  .dash {
    width: 50px;
  }
  .itenerary {
    padding: 20px 0px 0px 0px;
  }
  .buttons {
    width: 100%;
    float: none;
    border-right: none;
    border-bottom: 5px solid #ddd7d7;
    margin-top: 0;
    padding: 20px;
    text-align: center;
  }
  .day {
    display: inline-block;
    margin-bottom: 10px;
    margin-right: 5px;
  }
  .dash, .squaredash {
    display: none !important;
  }
  .content {
    width: 100%;
    float: none;
    margin-top: 20px;
  }
  .scedule {
    position: relative;
    opacity: 1 !important;
    min-height: 0px;
    margin-top: 5px;
    padding-bottom: 20px;
    border: 1px solid #eee;
  }
}

/* Best Packages Carousel Nav styling */
.best_packages .owl-nav {
  display: block !important;
}

.best_packages .owl-theme .owl-nav {
  margin-top: 0px;
  text-align: center;
  position: absolute;
  top: 41% !important;
  width: 100% !important;
}

.best_packages .owl-prev {
  position: absolute;
  left: -40px;
  background-image: url('../assets/prevup.png') !important;
  width: 40px;
  height: 40px;
  background-size: cover !important;
  background-repeat: no-repeat !important;
  text-indent: -9999px;
  overflow: hidden;
  border: none;
  background-color: transparent !important;
  opacity: 0.8;
  transition: 0.3s;
}

.best_packages .owl-next {
  position: absolute;
  right: -45px;
  background-image: url('../assets/nextup.png') !important;
  width: 40px;
  height: 40px;
  background-size: cover !important;
  background-repeat: no-repeat !important;
  text-indent: -9999px;
  overflow: hidden;
  border: none;
  background-color: transparent !important;
  opacity: 0.8;
  transition: 0.3s;
}

.best_packages .owl-prev:hover,
.best_packages .owl-next:hover {
  opacity: 1 !important;
  background-color: #fff !important;
  border-radius: 50%;
}

@media(max-width: 1250px) {
  .best_packages .owl-prev {
    left: 20px !important;
    background-color: rgba(255, 255, 255, 0.9) !important;
    border-radius: 50%;
    z-index: 99;
  }
  .best_packages .owl-next {
    right: 20px !important;
    background-color: rgba(255, 255, 255, 0.9) !important;
    border-radius: 50%;
    z-index: 99;
  }
}
