/* TOP PAGE */
/*Font Weight
----------------*/
.c_fw100 {
    font-weight: 100;
}
.c_fw200{
    font-weight: 200;
}
.c_fw300 {
    font-weight: 300;
}
.c_fw400 {
    font-weight: 400;
}
.c_fw500 {
    font-weight: 500;
}
.c_fw600 {
    font-weight: 600;
}
.c_fw700 {
    font-weight: 700;
}
.c_fw800 {
    font-weight: 800;
}
.c_fw900 {
    font-weight: 900;
}

/* c_container
----------------*/
.c_container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    max-width: 960px;
    width: 100%;
    margin: 112px 50px;
}

.c_center {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Section Title Box */
.s_ttl_box {
    min-height: 62px;
    max-width: 100%;
    width: 100%;
    background-color: var(--main-color);
    color: var(--wh-color);
    border-radius: 9px;
    font-size: 1.3em;
    display: flex;
}
.s_ttl_box h2 {
	font-size: 1em;
	font-weight: 500;
}
@media (max-width: 500px) {
    .s_ttl_box {
        font-size: 2.3em;
    }
}
/* ANNOUNCEMENT */
.c_announcement {
    position: relative;
    z-index: 2;          /* Ensures text stays above the overlay */
    text-align: center;
    padding-bottom: 10px;
}
/* SPACER*/
.c_spacer {
    height:100px ;
    display: flex;
}
.sp_hidden {
    display: none !important;
}
@media (max-width: 500px) {
    .c_container {
        margin: 40px 0;
        padding: 0 20px;
    }
    .c_spacer {
        height: 57px;
    }
    .dsk_view{
        display: none !important;
    }
    .sp_hidden {
        display: block !important;
    }

    .c_overview_specialies{
        max-width: 450px;

    }
}

