html, body{
    overflow-x: hidden;
    scroll-behavior: smooth;
}
body{
    font-family: "Almarai", sans-serif;
    background: #2193b0;  /* fallback for old browsers */
    background: -webkit-linear-gradient(to right, #6dd5ed, #2193b0);  /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient(to right, #6dd5ed, #2193b0); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
}
a, a:hover{
    text-decoration: none;
    color: white;
    display: flex;
    justify-content: space-between;
}
h4{
    color: white;
}
.box{
    padding-top: 50px;
    padding-inline: 20px;
    box-shadow: 0 10px 15px rgba(0, 0, 0, .3);
    min-height: 100vh;
}
.box .language-box a{
    background-color: #333A73;
    padding: 10px;
    border-radius: 12px;
    min-width: 80px;
    display: flex;
    justify-content: center;
    font-weight: 600;
}
@media(min-width:767px){
    .box .language-box a{
        background-color: #333A73;
        padding: 10px;
        border-radius: 12px;
        min-width: 80px;
        display: flex;
        justify-content: center;
        font-weight: 600;
    }
}
.box .image-box{
    width: 150px;
    height: 150px;
    margin: auto;
    border-radius: 50%;
    overflow: hidden;
}
.box .image-box img{
    width: 100%;
    height: 100%;
}
.box p{
    font-size: 24px;
    color: black;
    font-weight: 600;
    padding-block: 10px;
}
.box .list {
    gap: 5px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    flex-direction: row;
}
.box .locations{
    flex-direction: row;
}
.box .list .list-item{
    background-color: #333A73;
    color: white;
    width: 48%;
    padding-block: 10px;
    font-size: 20px;
    border-radius: 40px;
    margin-bottom: 20px;
    padding-inline: 5px;
}
.box .locations .list-item{
    width: 75%;
}
.box .list .list-item img {
    margin-right: 10px;
}
