@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
body{
	margin:0;
	padding:0;
	font-family:'Montserrat', sans-serif;
}

header{
	width:100%;
	height:700px;
	background-image:url(../img/9.jpg);
	background-color:#d62024;
	min-height:100%;
	background-attachment:fixed;
	background-repeat:no-repeat;
	background-position:center center;
}

.right{
	display:flex;
	justify-content:end;
}

nav{
	margin-top:40px;
	font-weight:500;
}
	nav a{
		color:#fff;
		padding:10px 15px;
		text-decoration:none;
	}
.nav ul{
	display:none;
}

.phone{
	margin:0 100px;
}
	.phone h3{
		margin-bottom:0px;
		color:#fff;
		text-align:center;
		font-size:25px;
		white-space: nowrap;
		letter-spacing:4px;
	}
	.phone p{
		color:#fff;
		text-align:center;
		margin-top:5px;
	}

.container{
	width:960px;
	margin:0 auto;
}

.sec_1{
	width:100%;
	height:700px;
	background-image:url(../img/8.jpg);
	background-color:#f8cb11;
	min-height:100%;
	background-attachment:fixed;
	background-repeat:no-repeat;
	background-position:center center;
	padding:50px 0;
}
.fl{
	display:flex;
	flex-wrap:wrap-reverse;
}
	.fl div{
		width:29%;
		padding:0px 2%;
	}
	
	.fl div h5{
		color:#d62024;
		font-size:21px;
	}
	.fl div p{
		color:#fff;
	}
	.fl div img{
		width:100%;
	}
.sec_2{
	width:100%;
	height:700px;
	background-image:url(../img/6.jpg);
	background-color:#d62024;
	min-height:100%;
	background-attachment:fixed;
	background-repeat:no-repeat;
	background-position:center center;
	padding-top:50px;
}
	.sec_2 h3{
		font-size:56px;
		text-align:center;
		color:#f8cb11;
	}
	.sec_2 .items{
		display:flex;
	}
	.sec_2 .items .item{
		width:33%;
		text-align:center;
		margin:0 1%;
	}
	.sec_2 .items .item img{
		width:65%;
	}
	.sec_2 .items .item p{
		border-top:5px solid yellow;
		text-align:center;
		color:#fff;
		padding-top:45px;
	}
	.sec_2 .items .item .img{
		height:200px;
	}
.sec_3{
	width:100%;
	height:900px;
	background-image:url(../img/7.jpg);
	background-color:#f8cb11;
	min-height:100%;
	background-attachment:fixed;
	background-repeat:no-repeat;
	background-position:center center;
	padding-top:50px;
}
	.sec_3 h3{
		font-size:61px;
		color:#d62024;
	}
	.sec_3 a{
		background:#d62024;
		padding:7px;
		color:#fff;
		text-decoration:none;
		font-weight:700;
	}

footer{
	width:100%;
	height:328px;
	/*position:fixed;*/
	background:#D62024;
	bottom:0;
}
	footer .logo{
		width:250px;
		float:left;
	}
	footer .logo img{
		width:100%;
	}
	footer .cont{
		color:#fff;
		float:left;
		margin-top:70px;
		margin-left:29px;
		border-top:3px solid;
	}
	footer .cont h4{
		font-size:22px;
		margin:20px auto;
		text-transform:uppercase;	 
	}
	footer .cont p{
		margin:5px auto;
	}

@media (max-width:960px){
	header{
		height: 500px;
		background-attachment: unset;
		background-size: contain;
	}
	.right{
		justify-content:space-between;
		align-items:center;
		width:96%;
		margin:0 auto;
	}
	nav{
		display:none; 
		position:fixed;
		top:0;
		left:0;
		width:100%;
		height:100%;
		margin-top:0;
		background:#fff;
		font-weight:500;
		z-index:200;
	}
		nav a{
			display:block;
			margin:15px auto;
			padding:0 20%;
			color:#f30e0e;
			text-align:center;
		}
	.nav ul{
		display:block;
		margin:0;
		width:30px;
		padding:0;
	}
		.nav ul li{
			list-style:none;
			border-bottom:4px solid #fff;
			width:35px;
			margin-top:7px;
		}
	
	.phone{
		margin:0;
	}
		.phone h3{
			text-align:center;
			font-size:25px;
			color:#fff;
			margin-bottom:0px;
			letter-spacing:4px;
		}
		.phone p{
			color:#fff;
			text-align:center;
			margin-top:5px;
		}

	.container{
		width:100%;
	}
}

