@font-face {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 400;
    src:
        url('/files/font/Poppins-Regular.woff2') format('woff2'),
        url('/files/font/Poppins-Regular.woff') format('woff');
}

@font-face {
    font-family: 'Poppins';
    font-style: italic;
    font-weight: 400;
    src:
        url('/files/font/Poppins-Italic.woff2') format('woff2'),
        url('/files/font/Poppins-Italic.woff') format('woff');
}

@font-face {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 200;
    src:
        url('/files/font/Poppins-ExtraLight.woff2') format('woff2'),
        url('/files/font/Poppins-ExtraLight.woff') format('woff');
}

@font-face {
    font-family: 'Poppins';
    font-style: italic;
    font-weight: 200;
    src:
        url('/files/font/Poppins-ExtraLightItalic.woff2') format('woff2'),
        url('/files/font/Poppins-ExtraLightItalic.woff') format('woff');
}

@font-face {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 700;
    src:
        url('/files/font/Poppins-Bold.woff2') format('woff2'),
        url('/files/font/Poppins-Bold.woff') format('woff');
}

@font-face {
    font-family: 'Poppins';
    font-style: italic;
    font-weight: 700;
    src:
        url('/files/font/Poppins-BoldItalic.woff2') format('woff2'),
        url('/files/font/Poppins-BoldItalic.woff') format('woff');
}

@font-face {
  font-family: 'icomoon';
  src: url('/files/libs/icomoon/fonts/icomoon.eot');
  src: url('/files/libs/icomoon/fonts/icomoon.eot') format('embedded-opentype'),
       url('/files/libs/icomoon/fonts/icomoon.ttf') format('truetype'),
       url('/files/libs/icomoon/fonts/icomoon.woff') format('woff'),
       url('/files/libs/icomoon/fonts/icomoon.svg') format('svg');
  font-weight: normal;
  font-style: normal;
}

html {
	font-size: 62.5%;
}

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

body {
	font-family: 'Poppins';
	font-size: 1.8rem;
	font-weight: 200;
	line-height: 1.3;
	overflow-x: hidden;
	opacity: 0;
	transition: opacity .4s;
}

body.active {
	opacity: 1;
	transition: opacity .4s;
}

body.overflow-hidden {
	overflow: hidden;
}

body > * {
	visibility: hidden;
	opacity: 0;
	transition: visibility 0s .8s, opacity .8s, transform .8s;
	transform: translateX(-20%);
}

body > *.in-view,
footer.main-footer,
body .footer-bottom,
body > *:first-child,
body > nav,
body > .main-header {
	visibility: visible;
	opacity: 1;
	transform: translateX(0);
	transition: visibility 0s, opacity .8s, transform .8s;
}

h1,
.h1 {
	font-size: 4rem;
	margin-bottom: 3rem;
}

h3,
h4 {
	margin-bottom: 1.5rem;
	font-size: 2.2rem;
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
	font-weight: 400;
}

img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
}

strong {
	font-weight: 700;
}

section {
	padding: 20rem 3rem;
    width: 100%;
    max-width: 137rem;
    margin: 0 auto;
}

section.agb {
	padding-top: 10rem;
	padding-bottom: 10rem;
}

section a {
	position: relative;
	color: #d10c11;
	text-decoration: none;
}

footer .contact a {
	position: relative;
}

section a:after,
footer .contact a:after {
	content: '';
	display: block;
	position: absolute;
	bottom: 0rem;
	left: 0;
	width: 100%;
	height: .1rem;
	background-color: #d10c11;
	transition: all .4s;
}

footer .contact a:after {
	background-color: #ffffff;
}

section a:hover:after,
footer .contact a:hover:after {
	left: 50%;
	width: 0;
	transition: all .4s;
}

i {
	font-family: 'icomoon';
	vertical-align: middle;
}

p {
	margin-bottom: 2rem;
}

p:last-child {
	margin-bottom: 0;
}

section ul {
	list-style: none;
	margin-bottom: 4rem;
	line-height: 1.4;
}

section ul li {
	position: relative;
	display: table;
	padding-left: 2rem;
}

section ul li:before {
	content: '';
	display: table-cell;
	width: 1rem;
	height: .1rem;
	background-color: #2860d9;
	position: absolute;
	left: 0;
	top: 50%;
}

/* Main Settings */

.content-wrapper {
	position: relative;
}

.bg-blue {
	padding: 10rem 0 !important;
	background-color: #2860d9;
	color: #ffffff;
}

