*{
	padding: 0;
	margin: 0;
	box-sizing: border-box;
}
html{
	width: 100%;
	font-family: times new roman;
	font-size: 14px;
	color: #555;
	letter-spacing: 2px;
}
.container{
	min-height: 100vh;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}
#cover{
	background-image: url(ssa4.jpg);
	background-size: cover;
	background-position: top center;
	background-repeat: no-repeat;
	min-height: 100vh;
	width: 100%;
	color: white;
	position: relative;
	z-index: 1;
}
#cover::after{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: black;
	opacity: 0.5;
	z-index: -1;
}
.logo{
	width: 250px;
}
.landing{
	max-width: 1200px;
	margin: 0 auto;
	padding: 20px;
	text-align: center;
}
.landing h1{
	margin-top: 80px;
	margin-bottom: 20px;
	font-size: 2.8rem;
	letter-spacing: 2px;
}
.nav-bar{
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.nav-bar2{
	display: flex;
	align-items: center;
	padding: 30px;
	justify-content: space-between;
}
.brand span{
	color: brown;
}
nav{
	flex: 1;
}
nav ul{
	text-align: right;
	list-style: none;
}
nav ul li{
	display: inline-block;
	margin-right: 20px;
}
nav ul li a{
	text-decoration: none;
	font-size: 18px;
	color: #fff;
	transition: color 0.5s;
}
nav ul li a:hover{
	color: lightblue;
}
.menu{
	margin-right: 20px;
	border-radius: 30px;
	display: none;
}
.row{
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-top: 20px;
}
.col-2{
	width: 50%;
	text-align: left;
	padding: 20px;
}
.colored{
	background: orange;
}
.col-2 .left{
	text-align: left;
	margin-top: 2px;
}
.slider{
	overflow: hidden;
	text-align: center;
	padding: 30px 1px;
}
.slider figure{
	width: 500%;
	position: relative;
	margin: 0;
	left: 0;
	animation: 20s slider infinite;
}
.slider figure .text{
	width: 20%;
	float: left;
}
@keyframes slider{
	0%{left: 0;}
	20%{left: 0;}
	25%{left: -100%;}
	45%{left: -100%;}
	50%{left: -200%;}
	70%{left: -200%;}
	75%{left: -300%;}
	95%{left: -300%;}
}
.col-2 form{
	display: flex;
	flex-direction: column;
	width: 100%;
	align-items: center;
	justify-content: center;
	padding: 20px;
}
.col-2 form input{
	margin-bottom: 10px;
	text-align: center;
	padding: 7px;
	width: 80%;
	border: 0;
	border-radius: 3px;
}
.col-2 form input[type="submit"]{
	font-weight: bold;
	font-family: arial black;
	background: transparent;
	border: 2px solid white;
	color: white;
	transition: all 0.5s;
}
.col-2 form input[type="submit"]:hover{
	background: orange;
	color: white;
	cursor: pointer;
	border: 2px solid transparent;
}
.col-2 h2{
	text-align: center;
	font-size: 22px;
	color: red;
	padding: 10px 0px;
	transition: all 0.5s;
}
.col-2 h2:hover{
	background: orange;
	color: white;
}
.col-2 img{
	width: 50%;
	border-radius: 10%;
	padding-right: 15px;
}
.col-2 p{
	font-size: 16px;
	font-family: arial black;
	line-height: 20px;
	margin-bottom: 20px;
}
.white p{
	color: white;
	font-family: times new roman;
}
.col-2 span{
	font-size: 16px;
	font-family: times new roman;
	color: #555;
	text-align: left;
}
.col-2 h3{
	margin: 20px 0;
	font-size: 26px;
	color: #663300;
}



/* Divider */
.divider{
	width: 100%;
	background-image: url(gavel4.jpg);
	background-position: center;
	background-repeat: no-repeat;
	text-align: center;
	color: white;
	font-family: arial black;
	padding: 30px;
	margin-top: 50px;
}




/* Main Home*/
.main{
	max-width: 1200px;
	padding: 30px 20px;
	margin: 0 auto;
}
.main .title{
	text-align: center;
	color: #663300;
}
.col-3{
	width: 32%;
	text-align: center;
	padding: 20px;
	border: 0px;
	margin-bottom: 20px;
}
.col-3 img{
	max-width: 200px;
	padding: 10px;
	border: 0px;
	box-shadow: 0 0 25px 0 rgba(0,0,0,0.1);
	border-radius: 50%;
}
.col-3 p{
	padding: 20px;
	font-weight: bold;
	color: red;
}



/* Services */
.services-menu a{
	color: #663300;
	transition: all 0.5s;
}
.services-menu a:hover{
	color: red;
}


/* About */
.divide{
	width: 100%;
	background: red;
	color: white;
	padding: 20px;
	text-align: center;
	margin-top: 20px;
	margin-bottom: 10px;
}
.items{
	width: 100%;
	font-size: 16px;
	padding: 20px;
	margin-bottom: 20px;
}
.items ul{
	padding-left: 20px;
}
.items ul li{
	margin-bottom: 10px;
}
.items span{
	color: #663300;
}



/* Contact */
.row-contact{
	width: 100%;
	display: flex;
	justify-content: space-between;
	margin-top: 20px;
}
.col-5{
	width: 50%;
	padding: 20px;
	
}
.col-5 h4{
	margin-bottom: 15px;
	color: #663300;
}
.col-5 ul{
	list-style: none;
}
.col-5 ul li a{
	text-decoration: none;
	color: #555;
	transition: all 0.5s;
}
.col-5 ul li a:hover{
	color: #663300;
}
.form-section{
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}
form{
	width: 80%;
	text-align: center;
	margin-top: 40px;
	margin-bottom: 40px;
}
form .first{
	display: flex;
	align-items: center;
	justify-content: space-around;
	width: 100%;
}
form .first input{
	width:	49%;
	padding: 15px;
	margin-bottom: 10px;
	text-align: center;
	border: 1px solid silver;
	border-radius: 5px;
}
form input, textarea{
	width: 99%;
	padding: 15px;
	margin-bottom: 10px;
	text-align: center;
	border: 1px solid silver;
	border-radius: 5px;
}
form input[type="submit"]{
	border: none;
	border-radius: 30px;
	max-width: 200px;
	background: red;
	color: #fff;
	font-weight: bold;
	transition:	all 0.5s;
}
form input[type="submit"]:hover{
	background: #663300;
	cursor: pointer;
}
.location{
	text-align: left;
	margin: 20px;
}
h1 span{
	color: #663300;
}
iframe{
	width: 80%;
	height: 450px;
	margin-bottom: 30px;
}



/* Footer */
footer{
	width: 100%;
	background: orange;
	color: white;
	padding: 30px;
}
.footer-logo{
	text-align: left;
}
.row-footer{
	width: 100%;
	display: flex;
	justify-content: space-between;
	margin-top: 20px;
}
.col-1{
	width: 20%;
	text-align: left;
	padding: 20px;
}
.col-4{
	width: 35%;
	text-align: left;
	padding: 20px;
}
footer h1{
	text-align: center;
}
footer h4{
	margin-top: 20px;
	margin-bottom: 20px;
}
footer ul{
	list-style: none;
}
footer ul li a{
	text-decoration: none;
	color: white;
	font-weight: bold;
	transition: all 0.5s;
}
footer ul li a:hover{
	color: #663300;
	cursor: pointer;
}
.col-1 img{
	padding: 10px;
	border: 1px solid white;
	border-radius: 50%;
	width: 60px;
	transition: all 0.5s;
}
.col-1 img:hover{
	background: white;
	cursor: pointer;
}
.copyright{
	text-align: center;
	color: #663300;
}
.copyright a{
	text-decoration: none;
	color: white;
}





/* Media Query For Mobile */
@media only screen and (max-width:800px){
	
	.logo{
		width: 200px;
	}
	.menu{
		display: block;
		cursor: pointer;
	}
	nav ul{
		position: absolute;
		top: 100px;
		right: 0;
		width: 100%;
		background: orange;
		text-align: left;
		overflow: hidden;
		transition: max-height 1s;
	}
	nav ul li{
		display: block;
		margin: 20px;
	}
	nav ul li a:hover{
		color: black;
	}
	.landing h1{
		margin-top: 50px;
		margin-bottom: 20px;
		font-size: 1.8rem;
	}
	
	.row{
		flex-direction: column;
		margin-top: 20px;
	}
	.row-footer{
		flex-direction: column;
		margin-top: 20px;
	}
	.col-2{
		width: 100%;
		padding: 20px;
		text-align: center;
	}
	
	
	/* Main */
	.col-3{
		width: 80%;
		padding: 20px;
		text-align: center;
	}
	
	
	/* Services */
	.services-menu a{
		color: white;
	}
	
	
	/* Contact */
	.row-contact{
		width: 100%;
		display: flex;
		flex-direction: column;
	}
	.col-5{
		width: 100%;
		text-align: center;
		padding: 20px;
	}
	form{
		width: 90%;
	}
	
	

	/* Footer */
	.footer-logo{
		text-align: center;
	}
	.col-1{
		width: 100%;
		text-align: center;
		padding: 20px;
	}
	.col-4{
		width: 100%;
		text-align: center;
		padding: 20px;
	}
	

	
}