/* GENERAL STYLES */
html, body {
	height: 100%;
	margin: 0;
	padding: 0;
	text-rendering: optimizelegibility;
	font-family: 'Helvetica', Arial, sans-serif;
	background-color: #fff;
	color: #383f49;
}
h1, h2, h3, h4, h5, h6 {
	font-family: 'Libre Baskerville', Georgia, serif;
	font-weight: 400;
	letter-spacing: -0.025em;
}
.cursive {
	font-style: italic;
	font-family: 'Libre Baskerville', Georgia, serif;
}
p, li {
	font-family: 'Helvetica', Arial, sans-serif;
	font-size: 100%;
}
a {color: #025c89; text-decoration: none;}

img {max-width: 100%;}

a:hover, a:focus {color: #288bb2; text-decoration: underline;}

.z-1 {z-index:-1;}

.z0 {z-index:0;}

.z1 {z-index:1;}

.z2 {z-index:2;}

.link {
	position: relative;
	letter-spacing: .1em;
	font-size: 80%;
}
.link:after {
	content: '›';
	padding: 0 .5em;
}
a.btn:hover, a.btn:focus {text-decoration: none;}

.btn-primary {
	background-color: #03CED8;
	border-color: #03CED8;
}
.btn-primary:hover, .btn-primary:focus,
.btn-outline-primary:hover, .btn-outline-primary:focus {
	background-color: #26B5B5;
	border-color: #26B5B5;
}
.btn-outline-light, .btn-outline-primary {border-width: 2px;}

.btn-outline-primary {border-color: #03CED8; color: #03CED8;}

.btn-outline-primary:hover, .btn-outline-primary:focus {color: #fff;}

.bg-cover {
	background-size: cover;
	background-position: center;
}
/******* Header ******/
#header {
	background: linear-gradient(rgba(0,0,0,0.5) 0%, rgba(0,0,0,0) 100%);
	position: relative;
	z-index: 9;
}
#header .nav-link {text-transform: uppercase;}

#header .nav-item {font-size: 90%;}

.navbar-dark .navbar-toggler {border: none;}

/******* Content ******/
.wrap-content {min-height: 600px;}

.main-video {
	height:100vh;
	display:flex;
}
.fullscreen-video-wrap {
	position:relative;
	top:0;
	left:0;
	width:100%;
	height:100vh;
	overflow:hidden;
}
#myVideo {
	position: fixed;
	top: 50%;
	left: 50%;
	min-width: 100%;
	min-height: 100%;
	width: auto;
	height: auto;
	-webkit-transform: translateX(-50%) translateY(-50%);
	transform: translateX(-50%) translateY(-50%);
	min-height:100%;
	min-width:100%;
	background-size: cover;
	background-position: center;
	-webkit-transition: 1s all;
	transition: 1s all;
}
.video-headline {
	position: absolute;
	top: 50%;
	left: 50%;
	margin-right: -50%;
	transform: translate(-50%, -50%);
	width: 90%;
	max-height: 90%;
	margin: 0;
	color: #fff;
}
.video-headline h1 {margin-bottom: 1em;}

/******* Sections ******/
section {position:relative;}

.section-title p {font-family: 'Libre Baskerville', Georgia, serif;}

.section-img {max-width: none; max-height: none;}

/******* Map ******/
.section-map>.container {position: relative;}

.hawaii-map .btn {
	position: absolute;
	transition: all 1s;
	opacity: 0;
}
.hawaii-map:hover .btn {
	opacity: 100;
}
/******* Patterns ******/
.pattern {
	background-size: 70px;
	background-position: left top;
	background-repeat: repeat-x;
	height: 50px;
}
.pattern-light {
	background-image: url(https://cdn1.gttwl.net/attachments/theislandofhawaii.gttwl2.com/ltmq6z/1563897368_original.png);
}
.pattern-dark {
	background-image: url(https://cdn1.gttwl.net/attachments/theislandofhawaii.gttwl2.com/ltmq6z/1563898267_original.png);
}
/*** Flip Card ***/
.flip-card {
	background-color: transparent;
	width: 100%;
	height: 100%;
	perspective: 1000px; /* Remove this if you don't want the 3D effect */
}
.flip-card-inner {
	position: relative;
	width: 100%;
	height: 100%;
	text-align: center;
	transition: transform 0.8s;
	transform-style: preserve-3d;
}
.flip-card:hover .flip-card-inner {
	transform: rotateY(180deg);
}
.flip-card-front, .flip-card-back {
	width: 100%;
	height: 100%;
	-webkit-backface-visibility: hidden; /* Safari */
	backface-visibility: hidden;
}
.flip-card-front {
	position: relative;
	background-color: #111;
}
.flip-card-front img {opacity: 0.6;}

.flip-card-front h5 {
	position: absolute;
	top: 50%;
	left: 50%;
	margin-right: -50%;
	transform: translate(-50%, -50%);
	max-width: 100%;
	max-height: 100%;
	margin: 0;
	color: #fff;
	text-shadow: 2px 2px 2px rgba(0,0,0,.2);
	font-size: 170%;
}
.flip-card:hover .flip-card-front h5, .flip-card:hover .flip-card-front img {
	opacity: 0;
}
.flip-card-back {
	position: absolute; 
	top: 0;
	background-color: #fff;
	transform: rotateY(180deg);
	-moz-box-shadow: inset 0 0 10px rgba(0,0,0,.1);
	-webkit-box-shadow: inset 0 0 10px rgba(0,0,0,.1);
	box-shadow: inset 0 0 10px rgba(0,0,0,.1);
}
.flip-card-back>div {
	position: absolute;
	top: 50%;
	left: 50%;
	margin-right: -50%;
	transform: translate(-50%, -50%);
	max-width: 80%;
	max-height: 80%;
	z-index:2;
}
.flip-card-back>div p {
  line-height: 1.55;
}
.flip-card-back:after {
	position: absolute;
	content: '';
	top: 5%;
	left: 5%;
	height: 90%;
	width: 90%;
	display: block;
	border: 1px solid #333;
	z-index:1;
}
/******* Video Section ******/
.video-sec {
	background-color: #383f49;
	color: #efefef;
}
.video-sec>.container-fluid, .gallery>.container-fluid {
	padding: 0;
}
.video-img-sec {
	position: relative;
	display: block;
}
.video-img-sec img {width: 100%;}

.video-img-sec .fa-play-circle {
	position: absolute;
	color: #efefef;
	font-size: 400%;
	top: 50%;
	left: 50%;
	margin-right: -50%;
	transform: translate(-50%, -50%);
	text-align: center;
	z-index: 2;
}
.video-content-sec {padding: 2em 1.5em;}

.video-content-sec a {color: #efefef;}

/******* Boostrap Card ******/
.card-img-top, .card-img {
	-moz-transition: all 2s;
	-webkit-transition: all 2s;
	transition: all 2s;
}
.card-img-overlay {
	top: auto;
	background: rgba(0,0,0,.5);
	background: linear-gradient(rgba(0,0,0,0) 0%, rgba(0,0,0,.65) 50%);
}
.card:hover .card-img {opacity: .3;}

/******* Pages ******/



/******* Post ******/

.post p, .post li {
	font-size: 109%;
	margin-bottom: 1.15em;
	line-height: 1.5;
}

/******* Forms ******/

.form-control {padding: .55rem .75rem;}

/******* Footer ******/
#footer {
	background-color: #fff;
	padding: 3em 0;
	font-size: 95%;
	position: relative;
}
#footer h5 {
	font-family: 'Helvetica', Arial, sans-serif;
	text-transform: uppercase;
}
#footer .list-unstyled a {
	line-height: 1.6;
	display: block;
	padding: .35em 0;
}
#footer a {color: rgba(53,63,73,.5);}

/*******************************
					Responsive
*******************************/
/*** Small devices (landscape phones, 576px and up)***/
@media (min-width: 576px) {
	
}
@media (max-width: 767px) {
	.navbar-brand img {
		max-height: 70px;
	}
	.wrap-content {
		margin-top: -96px;
	}
	.bg-header {
		height: 96px;
	}
	.hawaii-map-text {
		padding: 1em 0 2em;
	}
	.thumb-content h4 {
		font-size: 110%;
	}
	.fullscreen-video-wrap {
		background-image:url(https://cdn1.gttwl.net/attachments/theislandofhawaii.gttwl2.com/ltmq6z/1564425777_original.jpeg);
		background-size: cover;
		background-position: center;
	}
	#myVideo {display: none;}
	
	.hawaii-map .btn {
		left: 0;
		bottom: 10%;
	}
}
/*** Medium devices (tablets, 768px and up)***/
@media (min-width: 768px) {
	.navbar-brand img {
		max-height: 90px;
	}
	.wrap-content {
		margin-top: -116px;
	}
	.bg-header {
		height: 116px;
	}
	.hawaii-map-text {
		position: absolute;
		top: 5em;
		left: 0;
		width: 47%;
	}
	.thumb-content h4 {
		font-size: 120%;
	}
	#myVideo {
		background-image:url(https://cdn1.gttwl.net/attachments/theislandofhawaii.gttwl2.com/ltmq6z/1562873632_original.jpeg);
	}
}
@media (max-width:991px) {
	.navbar-collapse.show {
		background-color: #383f49;
		padding: 110px 10px 10px;
		position: absolute;
		top: 0;
		left: 0;
		z-index: -1;
		width: 100%;
	}
	.section-body-img {
		height: 400px !important;
	}
}
@media (min-width: 768px) and (max-width:991px) {
	.hawaii-map {
		padding-bottom: 4em;
	}
	.hawaii-map .btn {
		bottom: 5%;
		right: 0;
	}
}
/*** Large devices (desktops, 992px and up)***/
@media (min-width: 992px) {
	.hawaii-map-text {
		top: 8em;
		width: 35%;
	}
	.hawaii-map .btn {
		bottom: 15%;
		right: 30%;
	}
	#place_cta {
		position: absolute;
		right: 50px;
		top: 20%;
		width: 40%;
	}
}
@media (max-width:1199px) {
	.flip-card-back>div p {
    font-size: 84.5%;
    line-height: 1.35;
  }
}
/*** Extra large devices (large desktops, 1200px and up)***/
@media (min-width: 1200px) {
	.hawaii-map-text {
		top: 14em;
		width: 30%;
	}
}