/********************************
	Developed by AXA Studios
	The Creative Engine
	http://www.axastudios.com
*********************************/


:root {

	--main-color: #0E1235;
	--light-main-color: #2B2F4E;
	--lighter-main-color: #5B5E76;
	
	--sub-color: #CE1C69;	
	--dark-sub-color: #9B0043;
	
	--text-color: #C1C1C1;
	--grey-color: #676767;
	
	--black-color: #000000;
	--white-color: #FFFFFF;
	--background-color: #F1EFE9;


	--xs-pad: 8px;
	--sm-pad: 12px;
	--mid-pad: 16px;
	--main-pad: 24px;
	--md-pad: 32px;
	--lg-pad: 48px;
	--xl-pad: 72px;
	--xxl-pad: 96px;
	--lg-neg: -48px;
	--main-neg: -24px;
	--main-font: 16px;
	--sm-font: 14px;
	--input-font: 16px;
	--button-font: 14px;
	--sm-icon: 18px;
	--main-icon: 32px;
	--large-icon: 96px;
}

/* MAIN STYLES *****************************/

html {
	overflow-y: scroll;
	margin: 0;
	padding: 0;
	font-size: 16px;
}

body {
	padding: 0px;
	margin: 0px;
	background: var(--main-color);
	font-family: 'Poppins', Arial, Helvetica, sans-serif;
	font-weight: 400;
	font-size: 16px;
	line-height: 1.6;
	color: var(--text-color);
}

/* TEXT & LINK STYLES *****************************/

h1, h2, h3, h4, h5, h6 {
	font-family: 'Poppins', Arial, Helvetica, sans-serif;
	margin-top: 0px;
	color: inherit;
}

h1 {
	font-size: 32px;
	font-weight: 600;
	line-height: 1.2;
	margin-bottom: var(--main-pad);
}
h1 span{
	font-weight: 300;	
}

h2 {
	font-size: 32px;
	font-weight: 700;
	line-height: 1.2;
	margin-bottom: var(--mid-pad);
}

h3 {
	font-weight: 700;
	font-size: 22px;
	margin-bottom: var(--xs-pad);
	line-height: 1.4;
}

h4 {
	font-weight: 500;
	font-size: 18px;
	margin-bottom: var(--xs-pad);
	line-height: 1;
}

h2 span, h3 span {
/*	color: var(--sub-color);*/
	font-weight: 300;
}

.sub-title {
	display: block;
	font-weight: 300;
	text-transform: uppercase;
	letter-spacing: 2px;
	font-size: 16px;
	margin-bottom: 0;
	color: var(--white-color);
}

.italic {
	font-style: italic;
}

p {
	margin-bottom: var(--main-pad);
}

.lead{
	font-weight: 400;
	font-size: 22px;
	line-height: 1.6;
	margin-bottom: var(--main-pad);
}
p.bold{
	font-weight: 700;
}

:focus {
	-moz-outline-style: none;
}

::selection {
	background-color: #333333;
	color: #fff;
}

::-moz-selection {
	background-color: #333333;
	color: #fff;
}

img {
	max-width: 100%;
}

input:focus, button:focus {
	outline: none;
}

a, a:visited {
	color: var(--white-color);
	border: none;
	outline: 0;
	-moz-outline-style: none;
	transition: color 0.2s ease;
}

a:hover, a:focus, a:active {
	text-decoration: none;
	color: inherit;
	color: var(--white-color);
	transition: color 0.4s ease-out;
}

a img {
	border: none;
	outline: 0;
	-moz-outline-style: none;
}

.page p a {
	font-weight: 700;
	text-decoration: underline;
}

input.button, .button, .button:visited, .w-btn, .l-btn{
	position: relative;
	cursor: pointer;
	color: var(--white-color);
	font-size: var(--button-font);
	line-height: 24px;
	font-weight: 600;
	height: 48px;
	border: none;
	border-radius: 10px;
	outline: none;
	background: var(--sub-color);
	text-align: center;
	text-decoration: none;
	transition: all 0.2s ease;
}

a.button, .button {
	color: var(--white-color);
	display: inline-block;
	text-decoration: none!important;
	padding: 12px 32px;
}
a.button span, .button span{
	display: inline-block;
	vertical-align: top;
	line-height: 22px;
}
.btn.focus, .btn:focus {
	outline: 0;
	box-shadow: none;
}
.button:hover, .button:active, .button:focus {
	color: var(--white-color);
	background: var(--dark-sub-color);
	box-shadow: none;
	transition: all 0.4s ease;
}
.button i, .txt-btn i, .txt-link i {
	display: inline-flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	height: 24px;
	line-height: 24px;
	width: 24px;
	font-size: 18px;
	text-align: center;
	margin-right: 4px;
}

.l-btn, .l-btn:visited{
	background: var(--light-main-color);
	color: var(--white-color);
}
.l-btn:hover, .l-btn:active, .l-btn:focus {
	background: var(--lighter-main-color);
	color: var(--white-color);
	transition: all 0.4s ease;
}

/*
.w-btn, .w-btn:visited{
	display: inline-block;
	text-decoration: none;
	padding: 11px 24px 11px 24px;
	color: var(--text-color);
	background: transparent;
	box-shadow: none;
	border: 1px solid var(--text-color);
	transition: all 0.2s ease;
}
.w-btn:hover, .w-btn:active, .w-btn:focus{
	color: var(--black-color);
	background:var(--white-color); 
	border: 1px solid var(--white-color);
	transition: all 0.4s ease;
}
*/

.clear-btn{
	display: inline-flex;
	height: 48px;
	padding: 12px 0px;
	line-height: 24px;
	opacity: 1;
	transition: all 0.2s ease;
}
.clear-btn:hover,
.clear-btn:active,
.clear-btn:focus{
	opacity: 0.64;
	transition: all 0.4s ease;
}
.clear-btn span{
	padding: 0px;
	padding-right: 12px;
	font-weight: 300;
}
.clear-btn i{
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: center;
	text-align: center;
	align-items: center;
	width: 24px;
	height: 24px;
	font-size: 18px;
}

.txt-btn{
	display: inline-flex;
    text-decoration: none;
	padding: 0px;
    font-weight: 600;
    color: var(--white-color);
	transition: all 0.2s ease;
}
.txt-btn:hover,
.txt-btn:active,
.txt-btn:focus{
    color: var(--sub-color);
	transition: all 0.4s ease;
}

/* FORM STYLES *****************************/
.form-wrap{
    position: relative;
/*    margin-bottom: 72px;*/
}

.form-row-main{
    margin-left: -24px;
    margin-right: -24px;
}
.form-col-main{
    position: relative;
    display: block;
    width: 50%;
    float: left;
    padding: 0px 24px;
}


