html, *{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: 'Poppins', sans-serif;
	scroll-behavior: smooth;
}
body{
	min-height: 100vh;
	display: flex;
	flex-direction: column;
}
main{
	flex: 1;
}
h1{
	color: #031251;
	text-transform: uppercase;
	font-size: 32px;
}
.grey-bg{
	background-color: #EDEDED;
}
header.mobile{
	display: none;
	padding: 0;
}
header.mobile div.header-logo{
	margin: 20px;
}
header.mobile div.header-extend{
	margin: 20px;
}
header.mobile div.header-extend:hover{
	cursor: pointer;
}
header.mobile div.header-extend div{
	width: 30px;
	height: 3px;
	background: black;
	margin: 5px 0;
}
header.mobile div.menu{
	position: absolute;
	width: 100%;
	top: 100px;
	background: #fff;
}
header.mobile div.menu ul{
	flex-direction: column;
}
header.mobile div.menu ul li{
	margin: 10px 0 0 0;
	display: block;
    width: 100%;
    text-align: center;
    padding: 10px 0 20px 0px;
    border-bottom: 1px solid #031251;
}
header.mobile div.menu ul li:last-child{
	border-bottom: none;
}
header.mobile div.menu ul li a{
	display: block;
}
header{
	width: 100%;
	padding: 10px 50px;
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: space-between;
}
header .header-logo{
	width: 60px;
	height: 60px;
	background: url('img/mmg_logo_small.png');
	background-position: center;
	background-size: contain;
	background-repeat: no-repeat;
}
header .header-logo a{
	    display: block;
    width: 100%;
    height: 100%;
}
header .menu ul{
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: flex-start;
}
header .menu ul li{
	margin: 0 30px;
	padding: 0;
	list-style-type: none;
}
header .menu ul li a{
	text-decoration: none;
	color: #4D4D51;
	text-transform: uppercase;
	font-weight: 500;
	transition: 0.3s;
}
header .menu ul li a:hover{
	color: #031251;
}
header .menu ul li a.active{
	color: #031251;
}

.banner{
	width: 100%;
	height: 500px;
	display: flex;
	background: url('img/banner.png');
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
}
.banner .overlay{
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	height: 100%;
	width: 100%;
	background: rgba(3,18,81,0.75)
}
.banner .overlay .logo{
	height: 690px;
	width: 775px;
	background: url('img/mmg_logo_white.png');
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
}
.headline{
	padding:60px 0;
	text-align: center;
}

.a{
	display: flex;
	flex-direction: row;
	align-items: flex-start;
	justify-content: space-between;
	padding: 100px 400px;
}
.a .box{
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-start;
}
.a .box .img-container{
	width: 150px;
	height:150px;
	background: #031251;
	border-radius: 100%;
	padding: 25px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}
.a .box .img-container .img{
	width: 80px;
	height:80px;
	background-size:contain;
	background-position: center center;
	background-repeat: no-repeat;
}
.a .box:nth-child(1) .img-container .img{background-image: url('img/eu.png');}
.a .box:nth-child(2) .img-container .img{background-image: url('img/clock.png');}
.a .box:nth-child(3) .img-container .img{background-image: url('img/settings.png');}


.a .box .txt{
	margin-top: 20px;
	text-align: center;
		font-weight: 700;
	color: #031251;
	font-size: 20px;
}
.a .box .txt span{
	display: block;
	font-weight: 700;
	color: #031251;
	font-size: 20px;
}

.about-us{
	padding: 60px 200px;
}
.about-us h1{
	text-align: center;
	margin-bottom: 40px;
}
.about-us p{
	margin-bottom:20px; 
}
.about-us div{
	width: 100%;
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: flex-end;
}
.about-us div a{
	text-decoration: none;
	color: #fff;
	background: #031251;
	padding: 10px 40px;
	text-transform: uppercase;
}

.img-line{
	width: 100%;
	height: 400px;
	background-image: url('img/truck-service.jpg');
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
}
.services{
	padding: 60px 200px;
}
.services h1{
	text-align: center;
}
.services p{
	display: block;
	width: 100%;
	text-align: center;
	color: #4D4D51;
}

.services-container{
	display: flex;
	flex-direction: row;
	align-content: center;
	justify-content: flex-start;
	flex-wrap: wrap;
	width: 100%;
	padding: 50px 100px; 
}
.services-container .services-box{
	width: 50%;
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: flex-start;
	margin: 30px 0;
}
.services-container .services-box .img-container{
	width: 100px;
	height: 100px;
	display: flex;
	border-radius: 100%;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 25px;
	background:#031251;
	margin-right: 25px;
}
.services-container .services-box .img-container .img{
	width: 80px;
	height: 80px;
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
}