.bg-img {
	position: relative;
	padding: 10rem 0 !important;
	color: #ffffff;
    background-image: url(/files/img/img-bg.jpg);
    background-size: cover;
    background-position: bottom;
    background-attachment: fixed;
}

.bg-img .bg {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
	background-color: rgb(40 96 217 / 80%);
}

.bg-img .bg img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.bg-white {
	background-color: #ffffff !important;
	color: #2860d9 !important;
}

.base-width,
.main-header .inner {
    width: 100%;
    max-width: 137rem;
    margin: 0 auto;
    padding: 0 3rem;
}

.full-width {
    max-width: 100%;
    padding: 0;
}

.button {
	display: block;
	width: auto;
	width: 33rem;
	padding: 2rem;
	background-color: #2860d9;
	color: #ffffff;
	border: 1px solid transparent;
	text-decoration: none;
	font-size: 2.2rem;
	margin-bottom: 2rem;
	transition: all .4s;
}

.button:hover {
	color: #2860d9;
	background-color: transparent;
	border: 1px solid #2860d9;
	transition: all .4s;
}

.button i {
	margin-right: 2rem;
	font-size: 3rem;
}

.button:last-child {
	margin-bottom: 0;
}

.button:after {
	display: none;
}

/* Header Area */

.header-area {
	position: relative;
}

.header-area > a {
	position: static;
}

.header-area .slider-wrapper {
	width: 100%;
    height: auto;
    height: calc(100vh - 14.9rem);
    min-height: 40rem;
    overflow: hidden;
}

.header-area .slider-wrapper img {
    width: 100%;
    height: 100% !important;
    object-fit: cover;
    object-position: bottom;
}

.header-area .logo img {
	height: auto !important;
}

.header-area .slider-wrapper {
	position: relative;
}

.header-area .slider-wrapper::after {
	content: '';
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	background-color: rgba(255, 255, 255, .5);
}

.header-area .scroll {
    width: 3.5rem;
    height: 6rem;
    position: absolute;
    bottom: 3.5rem;
    left: 50%;
    transform: translateX(-50%);
    border: 0.3rem solid #ffffff;
    border-radius: 10px;
}

.header-area .scroll::after {
    content: '';
    display: block;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 1rem;
    height: 1rem;
    background: white;
    border-radius: 50%;
    animation: scrollEffect;
    animation-duration: 1.5s;
    animation-iteration-count: infinite;
}

.header-area .logo {
	position: absolute;
	top: 30%;
	left: 50%;
	transform: translate(-50%, -50%);
}

/* Main Header */

.main-header {
	z-index: 1000;
	position: sticky;
	top: 0;
    padding: 2.5rem 0;
    border-bottom: .4rem solid #2860d9;
	box-shadow: 0px 0px 40px 0px rgb(0 0 0 / 50%);
    background-color: #ffffff;
}

.main-header .inner {
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	justify-content: space-between;
	align-items: center;
}

.main-header .logo {
	width: 31rem;
}

.main-header .burger {
	position: relative;
	max-width: 5.5rem;
	width: 100%;
	height: 4rem;
	background-color: #2860d9;
	cursor: pointer;
	margin-left: 4rem;
}

.main-header .burger .inner {
    position: absolute;
    display: block;
    top: 50%;
    left: 50%;
    width: 4rem;
    height: 2.3rem;
    transform: translate(-50%, -50%);
    padding: 0;
    border-top: 1px solid white;
    border-bottom: 1px solid white;
    pointer-events: none;
}

.main-header .burger .inner:after,
.main-header .burger .inner:before {
	content: '';
	position: absolute;
	width: 100%;
	height: .1rem;
	background-color: #ffffff;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
}

nav.main-navigation {
    position: fixed;
    top: 0;
    bottom: 0;
    right: 0;
    background-color: #2860d9;
    z-index: 10000;
    color: #ffffff;
    max-width: 50rem;
    width: 100%;
    box-shadow: 0px 0px 40px 0px rgb(0 0 0 / 50%);
    transform: translateX(100%);
    transition: transform .4s;
}

nav.main-navigation.is-active {
    transform: translateX(0);
    transition: transform .4s;
}

nav.main-navigation a {
	color: #ffffff;
	text-decoration: none;
}

.main-navigation .inner {
    padding: 8rem 4rem;
    font-size: 2.5rem;
}

.main-navigation li {
	margin-bottom: 1.5rem;
}

.main-navigation li a {
	display: block;
}