.form-wrapper .form-wrap{
    margin-bottom: 0px;
}
.form-col{
    position: relative;
    display: block;
    width: 50%;
    float: left;
    padding: 0px 12px;
}
.form-wrap .row{
    margin-left: -12px;
    margin-right: -12px;
}
.form-wrap .col-sm-4, .form-wrap .col-sm-6, .form-wrap .col-sm-8, .form-wrap .col-sm-12{
    padding-left: 12px;
    padding-right: 12px;
}
.row.form-small-row{
    margin: 0;
    width: 100%;
}
.form-group{
    position: relative;
    display: block;
/*    padding: 0px;*/
    margin-bottom: 24px;
}
.row.form-cols{
    margin-left: -40px;
    margin-right: -40px;
}
.form-col h3{
    padding: 0px 20px;
}
.form-matd{
	position: relative;
/*	margin-bottom: 0px;*/
}
.form-group.select-box{
/*    margin-top: 20px;*/
}
h3 + .form-group.select-box{
    margin-top: 20px;
}
.form-matd input, .form-matd textarea{
    -webkit-appearance: none;
    appearance: none;
    height:48px;
	padding: 16px 0px 8px 0px;
    line-height: 22px;
	border: none;
    border-bottom: 1px solid rgba(255,255,255,0.48);
    font-weight: 400;
    border-radius: 0px;
    background: var(--sub-color);
    box-shadow: none;
    height: initial;
    color: var(--white-color);
}
.form-matd textarea{
    min-height: 80px;
    min-height: 120px;
}
.form-matd input:focus, .form-matd textarea:focus{
/*	border-bottom:1px solid #aaaaaa;*/
    outline: none;
    background: var(--sub-color);
}
.form-control{
    font-size: var(--input-font);
    color: var(--white-color);
	background: var(--sub-color);
	border: none;
    border-bottom: 1px solid rgba(255,255,255,0.48);
}
.form-control:focus{
    color: var(--white-color);
    box-shadow: none;
    border-bottom: 1px solid var(--white-color);
}
.form-matd .form-control:focus{
	border: none;
    border-bottom: 1px solid var(--white-color);
}

.form-control::-webkit-input-placeholder {
    color: var(--white-color);
}
.form-control::-moz-placeholder {
    color: var(--white-color);
}
.form-control:-ms-input-placeholder {
    color: var(--white-color);
}
.form-control::placeholder {
    color: var(--white-color);
}

.form-matd .form-control:focus{
    box-shadow: none;
    outline: none;
    color: var(--white-color);
    font-weight: 400;
}
.form-control:focus::-webkit-input-placeholder {
    font-weight: 400;
}
.form-control:focus::-moz-placeholder {
    font-weight: 400;
}
.form-control:focus:-ms-input-placeholder {
    font-weight: 400;
}
.form-control:focus::placeholder {
    font-weight: 400;
}
input[type=text] {   
    -webkit-appearance: none;
    appearance: none;
}
input:-internal-autofill-selected,
input:-webkit-autofill, 
input:-webkit-autofill:focus, 
input:-webkit-autofill:hover,
input:-internal-autofill-selected{
    -webkit-appearance: none!important;
    background-color: var(--sub-color)!important;
    background-image: none !important;
    color: var(--white-color) !important;
}
input:-webkit-autofill,
input:-webkit-autofill:hover, 
input:-webkit-autofill:focus, 
input:-webkit-autofill:active {
 -webkit-box-shadow: 0 0 0 30px white inset !important;
}
.form-matd label,
.form-matd input:invalid ~ label,
.form-matd input.input-empty ~ label{
	position:absolute;
    color: var(--white-color);
	font-weight:normal;
	pointer-events:none;
	background: var(--sub-color);
	left:8px;
	top:8px;
	padding: 4px 4px 8px 0px;
	margin: 0px;
    font-size: 16px;
    font-weight: 400;
	transition:0.15s ease all;
	-webkit-transition:0.15s ease all;
}
.form-col input:focus ~ .form-border, .form-col textarea:focus ~ .form-border {
	left: 24px;
    width:calc(100% - 24px);
}
.form-matd.form-col label, .form-matd.form-col input:invalid ~ label {
	left: 24px!important;
}

.form-matd input:focus ~ label,
.form-matd input.input-filled ~ label,
.form-matd input:required:valid ~ label,
.form-matd textarea:focus ~ label,
.form-matd textarea.input-filled ~ label,
.form-matd textarea:required:valid ~ label {
    left:0px;
	top:4px;
	padding: 0px 4px 8px 0px;
	line-height: 2px;
    color: var(--white-color);
	font-size: 12px;
    font-weight: 400;
/*    text-transform: uppercase;*/
}

.form-matd label.error, #reg-check-error{
    position: absolute;
    top: auto!important;
    bottom: -25px;
    font-weight: 400;
    color: var(--white-color)!important;
    font-size: 11px!important;
    text-transform: uppercase;
}
.form-matd label.error, .form-matd .error-text, .select-box .error-text, .checkbox .error-text, .form-captcha .error-text, .form-option-group .error-text, .form-options .error-text{
    position: absolute;
    top: auto!important;
    bottom: -20px;
    font-weight: 400;
    color: var(--white-color)!important;
    font-size: 11px!important;
/*    text-transform: uppercase;*/
}
.form-option-group .error-text,
.checkbox .error-text{
    bottom: -12px;
}
.form-captcha .error-text{
	bottom: -12px;
}
.form-title{
	margin-bottom: 8px;
}
.form-group + .form-title{
	margin-top: 16px;
}
.form-title h4{
	margin: 0;
/*	margin-top: 16px;*/
	margin-bottom: 4px;
}
.form-title span{
	margin-bottom: 8px;
	color: var(--grey-color);
}

.form-btns{
    text-align: left;
}
.form-btns .button{
    margin-right: 32px;
}
.form-btm{
    margin-top: 10px;
}
.form-icons{
	padding: 12px;
	line-height: 24px;
}
.form-icons a{
	position: relative;
	width: 24px;
	height: 24px;
	line-height: 24px;
	margin-left: 8px;
}
/*
#contactSubmit:hover,
#contactSubmit:active,
#contactSubmit:focus{
	color: var(--white-color);
    border: 1px solid var(--white-color);
	opacity: 0.64;
}
*/
.grecaptcha-badge { 
    visibility: hidden;
}

/* WRAPPER STYLES *****************************/

#outer-wrapper {
	position: relative;
	/*	overflow: hidden;*/
}

#bg-wrapper {
	position: fixed;
	content: '';
	display: none;
	opacity: 0;
	width: 100%;
	height: 150%;
	z-index: 10;
	background: rgba(0,0,0,0.72);
}

.menu-open #bg-wrapper {
	display: block;
	opacity: 1;
	animation: opac-in-animate 0.4s ease-out forwards;
}

.menu-ani #bg-wrapper {
	display: block;
	opacity: 1;
	animation: opac-out-animate 0.3s ease-in forwards;
}

#main-wrapper {
	position: relative;
}

#content-wrapper {
	position: relative;
	display: block;
/*	padding: 96px 0px;*/
	overflow: hidden;
	padding: 0;
	margin: 0px;
	background: var(--black-color);
	z-index: 2;
}

.home-wrap #content-wrapper {
	padding: 0;
}

/* HEADER *****************************/

