#services {
    background-color: rgb(39, 39, 41);
    padding: 0rem 0 2rem 0 !important;
}

#services .description {
    color: white;
    width: 60vw;
    margin: auto;
    text-align: justify;
    /* text-justify: distribute; */
    /* border: 1px solid red; */
    margin: 3rem auto 2rem auto;
}

.description strong {
    /* border: 1px solid blue; */
    position: relative;
    /* text-transform: uppercase; */
    display: block;
    text-align: center;
    margin: 1rem 0 0 0;
    font-size: 1.8rem;
}

.services-options {
    /* border: 2px solid blue; */

    width: 85vw;
    padding: 0rem 0 0rem 0;
    margin: auto;
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 1vw;
    flex-wrap: wrap;
    /* justify-content: space-between; */
    color: white;
    /* flex-basis: 100%; */

}

.services-options .service-option {
    /* border: 1px solid #EFBF04; */
    border: 3px solid #A50000;

    min-width: 350px;
    width: 20vw;
    max-height: 85vh;
    /* min-width: 20vw; */
    /* height: 90vh; */
    /* max-height: 80vh; */
    /* width: 45%; */
    gap: 1.5vh;
    /* flex-basis: 100%; */
    /* flex-grow: 0.9; */
    border-radius: 2px;
    padding: 0 0 0rem 0;
    display: flex;
    /* background-color: rgb(221, 221, 231); */
    /* color: black !important; */
    /* height: 80vh; */
    flex-direction: column;
    /* justify-content: baseline; */
    /* margin: 2rem 0 0rem 0; */
}

.service-option.selected {
    /* background-color: #EFBF04; */
    /* transform: scale(1.05); */
    animation: shadow-pulse 1.5s infinite;
    border: 5px solid #EFBF04;
    /* color: black; */
}

@keyframes shadow-pulse {
    0% {
        box-shadow: 0 0 0 0 #EFBF04;
        /* Start with no shadow */
    }

    70% {
        box-shadow: 0 0 0 20px rgba(165, 0, 0, 0);
        /* Expand shadow */
    }

    100% {
        box-shadow: 0 0 0 0 rgba(165, 0, 0, 0);
        /* Fade out shadow */
    }
}

.services-options .service-option:hover {
    background-color: #EFBF04;
    border: none;
    transform: scale(1.05);
    transition: 0.2s ease;
    cursor: pointer;
    /* border: 1px solid black; */
    color: black;
}

.services-options .service-option:hover h3 {
    border-bottom: 20px solid rgb(39, 39, 41);
}

.services-options .service-option:hover ul li span {
    color: black;
}


.service-option h3 {
    text-align: center;
    /* width: 30%; */
    font-size: 2rem;
    flex: 0.2;
    margin: 1.5rem 0 0rem 0;
    /* padding-bottom: 2rem !important; */
    padding: 0rem 1rem 0rem 1rem;
    /* border: 1px solid red; */
    /* background-color: white; */
    /* color: black; */
    border-bottom: 20px solid #A50000;
    text-transform: uppercase;
    word-break: break-word;
    font-weight: bold;
    letter-spacing: 5px;
}
.service-option.selected h3 {
    border-bottom: 20px solid #EFBF04;
}

.service-option .price {
    text-align: center;
    text-transform: uppercase;
    font-weight: 400;
    /* border: 1px solid red; */
    margin: 1rem 0;
    letter-spacing: normal;
    font-style: italic;
    font-size: 1.3rem;
    font-family: "Source Serif 4", serif, Arial, sans-serif;
}

.service-option .price .slashed {
    text-decoration: line-through;
    color: red;
    font-weight: bold;
    position: absolute;
    font-size: 1.1rem;
    transform: translateY(-15px);
}

.service-option ul {
    /* border: 2px solid red; */
    padding: 0.5rem 0 0 0;
    width: 90%;
    flex: 1;
    /* height: 200px; */
    display: flex;
    flex-direction: column;
    
    gap: 1vh;
    margin: 0rem auto 0rem auto;
}

#services ul li {
    list-style-type: none;
    font-size: 1.4rem;
    /* border: 1px solid red; */
    /* margin-bottom: 0.5rem; */
    padding: 0;
    gap: 7px;
    display: flex;
    
    /* display: inline; */
    /* font-weight: bold; */
}

.service-option ul li span {
    color: #EFBF04;
    font-size: 2rem;
    font-variation-settings:
        'FILL' 0,
        'wght' 800,
        'GRAD' 0,
        'opsz' 24
    /* height: 100%; */
}

.service-option img {
    max-width: 100%;
    min-height: 20vh;
    width: 100%;
    height: 100%;
    flex: 1;
    /* flex-shrink: 4; */
    /* margin: 0 auto 0 auto; */
    /* align-self: flex-end; */
    /* height: auto; */
    /* max-height: 400px; */
    /* border: 2px solid red; */
    /* object-fit: fill; */
    /* margin-top: 2rem; */
}


@media screen and (max-width: 1200px) {
    .services-options {
        width: 90%;
        /* border: 2px solid blue; */
        flex-direction: column;
        gap: 5vh;
        justify-content: space-between;
        /* padding: 0 2rem 0 2rem; */
    }

    #services .description {
        margin: 3rem auto 3rem auto;
        width: 85vw;
        text-align: center;
        /* border: 2px solid red; */
    }
    .service-option h3 {
        margin: 1rem 0 0 0;
    }
    .service-option {
        /* margin: 1rem 0 1rem 0; */
        /* height: 70vh; */
        /* flex-grow: 1 !important; */
        width: 100% !important;
    }


}