html, *{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: 'Poppins','Arial';
	scroll-behavior: smooth;
}
body{
	min-height: 100vh;
	display: flex;
	flex-direction: column;
}
main{
	flex: 1;
}
h1{
	color: #D20000;
	text-align: center;
	text-transform: uppercase;
}
.grey-bg{
	background: #F1F1F1;
}
.content-inner{
	padding: 100px 300px;
}
header.mobile{
	display: none;

	flex-direction: row;
	align-items: center;
	justify-content: space-between;
}
header.mobile .logo{
	background-image: url('img/logo_2.png');
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
	width: 50px;
	height: 50px;
	margin: 10px 25px;
}
header.mobile div.menu{
	position: absolute;
	top: 70px;
	display: block;
	width: 100%;
	background: #fff;
	z-index: 99;
}
header.mobile div.menu ul{
	list-style-type: none;
	padding: 0;
	margin: 0;
}
header.mobile div.menu ul li{
	margin: 15px 0 0px 0;
	padding-bottom: 15px;
	display: block;
	text-align: center;
	border-bottom: 1px solid #D20000;
}
header.mobile div.menu ul li:last-child{
	border: none;
}
header.mobile div.menu ul li a{
	text-decoration: none;
	color: #000;
	font-weight: 700;
}
header.mobile div.menu-extend{
	width: 25px;
	transition: 0.3s ease-in-out;
	margin: 10px 25px;
}
header.mobile div.menu-extend.active{
	transform: rotate(-90deg);
}
header.mobile div.menu-extend:hover{
	cursor: pointer;
}
header.mobile div.menu-extend div{
	width: 100%;
	height: 3px;
	margin: 4px;
	background: black;
}
header.desktop{
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: space-between;
	padding: 5px 150px;
}
header.desktop .logo{
	background-image: url('img/logo_2.png');
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
	width: 80px;
	height: 80px;
}
header.desktop .logo a{
	display: block;
	height: 100%;
	width: 100%;
	text-decoration: none;
}
header.desktop .menu ul{
	margin: 0;
	padding:0;
	list-style-type: none;
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: space-between;
}
header.desktop .menu ul li{
	margin: 0 20px;
}
header.desktop .menu ul li a{
	text-decoration: none;
	color: #000;
	font-weight: 500;
	font-size: 18px;
	font-size: 16px;
    text-transform: uppercase;
    transition: 0.2s;
}
header.desktop .menu ul li a:hover{
	color: #D20000;
}

section.banner{
	width: 100%;
	height: 500px;
	background-image: url('img/banner.jpg');
	background-size: cover;
	background-position:center -200px;
	background-repeat: no-repeat;
}
section.about-us{

}
section.about-us p{
	display: block;
	margin-top: 20px;
	margin-bottom: 20px;
	font-size: 18px;
	color: #414141;
}
section.about-us .container{
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: flex-start;
	width: 100%;
	padding: 10px 0;
}
section.about-us .container a{
	color: #fff;
	background:#D20000;
	padding: 5px 80px;
	text-transform: uppercase;
	text-decoration: none;
	font-weight: 500;
}
section.services div.container{
	width: 100%;
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: space-between;
	margin-top: 100px;
	padding: 0 100px;
}
section.services div.container .block{
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-start;
	width: 30%;
	border: 1px solid #7C7C7C;
	padding: 45px 25px;
	height: 360px;
}
section.services div.container .block .img{
	width: 75px;
	height:75px;
	background-position: center;
	background-size: contain;
	background-repeat: no-repeat;
}
section.services div.container .block:nth-child(1) .img{background-image: url('img/accounting.png');}
section.services div.container .block:nth-child(2) .img{background-image: url('img/hand.png');}
section.services div.container .block:nth-child(3) .img{background-image: url('img/line-chart.png');}


section.services div.container .block h2{
	color: #414141;
	font-size: 18px;
	text-align: center;
	margin: 20px 0;
}
section.services div.container .block p{
	font-size: 14px;
	color: #727272;
	text-align: center;
	margin-bottom: 15px;
} 
section.services div.container .block a{
	color: #D20000;
	text-decoration: none;
	font-size: 14px;
	text-align: center;
	font-weight: 500;
}