#navbar {
	position: absolute;
	display: block;
	width: 100%;
	padding: 0px 0px;
	top: 0px;
	z-index: 99;
/*	background: var(--light-main-color);*/
}

#navbar.sticky {
	position: fixed;
/*	background: rgba(0,0,0,0.8);*/
}

#navbar .container {
    max-width: 100%;
}

.navbar-header {
	position: relative;
	display: flex;
	justify-content: center;
}
.navbar-header-logo{
	position: relative;
	display: flex;
	justify-content: center;
    opacity: 0;
	animation: opac-in-animate 0.6s ease-in forwards;
    animation-delay: 0.2s;
}


.logo-main {
	display: inline-flex;
	align-self: center;
	margin: 24px 0px;
	padding: 0px;
	opacity: 1;
	transition: all 0.2s ease;
}
.logo-main:hover {
	opacity: 0.64;
	transition: all 0.4s ease-out;
}
.logo-main img {
	height: 32px;
	width: auto;
	vertical-align: top;
}

.logo-main span {
	position: relative;
	display: block;
	vertical-align: top;
}

/*
#navbar .logo-main-dark {
	display: none;
}

#navbar.sticky .logo-main-dark{
    display: block;
}
#navbar.sticky .logo-main-light{
    display: none;
}
*/

.logo-mob, .nav-back-btn, .nav-share-btn {
	display: none;
}

.nav-toggle {
	position: relative;
	float: right;
	cursor: pointer;
	display: none;
	width: 24px;
	height: 24px;
	padding: 0px;
	margin: 16px 0px 16px 16px;
	background: none;
	border: none;
	overflow: hidden;
}

.nav-icon span, .menu-ani .nav-icon span {
	display: block;
	position: absolute;
	top: 11px;
	left: 3px;
	right: 3px;
	height: 2px;
	background: var(--white-color);
	transition: background 0s 0.2s;
}
.nav-icon span::before, .nav-icon span::after, .menu-ani .nav-icon span::before, .menu-ani .nav-icon span::after {
	position: absolute;
	display: block;
	left: 0;
	width: 100%;
	height: 2px;
	background-color: var(--white-color);
	content: "";
	transition-duration: 0.2s, 0.2s;
	transition-delay: 0.2s, 0s;
}

.nav-icon span::before, .menu-ani .nav-icon span::before {
	top: -5px;
	transition-property: top, transform;
}

.nav-icon span::after, .menu-ani .nav-icon span::after {
	/*    width: 70%;*/
	bottom: -5px;
	transition-property: bottom, transform;
}

.menu-open .nav-icon span {
	background: none;
}

.menu-open .nav-icon span::before {
	top: 0;
	width: 100%;
	transform: rotate(45deg);
}

.menu-open .nav-icon span::after {
	bottom: 0;
	width: 100%;
	transform: rotate(-45deg);
}

.menu-open .nav-icon span::before, .menu-open .nav-icon span::after {
	transition-delay: 0s, 0.2s;
}

/* NAV MAIN *****************************/

.navbar-header {
	display: flex;
	flex-direction: row;
}

.nav-wrap {
	display: flex;
/*	width: 100%;*/
}

#nav-main {
	position: relative;
	display: inline-block;
		margin-left: auto;
}

#nav-main ul {
	position: relative;
	margin: 8px 0px;
	padding: 0px;
	list-style: none;
	text-align: left;
}

#nav-main ul li{
	position: relative;
	display: inline-block;
	float: left;
	padding: 0px 24px;
	padding: 12px 0px;
	margin: 0px 24px;
	text-align: center;
}

#nav-main ul li a{
	display: block;
	line-height: 20px;
	padding: 10px 0px;
	color: var(--white-color);
	font-weight: 400;
	text-transform: uppercase;
	letter-spacing: 2px;
	font-size: 14px;
	transition: all 0.2s ease;
	cursor: pointer;
}

/*
#navbar.sticky #nav-main ul li a{
	color: var(--text-color);
}
*/

#nav-main ul li a:hover, #navbar.sticky #nav-main ul li a:hover {
	/*.sub-page #nav-main ul li a:hover*/
	color: var(--main-color);
	-webkit-transition: all 0.4s ease;
	transition: all 0.4s ease;
}

#nav-main .show-mob {
	display: none!important;
}

#navbar.sticky, .menu-open #navbar {
	position: fixed;
}

.nav-copyright{
	display: none;
}
.nav-right{
	padding: var(--mid-pad) 0px; 
}

/* MAIN BANNER STYLES *****************************/

#banner-wrapper {
	position: relative;
	display: block;
	height: 100%;
	z-index: 2;
	background: none;
}

#banner-main {
	position: relative;
	display: flex;
	min-height: 90vh;
	padding-top: 80px;
	z-index: 2;
}
/*
#banner-main:after {
	content: '';
	position: absolute;
	display: block;
	height: 50%;
	width: 100%;
	bottom: 0;
	left: 0;
	z-index: 0;
	background: transparent linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 100%) 0% 0% no-repeat padding-box;
}
*/

#banner-wrapper .container {
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: center;
    align-items: center;
	min-height: 100%;
	z-index: 2;
}

.banner-text {
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: center;
    text-align: center;
	padding: 72px 24px;
	width: 50%;
    min-width: 880px;
	color: var(--white-color);
	z-index: 3;
	opacity: 0;
	animation: btm-fade-animate 1.0s ease-out forwards;
	animation-delay: 0.4s;
}

.banner-text-block {
	position: relative;
	display: flex;
	flex-direction: column;
}
.banner-main-icon{
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: center;
    text-align: center;
    width: 80px;
    height: 80px;
    font-size: 48px;
    margin: 0 auto 32px auto;
    color: var(--sub-color);
}

.banner-main-title h1 {
	position: relative;
	display: block;
	margin: 0;
    margin-bottom: var(--mid-pad);
	color: var(--white-color);
}

.banner-main-text{
	position: relative;
	display: flex;
	flex-direction: column; 
	margin-bottom: var(--lg-pad);
}

.banner-main-text p {
	position: relative;
	line-height: 1.6;
	font-size: 16px;
	font-weight: 300;
    color: var(--text-color);
    margin: 0;
	margin-bottom: 0;
}

.banner-header-buttons {
    position: relative;
    display: flex;
    justify-content: center;
}

.banner-header-buttons .button {
	margin: 0 8px;
}

/* CONTENT BLOCK STYLES *****************************/

.content-blocks-main{
	position: relative;
	display: flex;
	flex-wrap: wrap;
}

.content-block-main{
	display: flex;
	flex-direction: column;
}
.content-block-lg{
	width: 50%;
}
.content-block-sm{
	width: 25%;
}
.content-block-xl{
	width: 75%;
}
.content-block-full{
	width: 100%;
	height: 100vh;
}
.content-block{
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	height: 100%;
/*	min-height: 540px;*/
	min-height: 600px;
	padding: 72px;
	overflow: hidden;
}
.content-block.content-block-center{
	justify-content: center;
}
.content-block:after{
	content: '';
	position: absolute;
	display: block;
	height: 50%;
	width: 100%;
	bottom: 0;
	left: 0;
	z-index: 1;
	background: transparent linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.72) 100%) 0% 0% no-repeat padding-box;
