/*  BURGER MENU CSS   */
.burger-menu {
    position: relative;
    display: none;
}

@media (max-width: 1024px) {
    .burger-menu {
        display: block;
    }
}

.burger-menu hr {
    margin: 0px !important;
    border-top: 0.1px solid #000000;
}

.burger-icon {}

.burger-icon.active {
    /* Slide in to original position */
    filter: none !important;
}

.burger-icon i {
    display: block;
    color: #000;
    font-size: 28px;
    filter: none !important;
}


.submenu .burgermenu-child-link{
	justify-content:flex-start;
}

.burger-closer {
    margin-bottom: 20px;
    display: flex;
    justify-content: space-between;
	align-items: center;
}

.burger-closer i {
    font-size: 1.7rem;
    font-weight: 100;
    color: #fff;
}

.close-button{
	border-radius: 111.11rem;
    background-color: black;
    padding-left: 1.7rem;
    padding-right: 1.7rem;
    padding-top: 1.1rem;
    padding-bottom: 1.1rem;
}

.external-link-burger {
    font-size: 1.8rem;
}

.slide-menu {
    position: fixed;
    top: 0;
    color: #000;
    left: -100vw;
    width: 100vw;
    height: 100vh;
    box-shadow: 2px 0px 5px rgba(0, 0, 0, 0.5);
    padding: 20px;
    z-index: 1000;
    transition: transform 0.3s ease-in-out, left 0.3s ease-in-out;
    background-color: white;
    /* Initially transformed to slide off screen */
    transform: translateX(-100%);
    filter: none;
    overflow-y: auto !important;
    overflow : scroll;
    flex: 1 1 auto;
	-webkit-overflow-scrolling: touch;
	overscroll-behavior-y: contain;
}

.slide-menu.active {
    transform: translateX(0);
    /* Slide in to original position */
    left: 0;
}

.slide-menu ul {
    margin: 0px !important;
}

.burger-search-bar {
    margin-bottom: 20px;
    background-color: #fff;
}

.burger-search-bar-input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.burger-search-bar-input::placeholder {
    font-size: 14px;
}

.menu-items {
    list-style: none;
    padding: 0;
}

.menu-items li {
    margin: 15px 0;
    width: 100%;
}

.menu-items li a {
    text-decoration: none;
    color: #000000;
    font-size: 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 100;
}

.submenu li a {
	color: var(--Color-Content-Tertiary, #696562);
    font-size: 19.2px !important;
}

.menu-items li a:hover {
    color: var(--primary-color);
}

i.fab.fa-instagram:hover {
    color: purple;
}

i.fa.fa-youtube-play:hover {
    color: red;
}

.cube-logo {
    width: 20.156px;
    height: 20.156px;
    transform: rotate(-45deg);
    background: #EA5A14;
}


.main-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 2rem;
}

.menu-items li .arrow {
    font-size: 14px;
    margin-left: 10px;
    transition: transform 0.3s;
}

.menu-items li .arrow.active {
    transform: rotate(180deg);
}

.menu-items .submenu {
    list-style: none;
    padding: 0px 20px;
    display: none;
    margin-top: 10px;
}

.menu-items .submenu li {
    margin-bottom: 10px;
}

.menu-items .dropdown.active .submenu {
    /*     display: block; */
}


.burger-social-icons {
    display: flex;
    gap: 30px;
    /* Space between icons */
    margin-top: 70px;
    float: right;
}

html[lang="ar"] .burger-social-icons {
    float: left;
}

.burger-social-icons a {
    text-decoration: none;
    color: #707D98;
    /* Adjust icon color */
}

.burger-social-icons a i {
    font-size: 3rem;
    /* Adjust icon size */
    transition: color 0.3s ease;
    font-weight: 100;
}

.burger-language-switcher {
    display: flex;
    flex-direction: row;
    margin-top: 50px;
}

.burger-language-switcher p {
    font-size: 2rem;
    font-weight: 400;
    color: white;
}

