:root {
    --col1: #E30613;
    --col2: #000000;
    --col3: #FFFFFF;
    --col4: #F4B22E;
    --col5: #FFED00;
}

body {
    background:url(../images/bg-main.png) var(--col2);
    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: 800px;
}

.logo {
    text-align: center;
    margin-top: 30px;
    margin-bottom: 20px;
}

.logo img {
    max-width: 150px;
}

h1 {
    color: #FFF;
    font-size: 24px;
    padding-top: 10px;
    text-transform: uppercase;
    font-weight: bold;
}

h1 i {
    font-size: 16px;
    margin-left: 10px;
}

.branch {
    margin: 30px 0;
}

.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;
}

.branch ul li {
	display: block;
	width: calc(100% - 90px);
	/* margin: 7px; */
	/* width: 170px; */
	position: relative;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 30px;
	margin-top: 48px;
}

.branch ul li span {
	position: absolute;
	margin: auto;
	left: 0;
	right: 0;
	top: -15px;
	font-size: 12px;
	color: var(--col5);
	background: var(--col1);
	border: 1px solid var(--col4);
	width: fit-content;
	padding: 2px 13px;
	border-radius: 10px;
}

.branch ul li a {
	padding: 4px;
	background: var(--col1);
	display: block;
	border-radius: 24px;
	color: var(--col3);
	font-size: 16px;
	box-shadow: 0 0 10px #0000003d;
	border: 1px solid var(--col4); 
	transition: all ease-in-out 0.3s;
	font-weight: bold;
	padding-top: 10px;
}

.branch ul li a:hover {
    opacity: 0.8;
    background: var(--col1);
    color: var(--col3);
}

.social {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    padding-bottom: 20px;
    margin-bottom: 20px;
}

.social a {
    display: block;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    background: var(--col3);
    margin: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
}

.social i {
    font-size: 26px;
    color: var(--col2);
}

.galley ul {
    display: flex;
    margin: 10px;
    width: calc(100% - 20px);
}

.galley {
    margin-bottom: 20px;
}

.galley ul li img {
    width: 100%;
    border-radius: 10px;
    border: 1px solid var(--col4);
}

@media (max-width: 768px) {
    .galley {
        max-width: 70%;
        margin: auto;
    }
}