/*	transition: height 0.2s ease;*/
}
/*
.content-block:hover:after{
	height: 100%;
	transition: height 0.3s ease-in-out;	
}
*/

.content-block-wrap{
	position: relative;
	display: flex;
	flex-direction: column;
	z-index: 3;
}
.content-block-wrap-center{
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: center;
	text-align: center;
	align-items: center;
	z-index: 3;	
}
.content-block-icon{
	position: relative;
	display: flex;
	flex-direction: column;
	margin-bottom: 32px;
}
.content-block-icon img{
	width: 120px;
	height: auto;
}
.content-block-link{
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	color:var(--white-color); 
	z-index: 3;
}
.content-block-bg{
	position: absolute;
	display: block;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: 0;
	opacity: 1;
	transform: scale(1);
	transition: all 0.2s ease;
}
.content-block-txt{
	position: relative;
	display: flex;
	flex-direction: column;
	max-height: 0;
	opacity: 0;
	line-height: 26px;
	overflow: hidden;
	transition: all 0.2s ease;
}
.content-block:hover .content-block-txt{
	position: relative;
	display: flex;	
	opacity: 1;
	max-height: 240px;
	transition: all 0.5s ease-in-out;	
}
.content-block-title {
	position: relative;
	display: block;
	transition: all 0.2s ease;
	text-shadow: 0px 0px 4px rgba(0, 0, 0, 1);
}
.content-block:hover .content-block-title{
	padding-bottom: 16px;
}
.content-block.no-anim:hover .content-block-title{
	padding-bottom: 0px;
}
.content-block-title h2 {
	line-height: 1.2;
	text-transform: uppercase;
	margin: 0;
}
.content-block-txt p{
	letter-spacing: 1px;
	text-shadow: 0px 0px 4px rgba(0, 0, 0, 1);
	margin-bottom: 0px;
}
.content-block-txt a:hover, 
.content-block-txt a:focus, 
.content-block-txt a:active {
	text-decoration: underline;
}

.content-block:hover .content-block-bg{
	transform: scale(1.2);
	opacity: 0.80;
	transition: all 0.6s ease-in-out;	
}

.content-block-lg .content-block:hover .content-block-txt{
	max-height: 360px;
}

.sub-txt{
	margin-top: 8px;
	font-size: 14px;
}

.block-txt{
	position: relative;
	display: block;
	margin-top: 16px;
}
.block-txt span{
	font-weight: 700;
}


/* CONTENT STYLES *****************************/

.address, .opening-times{
	position: relative;
	list-style: none;
	margin: 0;
	padding: 0px;
}
.address li{
	margin: 0;
	padding: 0;
}
.address li i{
	margin-left: 2px;
	margin-right: 4px;
}
.opening-times{
	width: 100%;
}
.opening-times li{
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	margin: 0;
	padding: 0;
}
.address li div,
.opening-times li div{
	font-weight: 700;
}
.opening-times li span{
	font-weight: 300;
}

/*
.content-banner-icon-blocks{
	display: flex;
	margin-left: -12px;
	margin-right: -12px;
}

.content-icon-block-wrap{
	width: 33.3333%;
	padding: 0 12px;
	opacity: 0;
}
.content-icon-block{
	position: relative;
	display: flex;
	align-content: flex-start;
	align-self: center;
	flex-direction: column;
	width: 100%;
	height: 100%;
	padding: 40px;
	background: var(--white-color);
	border-radius: 3px;
}
.icon-blk-icon{
	position: relative;
	display: flex;
	flex-direction: column;
	line-height: 1;
	height: 56px;
	font-size: 56px;
	color: var(--sub-color);
	margin-bottom: 32px;
}
.content-icon-block .txt-btn{
	margin-top: auto;
}

.animate .content-banner-icon-blocks .content-icon-block-wrap{
    -webkit-animation: btm-fade-animate 0.6s ease-out forwards;
	animation: btm-fade-animate 0.6s ease-out forwards;
}

.animate .content-banner-icon-blocks .content-icon-block-wrap:nth-child(1){
    -webkit-animation-delay: 0.1s;
    animation-delay: 0.1s;
}
.animate .content-banner-icon-blocks .content-icon-block-wrap:nth-child(2){
    -webkit-animation-delay: 0.2s;
    animation-delay: 0.2s;
}
.animate .content-banner-icon-blocks .content-icon-block-wrap:nth-child(3){
    -webkit-animation-delay: 0.3s;
    animation-delay: 0.3s;
}
*/

.menu-wrap #main-wrapper{
	height: 100vh;
	display: flex;
	flex-direction: column;
	flex-grow: 1;
}
.menu-wrap #content-wrapper{
	flex-grow: 1;
}

.menu-blocks{
	width: 100%;
	height: 100%;
/*
	min-height: 80vh;
	flex: 1;
*/
}
.menu-blocks .content-block-main{
	width: 25%;
}
.menu-blocks .content-block{
	min-height: initial;
}
#content-menu-1 .content-block-bg{
	background: url(../images/bkk-menu-gerechten.jpg) center center no-repeat;
	background-size: cover;	
}
#content-menu-2 .content-block-bg{
	background: url(../images/bkk-menu-dranken.jpg) center center no-repeat;
	background-size: cover;	
}
#content-menu-3 .content-block-bg{
	background: url(../images/bkk-menu-cocktails.jpg) center center no-repeat;
	background-size: cover;	
}
#content-menu-4 .content-block-bg{
	background: url(../images/bkk-menu-sterkedranken.jpg) center center no-repeat;
	background-size: cover;	
}

.image-blocks .content-block-main{
	position: relative;
	min-height: 540px;
}
#content-image-1 .content-block-bg{
	background: url(../images/restaurant/bkk-restaurant-mainbanner.jpg) center center no-repeat;
	background-size: cover;	
}
#content-image-2 .content-block-bg{
	background: url(../images/restaurant/bkk-restaurant-2.jpg) center center no-repeat;
	background-size: cover;	
}
#content-image-3 .content-block-bg{
	background: url(../images/restaurant/bkk-restaurant-3.jpg) center center no-repeat;
	background-size: cover;	
}
#content-image-4 .content-block-bg{
	background: url(../images/restaurant/bkk-restaurant-4.jpg) center center no-repeat;
	background-size: cover;	
}
#content-image-5 .content-block-bg{
	background: url(../images/restaurant/bkk-restaurant-5.jpg) center center no-repeat;
	background-size: cover;	
}
#content-image-6 .content-block-bg{
	background: url(../images/restaurant/bkk-restaurant-6.jpg) center center no-repeat;
	background-size: cover;	
}
#content-image-7 .content-block-bg{
	background: url(../images/restaurant/bkk-restaurant-banner-7.jpg) center center no-repeat;
	background-size: cover;	
}



/* CONTENT OVERRIDES *****************************/

