:root {
    --col1: #000000;
    --col2: #2984C6;

}

body {
    background: #FFF;
    text-align: center;
    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    background-size: 65px;
}

body#arabic {
    font-family: "Almarai", sans-serif;
    font-weight: 400;
    font-style: normal;
}

a {
    color: var(--col3);
    text-decoration: none;
}

a:hover {
    color: var(--col4);
}

ul {
    list-style: none;
    padding: 0;
}

.container {
    max-width: 600px;
}

.logo {
    text-align: center;
    margin-top: 30px;
    margin-bottom: 20px;
}

.logo img {
    max-width: 400px;
}

h1 {
    color:var(--col2);
    font-size: 16px;
    text-transform: uppercase;
    width: min(80%, 400px);
    margin: auto;
    padding-top: 10px;
    font-weight: 600;
}
h2 {
    font-size: 20px;
    font-weight: 600;
}



.lang {
    position: absolute;
    top: 10px;
    right: 20px;
    color: var(--col3);
}

.lang.ar {
    font-family: "Almarai", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 20px;
}

.menu ul {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.menu ul li {
    display: flex;
    position: relative;
    transition: 0.3s;
    width: 100%;
    justify-content: space-between;
}


.menu ul li:not(:last-child) {
    margin-bottom: 20px;
}

.menu ul li .icon{
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--col2);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

.menu ul li .icon:hover{
    opacity: 0.8;
}

.menu ul li a {

    color: #FFF;
    text-align: center;
    padding: 7px;
    display: block;
    font-size: 26px;
    font-weight: 600;
}
.menu ul li .branch{
    width:calc(100% - 150px);
    display: block;
    background:var(--col2) ;
    color: #FFF;
    font-size: 20px;
    text-align: center;
    border-radius: 20px;
    padding: 7px;
    padding-bottom: 4px;
}
.menu ul li .branch span{
    display: block;
   line-height: 26px;
   font-weight: 600;
}





/* Only Mobile */
@media (max-width: 767px) {}

/* Only Desktop */
@media (min-width: 768px) {}