section.help .container{
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	margin-top: 50px;
}
section.help .container .txt{
	width: 50%;
}
section.help .container .txt p{
	font-size: 18px;
	color:#242424;
	margin-bottom: 20px;
}
section.help .container .txt span{
	font-size: 18px;
	color: #242424;
	font-weight:bold;
}
section.help .container .btn-container{
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}
section.help .container .btn-container a{
	color: #fff;
	text-decoration: none;
	font-weight: 500;
	padding: 15px 80px;
	font-size: 18px;
	background:#D20000;
}

section.documents .container{
	margin-top: 25px;
}

section.documents .container ul{
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: flex-start;
	list-style-type: none;
}
section.documents .container ul li{
	margin: 15px 0;
	display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
}
section.documents .container ul li a{
	color: #242424;
	font-size: 16px;
	text-decoration: none;
}
section.documents .container ul li a:hover{
	text-decoration: underline;
}
section.documents .container ul li:before{
	display: inline-block;
	height:20px;
	width:20px;
	content: "";
	background:url('img/file.png');
	background-position: center;
	background-size: cover;
	margin-right: 10px;
}


section.form{
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-start;
}
section.form.content-inner{
	padding-top: 25px;
}

section.form form{
	margin-top: 30px;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	width: 75%;
}
section.form form div.group{
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: flex-start;
	width: 100%;
	margin-bottom: 15px;
	color: #414141;
}
section.form form label, section.form form input{
	width: 50%;
}
section.form form label{
	font-size: 16px;
	font-weight: bold;
}
section.form form input{
	padding:10px 10px;
	font-size: 16px;
	background: #e8e8e8;
	border: none;
	transform:skewX(-10deg); 
}
section.form form input:focus{
	outline: none;
}
section.form form select{
	padding:10px 10px;
	font-size: 16px;
	background: #e8e8e8;
	border: none;
	transform:skewX(-10deg); 
}
section.form form select:focus{
	outline: none;
}
section.form form div.radio-container{
	width: 50%;
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	align-items: center;
	padding: 10px 0;
}
section.form form div.radio-container div.radio-box{
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: flex-start;
	width: 50%;
}
section.form form div.radio-container div.radio-box label{
	width: auto;
}
section.form form div.radio-container div.radio-box input{
	width: auto;
	margin-left: 15px;
}
section.form form h2{
	color:#D20000;
	margin: 30px 0 15px 0;
	font-size: 20px;
}

section.form div.btn-container{
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
	width: 100%;
	margin-top: 50px;
}
section.form div.btn-container button{
	background: #D20000;;
	color:#fff;
	border: 0;
	padding:10px 60px;
	font-size: 18px;
}
section.form div.btn-container button:hover{
	cursor: pointer;
}


section.about-us-page.content-inner{
	padding-top: 25px;
}
section.about-us-page h1{
	margin-bottom: 25px;
}
section.about-us-page p{
	margin-bottom: 20px;
	color:#414141;
}

footer{
	padding: 35px 300px;
	width: 100%;
	background: #242424;
	display: flex;
	flex-direction: row;
	align-items: flex-start;
	justify-content: space-between;
}
footer div h2{
	color: #fff;
	font-size: 22px;
	margin-bottom: 10px;
}
footer div ul{
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: flex-start;
}
footer div ul li, footer div ul li a{
	list-style-type: none;
	margin: 2px 0;
	color: #fff;
	font-size: 14px;
	text-decoration: none;
	color: #EBEBEB;
}
footer div ul li a:hover{
	text-decoration: underline;
}
section.contact-page.content-inner{
	padding-top: 25px;
}
section.contact-page div.container{
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: flex-start;
}
section.contact-page div.container h2{
	margin-bottom: 25px;
	color: #D20000;
	font-size: 20px;

}
section.contact-page div.container div.container-item{
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: flex-start;
	margin-bottom: 15px;
}
section.contact-page div.container div.container-item:nth-child(4) div.img{background-image: url('img/map-marker.png');}
section.contact-page div.container div.container-item:nth-child(5) div.img{background-image: url('img/call-answer.png');}
section.contact-page div.container div.container-item:nth-child(6) div.img{background-image: url('img/fax.png');}
section.contact-page div.container div.container-item:nth-child(7) div.img{background-image: url('img/envelope.png');}

section.contact-page div.container div.container-item div.img{
	width:22px;
	height:22px;
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
	margin-right: 5px;
}
section.contact-page div.container div.container-item div.txt{
	color:#242424 ;
}