#content-1 .content-block-bg{
	background: url(../images/bkk-banner-overons.jpg) center center no-repeat;
	background-size: cover;	
}
#content-2 .content-block-bg{
	background: url(../images/bkk-banner-adres-v2.jpg) center center no-repeat;
	background-size: cover;	
}
#content-3 .content-block-bg{
	background: url(../images/bkk-banner-openingstijden.jpg) center center no-repeat;
	background-size: cover;	
}
#content-4 .content-block-bg{
	background: url(../images/bkk-banner-contact.jpg) center center no-repeat;
	background-size: cover;	
}
#content-5 .content-block-bg{
	background: url(../images/bkk-banner-menu.jpg) center center no-repeat;
	background-size: cover;	
}
#content-6 .content-block-bg{
	background: url(../images/bkk-banner-werkenbijons.jpg) center center no-repeat;
	background-size: cover;	
}
#content-7 .content-block-bg{
	background: url(../images/bkk-banner-onderaan.jpg) center center no-repeat;
	background-size: cover;	
}

#content-3 .content-block:hover .content-block-bg{
	transform: scale(1.2);
	opacity: 0.48;
	transition: all 0.6s ease-in-out;	
}

#content-7 .content-block:after{
	height: 100%;
	width: 100%;
	background: -webkit-radial-gradient(center, ellipse cover, rgba(62,58,58,0.88) 0%, rgba(30,30,30,0.88) 100%);
	background: radial-gradient(ellipse at center, rgba(62,58,58,0.88) 0%, rgba(30,30,30,0.88) 100%);
}

#content-8{
	background: var(--main-color);
}
#content-8 .content-block:after{
	display: none;
}
#content-8 .content-block-title{
	margin-bottom: 24px;
}


/*
.info-blocks .info-blk-img,
.info-blocks .info-blk-txt{
	opacity: 0;
}
#info-block-1.animate .info-blk-img,
#info-block-2.animate .info-blk-txt{
	animation: left-in-animate 0.6s ease-out forwards;
}
#info-block-2.animate .info-blk-img,
#info-block-1.animate .info-blk-txt{
	animation: right-in-animate 0.6s ease-out forwards;
}
#content-5.animate .banner-blk-txt{
	animation: btm-fade-animate 0.6s ease-out forwards;
}

#content-2 .banner-blk-img,
#content-4 .banner-blk-img,
#content-2 .content-banner .banner-blk-txt,
#content-3 .banner-blk-txt,
#content-4 .banner-blk-txt{
	opacity: 0;
}

#content-2.animate .banner-blk-img,
#content-3.animate .banner-blk-txt.block-left,
#content-4.animate .banner-blk-img{
	animation: opac-in-animate 0.6s ease-in forwards;
}
#content-2.animate .content-banner .banner-blk-txt,
#content-3.animate .banner-blk-txt.block-right,
#content-4.animate .banner-blk-txt{
	animation: btm-fade-animate 0.6s ease-out forwards;
}
*/


/* FOOTER *****************************/

#footer {
	position: relative;
	display: block;
	background: var(--black-color);  
	color: var(--white-color);  
	padding: 0;
	font-size: 14px;
	z-index: 2;
}

.footer-content {
	position: relative;
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	padding: 24px 0px;
}
.footer-left{
	position: relative;
	display: flex;
	flex-direction: column;
	width: 33.3333%;	
}
.footer-center{
	position: relative;
	display: flex;
	flex-direction: column;
	text-align: center;
	align-items: center;
	width: 33.3333%;	
}

.footer-logo-main {
	position: relative;
	display: block;
	text-align: left;
}

.footer-logo {
	position: relative;
	display: inline-block;
	text-align: left;
	opacity: 1;
	transition: all 0.2s ease;
}
.footer-logo:hover {
	opacity: 0.64;
	transition: all 0.4s ease-out;
}

.footer-logo img {
	height: 40px;
	width: auto;
	display: inline-block;
	vertical-align: top;
}
.footer-right{
	position: relative;
	display: flex;
	flex-direction: row;
	justify-content: flex-end;
	align-items: center;
	width: 33.3333%;	
}

/*
.footer-social {
	position: relative;
	list-style: none;
	display: flex;
	flex-direction: row;
	margin: 0;
	padding: 0;
}

.footer-social li {
	margin: 0;
	margin-right: 16px;
	padding: 0;
}

.footer-social li a {
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: center;
	width: 32px;
	height: 32px;
	line-height: 32px;
	font-size: 18px;
	text-align: center;
	color: var(--grey-color);
	transition: all 0.2s ease;
}

.footer-social li a i {
	margin: auto;
}

.footer-social li a img {
	height: 24px;
	width: auto;
	margin-top: 1px;
	vertical-align: text-top;
}

.footer-social li a:hover {
	color: var(--sub-color);
	transition: all 0.4s ease;
}
*/
.footer-mob {
	display: none;
}

/* MODAL STYLES *****************************/

body.modal-open {
	padding: 0px!important;
	overflow-y: hidden;
}

.modal-backdrop {
	background: #000000;
}

.modal-backdrop.in {
	opacity: 0.9;
}

.modal-backdrop.show {
	opacity: 0.9;
}

.modal {
	z-index: 9999;
}

.modal-open .modal {

}

.modal.modal-static .modal-dialog {
	-webkit-transform: none;
	transform: none;
}

.modal-dialog {
	display: flex;
	flex-direction: column;
	justify-content: center;
	height: 100%;
	width: 33%;
	min-width: 620px;
	max-width: 640px;
	align-self: center;
	margin: 0px auto;
	color: #000000;
}

.modal-content {
	position: relative;
	background: #FFF;
	/*    border: 1px solid rgba(0, 0, 0, 0.2);*/
	border: 0px;
	box-shadow: 0px 0px 25px rgba(0, 0, 0, 0.1);
	border-radius: 5px;
}

.modal-content .close {
	position: absolute;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
	right: 48px;
	top: 48px;
	opacity: 1;
	margin: 0px;
	width: 24px;
	height: 24px;
	/*	border-radius: 50%;*/
	font-size: 18px;
	line-height: 24px;
	font-weight: 400;
	color: #000000;
	box-shadow: none;
	text-shadow: none;
/*
	color: #FFF;
	border: 1px solid #FFF;
*/
}
.modal-content .close:hover {
	color: var(--main-color); 
}

.modal-header {
	padding: 48px 48px 32px 48px;
	border: 0px;
}

.modal-header h3 {
	margin-bottom: 0px;
/*
	font-size: 26px;
	color: var(--sub-color);
*/
}

.modal-header p {
	margin: 0;
	color: var(--grey-color);
	/*    margin-bottom: 16px;*/
}

.modal-body {
	padding: 0px 48px;
}

.modal-padding .modal-body {
	padding-bottom: 48px;
}

.modal-body .form-btns {
	text-align: right;
}

.modal-body p {
	margin: 0;
	margin-bottom: 16px;
}

.modal-footer {
	padding: 24px 48px 48px 48px;
	border: 0px;
	text-align: left;
}

