:root {
	--blue: #006eb7;
}
* {
	box-sizing: border-box;
}
body {
	font-family: "Poppins", sans-serif;	
	margin: 0 0;
	padding: 0 0;
}
img {
	max-width: 100%;
}
.header {
	background-color: var(--blue);
	height: 116px;
	padding-top: 10px;
	text-align: center;
	position: absolute;
	top: 0;
	left: 0px;
	width: 100%;
}
.logo {
	width: 360px;
	height: 100px;
	margin-bottom: 20px;
}
.start {
    position: relative;
    height: 50vh;
	min-height: 450px;
    background-color: #FFF;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.start .bg-img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: .5;
}
.start .container {
	position: relative;
	z-index: 5;
	font-family: Rubik;
	color: #FFF;
	padding: 20px;
}
.container {
	max-width: 1280px;
	margin: 0 auto;
}
/*
.header h1 {
    text-transform: uppercase;
    border: 2px #FFF solid;
    display: inline-block;
    padding: 10px;
    font-size: 40px;
}
.header h1 strong {
    background-color: #FFF;
    display: inline-block;
    padding: 10px 20px;
    color: #4c88f7;
}
*/
.start h1 {
	color: #FFF;
	font-weight: 300;
	font-size:24px;
}
.start h3 {
	color: var(--blue);
	font-family: Rubik;
}
.btn {
	background-color: #FFCC00;
	border-radius: 10px;
	padding: 10px 20px;
	color: #000;
	text-decoration: none;
	display: inline-block;
	border: 0;
	box-shadow: 0px 10px -5px rgba(0,0,0,.5);
}
.section {
    position: relative;
    padding: 0px 0 0;
    margin: 70px 0 50px;
}
.section img.bg-img {
    position: absolute;
    top: 0px;
    width: 48vw;
    left: 50vw;
    height: 600px;
	object-fit: cover;
    border-radius: 30px;
}
.section .container {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}
.section .col {
    flex: 0 0 46%;
    font-size: 18px;
}
.start .carousel {
    position: relative;
    margin: 10px 15px;
    width: calc(100vw - 30px);
}
.slogan {
    font-size: 46px;
    font-weight: 700;
    margin: 0 0 15px;
    color: var(--blue);
}
.col {
	flex: 0 0 100%;
	padding: 20px;
}
.col.picture {
	
}
.col.picture img {
	width: 100%;
	height: 300px;
	object-fit: cover;
}
iframe {
	width: 1280px;
	max-width: 100%;
	margin: 20px auto;
	height: 500px;
	display: block;
}
h2 {
	font-size: 36px;
	margin: 30px 0 15px;
}
h3 {
	font-size: 26px;
	margin: 10px 0 15px;
}
h2 + h3 {
	margin-top: -10px;
	color: var(--blue);
}

.offer-section {
	margin: 0 auto 35px;
	text-align: center;
}
.offer-section h3 {
	font-weight: 400;
	font-size: 24px;
}
.offer-section .pics {
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
	justify-content: center;
}
.offer-section .pics img {
	flex: 0 0 30%;
	width: 30%;
	height: 280px;
	object-fit: cover;
}
.offer-section .logos {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 30px;
}
.offer-section .logos img {
	height: 180px;
	object-fit: scale-down;
	width: 100%;
}
@media (max-width: 992px) {
	h2 {
		font-size: 22px;
		line-height: 26px;
	}
	.offer-section h3 {
		font-size: 16px;
	}
	h4 {
		font-size: 16px;
		line-height: 18px;
	}
	.offer-section .logos {
		flex-wrap: wrap;
	}
	.offer-section .logos img {
		flex: 0 0 42%;
		width: 30%;
		height: 80px;
		display: block;
	}
	.offer-section .pics img {
		flex: 0 0 46%;
		height: 120px;
	}
}
@media (min-width: 992px) {
	.col {
		flex: 0 0 50%;
		padding: 20px;
	}	
}
@media (max-width: 992px) {
	.section {
		margin: 20px 0 30px;
	}
	.section .col {
		font-size: 16px;
		flex: 0 0 100%;
	}
	.section img.bg-img {
		top: 150px;
		left: 5%;
		width: 90%;
		height: 300px;
		border-radius: 10px;
	}
	.logo {
		margin-bottom: 340px;
	}
	.slogan {
		font-size: 30px;
		line-height: 32px;
	}
	.start {
		height: auto;
		min-height: initial;
		padding: 50px 0;
		background-color: #f2f2f2;
		margin: 50px 0;
	}
}