.main-navigation .close:after,
.main-navigation .close:before {
    content: '';
    position: absolute;
    width: 100%;
    height: .1rem;
    background-color: #ffffff;
    left: 50%;
    top: 50%;
    pointer-events: none;
}

.main-navigation .close:before {
    transform: translate(-50%, -50%) rotate(-45deg);
}

.main-navigation .close:after {
    transform: translate(-50%, -50%) rotate(45deg);
}

.main-navigation .close {
    width: 4rem;
    height: 4rem;
    position: absolute;
    top: 2rem;
    right: 4rem;
    cursor: pointer;
}

nav ul {
	list-style: none;
}

/* Row Tile */

.row-tile {
	position: relative;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
}

.row-tile.image-first {
	flex-direction: row-reverse;
}

.row-tile.image-first .text {
    padding: 3rem 3rem 3rem 14rem;
}

.row-tile.image-first .image {
	right: auto;
	left: 0;
}

.row-tile .image a:after {
	display: none;
}

.row-tile .text {
    width: calc(50% + 10rem);
    flex-shrink: 1;
    height: 100%;
    padding: 3rem 14rem 3rem 3rem;
    background-color: #2860d9;
    color: #ffffff;
}

.row-tile .image {
	position: absolute;
    right: 0;
    flex-shrink: 1;
    height: 100%;
    width: 50%;
}

.row-tile .image.bottom {
	top: 5rem;
}

.row-tile .text.bottom {
	transform: translateY(5rem);
}

.row-tile .image img {
	height: 100%;
	width: 100%;
	object-fit: cover;
}

.row-tile > *,
.course-item > * {
	box-shadow: 0px 0px 40px 0px rgb(0 0 0 / 50%)
}

section.intro {
	padding-bottom: 25rem;
}

/* Driverlicence */

.driverlicence .box-wrapper {
	margin-top: 10rem;
	margin-bottom: 10rem;
}

.driverlicence .content {
	background-color: #ffffff;
	box-shadow: 0px 0px 40px 0px rgb(0 0 0 / 50%);
	color: #2860d9;
	padding: 3rem;
}

.column-9 {
	width: calc((100% / 3 * 2) - 1.7rem);
}

.box-wrapper {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-gap: 5rem;
}

.box-item {
	display: flex;
	flex-direction: row;
	align-items: flex-start;
	background-color: #ffffff;
	box-shadow: 0px 0px 40px 0px rgb(0 0 0 / 50%);
	color: #2860d9;
	padding: 2rem;
}

.box-item.w100 {
	grid-column-start: 1;
	grid-column-end: 3; 
}

.box-item i {
	font-size: 8rem;
	padding-top: 2rem;
	padding-bottom: 2rem;
	padding-right: 4rem;
	padding-left: 2rem;
}

/* About */

.about img {
	object-position: 0 5%;
}

/* Courses */

.courses .h1 {
	margin-bottom: 4rem;
}

.course-container {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: space-between;
}

.course-item {
	width: calc(50% - 8rem);
	margin-bottom: 6rem;
}

.course-item img {
	z-index: 1;
	position: relative;
}

.course-item .content {
    padding: 15rem 3rem 3rem 3rem;
    margin-top: -10rem;
    background-color: #ffffff;
    color: #2860d9;
    z-index: 0;
}

.course-item:nth-child(odd) .content {
    transform: translateX(5rem);
}

.course-item:nth-child(even) img {
    transform: translateX(-5rem);
}
	
.course-item.first img {
	object-position: 50% 50%;
}

.course-item img {
	height: 28rem;
	width: 100%;
	object-fit: cover;
	object-position: bottom;
}

/* contact */

.contact .social-container {
	display: flex;
	flex-wrap: wrap;
}

.contact .row-tile .text {
	background-color: #ffffff;
	color: #2860d9;
}

.contact .social-icon {
	margin-top: 10rem;
}

.contact .social-container a {
	background-color: #ffffff;
	color: #2860d9;
	margin-right: .5rem;
	margin-bottom: 1rem;
	font-size: 1.8rem;
	height: 100%;
	border: 1px solid #2860d9;
	width: 21rem;
}

.contact .social-container a:hover {
	background-color: #2860d9;
	border: 1px solid transparent;
	color: #ffffff;
}

.contact .social-container a:last-child {
	margin-right: 0;
}

/* Footer */

footer.main-footer {
	padding-bottom: 0 !important;
}

footer ul,
.footer-bottom ul,
nav.main-navigation {
	list-style: none;
}

footer .main-wrapper {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: wrap;
    padding-bottom: 10rem;
}