.dark-modal .modal-content {
	background: #262626;
	color: var(--white-color); 
}

.dark-modal .modal-content .close {
	right: 16px;
	top: 16px;
	color: var(--white-color); 
}
.dark-modal .modal-header,
.dark-modal .modal-footer{
	justify-content: center;
}
.dark-modal .modal-header h3 {
	font-size: 24px;
	color: var(--sub-color);
}
.modal-header-logo{
	display: flex;
	align-self: center;
	margin-bottom: 24px;
}
.modal-header-logo img{
	height: 40px;
	width:auto;
}
.modal-center{
	text-align: center;
}
.modal-center .modal-header{
	flex-direction: column;
	justify-content: center;
	align-items: center;
	padding: 48px 48px 16px 48px;
}

.modal-banner-image{
	position: relative;
	display: flex;
	margin-bottom: 48px;
}
.img-modal .modal-body{
	padding-bottom: 24px;
}
.img-modal .modal-body h3 {
	color: var(--sub-color);
}
.dark-modal .modal-content .modal-banner-image .close{
	top: 16px;
	right: 16px;
}
.img-modal .modal-footer {
	padding: 0px 48px 48px 48px;
}

/* LOADING ANIMATION *****************************/

.waiting {
	position: absolute;
	display: block;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background: var(--main-color);
	z-index: 9;
	text-align: center;
	vertical-align: middle;
}

.contact-form .waiting {
    width: 110%;
    left: -5%;
    height: 110%;
    top: -5%;
}

.form-wrapper .waiting {
	background: var(--main-color);
}

.loader-wrap {
	position: relative;
	display: flex;
	width: 100%;
	height: 100%;
	justify-content: center;
	opacity: 0;
	-webkit-animation: opac-in-animate 0.3s ease-out forwards;
	animation: opac-in-animate 0.3s ease-out forwards;
}

.lds-ripple {
	display: block;
	position: relative;
	width: 64px;
	height: 64px;
	display: flex;
	justify-content: center;
	/*	top: 150px;*/
	align-self: center;
}

.lds-ripple div {
	position: absolute;
	border: 4px solid var(--white-color);
	opacity: 1;
	border-radius: 50%;
	animation: lds-ripple 1s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}

.lds-ripple div:nth-child(2) {
	animation-delay: -0.5s;
}

@keyframes lds-ripple {
	0% {
		top: 28px;
		left: 28px;
		width: 0;
		height: 0;
		opacity: 1;
	}
	100% {
		top: -1px;
		left: -1px;
		width: 58px;
		height: 58px;
		opacity: 0;
	}
}


/* OTHER STYLES *****************************/

.clear {
	display: block;
	clear: both;
}

.no_border {
	border: none!important;
}

.mob-break {
	display: none;
}

.web-break {
	display: inline;
}

.show-mob {
	display: none
}


/* ANIMATIONS *****************************/

@-webkit-keyframes opac-in-animate {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}

@keyframes opac-in-animate {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}

@-webkit-keyframes opac-out-animate {
	0% {
		opacity: 1;
	}
	100% {
		opacity: 0;
	}
}

@keyframes opac-out-animate {
	0% {
		opacity: 1;
	}
	100% {
		opacity: 0;
	}
}

@-webkit-keyframes opac-pulse-animate {
	0%, 25%, 75%, 100% { opacity: 1;}
	50% { opacity: 0;}
}
@keyframes opac-pulse-animate {
	0%, 25%, 75%, 100% { opacity: 1;}
	50% { opacity: 0;}
}

@-webkit-keyframes btn-animate {
	0%, 100% {
		-webkit-transform: scale(1);
	}
	50% {
		-webkit-transform: scale(1.1);
	}
}

@keyframes btn-animate {
	0%, 100% {
		transform: scale(1);
	}
	50% {
		transform: scale(1.1);
	}
}

@-webkit-keyframes nav-animate {
	0% {
		-webkit-transform: translateY(-100%);
	}
	100% {
		-webkit-transform: translateY(0%);
	}
}

@keyframes nav-animate {
	0% {
		transform: translateY(-100%);
	}
	100% {
		transform: translateY(0%);
	}
}

@keyframes left-in-animate {
	0% {
		transform: translateX(-50%);
		opacity: 0;
	}
	100% {
		transform: translateX(0%);
		opacity: 1;
	}
}

@keyframes left-double-in-animate {
	0% {
		transform: translateX(-200%);
		opacity: 0;
	}
	100% {
		transform: translateX(0%);
		opacity: 1;
	}
}

@keyframes right-in-animate {
	0% {
		transform: translateX(50%);
		opacity: 0;
	}
	100% {
		transform: translateX(0%);
		opacity: 1;
	}
}

@keyframes right-double-in-animate {
	0% {
		transform: translateX(200%);
		opacity: 0;
	}
	100% {
		transform: translateX(0%);
		opacity: 1;
	}
}

@keyframes top-in-animate {
	0% {
		transform: translateY(-50%);
		opacity: 0;
	}
	100% {
		transform: translateY(0%);
		opacity: 1;
	}
}

@keyframes btm-in-animate {
	0% {
		transform: translateY(50%);
		opacity: 0;
	}
	100% {
		transform: translateY(0%);
		opacity: 1;
	}
}

@-webkit-keyframes btm-hover-animate {
	0% {
		-webkit-transform: translateY(0%);
		opacity: 1;
	}
	100% {
		-webkit-transform: translateY(-5%);
		opacity: 1;
	}
}

@keyframes btm-hover-animate {
	0% {
		transform: translateY(0%);
		opacity: 1;
	}
	100% {
		transform: translateY(-5%);
		opacity: 1;
	}
}

@-webkit-keyframes zoom-in-animate {
	0% {
		-webkit-transform: scale(0.5);
		opacity: 1;
	}
	100% {
		-webkit-transform: scale(1);
		opacity: 1;
	}
}

@keyframes zoom-in-animate {
	0% {
		transform: scale(0.1);
		opacity: 1;
	}
	100% {
		transform: scale(1);
		opacity: 1;
	}
}

@-webkit-keyframes zoom-pop-animate {
	0% {
		-webkit-transform: scale(0);
		opacity: 1;
	}
	90% {
		-webkit-transform: scale(1.2);
		opacity: 1;
	}
	100% {
		-webkit-transform: scale(1);
		opacity: 1;
	}
}

@keyframes zoom-pop-animate {
	0% {
		transform: scale(0);
		opacity: 1;
	}
	90% {
		transform: scale(1.2);
		opacity: 1;
	}
	100% {
		transform: scale(1);
		opacity: 1;
	}
}

@keyframes top-fade-animate {
	0% {
		transform: translateY(-20%);
		opacity: 0;
	}
	100% {
		transform: translateY(0%);
		opacity: 1;
	}
}

@-webkit-keyframes btm-fade-animate {
	0% {
		-webkit-transform: translateY(15%);
		opacity: 0;
	}
	100% {
		-webkit-transform: translateY(0%);
		opacity: 1;
	}
}

