.services_section  {
& .services_blocks {
display: grid;
grid-template-columns: repeat(5, 1fr); 
gap: 10px;
margin-top: 4rem;
margin-bottom: 4rem;
& .block.active {
box-shadow: rgba(0, 0, 0, 0.25) 0px 4px 4px 0px;      
}
& .block_wrapper {
text-decoration: none; 
}
& .block {
background: var(--grey);
min-height: 90px; 
border-radius: 5px;
display: flex;
align-items: center;
justify-content: center;
cursor: pointer;    
transition: all .4s ease; 
box-shadow: rgba(0, 0, 0, 0.0) 0px 0px 0px 0px;
text-decoration: none; 
&:hover {
box-shadow: rgba(0, 0, 0, 0.25) 0px 4px 4px 0px;          
}
& .icon {
margin-right: 2rem;
}
& h3 {
font-size: 22px;
font-weight: bold;
}
} 
}
& .services_slider_content {
display: flex;
align-items: center;
margin-top: 5rem; 
& .sliders_inner {
& a {
border-radius: 5px;
text-decoration: none;
width: 300px;
display: block;
position: relative;
overflow: hidden;
font-size: 0;
& .slider_inner_block {
overflow: hidden;
& .slider_image {
& img {
object-fit: cover;
width: 100%;
height: 100%;
border-radius: 5px; 
}
}
}
& .block_content {
position: absolute;
top: 0;
padding: 2rem;
z-index: 2;
display: flex;
flex-direction: column;
justify-content: space-between;
height: 100%;
& h4 {
color: #fff;
font-size: 30px;
margin-top: 0;
margin-bottom: 0;
max-width: 200px;
}
& p {
color: #fff;
font-size: 14px;
transition: all .4s ease;
opacity: 0;
}
& .block_cta {
display: flex;
align-items: center;
justify-content: space-between;
& span.learn_more {
color: #fff;
border: solid 1px #fff;
border-radius: 5px;
width: 130px;
height: 35px;
font-size: 15px;
font-weight: bold;
display: flex;
align-items: center;
justify-content: center;
transition: all .4s ease;
opacity: 0;
& svg {
margin-left: 0.5rem;
}
} 
}
& .slider_icon {
position: absolute;
bottom: 20px;
right: 20px;
}
}
& .cover {
background: #00007C;
position: absolute;
top: 0;
bottom: 0;
right: 0;
left: 0;
opacity: 0;
transition: all .4s ease;
}
&:hover {
& .cover {
opacity: 0.7;
}
& p {
opacity: 1;
}
& span.learn_more {
opacity: 1!important;
} 
}
}
}
}
& .slider_outer {
width: 86%;
}
& .sliders_inner .slick-slide {
margin-right: 10px!important;
margin-left: 0!important;
}
& .slider_controls {
display: flex;
justify-content: center;
align-items: center;
width: 30%;
position: relative;
z-index: 3;
& .custom-arrows {
display: flex;
}
}
& .sliders_inner .slick-slide:last-child {
margin-right: 0;
}
& .custom-arrows-btn {
width: 44.54px;
height: 44.54px;
background: var(--primary);
display: flex;
align-items: center;
justify-content: center;
border-radius: 50%;
margin-left: 0.5rem;
margin-right: 0.5rem;
cursor: pointer;
z-index: 10;
position: relative; 
}
@media (max-width: 1024px) {
& .services_blocks {
grid-template-columns: repeat(1, 1fr);
& h3 {
font-size: 22px!important;
}
}
& h2 {
display: none;
}
& .block {
justify-content: flex-start!important;
padding-left: 2rem;
}
& .block_content {
& h4 {
font-size: 32px!important;
max-width: unset!important;
}
}
}
@media (max-width: 991px) {
& .services_slider_content {
flex-direction: column;
}
& .slider_controls {
width: 100%;
margin-top: 2rem;
}
& .slider_outer {
width: 100%;
}
& .cover {
opacity: 0.7!important;
}
& p {
opacity: 1!important;
font-size: 17px!important;
}
& span.learn_more {
opacity: 1!important;
} 
& .slider_image {
height: 430px!important;
& img {
width: 100%;
height: 100%;
object-fit: cover;
}
}
}
@media (max-width: 360px) {
& .slider_image {
height: 480px !important;
}
}
@media (max-width: 290px) {
& .slider_image {
height: 530px !important;
}
& .slider_icon {
display: none;
}
}
}