/* TOP PAGE */

.btn_bl_wh {
    border: solid var(--main-color);
    background-color: var(--wh-color);
}
.s_flex {
    display: flex;
}

/* ANNOUNCEMENT */
.s_announcement {
    max-width: 100%;
    min-height: 40vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--main-color);
    color: var(--wh-color);
    position: relative; 
    overflow: hidden;    
}
/* The Overlay Image */
/* .s_announcement::after {
    content: "";
    position: absolute;
    top: -60px;
    right: 0;
    width: 150%;          
    height: 130%;
    background-image: url(../img/logo_icon_bg.webp); 
    background-repeat: no-repeat;
    background-position: center right;
    background-size: contain;
    opacity: 1;        
    z-index: 1;          
} */
.s_announcement_align {
    display: flex;
    align-items: end;
    text-wrap: nowrap;
}
.s_announcement_heading {
    font-size: 2.1em;
}
.s_announment_year{
    font-size: 1.3em;
}
.s_announment_year_text {
    font-size: .9em;
    line-height: 1.8;
}
.s_announment_sm_text {
    font-size: 1.5em;
    line-height: 1.5;
}
.s_announcement_md {
    font-size: 2.5em;
    line-height: 1.2;
}
.s_announcement_address {
    font-size: 1.4em;
    border: solid var(--wh-color);
    padding: 14px 10px;
    margin-top: 10px;
    width: 100%;
    border-width: thin;
}
.s_announcement_txt {
    font-size: 1.07em;
    letter-spacing: 12%;
    margin-top: 80px;
}
.hidden {
    display: none;
}

@media (max-width: 500px) {
    .s_announcement_align{
        display: block;
        margin-top: 20px;
    }
    .s_announcement_heading {
        font-size: 4.1em;
        line-height: 1.3;
    }
    .s_announcement_md {
        font-size: 4.1em;
        line-height: 1;
    }
    .s_announment_year{
        font-size: 2.5em;
        line-height: 0;
    }
    .s_announment_year_text {
        font-size: 1.9em;
        line-height: 0;
    }
    .s_announment_sm_text {
        font-size: 2.9em;
        line-height: 0;
    }
    .hidden {
         display: block !important;
    }
    .s_announcement_address {
        margin-top: 30px;
        font-size: 2.5em;
    }
}
/* GREETINGS SECTION */
.s_greetings {
    min-height: 90vh;
    
}
.s_greetings_txt {
    margin-top: 40px;
    line-height: 45px; 

    font-size: 1.15em;
}

.s_greetings_sign_txt {
    text-align: right;
    margin: 0;
}
.s_greetings_sign {
    width: 100%;
    margin-top: 60px;
    display: flex;
    flex-direction: column; 
    align-items: flex-end;   
    box-sizing: border-box;

    line-height: 12%;
    font-size: 1.6em;
}
.s_greetings_sign_txt span:first-child {
    display: block;
    margin-bottom: 60px; 

}
@media (max-width: 768px) {
    .s_greetings_sign {
        margin-top: 30px;
        padding-right: 15px;
    }
    .s_greetings_sign_txt {
        font-size: 16px;
    }
}
@media (max-width: 500px) {
    .s_greetings_txt {
        margin-top: 23px;
        line-height: 35px;
        font-size: 1.6em;
    }
    .s_greetings_sign {
        font-size: 3em;
    }
    .s_greetings_sign_txt span:first-child {
        margin-bottom: 20px;
    }
}
/* OVERVIEW SECTION */
.s_overview {
    min-height: 70vh;
    background: rgba(240, 240, 240, 0.5) ;
}
.s_overview_specialist, .s_overview_info  {
    font-size: 1.3em;
    letter-spacing:  12%;
    margin-top: 47px;
    width: 100%;
    display: flex;
    justify-content: center; 
}

table {
    border-collapse: collapse;
    width: 100%;
    max-width: 960px; 
    table-layout: fixed;
}
th {
    color: var(--wh-color);
    text-align: center;
}
td {
    text-align: center; /* Centers the symbols ● and ◎ */
    vertical-align: middle;
    background-color: var(--wh-color);
}
td, th {
    border-bottom: 2px solid var(--bk-color);
    text-align: center;
    padding: 8px;
}

.s_tb_ttl {
    background-color:var(--main-color)
}
.s_tb_disc {
    color: var(--main-color);
}

.s_time_col {
    width: 30%; 
    text-align: right; 
    padding: 20px;
    font-variant-numeric: tabular-nums; 
}
.s_overview_btn_txt {
    color: var(--main-color);
}


/* .s_overview_specialist_txt {
    width: 100%;
    padding: 11px 0px 0px 0px;
    display: flex;
    justify-content: end;   

    font-size: 1.3em;
} */
.s_overview_btn {
    margin-top: 47px;
    padding: 6px 13px;
    width: 60%;
    border-radius: 9px;
    border-width: thin;
}
.s_overview_btn_txt {
    font-size: 1em;
    letter-spacing: 12%;
}
@media (max-width: 768px) {
    th, td {
        padding: 10px 4px;
    }
}
@media (max-width: 500px) {
    .s_overview_specialist {
        font-size: 2em;
        margin-top: 23px;
        overflow: scroll;
        max-width: 500px;
        width: 100%;
        display: flex;
        justify-content: start;
    }
    .s_overview_info {
        font-size: 2em;
        margin-top: 23px;
    }
    .s_time_col  {
        font-size: .8em;
        width: 50%; 
    }
    td, th {
        font-size: 1em;
    }
    .s_overview_btn {
        padding: 10px 13px;
        width: 80%;
    }
    .s_overview_specialist_txt {
        font-size: 1.5em;
    }
    .s_overview_btn_txt {
        font-size: 1.5em;
    }
    table {
        min-width: 500px;
    }
    
}
/* ACCESS SECTION */
.s_access {
    min-height: 90vh;
}
.s_access_job_vacancies {
    min-height:131px;
    max-width: 100%;
    width: 100%;
    background-color: var(--pk-color);
    border-radius: 9px;
    letter-spacing: 12%;
    font-size: 1.3em;
    overflow: hidden;
    transition: 0.3s;
    
}
.s_access_job_vacancies:hover {
    background-color: var(--hover-pk);
}
.s_access_link_wh {
    color: var(--wh-color);
}
.s_access_mg {
    margin-top: 105px;
}
.s_access_address_box {
    padding: 40px 0px;
    flex-direction: column;
}

.s_access_gmap {
    width: 100%;
    margin-top: 31px;
    max-width: 100%; /* Limits the width on large screens */
    height: 600px;
}

.s_access_gmap iframe {
    display: flex;
    width: 960px;
    max-width: 100%;
    height: 100%;
    border-radius: 9px; /* Matches your site's design style */
}
@media (max-width: 500px) {
    .s_access_job_vacancies {
        min-height: 93px;
        font-size: 2.3em;
    }
    .s_access_address, .s_access_travel_time {
        font-size: 1.5em;
    }
}
@media (max-width: 406px) {
    .s_access_address, .s_access_travel_time {
        font-size: 1.3em;
    }
}