.directions-section{
    padding: 50px 0;
}
.directions-title{
    color: #F66F5D;
    font-size: 42px;
    font-weight: 700;
    line-height: normal;
}
.directions-text-image{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.directions-text p{
    font-size: 18px;
    font-weight: 400;
    line-height: 130%;
}
.directions-text{
    width: 40%;
}
.directions-text h3{
    margin: 24px 0 16px 0;
}
.directions{
    display: flex;
    flex-wrap: wrap;
    gap: 45px;
}
.directions a{
    flex: 0 1 calc((100% / 3) - 30px);
    min-width: 300px;
    display: block;
}
.direction-block{
    border-radius: 8px;
    background: #35324B;
    height: 100%;
    padding: 40px 24px 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    position: relative;    
}
.direction-title{    
    font-size: 24px;
    font-weight: 700;
    line-height: 130%;
    text-align: center;
    color: #E9E8EA;
}
.direction-hover{
    border-radius: 4px;
    background: #F66F5D;
    padding: 10px 25px;
    width: 240px;
    text-align: center;
    opacity: 0;
}
a:hover .direction-hover{
    opacity: 1; 
    color: #E9E8EA;
}
a:hover .direction-title{    
    color: #E9E8EA;
}
a:hover .direction-block:before{
    content: "";
    border: 16px solid #F66F5D;
    width: calc(100% + 32px);
    height: calc(100% + 32px);
    display: block;
    position: absolute;
    top: -16px;
    border-radius: 8px;
}
a:hover .direction-block{    
    border-radius: 0px;
}
@media screen and (max-width: 1200px){
    .directions-text p {
		font-size: 14px;
    }
    .directions-title {    
		font-size: 26px;
    }
	.directions-title{
		font-size: 36px;
	}
}

@media only screen and (max-width: 767px) {
    .directions-text-image{
	flex-wrap: wrap;
	justify-content: center;	
    }
    .directions-text {
	width: 100%;
    }
    .directions a {
	flex: 0 1 100%;	
    }
    .directions-text p {
	font-size: 14px;
        line-height: 21px;
    }
    .directions-title {    
	font-size: 22px;
	margin-bottom: 20px;    
    }
}

