/*
Theme Name: Flat Bootstrap Child
Description: Child theme for Flat Bootstrap. Includes a stylesheet (style.css) for you to restyle any of the CSS and a functions.php file to change theme parameters or components. Both files include samples of a few common things you might want to do.
Author: OCG Creative
Author url: ocgcreative.com
Version: 1.5
License: GNU General Public License
License URI: http://www.opensource.org/licenses/GPL-3.0
Template: flat-bootstrap
Template Version: 1.9
Tags: one-column, right-sidebar, left-sidebar, fluid-layout, responsive-layout, custom-header, custom-menu, featured-images, featured-image-header, full-width-template, flexible-header, theme-options, sticky-post, threaded-comments, light, translation-ready, rtl-language-support, custom-background
*/

/* 
 * IMPORT the parent theme's stylesheet(s). NOTE: This was moved to functions.php for
 * performance reasons.
 */
/*@import url("../flat-bootstrap/style.css");*/

/* PUT YOUR CHANGED STYLES HERE 
 * 
 * The best way to do this is to copy in the relevant section from the parent's style.css
 * file, change what you want, and remove the lines that you didn't change.
 *
 * NOTE: All these examples here are included just to show you how to do the most common
 * things that users have requested, such as changing colors and the look of buttons, etc.
*/

/* Change the content (page) header to dark blue. */

a {
	font-family: 'Cabin', sans-serif;
	color: #72439a;
	transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
}

a:hover, a:active, a:focus {
	color: #003e52;
	text-decoration: none;
}

.content-header {
	background-color: transparent;
}

html {
  font-size: 16px;
}

@media screen and (min-width: 300px){
  html{
    font-size: 14px;
  }
}
@media screen and (min-width: 500px){
  html{
    font-size: 14px;
  }
}
@media screen and (min-width: 570px){
  html{
    font-size: 15px;
  }
}
@media screen and (min-width: 620px){
  html{
    font-size: 16px;
  }
}
@media screen and (min-width: 680px){
  html{
    font-size: 17px;
  }
}
@media screen and (min-width: 720px){
  html{
    font-size: 18px;
  }
}


/* ----------------------- End REM Queries -------------------------- */

body {
  -webkit-font-smoothing: antialiased;
  font-family: 'Hind', sans-serif;
  font-weight: 300;
  font-size: 18px;
	font-size: 1rem;
  color: #2d2d2d;
  line-height: 1.8;
  background-color: #fff;
	overflow-x: hidden;
}

p em {
    font-weight: 400;
    color: #003e52;
		font-size: 18px;
		font-size: 1.1rem;
}

p strong {
	font-weight: 500;
}

p.lrg {
	font-size: 20px;
	font-size: 1.2rem;
	color: #05687c;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Cabin', sans-serif;
  color: #003e52;
	margin-top: 0px;
	margin-bottom: 10px;
	line-height: 1.3;
}

h1 {
  font-size: 60px;
	font-size: 3.75rem;
  font-weight: bold;
}

h1.page-title {
  text-align: center;
  font-size: 55px;
	font-size: 3.4375rem;
  font-weight: 800;
}

h1.main-head {
  font-size: 55px;
	font-size: 3.4375rem;
  color: #fff;
  font-weight: 800;

}

h2 {
  font-size: 45px;
	font-size: 2.8125rem;
}

.main-head h2 {
    font-family: 'Poppins', sans-serif;
    text-transform: uppercase;
    font-weight: 300;
    color: #fff;
    font-size: 2rem;
    font-size: 32px;
    letter-spacing: 2px;
}

@media (max-width: 767px) {
	.main-head h2 {
		    padding-top: 72px;
	}
}

.main-head h3 {
		font-family: 'Ubuntu', sans-serif;
    text-transform: uppercase;
    font-size: 120px;
    font-size: 6.4rem;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.80);
}

h2.section-title {
  margin: 0;
}

h3 {
  font-size: 32px;
	font-size: 2rem;
	font-weight: 600;
}

h3.sub {
  font-size: 30px;
	font-size: 1.875rem;
  text-transform: capitalize;
}

h3.tour {
	text-transform: uppercase;
	font-weight: 400;
	letter-spacing: 1px;
	font-size: 24px;
	font-size: 1.5rem;
	color: #421851;
}

h4 {
  font-size: 25px;
	font-size: 1.5rem;
}

h4.lines {
	  display: inline-block;
    padding: 0 30px;
    position: relative;
    min-width: 500px;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 2px;
}

h4.lines:before {
    content: " ";
    display: block;
    width: 80px;
    height: 3px;
    background-color: rgb(255, 255, 255);
    position: absolute;
    right: 100%;
    top: 17px;
}

h4.lines:after {
    content: " ";
    display: block;
    width: 80px;
    height: 3px;
    background-color: rgb(255, 255, 255);
    position: absolute;
    left: 100%;
    top: 17px;
}

@media (max-width: 767px) {
	h4.lines:after {
		display: none;
	}
	h4.lines:before {
		display: none;
	}
	h4.lines {
		min-width: auto;
	}
}