.burger-language-switcher a {
    color: #2B84FF;

}

.burger-language-options {
    display: flex;
}

.language-option {
    margin: 0px 20px;
}

.filter-active {
    filter: brightness(50%) blur(2px);
}


.external-link-burger a{
	display:flex;
	align-items: center;
}
.rak-digital-link img {
	 transform: scaleX(1) !important; 
}


.burgermenu-child-link svg{
	width: 20px;
	height: 20px;
}

.burgermenu-child-link path{
	stroke: #686868;
}
/*  Burger menu css endd */
.custom-header{
	/*max-width:1440px;*/
	width:100%
}

.main-link {
    display: relative;
    height: 58px;
	padding: 16px 12px;
    justify-content: center;
    align-items: flex-start;
    color: var(--Color-Content-Primary, #0D0D0D);

    /* Link 1 */
    font-family: var(--Type-Link-Link-1-Family, Involve);
    font-size: var(--Type-Link-Link-1-Size, 20px);
    font-style: normal;
    font-weight: var(--Type-Link-Link-1-Weight, 600);
    line-height: 130%;
    /* 26px */
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.main-link:hover>.child-links,
.main-link:focus-within>.child-links {
    display: block;
}

.main-link>a {
    display: inline-flex;
    /* Ensures text and icon stay in one row */
    align-items: center;
    white-space: nowrap;
    /* Prevent line break */
    gap: 6px;
    /* Adds spacing between text and icon */
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
}

.main-link i {
    display: inline-flex;
    transition: transform 0.3s ease;
    margin-left: 5px;
    flex-shrink: 0;
    /* Prevent icon from shrinking */
}


.child-links {
    display: none;
    position: absolute;
    top: 80%;
    background: #fff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    list-style: none;
    padding: 10px 0;
    margin: 0;
    z-index: 1000;
    min-width: 200px;
}

.child-links li {
    padding: 6px 16px;
}

.child-links li a {
    display: flex;
    color: #333;
    text-decoration: none;
    transition: background 0.2s ease-in-out;
}

.main-link a:focus,
.main-link a:active{
	outline:0;
}

.child-links li a:hover {
    background: #f0f0f0;
}

.left-links::hover {
    display: block;
}

.top-section {
    background: #eef9f7;
    padding: 10px 20px;
    display: flex;
    font-size: 14px;
    color: #333;
    gap: 40px;
}

.switch-languages li{
	list-style: none;
	font-size: 20px; 
}

.expand-area {
    cursor: pointer;
    color: var(--Color-Content-Positive, #138673);
    font-family: var(--Type-Link-Link-2-Family, Involve);
    font-size: var(--Type-Link-Link-2-Size, 16px);
    font-style: normal;
    font-weight: var(--Type-Link-Link-2-Weight, 600);
    line-height: 140%;
}

.expand-area .arrow {
    transform: rotate(360deg);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    vertical-align: middle;
    height: 100%;
    line-height: 1;
    margin-left: 6px;
}
.expand-area .arrow svg path{
	fill:#138673;
}

.gov-label {
    color: var(--Color-Content-Primary, #0D0D0D);
    font-family: var(--Type-Body-M-Body-2-Family, Involve);
    font-size: var(--Type-Body-M-Body-2-Size, 16px);
    font-style: normal;
    font-weight: var(--Type-Body-M-Body-2-Weight, 500);
    line-height: 140%;
}

.recognition-dropdown {
    display: none;
    background: #eef9f7;
    padding: 15px 30px;
    color: #333;
}

.recognition-grid {
    display: flex;
    align-items: flex-start;
    gap: var(--Spacing-5XL, 64px);
    align-self: stretch;
}

.reco-grid-item{
	display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: var(--Spacing-M, 16px);
    flex: 1 0 0;
}
.reco-grid-item img {
    width: 40px;
    height: 40px;
    margin-bottom: 10px;
}

.reco-grid-item h4 {
    margin: 0 0 10px 0;
    font-size: 16px;
    color: rgb(0, 0, 0);
}

.reco-grid-item p {
    margin: 0;
}

.bottom-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 40px;
	background-color:#FFF;
	height:80px;
	border-bottom: 1px solid #ddd;
	position: relative;
}

.left-section {
    display: flex;
    align-items: center;
    gap: 20px;
}

.left-section .logo svg{
	width:50px;
	height:50px
}

.left-links {
    display: flex;
    align-items: center;
    gap: 8px;
}



.logo-icon {
    width: 4rem;
}

.header-link {
    position: relative;
    padding-bottom: 5px;
    color: var(--Color-Content-Primary, #0D0D0D);
    font-family: var(--Type-Link-Link-1-Family, Involve);
    font-size: var(--Type-Link-Link-1-Size, 20px);
    font-style: normal;
    font-weight: var(--Type-Link-Link-1-Weight, 600);
    line-height: 130%;
}

.header-link .underline {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 3px;
    background: #ccc;
}

.right-section {
    display: flex;
    align-items: center;
    gap: 20px;
}

.right-links {
    display: flex;
    height: 55px;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.lang-switch {
    color: var(--Color-Content-Primary, #0D0D0D);
    font-family: Involve;
    font-size: 26px;
    font-style: normal;
    font-weight: 500;
    line-height: 30px;
    letter-spacing: -0.52px;
}

.external-link {
    display: flex;
    align-items: center;
    gap: 5px;
    color: var(--Color-Content-Primary, #0D0D0D);
    font-family: Involve;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 30px;
}

.arrow {
    width: 14px;
    height: 14px;
    display: flex;
}

.burger-menu {
    display: none;
    cursor: pointer;
}

.burger-icon {
    position: relative;
}

.arrow-icon{
	width:24px;
}

.search-icon {
    font-size: 2.4rem;
}

.search-icon svg{
	width:24px;
	height:24px;
	flex-shrink: 0;
}

.left-links .link-separator {
    width: 0px;
    height: 47px;
    border-left: 1px solid var(--Color-Border-Tertiary, #6B6B6B);
    opacity: 0.3;
}

.header-link.active-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    height: 4px;
    width: 100%;
    background-color: #D6D6D6;
}

@media (max-width: 1024px) {
    .burger-menu {
        display: block;
        z-index: 100;
    }
	.recognition-grid {
	    flex-direction: column;
	}

    .top-section {
        flex-direction: column;
        gap: 0;
    }

    .right-links.active {
        display: none;
        align-items: flex-start;
    }

    .right-links.active {
        display: relative;
    }

    .burger-menu {
        position: relative;
        z-index: 101;
    }

    .left-links {
        display: none;
    }

    .external-link {
        display: none;
    }

	.bottom-section {
		padding: 12px 20px;
	}
}

.link-separator {
    width: 0px;
    height: 47px;
    border-left: 1px solid var(--Color-Border-Tertiary, #6B6B6B);
    opacity: 0.3;
}

.main-link:hover i {
    transform: rotate(180deg);
}
/*==================================================================================================================================================================
 * ==============================================================     Footer CSS      ==============================================================================
 * ================================================================================================================================================================*/
.site-breadcrumbs {
    overflow: hidden !important;
}

.custom-button.scrollup_button {
	position: fixed;
	bottom: 48px;
	right: 40px;
	background: #fff;
	z-index: 7971;
	display: flex;
	width: 60px;
	height: 54px;
	padding: 14.727px 19.636px;
	justify-content: center;
	align-items: center;
	gap: 9.818px;

	opacity: 0;               /* hidden initially */
	visibility: hidden;       /* prevent clicks */
	transition: opacity 0.4s ease, visibility 0.4s ease;
}

.custom-button.scrollup_button.visible {
	opacity: 1;
	visibility: visible;
}

@media(max-width:768px){
	.custom-button.scrollup_button{
		bottom: 24px;
		right: 20px;
	}
}
.site-breadcrumbs {
	overflow: hidden !important;
}

.custom-footer {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	background: #F4F3F3;
}

.custom-footer-top {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	border-bottom: 1px solid #DADADA;
	padding-bottom: 48px;
}

.footer-breadcrumbs {
	border-bottom: 1px solid #DADADA;
	display: flex;
	padding: 32px 40px 24px 40px;
	align-items: center;
	gap: -4px;
	align-self: stretch;
}

.bread-social{
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
}
.menu-container{
	width:100%;
	display:flex;

}


.footer-body {
	display: flex;
	padding: 40px;
	flex-direction: column;
	align-items: flex-start;
	gap: 40px;
	align-self: stretch;
}



.footer-columns {
	display: flex;
	align-items: flex-start;
	/*                 gap: 24px; */
	align-self: stretch;
}

.footer-menu .menu-toggle {
	color: var(--Color-Content-Primary);

	letter-spacing: 1.28px;
	text-transform: uppercase;

}

.footer-menu-links{
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
	gap: 12px;
}
.footer-bottom-logo{
	display:flex;
	align-items:center;
	gap:12px;
	width: 200px;
}


.footer-menu-items {
	color: var(--Color-Content-Tertiary);
}

.footer-menu ul li a:hover {
	color:var(--Color-Content-Secondary);
}

.footer-menu {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: flex-start;
	gap: 16px;
	width: 23%;

}

.menus {
	display: flex;
}

.gateway-social {
	display: flex;
	align-items: flex-end;
	align-self: stretch;
	/* 				justify-content:center; */
	justify-content: space-between;
}


.custom-footer-bottom {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 32px;
	align-self: stretch;
}


.gateway-text {
	color: var(--Text-primary);


	letter-spacing: -0.4px;
	width: 50%;
}



.social-icons a {
	margin: 0 5px;
	color: #bbb;
	transition: color 0.3s;
}

.social-icons a i {
	fo: 40px;
}

.social-icons a:hover {
	color: #fff;
}

.copyright-container {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 24px;
	align-self: stretch;
	border-top: 1px solid var(--Color-Content-Quaternary);
	padding-top: 24px;
}

.copyright {
	display: flex;
	/*                 gap: 24px; */
	width:100%;
	align-items:flex-end;
}
.copyright .body3{
	line-height: 0.5;
}

.copyright a {
	color: #bbb;
	text-decoration: none;
}

.copyright a:hover {
	color: 	color:var(--Color-Content-Secondary);
}
.footer-logo-with-icon{
	display: flex;
	width: 50%;
	align-items: flex-end;
	gap:80px;
}

.footer-content-wrapper {
	display: flex;
	gap: 64px;
}
.footer-bottom-textarea{
	position:relative;
	display: flex;
	align-items: center;
	justify-content:center;
	/* 				width:100%; */
}
.footer-bottom-textarea div, .footer-bottom-textarea a{
	color: var(--Text-secondary, #797979);
}

.last-updated-on{
	display: flex;
	align-items: center;
	gap: 8px;
	color: var(--Text-secondary, #797979);
}
.last-copyrights-links{
	display: flex;
	align-items: center;
	gap: 48px;
}
/* Hide the arrow by default */
.menu-toggle .toggle-icon {
	display: none;
}

/* Show the arrow only on mobile */
@media (max-width: 768px) {
	.footer-body{
		padding:40px 20px 48px 20px;
	}
	.footer-breadcrumbs{
		display: flex;
		padding: 24px 20px;
		align-items: center;
		align-self: stretch;
		border-bottom:none;
	}
	.menu-toggle .toggle-icon {
		display: inline-block;
		margin-left: 8px;
	}

	.menu-toggle .toggle-icon i {
		transition: transform 0.3s ease;
		color: #797979;
		font-size:24px;
	}
	img.footer-logo {
		height:40px;
	}
	img.footer-logo-icon{
		height:20px;
	}
	.footer-bottom-logo{
		gap:10px;
	}

	.menu-toggle .toggle-icon i.rotated {
		transform: rotate(180deg);
	}

	.footer-columns {
		flex-direction: column;
		gap: 30px;
	}

	.menus {
		flex-wrap: wrap;
		gap: 20px;
	}

	.footer-menu {
		width: calc(50% - 16px);
	}

	.gateway-text {
		font-size: 30px;
		padding-top: 20px;
	}

	.newsletter {
		width: 100%;
	}
	.menu-container{
		width:100%;
		flex-direction:column;
		gap: 16px;

	}
	.social-icons img{
		width: 32px;
	}

/* 	.custom-footer-bottom {
		flex-direction: column;
		align-items: flex-start;
		gap: 16px;
	} */

/* 	.copyright {
		flex-direction: column;
		align-items: flex-start;
		gap: 12px;
	} */
/* 	.copyright .body3{
		line-height: inherit;
	}	 */
/* 	.footer-logo-with-icon{
		width: 100%;
		display: flex;
		justify-content: space-between;
		flex-direction: column;
		align-items: flex-start;
		gap: 24px;
	} */

	.footer-menu {
		width: 100%;
	}
	.footer-menu-links {
		display: none;
	}

	.menus {
		flex-direction: column;
		gap: 20px;
	}

	.gateway-text {
		font-size:24px;
	}
	.bread-social{
		flex-direction:column;

	}

	.newsletter-form {
		display: none;
	}

	.newsletter{
		display:none;
	}

	.newsletter-form input {
		width: 100%;
	}

	.newsletter-form button {
		width: 100%;
		padding: 10px;
	}

	.newsletter p {
		display: none;
	}

	.newsletter small {
		display: none;
	}

	.newsletter h4 {
		display: none;
	}

	.social-icons {
		padding-top: 15px;
		display: flex;
		flex-wrap: wrap;
		gap: 10px;
	}

	.custom-footer {
		padding: 0;
	}

	.gateway-text {
		display: none;
	}
	.gateway-social{
		padding-bottom: 20px;
		width:100%
			/*test*/
	}

	.custom-footer-bottom {
		display: block;
	}

	.footer-menu .menu-items {
		display: none;
		margin-top: 5px;
		transition: max-height 0.3s ease, padding 0.3s ease;
	}

	.footer-menu .menu-items.open {
		display: block;
	}

	.footer-menu .menu-toggle {
		position: relative;
		display: flex;
		justify-content: space-between;
		align-items: center;
		width: 100%;
	}
	/*
	.footer-menu .menu-toggle::after {
	font-family: 'Font Awesome 5 Free';
	position: absolute;
	right: 0;
	transition: transform 0.3s ease;
}
	*/
	.footer-menu .menu-items.open+.menu-toggle::after {
		transform: rotate(180deg);
	}
	.footer-body{
		gap: 35px;
	}
	.footer-bottom-textarea {
		display: flex;
		align-items: flex-start;
		flex-direction: column;
		gap:8px;
	}            
	.footer-menu-items{
		color: var(--Color-Content-Tertiary, #696562);
	}
	.footer-menu-items{
		color:var(--Color-Content-Secondary);
	}

	.footer-menu-links.open{
		display: flex;
		flex-direction: column;
		align-items: flex-start;
		gap: 12px;
	}
	.last-updated-on{
		width: inherit;
		gap:10px;
	}
	.last-copyrights-links{
		gap: 16px;
	}
	
	
}
@media (max-width: 1000px) {
	.custom-footer-bottom {
		flex-direction: column;
		align-items: flex-start;
		gap: 16px;
	}
	.copyright {
		flex-direction: column;
		align-items: flex-start;
		gap: 12px;
	}
	.copyright .body3{
		line-height: inherit;
	}	
	.footer-logo-with-icon{
		width: 100%;
		display: flex;
		justify-content: space-between;
		flex-direction: column;
		align-items: flex-start;
		gap: 24px;
	}
}

.last-updated-date {
    margin: 0;
}