/* ---------------------------- General ---------------------------- */
:root {
	
}

body {
	background-color: #000;
	color: #FFF;
	padding-top: 80px;
}

.full-height {
	height: 100vh;
	/*max-height: calc(100vh - 80px);*/
}

.relative {
	position: relative;
}

img {
	max-width: 100%;
}

p {
	font-size: 16px;
	margin: 0;
}

.mobileonly {
	display: none;
}

.desktoponly {
	display: block;
}

/* ---------------------------- Menu ---------------------------- */
.main-menu-wrap {
	background: #000;
	position: fixed;
	left: 0;
	top: 0;
	right: 0;
	width: 100vw;
	max-width: 100%;
	padding: 0px 20px;
	z-index: 99999;
}

.main-menu-wrap .container {
	display: flex;
	height: 80px;
	padding: 0;
}

.main-menu-wrap .site-header img {
	max-height: 100%;

}

.main-menu-wrap .main-menu {
	margin-left: auto;
	display: flex;
	align-items: center;
}

.main-menu-wrap .main-menu ul{
	display: flex;
	flex-wrap: wrap;
	list-style: none;
	margin: 0;
	padding: 0;
}

.main-menu-wrap .main-menu li {
	margin-right: 15px;
}

.main-menu-wrap .main-menu li a {
	color: #FFF;
	font-weight: 400;
	text-decoration: none;
	font-size: 21px;
	color: #FFF;
}

/* ---------------------------- Popup ---------------------------- */
.popup-wrap {
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 100%;
	height: 100%;
	max-width: 800px;
	max-height: 500px;
	background-size: 100% 100%;
	background-color: #000;
	background-image: url(../img/popup-bg.png);
	padding: 50px 55px;
	z-index: 999999;
	display: none;
}

.popup-overlay {
	position: fixed;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	background-color: rgba(0,0,0,0.5);
	z-index: 99999;
	display: none;
}

.popup-wrap h3 {
	font-size: 28px;
}

.popup-wrap .divider {
	margin: 50px 0;
	height: 1px;
	width: 100%;
	max-width: 50px;
	background: #FFF;
}

.popup-wrap h2 {
	font-size: 48px;
}

.popup-wrap p {
	font-size: 22px;
	margin: 40px 0;
}

.popup-wrap form {
    width: 100%;
    max-width: 370px;
}

.popup-wrap form input {
	width: 100%;
	height: 40px;
	padding: 15px;
}

.popup-wrap form input::placeholder {
	color: #000;
}

.popup-wrap form button {
	height: 40px;
	width: 100%;
	background: #FFF;
	color: #000;
	border: none;
	box-shadow: 0 0 20px #ec881e;
	font-size: 22px;
	margin-top: 20px;
}

.popup-wrap .close-btn {
	height: 30px;
	width: 30px;
	position: absolute;
	top: 35px;
	right: 40px;
	cursor: pointer;
}

/* ---------------------------- Body ---------------------------- */
.hero {
	width: 100vw;
	max-width: 100%;
	max-height: 120vh;
	/*background-image: url(../img/hero.png);*/
	/*background-size: cover;*/
	/*background-position: center top;*/
}

.hero-blast {
	position: absolute;
	bottom: -45%;
	left: 0;
	margin-bottom: 200px;
}

.content-section {
	margin-top: 100px;
}

.content-section h2 {
	text-align: center;
	margin-bottom: 40px;
}

.intro-section .quote-img {
	position: absolute;
	left: 0;
	bottom: 0;
	max-width: 50%;
}

.vid-section .row {
	margin-top: 50px;
}

.big-img {
    width: 100%;
    /*max-height: 90vh;*/
    max-height: 65vh;
    overflow: hidden;
    margin-bottom: 20px;
}

.big-img img {
	width: 100%;
	height: 100%;
	object-fit: scale-down;
	object-position: top;
}

.thumb-img {
    width: 100%;
    height: 100px;
    display: flex;
    flex-wrap: nowrap;
}

