.features-section{
    padding-top: 100px;
}

.features-section__header{
    display: flex;
    flex-direction: column;
    align-items: center;
}

.features-section__heading{
    font-size: 4rem;
}

.features-section__header .sub-title{
    color: var(--text-color);
}

.features__item{
    text-align: center;
    margin: 30px 0;
    box-shadow: 5px 16px 15px rgb(0 0 0 / 50%);
    transition: 0.5s;
    border-radius: 10px;
}

.features__item:hover{
    transform: scale(1.1);
    z-index: 99;
    border: 1px solid #ccc;
}

.features__item img{
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.features__item-btn{
    border: 1px solid var(--blue-general);
    background-color: var(--white-general);
    color: #0987a3;
    padding: 10px;
    font-size: 1.6rem;
    margin-top: -21px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 10px;
}

.features__item-btn:hover{
    color: #0987a3;
}