.wrapper-specialities {
    COLOR: #F2F2F2;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: min-content;
    justify-items: center;
    width: 100%;
    height: fit-content;
    text-align: center;
}


.section-title {
    font-size: 3rem;
    font-family: 'Raleway', sans-serif;
    font-weight: 500;
    color: #696969;
}

.specialities-after-title-text {
    font-size: 1.5rem;
    font-family: 'Signika', sans-serif;
    font-weight: 600;
    color: #285268;
    height: fit-content;
}

.section-title::after {
    content: "";
    display: block;
    width: 3.7em;
    margin: 8px auto 0;
    height: 1px;
    background-color: #000;
    border: 1px groove #d0d0d0;
    border-radius: 5px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, .05);
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .05);
    -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .05);
}

.speciality {
    COLOR: #F2F2F2;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    width: 30vw;
    height: 25vh;
    margin: 1rem 0 1rem 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.button-panel {
    width: 80%;
    height: 70%;
    background-color: rgba(195, 228, 235, 0.65);
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: min-content;
    justify-items: center;
    text-align: center;
    align-content: center;
}



.speciality-title {
    padding: 0;
    margin: 0;
    font-family: 'Raleway', sans-serif;
    font-weight: 600;
    color: #285268;
    font-size: 2rem;
}

.speciality-one {
    background-image: url("images/cataract_home_v2.jpg");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

.speciality-two {
    background-image: url("images/retina_home_v2.jpg");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

.speciality-three {
    background-image: url("images/uveitis_home_v2.jpg");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

.speciality-four {
    background-image: url("images/lasik_home_v2.jpg");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

@media only screen and (max-width: 992px) {
    .speciality {
        COLOR: #F2F2F2;
        background-repeat: no-repeat;
        background-position: center center;
        background-size: cover;
        width: 80vw;
        height: 20vh;
        margin: 1rem 0 1rem 0;
    }

    .speciality-title {
        font-size: 1.5rem;
    }
}