:root{
    --white:#fff;
}
.cover-page{
    background: url("../img/contact-background.jpg");
    background-size: cover;
    background-position: 0% 55%;
    width: 100%;
    height: 35vh;
}
.background{
    width: 100%;
    height: 100%;
    background: #05333d9f;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.background h1{
    color: #fff;
    font-size: 35px;
    
}
.background p{
    margin:0;
    color: #fff;
    font-size: 18px;
    font-weight: 300;
}
.contact{
    margin-top: 30px;
    display: grid;
    grid-template-columns:repeat(2,50%);
    justify-items: center;
    align-items: stretch;
}
.contact-form{
    width: 80%;
    display: flex;
    flex-direction: column;
}
.contact-form .input{
    width: 98%;
    padding: 7px;
    border: none;
    background: rgb(240, 240, 240);
    font-size: 13px;
    outline: none;
}
.contact-form label{
    margin-top: 10px;
    color: #444;
}
.message-container{
    display: flex;
    flex-direction: column;
}
.message-container textarea{
    width: 100%;
    padding: 0;
    outline: none;
    height: 15vh;
    background: rgb(240, 240, 240);
    font-size: 13px;
    border: none;
    resize: none;
}
.contact-form input[type="submit"]{
    margin: 5px;
    padding: 5px;
    background: #00222A;
    color: #fff;
    width: 50%;
    align-self: center;
    border: none;
    outline: none;
}
.contact-form input[type="submit"]:hover{
    background: #177388;
}
.social{
    width: 100%;
    height: 100%;
}
.social h4,h3,p{
    margin: 5px 10px;
}
.soc-container{
	display: flex;
	justify-content: flex-start;
	align-items: center;
}
.soc-item-container{
	width: 50px;
	height: 50px;
	margin: 0 10px;
	border:1px solid #072931;
	display: flex;
	justify-content: center;
	align-items: center;
	overflow: hidden;
	border-radius: 50%;
}
.soc-item{
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 25px;
	text-decoration: none;
	transition: .3s background;
	color:#072931;
}
.soc-item:hover{
	color: #fff;
	background: #072931;
}



@media (max-width: 500px){
    .background{
        width: 100%;
        height: 100%;
        background: #05333d9f;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-end;
    }
    .background h1{
        font-size: 25px;   
    }
    .background p{
        margin:10px;
        color: #fff;
        font-size: 15px;
        font-weight: 300;
    }
    .contact{
        margin-top: 30px;
        display: grid;
        grid-template-columns:100%;
        justify-items: center;
        align-items: stretch;
    }
    .soc-container{
        justify-content: center;
    }
}