h4.alt {
  font-size: 25px;
	font-size: 1.5rem;
	font-weight: bold;
}

h5 {
		font-size: 20px;
    font-size: 1.2rem;
    letter-spacing: 1px;
    line-height: 1.6;
}

a.brand {
  color: #92c83f;
  font-weight: 500;
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
}

a.brand:hover, a.brand:active, a.brand:focus {
  color: #709a30;
}

a.white {
  color: #fff;
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
}

a.white:hover, a.white:active, a.white:focus {
  opacity: 0.7;
}

.white-text {
  color: #fff;
}

.accent-text {
  color: #91c83e;
}

.entry-content table {
  border-bottom: 0 solid transparent;
}

textarea.form-control {
  height: 100px;
}

p.sub {
  font-family: 'Poppins', sans-serif;
	font-weight: 300;
	text-transform: uppercase;
	letter-spacing: 2px;
	font-size: 15px;
	font-size: 1rem;
	color: #808285;
	margin-bottom: 5px;
}

p.sub-white {
  font-family: 'Poppins', sans-serif;
	font-weight: 300;
	text-transform: uppercase;
	letter-spacing: 2px;
	font-size: 15px;
	font-size: 1.1rem;
	color: #fff;
}

/* --------------------------- SECTION BREAK ---------------------------- */

.blue-section-brk {
    background-image: url(/wp-content/uploads/2019/05/edt-blue-section-break-06.svg);
    height: 46px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    margin-top: -45px;
    position: relative;
    z-index: 1;
}

.white-section-brk {
    background-image: url(/wp-content/uploads/2019/05/edt-white-section-break-13.svg);
    height: 46px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    margin-top: -45px;
    position: relative;
    z-index: 1;
}

.new-york-bg {
	  width: 100%;
    margin-top: -500px;
    z-index: -1;
    position: relative;
}

@media (max-width: 1525px) {
	.new-york-bg {
		margin-top: -300px;
	}
}

@media (max-width: 991px) {
	.new-york-bg {
		margin-top: -50px;
	}
}

.nashville-bg {
	  width: 100%;
    margin-top: -50px;
    z-index: -1;
    position: relative;
}

.yosemite-bg {
	  width: 100%;
        margin-top: -281px;
    z-index: -1;
    position: relative;
}

@media (max-width: 991px) {
	.yosemite-bg {
		margin-top: -40px;
	}
}

/* --------------------------- MEDIA QUERIES ---------------------------- */

@media (max-width: 768px) {
  #upper-nav-center {
    text-align: center;
  }
}

@media (max-width: 991px) {
  .tablet-center {
    text-align: center;
  }
}

@media (max-width: 768px) {
  .mobile-center {
    text-align: center;
  }
}

@media (max-width: 767px) {
	.hide-mobile {
		display: none;
	}
}


@media (min-width: 767px) {
	.show-mobile {
		display: none;
	}
}

h3.prpl-num {
    font-weight: 400;
    color: #72439a;
    font-size: 50px;
		font-size: 3.125rem;
}

/* --------------------------- BUTTON STYLES ---------------------------- */

a.social-links {
	  font-size: 25px;
    color: #72439a;
		transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
}

a.social-links:hover, a.social-links:active, a.social-links:focus {
	text-decoration: none;
	color: #003e52;
}

.btn {
    text-transform: uppercase;
    font-family: 'Cabin', sans-serif;
    border-radius: 50px;
		letter-spacing: 1px;
    padding: 10px 35px;
}

.btn i.fa {
	padding-left: 10px;
}

.btn-main {
  background-color: #72439a;
  border: 2px solid #72439a;
  color: #ffffff;
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
}

.btn-main:hover, .btn-main:active, .btn-main:focus {
  background-color: #421851;
  border: 2px solid #421851;
  color: #fff;
}

.btn-white-outline {
	background-color: #ffffff;
	border: 2px solid #ffffff;
	color: #05687c;
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
}

.btn-white-outline:hover, .btn-white-outline:active, .btn-white-outline:focus {
  background-color: #421851;
  border: 2px solid #421851;
  color: #fff;
}

.btn-accent {
    background-color: #92c83f;
    border: 2px solid #92c83f;
    color: #ffffff;
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
}

.btn-accent:hover, .btn-accent:active, .btn-accent:focus {
  background-color: #709a30 ;
  border: 2px solid #709a30 ;
  color: #fff;
}

.btn-teal {
    background-color: #14687c;
    border: 2px solid #14687c;
    color: #ffffff;
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
}

.btn-teal:hover, .btn-teal:active, .btn-teal:focus {
  background-color: #002939;
  border: 2px solid #002939;
  color: #fff;
}

input[type="submit"] {
  background-color: #91c83e !important;
  border: 2px solid #91c83e !important;
	padding: 6px 25px 5px 25px;
  color: #fff !important;
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
	padding: 10px 35px;
}