@media (max-width:720px){
	header{
		height:400px;
	}
	.container{
		width:96%;
	}
	
	.sec_1{
		width:100%;
		height:auto;
		background-image:url(../img/8.jpg);
		background-color:#f8cb11;
		min-height:100%;
		background-attachment:fixed;
		background-repeat:no-repeat;
		background-position:center center;
		padding:50px 0;
	}
	.fl{
		display:flex;
		flex-wrap:wrap-reverse;
	}
		.fl div{
			width:96%;
			padding:0px 2%;
		}
		
		.fl div h5{
			color:#d62024;
			font-size:21px;
		}
		.fl div p{
			color:#fff;
		}
		.fl div img{
			width:100%;
		}
	.sec_2{
		height:auto;
		padding-bottom:50px;
	}
		.sec_2 h3{
			font-size:25px;
		}
		.sec_2 .items{
			display:block;
		}
		.sec_2 .items .item{
			width:96%;
			margin:0;
		}
		.sec_2 .items .item img{
			max-height:100%;
			width:auto;
		}
	.sec_3{
		height:auto;
		min-height:100%;
		padding-top:10px;
	}
		.sec_3 h3{
			font-size:24px;
		}
	
	footer{
		position:static;
		width:100%;
		height:400px;
	}
		footer .logo{
			width:100%;
			text-align:center;
		}
		footer .logo img{
			width:33%;
		}
		footer .cont{
			margin-top:0px;
			margin-left:0px;
		}
}

/* ---- */

button{
	margin-top:1em;
	border:5px solid #fff;
	border-radius:12px;
	padding:.5em 1em;
	background:transparent;
	color:#fff;
	font-family:Montserrat;
	font-size:20px;
	font-weight:600;
	letter-spacing:2px;
	cursor:pointer;
}
input{
	margin-bottom:1em;
	border:4px solid #fff;
	border-radius:10px;
	padding:.3em 1em;
	background:transparent;
	color:#fff;
	font-family:Montserrat;
	font-size:18px;
	font-weight:500;
	letter-spacing:2px;
}
.doc-list p {
  line-height:2;
}

	
u,
.underline{
	text-decoration:underline;
}
.italic{
	font-style:italic;
}
.bold{
	font-weight:700;
}
.indent{
	text-indent:2em;
}
.text-center{
	text-align:center;
}
.m-bottom-0{
	margin-bottom:0 !important;
}
.m-top-0{
	margin-top:0 !important;
}

.doc{
	-ms-user-select:none; 
	-moz-user-select:none; 
	-webkit-user-select:none; 
	user-select:none;	
}
	.doc .content{
		margin:3em auto;
		font-family:"Times", serif;
	}
/*	.doc .content:after{
		content:" ";
		position:fixed;
		top:0;
		left:0;
		width:100%;
		height:100%;
		z-index:4444;
	}*/	
	.doc .content .container{
		border:1px dotted #444444;
		padding:2em 4em;
	}
	.doc .breadcrumbs h1,
	.doc .breadcrumbs h1+p{
		background-color:#ffffff57;
		box-shadow:0 0 .5em .5em #ffffff57;
		border-radius:1em;
		color:#444444;
	}
	.doc .breadcrumbs h1 span,
	.doc .breadcrumbs h1+p span{
		background-color:#ffffff05;
	}
	.doc .content h1{
		text-align:center;
	}
	.doc .content h2,
	.doc .content h2 + .sub-header{
		font-size:1.4em;
		font-family:"Times", serif;
		font-weight:bold;
	}
	.doc .content h3{
		margin-top:2em;
		font-size:1.2em;
		font-family:"Times", serif;
		font-weight:bold;
	}
	.doc .content [id]:before{
		display:block;
		content:"";
		height:80px;
		margin:-80px 0 0;
	}
	.doc .content p{
		margin:.3em 0 .4em;
		line-height:1.2;
	}
	.doc .content .title{
		margin:1em auto;
	}
	.doc .content a{
		color:#444444;
		border-bottom:1px dotted;
		text-decoration:none;
	}
	.doc .content a:hover{
		border-bottom:none;
	}
	.doc .content ul,
	.doc .content ol{
		padding-left:1em;
		list-style-position:outside;
		margin:.2em 0;
	}
		