.service_card {
    width: 300px;
    height: 400px;
    background-color: var(--color-white);
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease-in-out;
}

.service_card__icon {
    height: 75px;
    margin-bottom: 25px;
}

.service_card__icon img {
    height: 100%;
    filter: var(--filter-black);
}

.service_card__title h3 {
    font-size: 1.2rem;
    font-weight: 800;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.service_card__description {
    width: 100%;
    overflow-wrap: break-word;
    word-wrap: break-word;

}

.service_card__description p {
    font-size: 1rem;
    text-align: center;
    margin-bottom: 25px;
}

.btn_quote {
    display: inline-block;
    padding: 10px 20px;
    background-color: var(--color-primary);
    color: var(--color-white);
    border-radius: 10px;
    font-size: 1rem;
    line-height: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
}

.btn_quote:hover {
    background-color: var(--color-tertiary);
}

.service_card:hover {
    transform: scale(1.05);
}