.footer{
    height: fit-content;
    background: var(--Main-Dark);
    box-shadow: rgba(0, 0, 0, 0.1) 4px 0px 12px;
    overflow: hidden;
	align-content: center;
	z-index: 50;
    position: relative;
}

.footer .main{
    display: flex;
    margin: 0px 200px;
    justify-content: center;
    gap: 50px;
	padding: 10px 0px;
	align-items: flex-start
}

.footer .main .logo{
	align-content: center;
	align-self: center;
}

.footer .main .logo img{
    width: 200px;
}

.footer .main .links{
    width: 80px;
    color: #fff;
    font-weight: 400;
    font-size: 1.1em;
    align-content: center;
}


.footer .main .links.large{
    width: 160px;
}

.footer .main .links.exlarge{
    width: 230px;
}

.footer .main .links .link{
    padding: 5px 0px;
}

.footer .main .location{
    width: 200px;
    color: #fff;
    font-weight: 400;
    font-size: 1.1em;
    align-content: center;
}

.footer .main .location .line{
    padding: 5px 0px;
}

.footer .policies{
	width: 60%;
    margin: auto;
    display: flex;
    justify-content: center;
    gap: 50px;
    border-top: 3px solid white;
    color: #fff !important;
    font-weight: 400;
    font-size: 0.9em;
	padding: 0px 20px ;
	align-items: center;

}

.footer .policies .socialMedia{
	width: 50%;
	font-size: 30px;
}

.footer .policies .policyList{
    width: 50%;
	display: flex;
	justify-content: end;
	gap: 20px;
}

@media only screen and (max-width: 1240px) {
	.footer .main{
		flex-direction: column;
		gap: 20px;
		text-align: center;
		margin: 0px;
	}
	
	.footer .main .logo img {
		width: 100%;
		max-width: 200px;
	}
	.footer .main .links, .footer .main .location, .footer .main .contact, .footer .main .links.large{
		font-size: 1.4em;
		width: 100%;
	}

	.footer .policies {
		margin-top: 30px;
		width: 90%;
		gap: 0px;
		padding: 20px 0px;;
	}
	
	.footer .policies .socialMedia {
		width:30%;
	}	
	
	.footer .policies .policyList {
		width:70%;
	}
}