@import url('https://fonts.googleapis.com/css2?family=Oleo+Script:wght@400;700&family=Ubuntu:wght@400;500;700&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: "Ubuntu", sans-serif;
	font-weight: 400;
	font-style: normal;
}
h1,h2,h3,h4,h5,h6{
	font-family: "Oleo Script", system-ui!important;
	font-weight: 700;
}


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

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

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

.banner{
	height:300px;
	background:url(../img/banner.jpg) top left;
	background-size:auto 100%;
}

.bannersub{
	width: 100%; float: left;
	text-align: center;
	padding:20px 0;
}
.bannersub .container{
	max-width:950px;
}
.bannersub h1{font-size:30px; margin:0 0 10px; color:#AB5780;}
.bannersub p{font-size:15px; line-height:24px;}

.section{padding:20px 0; position: relative;}
.section .container{position: relative; z-index: 2;}
.h2{font-size:30px; font-weight:600;margin:0 0 10px;}
.para{font-size:14px; line-height:23px;margin:0 0 20px;}
.para:last-child{margin:0;}

.flexgroup{
	width: 100%; float: left;
	display: flex;
	flex-wrap:wrap;
	justify-content:center;
}
.flexgroupbox{
	flex:1;
	min-width:33%;
	max-width:33%;
	padding:15px;
	background:#fff;

	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: flex-start;

	box-shadow:0 0 20px rgba(0,0,0,.1);
}
.flexgroupbox img{
	width: 100%;
	float:left;
	margin:0 0 10px;
	border-radius:20px;
}
.flexgroupbox h4{
	font-size:20px;
}
.flexgroupbox p{
	font-size:15px;
}

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

.paracenter{
	font-size:18px;
	text-align: center;
	line-height:1.4;
}
.section2 .container{
	max-width:1400px;
	padding:0;
}

.flexgroup2{
	width: 100%; float: left;
	display: flex;
	flex-wrap:wrap;
}
.flexgroupbox2{
	width:50%;
	padding:20px;
	border-radius:20px;
	border:solid 1px #ccc;
}
.flexgroupbox2 img{
	width: 100%; float: left;
	margin:0 0 10px;
	border-radius:20px;
}
.flexgroupbox2 h2{
	font-size:20px;
	width: 100%; float: left;
	margin:0 0 10px;
}
.flexgroupbox2 h2 span{
	color:#FF5252;
}
.flexgroupbox2 p{
	width: 100%; float: left;
	margin:0 0 10px;
	font-size:15px;
}
.flexgroupbox2 p strong{
	display: flex;
	margin:6px 0;
	color:#ff7400;
}
.flexgroupbox2 p strong:before{
	content:'';
	min-width:5px;
	width: 5px;
	height: 5px;
	margin:9px 8px 0 0;
	border-radius:10px;
	background:#ff7400;
}

.buttonbuy{
	float:left;
	padding:10px 30px;
	border-radius:10px;
	background:#ff4d00;
	color:#fff!important;
}
.buttonbuy:hover{
	background:#000;
}


.flexgroupbox2:first-child,
.flexgroupbox2:nth-child(2){
	border-top:solid 1px #ccc;
}
.flexgroupbox2:first-child,
.flexgroupbox2:nth-child(3),
.flexgroupbox2:nth-child(5){
	border-right:none;
}

.imgbox{
	width: 100%; float: left;
	position: relative;
	border-radius:30px;
	overflow: hidden;
	border:solid 3px #ff7400;
}
.imgbox img{
	width: 100%;
}
.imgbox p{
	position: absolute;
	bottom: 0;
	padding:20px;
	font-size:14px;
	text-align: center;
	background:rgba(0,0,0,.5);
	color:#fff;
}

.section4{
	background:url(../img/img13.jpg) no-repeat center;
	background-size:cover;
}
.section4 .container{
	max-width:500px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.formbox{
	width: 100%; float: left;
	padding:20px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	min-height:300px;
}
.formbox input{
	width:100%;
	height:50px;
	float:left;
	border:none;
	background:#fff;
	padding:0 10px;
	font-size:15px;
	margin:0 0 10px;
	border-radius:6px;
}
.buttonSubmit{
	width: 100%; float: left;
	height:50px;
	background:var(--orange-light);
	color:var(--white);
	cursor: pointer;
	border:none;
	outline:0;
	border-radius:6px;
}
.buttonSubmit:hover{
	color:var(--black);
	background:var(--white);
}


footer{
	background:whitesmoke;
	text-align:center;
	padding:20px 0;
}
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(--blue-dark);
	margin:0 6px;
}
.footerlinks a:hover{
	text-decoration: underline!important;
}
.copyrights{
	font-size:14px;
}

.cookiesection{
	width:100%; float:left;
	min-height:calc(100vh - 63px);
	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(--orange-dark)!important;
	border:solid 1px var(--orange-dark);
}
.backbutton:hover{
	background:var(--orange-dark);;
	color:#fff!important;
}

@media (max-width:800px){
	.bannersub h1{font-size:28px;}
	.flexgroupbox{width:100%; min-width:100%; max-width:100%;}
	.flexgroupbox2{width:100%; border:solid 1px #ccc; border-left:none; border-right:none; margin:0 0 10px;}
	.h2{font-size:20px;}
	.para{font-size:14px;}
	footer .container{flex-direction: column; align-items: center; text-align: center; }
	.imgbox p{
		position: relative;
		background:#ff7400;
	}
}

/*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: #fff;
    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*/