@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@100..900&display=swap');

:root{
	--blue : #368CE7;
	--blue-dark : #1666BA;
	--blue-light : #7AB3EF;

	--red : #FF0000;
	--red-dark : #A70000;
	--red-light : #FF5252;

	--green : #76BA1B;
	--green-dark : #4C9A2A;
	--green-light : #ACDF87;

	--orange : #ff7400;
	--orange-dark : #ff4d00;
	--orange-light : #ff9a00;

	--black : #000;
	--dark : #333;
	--light : #666;

	--white : #fff;
	--white-dark : #ccc;
	--white-light : #eee; 
}

*{
	box-sizing:border-box;
	margin:0;
	padding:0;
}

p{margin:0;}
a,
button,
input,
textarea{
	outline:0;
	transition: all .5s ease;
}
a{ text-decoration:none!important;}

html {
	scroll-behavior:smooth;
}

body{
	font-family: "Montserrat", sans-serif;
	font-weight: 400;
	font-style: normal;
}
h1,h2,h3,h4,h5,h6{
	font-weight: 700;
}

header, .banner, .section, .h2, .para, .flexbox, footer{
	width:100%; float:left;
}

header{
	display: flex;
	align-items: center;
	justify-content: center;
	padding:10px 15px;
	box-shadow:0 2px 12px rgba(0,0,0,.2);
	font-size:30px;
	font-weight:800;
	color:var(--red-dark);
}

.container{
	width:100%;
	max-width:1200px;
	padding:0 15px;
}

.banner{
	background:url(../img/banner1.jpg) no-repeat top center #7e5631;
	background-size:auto 100%;
	padding:20px 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	color:#fff; 
}
.banner .container{
	display: flex;
	align-items: center;

}
.banner img{
	width:50%;
	border:solid 3px #fff;
}
.bannercontent{
	flex:1;
	padding: 0 0 20px;
}
.banner h1{font-size:36px; text-align: center; max-width:1200px; margin:0 0 15px;}
.banner p{font-size:16px; line-height:1.6; padding:0 0 0 20px;}


