/* English Wrapper Styles */
.branch_page_wrapper {
    
    width: 100vw;
    height: 100vh;
    background-color: #E6E5E3;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

}
/* Al Madfoon Logo */
.branch_page_wrapper .logo {
    margin-top: 0rem;
}
/* Branch Selection Heading */
.branch_page_wrapper h2 {

    margin-top: 2rem;
    color: #651912;

}
.branch_page_wrapper p {

    width: 30%;
    text-align: center;
    margin-top: 1rem;
    margin-bottom: 2.5rem;
    color: #585A5c;
    
    font-family: Arial, Helvetica, sans-serif;
    font-weight: normal;
}
/* Branch Selection Buttons */
.branch_selection_container {
    display: grid;
    grid-template-rows: 0fr 0fr 0fr 0fr 0fr;
    row-gap: 1rem;
    place-content: center;
    text-align: center;
}
.branch_select_btn {

    width: 20vw;
    background-color: white;
    border: 1px solid rgb(220, 220, 220);
    color:#333333;
    border-radius: 100rem;
    padding: 1rem;
    transition: all 0.3s ease-in-out;
}
.branch_select_btn:hover {

    background: #EEE046;
    border: 1px solid #65191220;

}
.branch_select_btn button {

    background-color: transparent;
    border: none;
    outline: none;
    cursor: pointer;

    color:#333333;
    font-size: 1.1rem;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: bold;

}
.branch_select_btn:hover button {
    color: #651912;
}
.branch_select_btn button:active {
    color: #651912;
}
/* Language Selection Button */
.lang_switch_btn {

    width: 20vw;
    background-color: #EEE046;
    border: 1px solid #65191220;
    border-radius: 100rem;
    padding: 1rem;
    transition: all 0.3s ease-in-out;

}
.lang_switch_btn button {

    background-color: transparent;
    color:#651912;
    border: none;
    outline: none;
    cursor: pointer;

    font-size: 1rem;

}
.lang_switch_btn:hover {

    background: #651912;
    border: 1px solid #65191220;

}
.lang_switch_btn:hover button {

    color: #DC3126;

}
@media screen and (max-width: 900px) {
    .branch_select_btn {
        width: 70vw;
    }
    .lang_switch_btn {
        width: 70vw;
    }
    .branch_page_wrapper p {
        width: 80%;
    }
}
/* Credits */
.credits {

    margin-top: 3rem;

}