@keyframes btm-fade-animate {
	0% {
		transform: translateY(15%);
		opacity: 0;
	}
	100% {
		transform: translateY(0%);
		opacity: 1;
	}
}



/* RESPONSIVE STYLES *****************************/

.container {
	padding-right: 48px;
	padding-left: 48px;
}

.row {
	margin-right: -24px;
	margin-left: -24px;
}

.col, .col-1, .col-10, .col-11, .col-12, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-auto, .col-lg, .col-lg-1, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-auto, .col-md, .col-md-1, .col-md-10, .col-md-11, .col-md-12, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-auto, .col-sm, .col-sm-1, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-auto, .col-xl, .col-xl-1, .col-xl-10, .col-xl-11, .col-xl-12, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-auto {
	padding-right: 24px;
	padding-left: 24px;
}

@media (min-width: 1200px) {
	#navbar.sticky-ani {
		position: fixed;
		top: -100px;
	}
	#navbar.sticky {
		position: fixed;
		top: 0;
		transition: 0.4s ease-out top;
		-webkit-transition: 0.4s ease-out top;
	}
}

@media (min-width: 1921px) {
	

}

@media (min-width: 1600px) {
	
	.container{
		max-width: 1536px;
		max-width: 100%;
        padding-right: 72px;
        padding-left: 72px;
	}
}

@media (min-width: 1200px) and (max-width: 1599px) {
	body {}
	.container {
		max-width: 1320px;
		max-width: 100%;
		padding-right: 48px;
		padding-left: 48px;
	}
/*
	h1 {
		font-size: 40px;
	}
	h2 {
		font-size: 32px;
	}
	h3 {
		font-size: 24px;
	}
	a.button, .button {}
*/

}

@media (min-width: 1200px) and (max-width: 1399px) {

	#banner-main{
        padding: 0;
		min-height: 100dvh;
	}
}

@media (min-width: 992px) and (max-width: 1199px) {
	body {
		font-size: 14px;
	}
	.container {
		max-width: 100%;
		padding-left: 24px;
		padding-right: 24px;
	}
	#navbar .container {
		padding-left: 0px;
		padding-right: 0px;
	}
/*
	h1 {
		font-size: 40px;
	}
	h2 {
		font-size: 28px;
	}
	h3 {
		font-size: 18px;
	}
*/
	
	#banner-main{
        padding: 0;
		min-height: 100dvh;
	}
    .banner-text{
        min-width: initial;
        width: 100%;
    }

}

@media (min-width: 768px) and (max-width: 991px) {
	.container {
		max-width: 100%;
		padding-left: 24px;
		padding-right: 24px;
	}
	body {
		font-size: 14px;
	}
/*
	h1 {
		font-size: 40px;
	}
	h2 {
		font-size: 24px;
	}
	h3 {
		font-size: 18px;
	}
	#navbar {
		padding: 0px;
	}
	#navbar .container {
		padding-left: 0px;
		padding-right: 0px;
	}
*/
	#banner-main{
        padding: 0;
		min-height: 100dvh;
	}
    .banner-text{
        min-width: initial;
        width: 100%;
    }

}

@media (max-width: 767px) {
	:root {
		--xs-pad: 8px;
		--sm-pad: 12px;
		--mid-pad: 16px;
		--main-pad: 24px;
		--lg-pad: 48px;
		--xl-pad: 72px;
		--xxl-pad: 96px;
		--lg-neg: -48px;
		--main-neg: -24px;
		--main-font: 16px;
		--sm-font: 14px;
		--input-font: 14px;
		--button-font: 16px;
		--sm-icon: 18px;
		--main-icon: 32px;
		--large-icon: 96px;
	}
	.col, .col-1, .col-10, .col-11, .col-12, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-auto, .col-lg, .col-lg-1, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-auto, .col-md, .col-md-1, .col-md-10, .col-md-11, .col-md-12, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-auto, .col-sm, .col-sm-1, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-auto, .col-xl, .col-xl-1, .col-xl-10, .col-xl-11, .col-xl-12, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-auto {
		padding-right: 16px;
		padding-left: 16px;
	}
	body {
		font-size: 14px;
	}
	.container {
		padding-right: 16px;
		padding-left: 16px;
	}
	.row {
		margin-right: -16px;
		margin-left: -16px;
	}
	h1 {
		font-size: 24px;
	}
	h2 {
		font-size: 22px;
	}
	h3 {
		font-size: 16px;
		margin-bottom: 8px;
		line-height: 1.2;
	}
	h4 {
		font-size: 16px;
	}
	h2 br, h3 br {
		display: none;
	}
	p {
		margin-bottom: 1.6rem;
		margin-bottom: 16px;
	}
	.lead {
		font-size: 16px;
		margin-bottom: 16px;
		margin-bottom: 1.6rem;
	}
	h3+.lead {
		margin-top: 16px;
		margin-top: 1.6rem;
	}
	.sub-title {
		font-size: 11px;
	}
	input.button, .button, .button:visited, .w-btn, .l-btn, .c-btn {
	}
	a.button, .w-btn {}
	a.button, .button, .w-btn, .w-btn:visited {
		font-size: 14px;
	}
	.l-btn, .l-btn:visited {
	}
	.btn-clean {
		font-size: 14px;
		padding: 10px 16px;
	}
	#top-btn.clear-btn span{
		font-size: 12px;
	}
	.btn-clean i {
		height: 20px;
		line-height: 20px;
		width: 20px;
	}
	.mob-break {
		display: inline;
	}
	.web-break {
		display: none;
	}
	.hide-mob {
		display: none;
	}
	.show-mob {
		display: inline-block;
	}
	.form-col input:focus~.form-border, .form-col textarea:focus~.form-border {
		left: 16px!important;
		width: calc(100% - 32px);
	}
	.form-matd label, .form-matd input:invalid ~ label, .form-matd input.input-empty ~ label,
	.form-matd.form-col label, .form-matd.form-col input:invalid ~ label{
		left: 16px!important;
		font-size: 14px;
	}
	.contact-form .row{
		flex-direction: column;
	}	
	.form-col{
		width: 100%;
		flex: 1;
    	max-width: 100%;
		float: none;
	}
	#main-wrapper {
		overflow: hidden;
	}
	#navbar {
		padding: 0px;
	}
	#navbar .container {
		padding-left: 0px;
		padding-right: 0px;
	}
	.logo-main {
		display: block;
	}

	#banner-main{
        padding: 0;
		min-height: 100dvh;
	}
    .banner-main-icon{
        margin-bottom: 24px;
        font-size: 40px;
    }
    .banner-text{
        min-width: initial;
        width: 100%;
        padding: 0px;
	}
    .banner-main-text p {
        font-size: 14px;  
        margin-bottom: 8px;
    }
	
	
	body.modal-open {
		position: fixed;
		width: 100%;
	}
	.modal-backdrop.show {
		opacity: 1;
	}
	.modal-dialog {
/*		display: block;*/
		width: 100%;
		min-width: initial;
		max-width: initial;
		padding: 0 16px;
	}
	.modal-content {
		border-radius: 0;
		box-shadow: none;
	}
	.modal-body p{
		font-size: 14px;
	}
	.modal-header {
		padding: 24px;
	}
	.modal-body {
		padding: 0 24px;
	}
	.modal-footer{
		padding: 24px;
	}
	.modal-padding .modal-body {
		padding-bottom: 24px;
	}
	.modal-content .close {
		right: 16px;
		top: 16px;
	}
	
}