input[type="submit"]:hover, input[type="submit"]:active, input[type="submit"]:focus {
  background-color: #709a30 !important;
  border: 2px solid #709a30 !important;
  color: #fff;
}

p.comment-form-author {
	display: inline-block;
	float:left;
	width: 50%;
}

p.comment-form-email {
	display: inline-block;
	float:left;
	width: 50%;
}

@media (max-width: 768px) {
	p.comment-form-author {
		width: 100%;
	}
	p.comment-form-email {
		width: 100%;
	}
}

.comment-form [for="author"], .comment-form [for="email"], .comment-form [for="url"], .comment-form [for="comment"] {
	width: 30%;
	padding: 0 15px;
	text-align: center;
}

.comment-form input[type="text"], .comment-form input[type="email"], .comment-form input[type="url"] {
	width: 70%;
	max-width: 100%;
}

@media (max-width: 768px) {
	.comment-form [for="author"], .comment-form [for="email"], .comment-form [for="url"], .comment-form [for="comment"] {
		width: 20%;
		padding: 0;
	}
	.comment-form input[type="text"], .comment-form input[type="email"], .comment-form input[type="url"] {
		width: 80%;
	}
}

@media (max-width: 768px) {
	p.form-submit {
		text-align: center;
	}
}

/* --------------------------- FORM STYLES ---------------------------- */

html.pum-open.pum-open-overlay.pum-open-scrollable body>[aria-hidden] {
	padding-right: 0 !important;
}

fieldset.main-field {
    border: 1px solid #cccccc !important;
    padding-bottom: 32px;
    margin-bottom: 25px;
    border-radius: 7px;
}

fieldset.main-field legend {
    width: auto;
    margin-left: 20px;
    padding-left: 10px;
    padding-right: 10px;
    border-bottom: 0 solid #fff;
    color: #05687c;
    font-size: 18px;
    text-transform: uppercase;
    font-family: 'Cabin', sans-serif;
    letter-spacing: 2px;
    line-height: 1.45;
    margin-top: 0;
}

fieldset.dark-field {
    border: 1px solid #003e52 !important;
    padding-bottom: 32px;
    margin-bottom: 25px;
    border-radius: 7px;
		margin-top: 20px;
}

fieldset.dark-field legend {
    width: auto;
    margin-left: 20px;
    padding-left: 10px;
    padding-right: 10px;
    border-bottom: 0 solid #fff;
    color: #fff;
    font-size: 18px;
    text-transform: uppercase;
    font-family: 'Cabin', sans-serif;
    letter-spacing: 2px;
    line-height: 1.45;
    margin-top: 10px;
}

.fix1 iframe {
  pointer-events: none;
}

label {
	font-weight: 400;
	font-family: 'Cabin', sans-serif;
	text-transform: uppercase;
	letter-spacing: 1px;
	font-size: 16px;
	margin-bottom: 0;
	color: #555555;
}

.form-control {
		color: #555;
    background-color: #fff;
    padding: 15px 15px;
    height: auto;
    margin-top: 10px;
		font-size: 17px;
		margin-bottom: 15px!important;
}

.white-text label {
	color: #fff;
}

select.form-control {
    height: 56px!important;
}

select.form-control-dark {
    height: 56px!important;
}

.form-control-dark {
		display: block;
    width: 100%;
    padding: 6px 12px;
    font-size: 16px;
    line-height: 1.42857143;
    background-image: none;
    border: 1px solid #ccc;
    border-radius: 4px;
    -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,0.075);
    box-shadow: inset 0 1px 1px rgba(0,0,0,0.075);
    -webkit-transition: border-color ease-in-out .15s, -webkit-box-shadow ease-in-out .15s;
    -o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
    transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
		color: #fff;
    background-color: #003e52;
    border: none;
    padding: 15px 30px;
    height: auto;
    margin-top: 10px;
}

#newsletter-sign-up ::-webkit-input-placeholder {
  /* WebKit browsers */
  color: #fff !important;
  opacity: 1;
}

#newsletter-sign-up :-moz-placeholder {
  /* Mozilla Firefox 4 to 18 */
  color: #fff !important;
  opacity: 1;
}

#newsletter-sign-up ::-moz-placeholder {
  /* Mozilla Firefox 19+ */
  color: #fff !important;
  opacity: 1;
}

#newsletter-sign-up :-ms-input-placeholder {
  /* Internet Explorer 10+ */
  color: #fff !important;
  opacity: 1;
}


::-webkit-input-placeholder {
  /* WebKit browsers */
  color: #555 !important;
  opacity: 1;
}

:-moz-placeholder {
  /* Mozilla Firefox 4 to 18 */
  color: #555 !important;
  opacity: 1;
}

::-moz-placeholder {
  /* Mozilla Firefox 19+ */
  color: #555 !important;
  opacity: 1;
}

:-ms-input-placeholder {
  /* Internet Explorer 10+ */
  color: #555 !important;
  opacity: 1;
}

