/* services section */
#services-section {
    width: 100%;
    background-color: #252525;
    padding-top: 10vw;
    padding-bottom: 10vw;
}



#service-title {
    font-size: 30px;
    font-weight: 300;
}

#service-sub-title {
    font-size: 34px;
    line-height: 1.5;
    font-weight: 500;
    display: block;
}

#service-sub-title-1 {
    font-size: 34px;
    line-height: 1.5;
    font-weight: 500;
    display: none;
    scale: 0;
}

/* services cards */

#services-cards {
    display: flex;
    justify-content: start;
    gap: 3vh;
    padding: 4vw 0px;
    width: 100%;
    flex-wrap: wrap;
}

.card {
    width: 24vw;
    height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 30px;
    background-color: rgba(29, 27, 27, 0.33);
    border-radius: 10px;
    gap: 2vh;
    transition: all 0.2s linear;
}

.card:hover {
    border-top: 2px solid #A7734A; 
    transform: translateY(-3%); 
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px; 
}

.icon-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100px;
    height: 100px;
    background-color: rgba(53, 53, 53, 0.574);
    border-radius: 50%;
}

.icon-container .icon {
    font-size: 70px;
}

.icon-container .icon i {
    font-size: 70px;
    color: #A7734A;
}

.card h2 {
    text-align: center;
    font-size: 17px;
    font-weight: 400;
}