footer .main-wrapper > * {
	padding-right: 2rem;
}

footer .main-wrapper > * {
    width: calc(100% / 3 - 2rem);
}

footer .social-icon i {
	font-size: 4rem;
	margin-right: 1rem;
}

footer .navigation li {
    padding-bottom: 0.7rem;
    padding-top: 0.7rem;
    border-bottom: 1px solid #ffffff;
    padding-left: 1rem;
    width: 75%;
}

footer .navigation li:last-child {
    border-bottom: none;
}

footer a,
.footer-bottom a {
	color: #ffffff;
	text-decoration: none;
}

.footer-bottom {
	padding: 3rem 0;
	background-color: #2860d9;
	color: #ffffff;
	border-top: 2px solid #ffffff;
	text-align: right;
}

.footer-bottom li {
	display: inline-block;
}

.footer-bottom li:first-child:after {
	content: "|";
	display: inline-block;
	margin-left: .8rem;
}

.footer-bottom .inner {
	position: relative;
}

.footer-bottom .js-to-top {
	width: 4rem;
    height: 4rem;
    background-color: #ffffff;
    position: absolute;
    right: 2rem;
    top: -3.2rem;
    transform: translateY(-100%);
    cursor: pointer;
}

.footer-bottom .js-to-top:after {
	content: '';
	width: 1.5rem;
	height: 1.5rem;
	border-top: 1px solid #2860d9;
	border-left: 1px solid #2860d9;
	position: absolute;
	top: 65%;
	left: 50%;
	transform: translate(-50%, -50%) rotate(45deg);
	transition: top .2s;
}

.footer-bottom .js-to-top:hover:after {
	top: 55%;
	transition: top .2s;
}

@keyframes scrollEffect {
	0% {
		top: 10%;
	}
	
	100% {
		top: 70%;
	}
}

@media only screen and (max-width: 1200px) {
	.box-wrapper {
		grid-template-columns: repeat(2, 1fr)
	}
	
	.column-9 {
		width: 100%;
	}
}

@media only screen and (max-width: 950px) {
	.row-tile {
		display: block;
	}
	
	.row-tile .image {
		position: static;
		width: 90%;
		text-align: right;
		margin-top: -4rem;
		margin-right: 0;
		margin-left: auto;
	}
	
	.row-tile .text {
		width: 90%;
		padding-bottom: 10rem;
		padding-right: 3rem;
	}
	
	.row-tile.image-first .text {
		padding-top: 8rem !important;
		padding-left: 2rem !important;
	}
	
	.row-tile.image-first .image {
		margin-bottom: -4rem;
	}
	
	.course-container {
		display: block;
	}
	
	.course-item {
		width: 100%;
	}
	
	.course-item .content,
	.course-item img {
		width: 90%;
	}
	
	.course-item img {
		display: block;
		margin-right: 0;
		margin-left: auto;
	}
	
	.course-item:nth-child(odd) .content,
	.course-item:nth-child(even) img {
		transform: none;
	}
	
	footer .main-wrapper > * {
		width: calc(50% - 2rem);
		margin-bottom: 4rem;
	}
	
	.row-tile .image {
		height: auto !important;
	}
}

@media only screen and (max-width: 800px) {
	.box-wrapper {
		grid-template-columns: repeat(1, 1fr)
	}
	
	.box-item {
		grid-column-start: 1;
		grid-column-end: 3; 
	}
	
	h1, .h1 {
		font-size: 3.5rem;
		margin-bottom: 2rem;
	}
	
	h3, h4,
	.button,
	.main-navigation .inner {
		font-size: 1.9rem;
	}
	
	.button i,
	footer .social-icon i {
		font-size: 2.5rem;
	}
	
	body,
	.contact .social-container a {
		font-size: 1.6rem;
	}
	
	.box-item i {
		font-size: 5rem;
	}
}

@media only screen and (max-width: 700px) {
	footer .main-wrapper > * {
		width: 100%;
	}
}

@media only screen and (max-width: 500px) {
	.row-tile .image,
	.row-tile .text,
	.course-item .content,
	.course-item img {
		width: 100%;
	}
	
	.base-width,
	section {
		padding-left: 2rem;
		padding-right: 2rem;
	}
	
	section,
	section.intro {
		padding-top: 10rem;
		padding-bottom: 10rem;
	}
	
	.button {
		width: auto;
	}
	.box-item {
		display: block;
	}
	
	.box-item i {
		padding-left: 2rem;
		padding-right: 2rem;
		display: block;
		text-align: center;
	}
}