::selection {
    background: #72439a !important;
    color: #ffffff !important;
}
::-moz-selection {
    background: #72439a !important;
    color: #ffffff !important;
}

input:-webkit-autofill {
    -webkit-box-shadow: 0 0 0 50px #eeffe7 inset;
    -webkit-text-fill-color: #333;
}

input:-webkit-autofill:hover, input:-webkit-autofill:active, input:-webkit-autofill:focus {
    -webkit-box-shadow: 0 0 0 50px #eeffe7 inset;
    -webkit-text-fill-color: #333;
}


/* --------------------------- HELPER CLASSES ---------------------------- */

blockquote {
   border-left: 5px solid #421851;
	font-size: 17px;
}

.neg-marg {
    margin-top: -250px;
}

@media (max-width: 2040px) {
	.neg-marg {
		margin-top: -150px;
	}
}

@media (max-width: 1394px) {
	.neg-marg {
		margin-top: -20px;
	}
}

.neg-marg p.sub-white {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 15px;
    font-size: 1.1rem;
    color: #fff;
    text-shadow: 0px 1px 6px rgb(4, 43, 58);
}

#no-pad .vc_column_container > .vc_column-inner {
    padding-left: 0 !important;
    padding-right: 0 !important;
}

.display-cent {
	display: flex;
	-webkit-box-align: center;
	align-items: center;
}

@media(max-width: 767px) {
	.display-cent {
		display: inherit;
		-webkit-box-align: inherit;
		align-items: inherit;
	}
}

@media (max-width: 767px) {
	.no-pad-mobile {
		padding-left: 0;
		padding-right: 0;
	}
}

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

@media (max-width: 767px) {
	.equalHMWrap {
    justify-content: inherit;
	}

	.eqWrap {
		display: inherit;
	}
}

.no-pad {
  padding: 0px !important;
}

.no-marg {
  margin: 0px !important;
}

.no-margpad {
  padding: 0px !important;
  margin: 0px !important;
}

.no-margt {
  margin-top: 0;
}

.no-margb {
  margin-bottom: 0;
}

.no-margtb {
  margin-top: 0;
  margin-bottom: 0;
}

.no-padt {
  padding-top: 0;
}

.no-padb {
  padding-bottom: 0;
}

.no-padtb {
  padding-top: 0;
  padding-bottom: 0;
}

.no-padlr {
  padding-left: 0;
  padding-right: 0;
}

.pad-t1 {
  padding-top: 10px;
}

.pad-t2 {
  padding-top: 20px;
}

.pad-t3 {
  padding-top: 30px;
}

.pad-t4 {
  padding-top: 40px;
}

.pad-t5 {
  padding-top: 50px;
}

.pad-t6 {
  padding-top: 60px;
}

.pad-t7 {
  padding-top: 70px;
}

.pad-t8 {
  padding-top: 80px;
}

.pad-t9 {
  padding-top: 90px;
}

.pad-t10 {
  padding-top: 100px;
}

.pad-b1 {
  padding-bottom: 10px;
}

.pad-b2 {
  padding-bottom: 20px;
}

.pad-b3 {
  padding-bottom: 30px;
}

.pad-b4 {
  padding-bottom: 40px;
}

.pad-b5 {
  padding-bottom: 50px;
}

.pad-b6 {
  padding-bottom: 60px;
}

.pad-b7 {
  padding-bottom: 70px;
}

.pad-b8 {
  padding-bottom: 80px;
}

.pad-b9 {
  padding-bottom: 90px;
}

.pad-b10 {
  padding-bottom: 100px;
}

.marg-t1 {
  margin-top: 10px;
}

.marg-t2 {
  margin-top: 20px;
}

.marg-t3 {
  margin-top: 30px;
}

.marg-t4 {
  margin-top: 40px;
}

.marg-t5 {
  margin-top: 50px;
}

.marg-t6 {
  margin-top: 60px;
}

.marg-t7 {
  margin-top: 70px;
}

.marg-t8 {
  margin-top: 80px;
}

.marg-t9 {
  margin-top: 90px;
}

.marg-t10 {
  margin-top: 100px;
}

.marg-t20 {
  margin-top: 200px;
}

@media (max-width: 768px) {
	.marg-t20 {
		margin-top: 85px;
	}
}

.marg-b1 {
  margin-bottom: 10px;
}

.marg-b2 {
  margin-bottom: 20px;
}

.marg-b3 {
  margin-bottom: 30px;
}

.marg-b4 {
  margin-bottom: 40px;
}

.marg-b5 {
  margin-bottom: 50px;
}

.marg-b6 {
  margin-bottom: 60px;
}

.marg-b7 {
  margin-bottom: 70px;
}

.marg-b8 {
  margin-bottom: 80px;
}

.marg-b9 {
  margin-bottom: 90px;
}

.marg-b10 {
  margin-bottom: 100px;
}

.cover {
  background-repeat: no-repeat;
  background-position: 50% 50%;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}

.icon-fade {
  opacity: 1;
  transition: opacity .3s ease-in-out;
  -moz-transition: opacity .3s ease-in-out;
  -webkit-transition: opacity .3s ease-in-out;
}