.services-container .services-box:nth-child(1) .img-container .img{background-image: url('img/piktok/1.png');}
.services-container .services-box:nth-child(2) .img-container .img{background-image: url('img/piktok/1.png');}
.services-container .services-box:nth-child(3) .img-container .img{background-image: url('img/piktok/1.png');}
.services-container .services-box:nth-child(4) .img-container .img{background-image: url('img/piktok/2.png');}
.services-container .services-box:nth-child(5) .img-container .img{background-image: url('img/piktok/3.png');}
.services-container .services-box:nth-child(6) .img-container .img{background-image: url('img/piktok/4.png');}
.services-container .services-box:nth-child(7) .img-container .img{background-image: url('img/piktok/5.png');}
.services-container .services-box:nth-child(8) .img-container .img{background-image: url('img/piktok/6.png');}
.services-container .services-box:nth-child(9) .img-container .img{background-image: url('img/piktok/7.png');}
.services-container .services-box:nth-child(10) .img-container .img{background-image: url('img/piktok/8.png');}
.services-container .services-box:nth-child(11) .img-container .img{background-image: url('img/piktok/9.png');}
.services-container .services-box:nth-child(12) .img-container .img{background-image: url('img/piktok/1.png');}
.services-container .services-box:nth-child(13) .img-container .img{background-image: url('img/piktok/11.png');}
.services-container .services-box:nth-child(14) .img-container .img{background-image: url('img/piktok/12.png');}


.services-container .services-box .txt-container{
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}
.services-container .services-box .txt-container span{
	display: block;
	font-size: 1.2em;
	text-align: left;
}
.help{
	padding: 60px 200px 70px;
	text-align: center;
}
.help h1{
	margin-bottom: 30px;
}
.help p{
	font-size: 1.2em;
	color: #4D4D51;
	margin-bottom: 25px; 
}
.help a{
	text-align: center;
	background:#031251;
	text-decoration: none;
	color: #fff;
	padding: 15px 30px;
	font-size: 22px;
	margin: 0 auto;
}
.email{
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
	width: 100%;
	padding: 35px 0;
	background:#031251;
	color: #fff;
	font-weight: 700;
	font-size: 32px;
}
.email a{
	color: #fff;
	font-weight: 700;
	font-size: 32px;
}
.map{
	width: 100%;
	height: 400px;
}

section.form{
	width: 700px;
	display: block;
	margin: 0 auto;
}
section.form h1{
	text-align: center;
}
section.form {
	width: 400px;
	display: block;
	margin: 50px auto;
}
section.form label{
	display: block;
	color: #031251;
	font-size: 18px;
	margin-bottom: 5px;
}
section.form input{
	margin-bottom: 35px;
	padding: 5px 10px;
	font-size: 16px;
	border: 2px solid #031251;
	width: 100%;
}
section.form input[type=checkbox]{
	width: 15px;
	height: 15px;
	margin: 0;
	display: inline-block;
}
section.form textarea{
	margin-bottom: 20px;
	padding: 5px 10px;
	font-size: 16px;
	border: 2px solid #031251;
	max-width: 100%;
	width: 100%;
	min-width: 100%;
	height: 200px;
	max-height: 200px;
	min-height: 200px;
}
section.form input[type=submit]{
	font-weight: 700;
	color: #fff;
	font-size: 20px;
	padding: 10px 20px;
	background:#031251;
	outline: 0;
	border: 0;
	text-transform: uppercase;
	margin-top: 30px;
	display: block;
	width: 100%;
}
section.form input[type=submit]:hover{
	cursor: pointer;
}

footer{
	padding: 60px 200px;
	display: flex;
	flex-direction: row;
	align-items: flex-start;
	justify-content: space-between;
}
footer .logo{
	width: 300px;
	height: 300px;
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
	background-image: url('img/mmg_logo.png');
}
footer h2{
	color: #031251;
	text-transform:uppercase;
	font-size: 18px;
	margin-bottom: 15px;
}
footer .footer-menu a{
		font-size: 14px;
	color: #4D4D51;
	display: block;
}
footer .list-container{
	display: flex;
	flex-direction: row;
	align-items: flex-start;
	justify-content: space-between;
}
footer .list-container ul{
	padding: 0;
	margin: 0px 30px 0 0;
	list-style-type: none;
}
footer .list-container ul li{
	font-size: 14px;
	
}
footer .block-container{
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: flex-start;
}
footer .block-container .block{
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: flex-start;
	margin: 20px 0;
}
footer .block-container .block:first-child{
	margin-top: 0;
}
footer .block-container .block .img{
	width: 36px;
	height: 36px;
	margin-right: 15px;
	background-position: center;
	background-size: contain;
	background-repeat: no-repeat;
}
footer .block-container .block:nth-child(1) .img{background-image:url('img/location.png');}
footer .block-container .block:nth-child(2) .img{background-image:url('img/mail.png');}
footer .block-container .block:nth-child(3) .img{background-image:url('img/phone.png');}

footer .block-container .block .txt h3{
	color: #031251;
	font-size: 16px;
}
footer .block-container .block .txt a{
	display: block;
	color: #4D4D51;
}

section.about-us-page{
	padding: 25px 300px;
}
section.about-us-page h1{
	text-align: center;
	margin-bottom: 25px;
}
section.about-us-page div.container p{
	margin-bottom: 15px;
}
section.contact-page{
	padding: 25px 300px;
}
section.contact-page h1{
	text-align: center;
}

.v-overlay{
	width: 100%;
	height: 857px;
	display: flex;
	flex-direction: column;
	align-items: center;
	z-index: 1;
}
video{
	width: 100%;
	height: 857px;
	position: fixed;
	z-index: 2;
}
.v-overlay a{
	display: none;
	background-color:#031251 ;
	z-index: 3;
	font-size: 24px;
	color: #fff;
	font-family: 'Poppins','Arial',sans-serif;
	padding: 15px 30px;
	text-decoration: none;
	border-radius: 10px;
	text-transform: uppercase;
	font-weight: 700;
	margin-bottom: 50px;
	position: absolute;
	bottom: 0;
}