.thumb-img img {
    width: 100px;
    height: 100%;
    padding: 0 10px;
    object-fit: cover;
    object-position: center center;
}

.thumb-img button {
    background-color: #000;
    width: 40px;
    border: none;
    color: transparent;
    text-indent: -500%;
    overflow: hidden;
    margin: 0 15px;
}

.thumb-img button.slick-prev {
    background-image: url(../img/left-arr.png);
    background-size: scale-down;
    background-repeat: no-repeat;
    background-position: center;
}

.thumb-img button.slick-next {
    background-image: url(../img/right-arr.png);
    background-size: scale-down;
    background-repeat: no-repeat;
    background-position: center;
}

.contact-section {
    margin-top: 100px;
}

.contact-section .book-col {
    z-index: -1;
}

/*.book-img {
    z-index: 0;
    margin-top: -120px;
    margin-left: -50px;
    margin-bottom: -100px;
    width: 130%;
    max-width: none;
}*/

.contact-section .book-col .book-img {
    position: absolute;
    top: -50%;
    right: 0;
    z-index: -1;
    max-width: 120%;
}

.contact-section .book-col .col-content {
    position: absolute;
    bottom: 0;
    z-index: 1;
}

.contact-section h3 {
    font-size: 34px;
}

.contact-section .form-col {
    z-index: 1;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
}

.contact-section .form-col h3 {
    margin-bottom: 40px;
}

.contact-section form {
	width: 100%;
	min-height: 430px;
}

.contact-section form input, .contact-section form textarea {
	width: 100%;
	margin-bottom: 30px;
	padding: 15px;
}

.contact-section form input::placeholder, .contact-section form textarea::placeholder {
	color: #000;
}

.contact-section form input {
	height: 40px;
}

.contact-section form textarea {
	height: 130px;
}

.contact-section form button {
	height: 40px;
	width: 100%;
	background: #FFF;
	color: #000;
	border: none;
	box-shadow: 0 0 20px #ec881e;
	font-size: 22px;
}

.contact-section .quote-img {
	margin-top: 100px;
}

@media screen and (max-width: 767px) {
	.mobileonly {
		display: block;
	}

	.desktoponly {
		display: none;
	}

	.content-section {
	    margin-top: 30px;
	}

	.site-header {
	    display: flex;
	    justify-content: space-between;
	    align-items: center;
	}

	.main-menu-wrap .site-header img {
	    max-width: 70%;
	}

	.menu-btn {
	    max-width: 40px;
	    max-height: 40px;
	}

	.main-menu {
		position: fixed;
		top: 0;
		right: -100vw;
		width: 100vw;
		background: #000;
		height: 100vh;
		transition: all 300ms ease-out;
	}

	.main-menu.in {
		right: 0vw;
	}

	.main-menu-wrap .main-menu ul {
	    flex-direction: column;
	    justify-content: center;
	    width: 100%;
	    text-align: center;
	}

	.main-menu-wrap .main-menu ul li {
	    margin: 20px 0;
	}

	.close-btn {
	    position: absolute;
	    width: 30px;
	    height: 30px;
	    top: 15px;
	    right: 15px;
	}

	.intro-section .quote-img {
	    position: static; 
	    max-width: 100%;
	}

	.contact-section .book-col .book-img,
	.contact-section .book-col .col-content {
		position: static; 
		max-width: 100%;
	}

	.contact-section .quote-img {
	    margin: 50px auto;
	}

	.thumb-img button.slick-prev, .thumb-img button.slick-next {
	    background-size: contain;
	}

	.popup-wrap {
	    padding: 15px 20px;
	    padding-top: 60px;
	    border: 20px solid;
	    background-image: none;
	}

	.popup-wrap .divider {
	    margin: 20px 0;
	}

	.popup-wrap .close-btn {
	    height: 25px;
	    width: 25px;
	    top: 15px;
	    right: 20px;
	}

}