.icon-fade:hover {
  opacity: 0.5;
}

body.single-destination div.content-area {
padding-top: 0;
}

/* --------------------------- BULLET POINT STYLES ---------------------------- */

.features {
    list-style: none;
}

.features li:before {
    position: absolute;
    content: "\f0da";
    font-family: FontAwesome;
    font-style: normal;
    font-weight: normal;
    font-size: 18px;
    font-size: 1rem;
    left: -25px;
    top: -2px;
    color: #72439a;
}

.features li {
    position: relative;
    margin-bottom: 8px;
}

/* --------------------------- BOOTSTRAP NAVBAR STYLES ---------------------------- */

.navbar {
  font-family: 'Cabin', sans-serif ;
  border: 0 solid transparent;
  letter-spacing: 1px;
  color: #2d2d2d;
  font-weight: 400;
  text-transform: capitlize;
  font-size: 15px;
  top: 5px;
}

@media (max-width: 1217px) {
	.navbar {
		font-size: 14px;
	}
}

@media (max-width: 1183px) {
	.navbar {
		font-size: 13px;
	}
	.nav>li>a {
    position: relative;
    display: block;
    padding: 7px 10px;
   }
}

.navbar-nav {
  float: right;
}

@media screen (max-width: 768px) {
  .navbar-nav {
    float: right;
  }
  .navbar-nav>li>a {
    padding-top: 0;
  }
}

.navbar-default {
  background-color: rgba(255, 255, 255, 0);
}

.navbar-default .navbar-nav>li>a {
  color: #2d2d2d;
}

.navbar-default .navbar-nav>.active>a {
		background-color: transparent;
    color: #421851;
    border-bottom: 2px solid #05687c;
}

.dropdown-menu .sub-menu {
  left: 100%;
  position: absolute;
  top: 0;
  visibility: hidden;
  margin-top: -1px;
}

.dropdown-menu li:hover .sub-menu {
  visibility: visible;
}

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

.dropdown-menu {
  border-radius: 0;
  background-color: #fff;
  box-shadow: none;
  border-top: 1px solid #fff;
  left: -5px;
}

.dropdown-menu>li>a {
  color: #2d2d2d;
	border-left: 2px solid #fff;
}

.dropdown-menu>li>a:hover, .dropdown-menu>li>a:focus {
	border-left: 2px solid #05687c;
  color: #2d2d2d;
  background-color: #f2f2f2;
}

.dropdown-menu>.active>a, .dropdown-menu>.active>a:hover, .dropdown-menu>.active>a:focus {
	border-left: 2px solid #72439a;
  color: #003e52;
  background-color: #fff;
}

@media (min-width: 768px) and (max-width: 1069px) {
  .navbar-collapse.collapse {
    display: none !important;
  }
  .navbar-collapse.collapse.in {
    display: none !important;
  }
  .navbar-header .collapse, .navbar-toggle {
    display: none;
  }
  .navbar-header {
    float: none;
  }
}

@media (max-width: 768px) {
	#site-navigation {
		display: none;
	}
}

@media (min-width: 768px) {
	.mobile-logo {
		display: none;
	}
}

/* --------------------------- HEADER STYLES ---------------------------- */

.hdr-list {
	margin-top: 7px;
	margin-bottom: 7px;
}

@media (max-width: 767px) {
	.hdr-list {
	padding-top: 6px;
	padding-bottom: 7px;
	margin-top: 0;
	margin-bottom: 0;
	}
}

.page-topper {
	width: 100%;
	position: absolute;
	top: 0;
	z-index: -1;
}

.site-header {
    background-color: rgba(255,255,255,0.75);
    position: absolute;
    width: 100%;
    z-index: 3;
		height: 105px;
}

@media (max-width: 767px) {
	.site-header {
		height: auto;
	}
}


.before-hdr {
	background-color: #003e52;
}

.white-bx {
	  background-color: #ececec;
    border-bottom: 5px solid #05687c;
    max-width: 165px;
    padding-top: 10px;
		position: relative;
		left: 16px;
		margin-bottom: -50px;
}

@media (max-width: 767px ) {
	.white-bx {
		display: none;
	}
}

ul#upper-nav-center.list-inline {
	margin-bottom: 0;
}

#mega-menu-wrap-primary .mega-menu-toggle .mega-toggle-block-1:after {
	color: #000;
	font-size: 20px;
}

#mega-menu-wrap-primary .mega-menu-toggle .mega-toggle-block-1:before {
	color: #000;
	font-size: 33px;
}

@media (max-width: 768px) {
	.mobilenavpadb {
		padding-bottom: 15px;
	}
}

.section-image, .section-image-overlay {
	height: 550px;
	min-height: 100px;
	background-color: rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
	.section-image, .section-image-overlay {
		height: 375px;
	}
}

