@charset "UTF-8";
/* CSS Document */

body{
	margin: 0;
	padding: 0;
	background-color: ghostwhite;
}

#container{
	width: 70%;
	margin:auto;
}

.logo{
	display: flex;
	justify-content: flex-start;
	margin: 20px;
	padding: 10px auto;
}

.navbar{
	width: 100%;
	background-color: #40513B;
    color: #EDF1D6;
    display: flex;
    align-items: center;
    height: 80px;
	justify-content:space-between;
}

.navbar ul{
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	align-items: center;
	
}

.navbar ul li{
	margin: 25px;
	position: relative;
}

.navbar a{
	color: #EDF1D6;
	text-decoration: none;
	display: block;
	text-align: center;
}

.navbar ul li::after{
	content: '';
	height: 2px;
	width: 0;
	background: #EDF1D6;
	position: absolute;
	left: -5px;
	bottom: -8px;
	transition: 0.5s;
}

.navbar ul li:hover::after{
	width: 110%;
}

.navbar ul li:first-child:after{
	content: '';
	height: 2px;
	width: 110%;
	background: #EDF1D6;
	position: absolute;
	left: -5px;
	bottom: -8px;
}

h1, h2{
	font-size: 45px;
	margin: auto;
}

.hotline{
	background: #9DC08B;
	padding: 30px 40px;
}

.hotline .divider{
	border: none;
	border-top: 1px solid;
	width: 50%;
	margin: 0;
}

.hotline a:link,
.hotline a:visited{
	color: #40513B;
	text-decoration: none;
}

.hotline a:hover{
	color:#9DC08C;
	text-decoration: none;
}

.hotline a:active{
	color: #40513B;
	text-decoration: none;
}

.hotline h4{
	font-size: 20px;
	font-weight: 600;
}

.cta{
	background-color: ghostwhite;
	border-radius: 15px;
	padding: 10px;
	font-size: 30px;
	box-shadow: 1px 3px 5px rgba(0, 0, 0, 0.4);
}

.content{
	margin: 25px auto;
	padding: 10px;
	padding-top: 50px;
	font-size: 20px;
	position: relative;
}

.content p{
	width: 95%
}


.boxes{
	display: flex;
	width: 100%;
	justify-content: space-between;
	margin: 10px;
}

.box{
	width: 30%;
	background-color: #EDF1D6;
	padding: 15px;
	border-radius: 15px;
	margin: 10px;
}

.sixboxes{
	display: flex;
	justify-content: center;
}

.sixbox{
	width: 50%;
	background-color: #EDF1D6;
	padding: 15px;
	border-radius: 15px;
	margin: 10px;
}

.footer-columns {
    display: flex;
    justify-content: space-between;
	color: #EDF1D6;
	width: 60%;
	margin: auto;
}

.footer-column{
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}

.footer-column-title {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 20px;
	margin-left: 20px;
}

.footer-column a:link,
.footer-column a:visited{
	color:#EDF1D6;
	text-decoration: none;
}

.footer-column a:hover{
	color: #EDF1D6;
	text-decoration: underline;
}

.footer-column a:active{
	color: #EDF1D6;
	text-decoration: underline;
}

footer {
    background-color: #40513B;
	padding-top: 40px;
	margin-top: 80px;
}

.footer-column li{
	text-decoration: none;
	padding-bottom: 20px;
}


.footer-column ul {
 	list-style-type: none;
}

.copyright {
  	background-color: #9DC08B;
	color: #EDF1D6;
	height: 65px;
 	text-align: center;
 	padding: 20px;
}

.copyright p{
	font-size: 15px;
	font-family: 'Crimson Text', serif;
}

.hamburgericon{
	display: none;
	width: 100%;
}

@media all and (max-width:1200px){
	.navbarlink{
		display: none;
	}
	
	.hamburgericon{
		display: flex;
		align-items: flex-end;
		justify-content: flex-end;
		margin-right: 10px;
		margin-top: 8px;
	}

	.boxes{
		flex-direction: column;
	}
	
	.box{
		width: 90%;
		margin-bottom: 20px;
	}
}

@media all and (max-width:800px){
	.sixboxes{
		flex-direction: column;
	}
	
	.sixbox{
		width: 90%;
		margin-bottom: 20px;
	}
}

@media all and (max-width:385px){
	.cta{
		font-size: 20px;
	}
}

.media-footer{
	display: none;
}

@media all and (max-width:490px){
	.footer-column{
		display: none;
	}
	
	.media-footer{
		display: block;
		margin-bottom: 20px;
	}
}
