
.footer-content
	{
	height:100px;
	width:100%;
	background-color:white;
	z-index:999;
	border-top:1px solid gray;
	}


.footer-wraper
{
box-sizing:border-box;
width:100%;
max-width:1200px;
display:flex;
align-items:center;
justify-content:center;
flex-wrap:wrap;
flex-direction:row;
margin:auto;
gap:10px;
}

.footer-logo
	{
	height:100px;
	width:100px;
	}

.footer-logo img
	{
	height:100%;
	width:100%;
	}



.address
	{
	display:flex;
	justify-content:center;
	align-items:center;
	height:80px;
	width:42%;
	border-left:1px solid gray;
	padding-left:10px;
	}

	.address p
	{
	font-size:1rem;
	line-height:1.2rem;
	color:gray;
	font-family:"Trebuchet MS",sans-serif;
	}



@media screen and (max-width:768px)
{
.footer-content{
	display:block;
	}

.address p
	{
	font-size:1rem;
	color:gray;
	}

.address
	{
	display:flex;
	justify-content:flex-start;
	height:80px;
	width:50%;
	font-family:"Trebuchet MS",sans-serif;
	}

}




@media screen and (min-width:768px) and (max-width:1024px)
{
.footer-content{
display:block;

}



}