.section-image h1 {	
	font-family: 'Poppins', sans-serif;
	text-transform: uppercase;
	font-weight: 300;
	color: #fff;
	font-size: 17px;
	font-size: 1.1rem;
	letter-spacing: 2px;
	padding-top: 88px;
	text-shadow: 3px 4px 12px rgb(0, 0, 0);
}

.section-image h2 {
		font-family: 'Ubuntu', sans-serif;
    font-size: 44px;
    font-size: 2.7rem;
    letter-spacing: 1px;
    color: rgb(255, 255, 255);
    font-weight: 800;
    text-shadow: 3px 4px 12px rgb(0, 0, 0);
}

/* --------------------------- HOMEPAGE STYLES ---------------------------- */

.masthead-ht {
	height: 75vh;
	min-height: 600px;
	display: flex;
	justify-content: center;
  align-items: center;
}

@media (max-width: 767px) {
	.masthead-ht {
		height: 50vh;
		min-height: 550px;
	}
}

div.ft-bx-outside.wpb_column.vc_column_container.vc_col-sm-4 {
	  width: 31%;
    margin-left: 1%;
    margin-right: 1%;
		border-radius: 4px;
		transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
}

div.ft-bx-outside.wpb_column.vc_column_container.vc_col-sm-4 div.vc_column-inner {
	border-radius: 4px;
}

div.ft-bx-outside.wpb_column.vc_column_container.vc_col-sm-4:hover {
	transform: scale(1.03);
}


.ft-bxs {
		height: 600px;
    padding: 30px;
    border-radius: 4px;
		background: rgb(0,0,0);
		background: -moz-linear-gradient(0deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0) 57%);
		background: -webkit-linear-gradient(0deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0) 57%);
		background: linear-gradient(0deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0) 57%);
		filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#000000",endColorstr="#000000",GradientType=1);
		margin-left: -7px;
    margin-right: -7px;
		color: #fff;
}

.ft-bxs:hover {
	color: rgba(255,255,255,0.5);
}

.ft-bxs p {
    position: absolute;
    bottom: 30px;
    font-size: 30px;
    font-family: 'Cabin', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
		transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
}

.trip-ttl h3 {
    font-family: 'Cabin', sans-serif;
    color: #fff;
    position: absolute;
    left: auto;
    right: auto;
		bottom: 15px;
		text-transform: capitalize;
		font-weight: 400;
		font-size: 22px;
		width: 95%;
		text-align: center;
}

@media (max-width: 1200px) {
	.trip-ttl h3 {
		font-size: 20px;
	}
}

@media (max-width: 991px) {
	.trip-ttl h3 {
		font-size: 20px;
		text-transform: capitalize;
	}
}

@media (max-width: 767px) {
	.trip-ttl h3 {
		font-size: 32px;
		text-transform: uppercase;
	}
}

.bg-grad {
	background: rgb(0,0,0);
	background: -moz-linear-gradient(0deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0) 57%);
	background: -webkit-linear-gradient(0deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0) 57%);
	background: linear-gradient(0deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0) 57%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#000000",endColorstr="#000000",GradientType=1);
	height: 450px;
}

.vc_images_carousel .vc_carousel-indicators li {
    border: 1px solid white !important;
    background-color: white !important;
}

@media (max-width: 991px) {
	div.ft-bx-outside.wpb_column.vc_column_container.vc_col-sm-4 {
		width: 100%;
		margin-left: auto;
		margin-right: auto;
	}
	.ft-bxs {
		height: 300px;
	}
}

@media (max-width: 767px) {
	.ft-bxs {
		margin-left: 0px;
    margin-right: 0px;
	}
}

/* --------------------------- FAQ STYLES -------------------------- */
.wpb-js-composer .vc_tta-color-white.vc_tta-style-classic .vc_tta-panel .vc_tta-panel-title>a {
		color: #666 !important;
		font-size: 20px;
		font-size: 1.2rem;
		line-height: 1.2;
}

.wpb-js-composer .vc_tta-color-white.vc_tta-style-classic .vc_tta-panel.vc_active .vc_tta-panel-title>a {
    color: #05687c!important;
}

.wpb-js-composer .vc_tta-color-white.vc_tta-style-classic .vc_tta-panel .vc_tta-panel-heading {
    border-color: transparent !important;
    background-color: #fff;
    border-bottom: 2px solid rgba(114, 67, 154, 0.55) !important;
}

/* --------------------------- BLOG STYLES ---------------------------- */

body.single-post .section-image h1 {
    font-family: 'Cabin', sans-serif;
    text-transform: capitalize;
    font-weight: 400;
    color: #fff;
    font-size: 48px;
    font-size: 3rem;
    letter-spacing: 2px;
    padding-top: 88px;
    text-shadow: 3px 4px 12px rgba(0, 0, 0, 0.44);
}

.blckgrd-sec {
	background-color: #fff;
	border: 1px solid #ccc;
	border-radius: 5px 5px 0 0;
}

.blckgrd-sec .vc_col-sm-12 {
	padding-left: 0;
	padding-right: 0;
}

