footer{
	background: #ff6b6b;
}
footer a:hover{
	color: #F08760;
}
footer a:hover::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    height: 1px;
    background-color: #F08760;
    top: 50%;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}
footer a:hover::before {
    transform: scaleX(1);
}
footer .col-12 .footer-content-box{
	padding: 30px;
	border-top: 1px solid #3444a1;
	color: #3444a1;
	min-height: 33.33vh;
	position: relative;
}
footer *{
	font-family: "cool", sans-serif;
	font-size: 18px;
	color: #3444a1;
}
footer ul li{
	margin: 10px 0;
	position: relative;
	width: fit-content;
}
footer .vertical-text{
	position: absolute;
	right: 30px;
	font-size: 42px;
    line-height: 72px;
}
@media screen and (max-width: 992px){
	footer .vertical-text{
		right: 20px;
		font-size: 32px;
        line-height: 48px;
        letter-spacing: -.5px;
	}
	footer .col-12 .footer-content-box{
		padding: 20px;
	}
	footer *{
		font-size: 16px;
	}
}
@media screen and (min-width: 992px){
	footer .col-12:nth-of-type(3) .vertical-text{
		right: 5vw;
	}
	footer .col-12:nth-of-type(2) .footer-content-box{
		border-right: 1px solid #3444a1;
		border-left: 1px solid #3444a1;
	}
	footer .col-12:nth-of-type(1) .footer-content-box{
		padding-left: 5vw;
	}
	footer .col-12:nth-of-type(3) .footer-content-box{
		padding-right: 5vw;
	}
	footer ul{
		width: 400px;
		margin: auto;
		max-width: 100%;
	}
}