@media (min-width: 400px) and (max-width: 767px) {}

@media (min-width: 320px) and (max-width: 361px) {
	
	.img-modal .modal-body p{
		font-size: 12px;
	}
}

@media (max-width: 1199px) {
	body.menu-open {
		overflow: hidden;
		position: fixed;
		width: 100%;
	}
	#navbar.sticky-ani {
		position: fixed;
		top: -56px;
	}
	#navbar.sticky {
		position: fixed;
		top: 0;
		-webkit-transition: 0.5s ease-out top;
		transition: 0.5s ease-out top;
	}
	.menu-open #navbar {
		box-shadow: none;
		top: 0!important;
	}
	.menu-open.menu-ani .navbar-header {
		background: none;
		-webkit-transition: background 0.01s ease-out;
		transition: background 0.01s ease-out;
		-webkit-transition-delay: 0s;
		transition-delay: 0s;
	}
/*
	.navbar-header {
		justify-content: flex-end;
	}
*/
	#bg-wrapper{
		z-index: 999998;
	}
	#navbar {
		position: fixed;
		padding: 0px 24px;
		z-index: 999999;
	}
	.nav-toggle {
		display: block;
		margin: 16px 0px 16px 16px;
		z-index: 3;
	}
	.nav-right{
		padding: 0;
	}
	.nav-right .button{
		display: none;
	}
	.logo-main {
		margin: 0;
		margin: 12px 0px;
		z-index: 2;
	}
	.logo-main span{
		height: 32px;
	}
	.logo-main img {
		height: 32px;
		width: auto;
		vertical-align: top;
	}
	.nav-wrap {
		position: absolute;
		position: fixed;
		display: block;
		float: none;
		top: -384px;
		left: 0%;
		width: 100%;
/*		height: calc(100% - 72px);*/
		height: 384px;
		margin: 0;
		padding: 72px 16px 24px 16px;
		z-index: 1;
		opacity: 0;
		background: var(--black-color);
		overflow: hidden;
		overflow-y: auto;
		-webkit-transition: all 0.2s ease;
		transition: all 0.2s ease;
	}
	.menu-open .nav-wrap {
		display: flex;
		flex-direction: column;
/*		justify-content: center;*/
/*		height: 336px;*/
		left: 0px;
		top: 0;
		opacity: 1;
		-webkit-transition: all 0.4s ease-out;
		transition: all 0.4s ease-out;
	}
	#nav-main {
		opacity: 0;
		margin-left: initial;
	}
	.menu-open #nav-main {
		-webkit-animation: opac-in-animate 0.6s ease-in forwards;
		animation: opac-in-animate 0.6s ease-in forwards;
		-webkit-animation-delay: 0.3s;
		animation-delay: 0.3s;
	}
	.menu-ani #nav-main {
/*		right: -110%;*/
		opacity: 0;
	}
	.menu-open #navbar.sticky, .menu-open.sub-page #navbar {
		background: #000000;
		box-shadow: none;
	}
	.menu-open #navbar.sticky .logo-main-dark, .menu-open #navbar .logo-main-dark {
		display: none;
	}
	.menu-open #navbar.sticky .logo-main-light, .menu-open #navbar .logo-main-light {
		display: block;
	}
	.home-wrap .nav-icon span, .home-wrap .nav-icon span::before, .home-wrap .nav-icon span::after {
		background: var(--white-color);
	}
	.home-wrap .sticky .nav-icon span, .home-wrap .sticky .nav-icon span::before, .home-wrap .sticky .nav-icon span::after {
		background: var(--white-color);
	}
	.menu-open .nav-icon span, .home-wrap.menu-open .nav-icon span {
		background: none !important;
	}
	.menu-open .nav-icon span, .menu-open .nav-icon span::before, .menu-open .nav-icon span::after, .menu-open .home-wrap .sticky .nav-icon span::before, .menu-open .home-wrap .sticky .nav-icon span::after {
		background: var(--white-color);
	}
	#nav-main .show-mob {
		display: block!important;
		text-align: center;
	}
	
	#nav-main ul {
		align-self: center;
		margin: 0px 0px 24px 0px;
		padding: 0px;
	}
	#nav-main ul li {
		display: block;
		float: none;
		text-align: left;
		padding: 0px 0px;
		margin: 0 0px;
	}
	#nav-main ul li a {
		position: relative;
		display: block;
		text-align: center;
		width: 100%;
		padding: 0;
		font-size: 16px;
		line-height: 48px;
		font-weight: 400;		
		color: #FFFFFF!important;
	}
	#navbar.sticky #nav-main ul li a{
		color: var(--white-color);
	}
	
	.nav-copyright{
		display: block;
		position: absolute;
		width: calc(100% - 32px);
		font-size: 12px;
		left: 16px;
		bottom: 64px;
		color: var(--grey-color);
		text-align: center;
		opacity: 0;
	}
	.menu-open .nav-copyright{
		-webkit-animation: opac-in-animate 0.6s ease-in forwards;
		animation: opac-in-animate 0.6s ease-in forwards;
		-webkit-animation-delay: 0.3s;
		animation-delay: 0.3s;
	}

}

@-webkit-keyframes dropdown-animate {
	0% {
		height: 0;
		opacity: 1;
	}
	100% {
		height: 200px;
		opacity: 1;
	}
}

@keyframes dropdown-animate {
	0% {
		height: 0;
		opacity: 1;
	}
	100% {
		height: 200px;
		opacity: 1;
	}
}

@-webkit-keyframes mob-dropdown-animate {
	0% {
		height: 0;
		opacity: 1;
	}
	100% {
		height: 96px;
		opacity: 1;
	}
}

@keyframes mob-dropdown-animate {
	0% {
		height: 0;
		opacity: 1;
	}
	100% {
		height: 96px;
		opacity: 1;
	}
}

@media (max-width: 767px) {
/*
	#navbar-header {}
	.logo-main {
		width: calc(100% - 72px);
		text-align: center;
	}
*/
}

/*@media only screen (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {*/

@media only screen and (min-height: 600px) and (min-width: 768px) and (orientation: portrait) {}

/******** iPhone Fixes ********/

/* iPhone 8 with notch */

@media only screen and (device-width: 375px) and (device-height: 667px) and (-webkit-device-pixel-ratio: 2) {}

/* iPhone X with notch */

@media only screen and (width: 375px) and (-webkit-device-pixel-ratio: 3) {}

/* iPhone XR with notch */

@media only screen and (width: 414px) and (-webkit-device-pixel-ratio: 2) {}

/* iPhone XS Max with notch */

@media only screen and (width: 414px) and (-webkit-device-pixel-ratio: 3) {}