.blckgrd-sec .vc_gitem_row .vc_gitem-col {
	padding: 0;
}

.blckgrd-sec {
	height: 150px;
	overflow: hidden;
	position: relative;
}

.blckgrd-btsec h4 {
	margin-top: 0;
}

#blg-pgsec.1blck-cont .vc_grid-item-mini {
	border: 1px solid #ccc !important;
	background: #fff;
}

#blg-pgsec div.vc_grid-item-mini.vc_clearfix {
	  box-shadow: 0 3px 12px rgba(0,0,0,0.18);
		border-radius: 0 0 5px 5px;
}

h2.widget-title {
	font-size: 30px;
	font-size: 1.875rem;
	margin: 0;
}

h2.comments-title {
	font-size: 30px;
	font-size: 1.875rem;
	margin: 0;
}

h3#reply-title {
	font-size: 30px;
	font-size: 1.875rem;
	margin-bottom: 0;
}

textarea#comment {
	max-width: 100%;
	max-height: 100px;
}

p.comment-form-url {
	display: none;
}

.vc_btn3.vc_btn3-color-juicy-pink, .vc_btn3.vc_btn3-color-juicy-pink.vc_btn3-style-flat {
    color: #fff;
    background-color: #003e52;
    border-radius: 50px;
    font-size: 18px !important;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.vc_btn3.vc_btn3-color-juicy-pink:hover, .vc_btn3.vc_btn3-color-juicy-pink.vc_btn3-style-flat:hover, .vc_btn3.vc_btn3-color-juicy-pink:focus, .vc_btn3.vc_btn3-color-juicy-pink.vc_btn3-style-flat:focus {
    color: #f7f7f7;
    background-color: #05687c;
}

/* --------------------------- CONTACT STYLES ---------------------------- */

p.discl {
	font-size: 12px;
}

#ctfrm1 .form-control {
	margin-bottom: 15px !important;
}

span.wpcf7-not-valid-tip {
	font-size: 18px;
	color: #c74242;
	position: relative;
	top: -12px;
}

div.wpcf7-validation-errors {
	border: 2px solid #c74242;
	background-color: #fff;
}

div.wpcf7-response-output {
	margin: 10px 0;
}

:focus {
	outline: none !important;
	outline-offset: 0;
	border-color: inherit;
	box-shadow: none !important;
}

/* --------------------------- FOOTER STYLES ---------------------------- */

.after-footer {
  background-color: #002939;
  color: #fff;
  padding-top: 10px;
  font-size: 16px;
  max-width: 100%;
}

.footer-terms {
  text-align: center;
}

#colophon {
  background-color: #002939;
}

footer#colophon.site-footer .container {
  width: 100% !important;
}

div#test-space div.wpb_column.vc_column_container.vc_col-sm-12 {
  background-color: purple;
}

#colophon h5 {
    color: #05687c;
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    font-size: 15px;
    font-size: 0.9rem;
    letter-spacing: 1px;
	  margin-top: 0px;
    padding-bottom: 0px;
}

.logos img {
	max-height: 40px;
}

.sidebar-pagebottom {
	background-color: #e6e6e6;
}

/* --------------------------- SAMPLE ITINERARY STYLES ---------------------------- */

body.single-sampleitinerary div.entry-meta {
	display: none;
}

body.single-sampleitinerary h1.header-image-title {
    font-family: 'Cabin', sans-serif;
    text-transform: capitalize;
    font-weight: 400;
    color: #05687c;
    font-size: 40px;
    font-size: 2.5rem;
    letter-spacing: 0;
    padding-top: 20px;
    text-shadow: none;
}

body.single-sampleitinerary .section-image, .section-image-overlay {
    height: 450px;
}

@media (max-width: 991px) {
	body.single-sampleitinerary .section-image, .section-image-overlay {
		height: 250px;
	}
}

.itn-img {
		object-fit: cover;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    padding: 4px;
    border: 2px solid #5d2471;
    background: #fff;
}

h4.itn {
	text-transform: uppercase;
	font-size: 20px;
	font-size: 1.2rem;
}

h4.high {
	text-transform: uppercase;
	font-size: 20px;
	font-size: 1.2rem;
	padding-top: 40px;
}

@media (max-width: 767px) {
	h4.high {
		padding-top: 110px;
	}
}

dl.trip_itinerary:before {
    content: " ";
    display: block;
    width: 2px;
    position: absolute;
    top: -21px;
    left: 88px;
    bottom: -7px;
    background-color: #bdbdbd;
    z-index: -1;
}

.btn-pos {
    position: absolute;
    bottom: 34px;
    right: 48px;
}

@media (max-width: 991px) {
	.btn-pos {
		position: relative;
    bottom: inherit;
    right: inherit;
    top: 40px;
	}
}