.section{padding:20px 0; position: relative;}
.section .container{position: relative; z-index: 2;}
.h2{font-size:30px; margin:0 0 10px; text-align: center;}
.h4{font-size:22px; font-weight:800; margin:0 0 10px; color:#000;}
.para{font-size:15px; line-height:23px;margin:0 0 20px;}
.para strong{font-weight:700;}
.para:last-child{margin:0;}
.para span{
	font-weight:700;
}
.paracenter{text-align: center; font-size:16px; line-height:1.5;}
.flexbox{display:flex; align-items:flex-start; margin:0 0 20px; position: relative;}
.flexbox:last-child{margin:0;}
.flexbody{flex:1;}
.flexbody:first-child{padding:0 30px 0 0;}
.flexbody:last-child{padding:0 0 0 30px;}
.flexbox > img{width:100%; max-width:50%; position:sticky; top:0;}
.flexbody img{
	width: 100%; float: left;
	margin:0 0 15px;
}

.ul{
	width: 100%; float: left;
	margin:0 0 5px;
	padding:0;
	list-style: none;
}
.ul li{
	width: 100%; float: left;
	margin:0 0 10px;
	font-size:15px;
	line-height:1.3;
	position: relative;
	padding:0 0 0 20px;
}
.ul li:before{
	content:'';
	width:10px;
	height:10px;
	border-radius:20px;
	border:solid 2px #333;
	position: absolute;
	left: 0;
	top:3px;
}
.ul li strong{
	font-weight:600;
	color:#000;
}

.section1 .flexbox{
	align-items: center;
}

.section2{
	background:#ecb08d;
}

.flexgroup{
	width: 100%; float: left;
	display: flex;
	justify-content: space-between;
	flex-wrap:wrap;
}
.flexgroupbox{
	width:49%;
	padding:15px;
	background:#fff;
	box-shadow:0 0 18px rgba(0,0,0,.1);
	margin:0 0 20px;

	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: flex-start;
}
.flexgroupbox img{
	width: 100%;
	float:left;
	margin:0 0 10px;
}
.flexgroupbox h4{
	font-size:17px;
	color:#ff7400;
}

.section3{
	background:url(../img/img4.jpg) fixed;
	background-size:cover;
}
.section3:before{
	content:'';
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	background:rgba(0,0,0,.6);
}
.section3 .container{
	min-height:300px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
}

.section3 .container > .h2, 
.section3 .container > .para{
	color:#fff;
	text-align: center;
}

.section3 .flexgroupbox{
	width:49%;
}

.section4 .container{
	max-width:1400px;
}

.section4 .flexbox:nth-child(even){
	padding:20px;
	background:#efefef;
}

.section6{
	background:url(../img/img20.jpg) fixed;
	background-size:cover;
}
.section6 .flexbody{
	padding:20px!important;
	background:#fff;
}

.section7 .container{
	display: flex;
	align-items: center;
	justify-content: center;
}

.formbox{
	width: 100%; float: left;
	max-width:800px;
	padding:20px;
	display: flex;
	flex-wrap:wrap;
	justify-content: space-between;
}
.formbox input{
	width:49%;
	height:50px;
	float:left;
	border:none;
	border:solid 1px #ccc;
	background:#fff;
	padding:0 10px;
	font-size:15px;
	margin:0 0 10px;
}
.formbox input:focus{
	border-color:#1666BA;
}
.buttonSubmit{
	width:49%;
	height:50px;
	padding:0;
	display: flex;
	align-items: center;
	justify-content: center;
	background:var(--red-light);
	color:var(--white)!important;
	cursor: pointer;
	outline:0;
	border:none;
}
.buttonSubmit:hover{
	background:#000;
}

.buttonplay{
	display: inline-block;
	padding:10px 30px;
	background:var(--red-light);
	color:#fff!important;
	font-size:14px;
	font-weight:700;
}
.buttonplay:hover{
	background:var(--red);
}


footer{
	background:#222;
	text-align:center;
	padding:20px 0;
	color:#fff;
}
footer .container{
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.footerlinks{
	flex:1;
	display: inline-flex;
	align-items: center;
}
.footerlinks a{
	font-size:14px;
	color:var(--orange-light);
	margin:0 6px;
}
.footerlinks a:hover{
	text-decoration: underline!important;
}
.copyrights{
	font-size:14px;
}

.cookiesection{
	width:100%; float:left;
	min-height:calc(100vh - 126px);
	padding:40px 0;
}
.cookiesection h2{
	font-size:22px;
	font-weight:600;
}
.cookiesection p{
	font-size:14px;
	line-height:20px;
}
.cookiesection p strong{
	font-weight:600;
}
.cookiesection p .bolder{
	display: block;
	margin:30px 0 10px;
	font-weight:600;
	font-size:16px;
	text-align:center;
}

.backbutton{
	float: left;
	display: inline-flex;
	align-items: center;
	margin:30px 0 20px;
	padding:6px 8px;
	border-radius:4px;
	font-size:13px;
	font-weight:600;
	color:var(--blue-dark)!important;
	border:solid 1px var(--blue-dark);;
}
.backbutton img{
	width:15px;
	margin:0 5px 0 0;
	transition: all .3s ease;
}
.backbutton:hover{
	background:var(--blue-dark);;
	color:#fff!important;
}
.backbutton:hover img{filter:saturate(0) brightness(10);}

@media (max-width:800px){
	.banner h1{
		font-size:22px;
	}
	.banner .container{
		flex-direction: column;
	}
	.banner .container img{
		width:100%;
		margin:0 0 10px;
	}
	.banner p{
		padding:0;
	}
	.flexgroupbox{width:100%;}
	.h2{font-size:20px;}
	.para{font-size:14px;}
	.flexbox{flex-direction:column;}
	.flexbox > img{max-width:100%; order:1; margin:0 0 15px; position: relative;}
	.flexbody{padding:0!important; order:2;}
	footer .container{flex-direction: column; align-items: center; text-align: center;}
	.formbox{padding:10px 0 0;}
	.formbox input, .buttonSubmit{
		width: 100%;
	}
}


/*Cookie Consent Begin*/
#cookieConsent {
    background-color: rgba(20,20,20,0.8);
    min-height: 26px;
    font-size: 14px;
    color: #ccc;
    line-height: 26px;
    padding: 8px 0 8px 30px;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    display: none;
    z-index: 9999;
}
#cookieConsent a {
    color: #4B8EE7;
    text-decoration: none;
}
#closeCookieConsent {
    float:right;
    display: inline-block;
    cursor: pointer;
    height: 20px;
    width: 20px;
    margin: -15px 0 0 0;
    font-weight: bold;
}
#closeCookieConsent:hover {
    color: #FFF;
}
#cookieConsent a.cookieConsentOK {
    background-color: #ffc000;
    color: #000;
    display: inline-block;
    padding: 0 20px;
    cursor: pointer;
    float: right;
    margin: 0 60px 0 10px;
}
#cookieConsent a.cookieConsentOK:hover {
    /*background-color: #ffc000;*/
}
/*Cookie Consent End*/