.bt-service{
    background-color: #F9FAFC;
}
.bt-service .bt-service-title h2{
    font-size: 24px;
    line-height: 1.5;
    margin-bottom: 12px;
    margin: 0 0 20px 0;
}
.bt-service a{
    display: inline-block;
    vertical-align: top;
}
.bt-service .bt-service-img{
    border-radius: 10px;
    overflow: hidden;
    margin: 0 0 20px 0;
    position: relative;
    z-index: 1;
}
.bt-service .bt-service-img::after{
    position: absolute;
    content: '';
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: #121213;
    opacity: 0.3;
}
.bt-service .bt-service-img img{
    vertical-align: top;
    aspect-ratio: 4/2;
    object-fit: cover;
}
.bt-service .bt-discover-more {
    font-size: 18px;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 20px;
    line-height: 1.5;
    transition: all .5s;
    margin: 0;
}
.bt-service .bt-discover-more:hover svg path{
    fill: var(--global-color-yellow);
}
.bt-service .bt-service-item{
    display: flex;
    flex-direction: column;
    height: 100%;
}
.bt-service .bt-service-item p{
    margin-top: 0;
}
@media (max-width: 1024px){
    .bt-service .bt-service-title h2 {
        font-size: 22px;
    }
}
@media (max-width: 767px){
    .bt-service .bt-service-title h2 {
        font-size: 20px;
    }
    .bt-service .bt-discover-more {
        font-size: 16px;
        gap: 12px;
    }
}