.dl-horizontal.trip_itinerary dt {
    float: left;
    width: 160px;
    clear: left;
    text-align: right;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.dl-horizontal.trip_itinerary dd {
    margin-left: 180px;
}

@media (max-width: 768px) {
	.dl-horizontal.trip_itinerary dt {
    width: 100px;
	}
	.dl-horizontal.trip_itinerary dd {
		margin-left: 110px;
	}
	.itn-img {
		width: 95px;
		height: 95px;
	}
	dl.trip_itinerary:before {
		left: 50px;
	}
}

.highlight-img {
		object-fit: cover;
    border-radius: 50%;
    max-height: 200px;
    padding: 4px;
    border: 2px solid #05687d;
    background: #fff;
    margin-top: 0;
    margin-bottom: -100px;
    position: relative;
    z-index: 1;
}

.highlight {
    background-color: #fff;
    box-shadow: 0 3px 12px rgba(0,0,0,0.15);
    padding: 20px;
		margin-bottom: 20px!important;
		display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
		height: 300px;
}

@media (max-width: 767px) {
	.highlight {
		height: inherit;
	}
}

.highlight-cont {
	  width: 94%;
		margin-left: auto;
		margin-right: auto;
}

@media (max-width: 991px) {
	.highlight {
		margin-bottom: 30px!important;
	}
}

/* --------------------------- DESTINATION STYLES ---------------------------- */

body.single-destination div.entry-meta {
	display: none;
}

body.single-destination h1.header-image-title {
    font-family: 'Cabin', sans-serif;
    text-transform: capitalize;
    font-weight: 400;
    color: #05687c;
    font-size: 40px;
    font-size: 2.5rem;
    letter-spacing: 0;
    padding-top: 20px;
    text-shadow: none;
}

body.single-destination .section-image, .section-image-overlay {
    height: 550px;
}

@media (max-width: 991px) {
	body.single-destination .section-image, .section-image-overlay {
		height: 300px;
	}
}

.dl-horizontal.tour dt {
    float: left;
    width: 300px;
    clear: left;
    text-align: right;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.dl-horizontal.tour dd {
    margin-left: 330px;
}

@media (max-width: 768px) {
	.dl-horizontal.tour dt {
		width: 60%;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    display: block;
    clear: both;
    float: none;
    margin-bottom: 21px;
	}
	.dl-horizontal.tour dd {
		margin-left:0;
	}
	h3.tour {
		text-align: center;
	}
}

.tour-img {
	  object-fit: cover;
    border-radius: 50%;
    padding: 4px;
    border: 2px solid #05687d;
    background: #fff;
}

div.vc_grid-item.vc_clearfix.vc_col-sm-4.vc_grid-item-zone-c-bottom.vc_visible-item.fadeIn.animated div.vc_grid-item-mini.vc_clearfix {
    background-color: #fff;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.18);
    border-radius: 4px;
		overflow: hidden;
		border: 1px solid #d6d6d6;
}

.dest h4 {
    height: 75px;
}

@media (max-width: 1556px) {
	.dest h4 {
		height: 80px;
		font-size: 22px;
	}
}

@media (max-width: 1205px) {
	.dest h4 {
		height: 100px;
		font-size: 22px;
	}
}

@media (max-width: 768px) {
	.dest h4 {
		height: auto;
		font-size: 32px;
	}
}

.pad-2 {
	padding: 25px!important;
}

.excrpt p {
	color: #fff;
	font-size: 16px;
}

.ft-img {
	  object-fit: cover;
    border-radius: 50%;
    height: 100px;
    width: 100px;
    padding: 2px;
    border: 2px solid #05687d;
    background: #fff;
    /* margin-top: -60px; */
    margin-bottom: -55px !important;
    position: relative;

}

.smpl-itn {
    background-color: #003e52;
    padding: 20px;
    border-radius: 4px;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    height: 250px;
}

@media (max-width: 1235px) {
	.smpl-itn {
		height: 300px;
	}
}

@media (max-width: 1090px) {
	.smpl-itn {
		height: 350px;
		padding: 10px;
	}
}

@media (max-width: 767px) {
	.smpl-itn {
		height: 200px;
		padding: 10px;
	}
}

.hvr {
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
}


.hvr:hover {
	transform: scale(1.03);
}

.smpl-itn a {
	color: #fff;
	transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
}

.smpl-itn a:hover, .smpl-itn a:focus, .smpl-itn a:active {
	text-decoration: none;
	color: #05687d;
}

.marg-neg {
	margin-top: -160px;
}

@media (max-width: 991px) {
	.marg-neg {
		margin-top: 0;
	}
}

.des-highlight-bx {
	background-color: #fff;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.18);
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid #d6d6d6;
	padding: 0;
}

.des-highlight-bx div.vc_column-inner {
	padding-left: 0!important;
	padding-right: 0!important;
}

.title-bx {
	padding: 15px;
}

.des-highlight-bx.wpb_column.vc_column_container.vc_col-sm-4 {
	width: 32%;
	margin-left: auto;
	margin-right: auto;
}

@media (max-width: 767px) {
	.des-highlight-bx.wpb_column.vc_column_container.vc_col-sm-4 {
		width: 100%;
		margin-bottom: 25px;
	}
}