﻿@font-face {
    font-family: 'IBMThin';
    src: url('../fonts/IBMPlexSansArabic-Thin.ttf');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'IBMExtraLight'; 
    src: url('../fonts/IBMPlexSansArabic-ExtraLight.ttf');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'IBMLight';
    src: url('../fonts/IBMPlexSansArabic-Light.ttf');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'IBMRegular';
    src: url('../fonts/IBMPlexSansArabic-Regular.ttf');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family:'IBMMedium';
    src: url('../fonts/IBMPlexSansArabic-Medium.ttf');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'IBMSemiBold';
    src: url('../fonts/IBMPlexSansArabic-SemiBold.ttf');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'IBMBold';
    src: url('../fonts/IBMPlexSansArabic-Bold.ttf');
    font-weight: normal;
    font-style: normal;
}

:root {
    --filter-SA-600: brightness(0) saturate(100%) invert(39%) sepia(10%) saturate(4999%) hue-rotate(110deg) brightness(93%) contrast(79%);
    --filter-Gold-600: brightness(0) saturate(100%) invert(63%) sepia(81%) saturate(2012%) hue-rotate(10deg) brightness(98%) contrast(98%);
    --Colors-whaite: #FFFFFF;
    --Colors-SA-25: #F7FDF9;
    --Colors-SA-50: #F3FCF6;
    --Colors-SA-100: #DFF6E7;
    --Colors-SA-200: #B8EACB;
    --Colors-SA-300: #88D8AD;
    --Colors-SA-400: #54C08A;
    --Colors-SA-500: #25935F;
    --Colors-SA-600: #1B8354;
    --Colors-SA-700: #166A45;
    --Colors-SA-800: #14573A;
    --Colors-SA-900: #104631;
    --Colors-SA-950: #092A1E;
    --Colors-Gray-25: #FCFCFD;
    --Colors-Gray-50: #F9FAFB;
    --Colors-Gray-100: #F3F4F6;
    --Colors-Gray-200: #E5E7EB;
    --Colors-Gray-300: #D2D6DB;
    --Colors-Gray-400: #9DA4AE;
    --Colors-Gray-500: #6C737F;
    --Colors-Gray-600: #4D5761;
    --Colors-Gray-700: #384250;
    --Colors-Gray-800: #1F2A37;
    --Colors-Gray-900: #111927;
    --Colors-Gray-950: #0D121C;
    --Colors-Error-25: #FFFBFA;
    --Colors-Error-50: #FEF3F2;
    --Colors-Error-100: #FEE4E2;
    --Colors-Error-200: #FECDCA;
    --Colors-Error-300: #FDA19B;
    --Colors-Error-400: #F97066;
    --Colors-Error-500: #F04438;
    --Colors-Error-600: #D92D20;
    --Colors-Error-700: #B42318;
    --Colors-Error-800: #912018;
    --Colors-Error-900: #7A271A;
    --Colors-Error-950: #55160C;

    --text-default: #161616;
    --background-SA-Flag: #074D31;
    --icon-success: #067647;

    --Global-spacing-xl: 16px;
    --Global-spacing-2xl: 24px;
    --Global-spacing-4xl: 32px;
    --Global-spacing-5xl: 40px;
    --Global-spacing-8xl: 80px;

    --MOIA-Gradient: linear-gradient(180deg, #54C08A 0%, #166A45 100%);
    --Black-Gradient: linear-gradient(180deg, rgba(0, 0, 0, 0.5) 0%, #000 100%);
    --Green-Gradient: linear-gradient(180deg, rgba(217, 217, 217, 0.00) 0%, #54C08A 100%);
    --branch-Gradient: linear-gradient(270deg, rgba(217, 217, 217, 0.00) 0%, #54C08A 100%);

    --fontThin:'IBMThin';
    --fontLight:'IBMLight';
    --fontExtraLight:'IBMExtraLigh';
    --fontRegular:'IBMRegular';
    --fontMeduim:'IBMMedium';
    --fontSemiBold:'IBMSemiBold';
    --fontBold:'IBMBold';
}

.mainCard .circleIcon {
	position: relative;
	margin-left: auto;
}
.circleIcon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--Colors-SA-50);
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}
.circleIcon svg{
    height: 24px;
    width: auto;
}
.circleIcon svg path{
    fill:var(--icon-success);
}

.circleIcon.dark {
    background-color: var(--icon-success);
}
.circleIcon.dark svg path{
    fill:var(--Colors-whaite)
}
/*-----------Alerts--------------*/
.msg,
.sysAlert {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 3px solid #fff;
    font-family: var(--fontRegular);
    font-size: 16px;
    width: 100%;
    height: 40px;
    padding: 0 10px 0 0;
    margin: 0 10px;
}

.msg {
    justify-content: unset;
}

.sysAlert .alertContent {
    display: flex;
    align-items: center;
    gap: 8px;
}

.sysAlert button {
    background-color: transparent;
    border: none;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
}

.msg.red,
.sysAlert.sysAlertDanger {
    background-color: var(--Colors-Error-50);
    border-color: var(--Colors-Error-600);
    color: var(--Colors-Error-700);
}

.sysAlert.sysAlertWarning {
    background-color: #FFFAEB!important;
    border-color: #DC6803!important;
    color: #B54708!important;
}

.msg.green,
.sysAlert.sysAlertSuccess {
    background-color: #ECFDF3!important;
    border-color: #079455!important;
    color:  var(--icon-success)!important;
}

.msg.blue,
.sysAlert.sysAlertPrimary {
    background-color: #EFF8FF!important;
    border-color: #1570EF!important;
    color: #175CD3!important;
}

.sysAlert.sysAlertDirection {
    background-color: var(--Colors-Gray-50);
    border-color: var(--Colors-Gray-950);
    color: var(--Colors-Gray-700);
}

.msg.green:before,
.msg.red:before,
.msg.blue:before {
    font-size: 24px;
    line-height: 24px;
    height: 24px;
    margin-left: 8px
}

.msg.red:before {
    content: url("data:image/svg+xml,%0A%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M12 23C18.0751 23 23 18.0751 23 12C23 5.92487 18.0751 1 12 1C5.92487 1 1 5.92487 1 12C1 18.0751 5.92487 23 12 23Z' fill='white'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M12 23C18.0751 23 23 18.0751 23 12C23 5.92487 18.0751 1 12 1C5.92487 1 1 5.92487 1 12C1 18.0751 5.92487 23 12 23ZM12 7C11.4477 7 11 7.44772 11 8V12C11 12.5523 11.4477 13 12 13C12.5523 13 13 12.5523 13 12V8C13 7.44772 12.5523 7 12 7ZM12 15C11.4477 15 11 15.4477 11 16C11 16.5523 11.4477 17 12 17C12.5523 17 13 16.5523 13 16C13 15.4477 12.5523 15 12 15Z' fill='%23B42318'/%3E%3C/svg%3E%0A");
}

.msg.green:before {
    content: url("data:image/svg+xml,%0A%3Csvg width='22' height='22' viewBox='0 0 22 22' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M11 22C17.0751 22 22 17.0751 22 11C22 4.92487 17.0751 0 11 0C4.92487 0 0 4.92487 0 11C0 17.0751 4.92487 22 11 22ZM6.05022 10.1213C5.65969 10.5118 5.65969 11.145 6.05022 11.5355L8.87864 14.364C9.26917 14.7545 9.90233 14.7545 10.2929 14.364L15.9497 8.70711C16.3402 8.31658 16.3402 7.68342 15.9497 7.29289C15.5592 6.90237 14.926 6.90237 14.5355 7.29289L9.58575 12.2426L7.46443 10.1213C7.07391 9.7308 6.44074 9.7308 6.05022 10.1213Z' fill='%23067647'/%3E%3C/svg%3E");
}

.msg.blue:before {
    content: url("data:image/svg+xml,%0A%3Csvg width='22' height='22' viewBox='0 0 22 22' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M11 22C17.0751 22 22 17.0751 22 11C22 4.92487 17.0751 0 11 0C4.92487 0 0 4.92487 0 11C0 17.0751 4.92487 22 11 22ZM11 6C10.4477 6 10 6.44772 10 7V11C10 11.5523 10.4477 12 11 12C11.5523 12 12 11.5523 12 11V7C12 6.44772 11.5523 6 11 6ZM11 14C10.4477 14 10 14.4477 10 15C10 15.5523 10.4477 16 11 16C11.5523 16 12 15.5523 12 15C12 14.4477 11.5523 14 11 14Z' fill='%23175CD3'/%3E%3C/svg%3E%0A");
}

.secondNavBar{
    background-color: var(--Colors-Gray-100);
    border-bottom: 1px solid var(--Colors-Gray-300);
    border-top: 1px solid var(--Colors-Gray-300)
}
.secondNavBarFlex{
    display: flex;
    gap: 40px;
    flex-direction: column;
    position: relative;
}
.NavBarHeader {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 40px;
    min-height: 40px;
}
.secondNavBar .digitalStamp_content_item .circleIcon{
    background-color: transparent;
    border: 1px solid var(--icon-success);
    width: 52px;
    height: 52px;
    min-width: 52px;
    min-height: 52px;
}
.digitalStamp_content_item {
    display: flex;
    gap: 18px;
}
.digitalStamp_content_item .content h2 {
    color: var(--Colors-Gray-950);
    font-family: var(--fontSemiBold);
    font-size: 18px;
    line-height: 28px;
    margin: 0;
}
.digitalStamp_moreInfo a ,
.digitalStamp_content_item .content h2 span {
    color: var(--Colors-SA-600);
}
.digitalStamp_moreInfo {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 8px 24px;
    border-radius: 8px;
    background: var(--Colors-whaite);
}
.digitalStamp_content_container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 32px;
}
.digitalStamp_content{
    padding-bottom: 32px;
}
.digitalStamp_content_item .content p {
    color: var(--Colors-Gray-950);
    font-family: var(--fontRegular);
    font-size: 16px;
    line-height: 24px;
    margin: 0;
}
.digitalStamp_wrapper {
    width: 100%;
    display: flex;
    flex-direction: column;
}
.digitalStamp_heads {
    height: 40px;
    display: flex;
    align-items: center;
    gap:16px;
}
.digitalStamp_icon {
    display: flex;
}
.digitalStamp_heads span {
    color: var(--Colors-Gray-950);
    font-family: var(--fontSemiBold);
    font-size:14px;
    line-height: 20px;
}
.digitalStamp_link svg path{
    fill:var(--Colors-SA-800);
}
.digitalStamp_link, .digitalStamp_link span, .digitalStamp_link:hover {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--Colors-SA-800) !important;
    text-decoration: none;
    transition: all 0.6s ease-in-out;
    -webkit-transition: all 0.6s ease-in-out;
    -moz-transition: all 0.6s ease-in-out;
    -ms-transition: all 0.6s ease-in-out;
    -o-transition: all 0.6s ease-in-out;
}
.digitalStamp_link:not(.collapsed) svg{
    transform: rotate(180deg);
    transition: all 0.6s ease-in-out;
    -webkit-transition: all 0.6s ease-in-out;
    -moz-transition: all 0.6s ease-in-out;
    -ms-transition: all 0.6s ease-in-out;
    -o-transition: all 0.6s ease-in-out;
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
}
.navActions {
    display: flex;
    gap:6px;
}
.navActions #shareDropdown {
    gap: 4px;
}
.navActions button {
    height: auto;
    border: none;
    background-color: unset;
    border-radius: 4px;
    border-radius: 4px;
    min-height: 32px;
    padding: 0 5px;
    min-width: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.navActions button:focus {
    outline: 2px solid var(--colors-gray-950) !important;
}
.navActions button:hover {
    background-color: var(--Colors-Gray-200);
}
.navActions svg{
    display: flex;
    height: 20px;
    width: 20px;
    color: var(--Colors-Gray-950);
    align-items: center;
    justify-content: center;
}
#shareDropdown svg:first-of-type {
    width: 8px;
    height: 4px;
}
#shareDropdown.dropdown-toggle::after{
    display: none;
}
#shareDropdown img {
    height: 16px;
    cursor: pointer;
}
.dropdown-item.active, .dropdown-item:active{
    color: var(--bs-dropdown-link-hover-color);
    background-color: var(--bs-dropdown-link-hover-bg);
}
.navActions .dropdown-item {
    text-align: right;
    cursor: pointer;
}


html,
#s4-bodyContainer {
    padding: 0;
    margin: 0;
}

.login-wrap h2,
.afterLogin ul.mrgn-0 > li:last-child,
.login-wrap .ms-core-menu-box,
.LogoutPart .ms-core-menu-arrow,
.login-wrap .ms-welcome-hover .ms-core-menu-arrow,
.login-wrap > a,
.LogoutPart > a
.loginSpan,.login-wrap ul > li > div > div:first-child,
.dsply-non {
    display: none !important;
}

.login-wrap > ul.mrgn-0 > li > h3 > a,
.LogoutPart > li > h3 > a {
	font-size: 14px;
	font-family: var(--fontMeduim);
	color: var(--Colors-whaite);
	display: flex;
	flex-direction: row;
    text-align: center;
    align-items: center;
    justify-content: center;
    gap: 10px;
    height: 40px;
    width: fit-content;
}
.login-wrap  h3 {
    font-size: 14px;
    font-family: var(--fontMeduim);
    color: var(--Colors-whaite);
    display: inline-flex;
    gap: 5px;
    height: 40px;
    align-items: center;
}
.login-wrap ul,
.login-wrap ul > li > div {
	display: inline-flex;
	padding: 0;
	color: var(--Colors-whaite);
}
.login-wrap ul > li > div #zz12_Menu {
    color: var(--Colors-whaite);
}
.ms-welcome-root {
	display: inline-block;
	position: relative;
	height: 30px;
	line-height: 30px;
	padding: 7px 11px 0px 7px;
	border-left: 1px solid transparent;
	background-clip: padding-box;
}
.ms-welcome-hover{
    background: var(--Colors-SA-700);
}

.FixedSideBar {
	position: fixed;
	z-index: 995;
	left: 0;
	top: 30vh;
	direction: ltr;
    width: 30px;
    height: 100px;
    background: #595959;
    color: white;
    border-start-end-radius: 8px;
    border-end-end-radius: 8px;
}
.FixedSideBar .rotated {
	position: absolute;
	writing-mode: vertical-rl;
	-webkit-writing-mode: vertical-rl;
	-ms-writing-mode: vertical-rl;
	transform: rotate(-180deg);
	-webkit-transform: rotate(-180deg);
	-moz-transform: rotate(-180deg);
	-ms-transform: rotate(-180deg);
	-o-transform: rotate(-180deg);
	text-align: center;
	font-size: 14px;
    height: 100%;
}


/* General Styles */
body {
    overflow-y: auto;
    margin: 0;
    padding: 0;
    font-family: var(--fontRegular);
    direction: rtl;
}

/*main*/

main {
    height: auto;
}

body,
#s4-workspace {
    overflow-x: hidden;
}

.SideMenu ul {
    display: flex;
    flex-wrap: wrap;
}

.ms-ToolPaneOuter {
    position: fixed;
    left: 0;
    top: 0;
    text-align: right !important;
    z-index: 11111;
    height: calc(100% - 5px) !important;
    overflow-y: scroll;
    display: block !important;
    width: 270px !important;
}

.ms-dlgCloseBtn>span {
    margin-left: 15px;
}

.ms-TPBorder {
    width: 100%;
}

table.ms-listviewtable img {
    max-height: 80px !important;
    width: auto !important;
}

.ms-cui-tts-scale-2 .ms-cui-tt-a {
    min-width: 100px !important;
}

.ms-wpadder-buttonArea.ms-wpadder-zoneArea button {
    background: #1D6D47;
    color: #fff !important;
}


/* end main */

h1,
h2,
h3 {
    font-family: var(--fontMeduim);
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

a,
a:hover,
a:active,
a:focus,
a:visited {
    text-decoration: none;
}

input,
textarea,
select {
    border: var(--Colors-Gray-400) solid 1px;
    background-color: #fff;
    height: 40px;
    border-radius: 4px;
}

select:hover {
    background-color: var(--Colors-Gray-100) !important;
}

input.form-control:focus {
    border: var(--Colors-Gray-400) solid 1px;
    box-shadow: none;
}

input.error,
textarea.error,
select.error {
    border: var(--Colors-Error-700) solid 1px;
    background-color: var(--Colors-Error-50);
}

.solidBtn,
.grayBtn,
.outlineBtn,
.transparentBtn,
.outline-GoldBtn,
.outline-whiteBtn,
.linkBtn,
button {
    display: inline-flex;
    height: 40px;
    min-height: 40px;
    max-height: 40px;
    width: fit-content;
    line-height: 40px;
    padding:  0px 16px;
    justify-content: center;
    align-items: center;
    gap:  4px;
    flex-shrink: 0;
    font-family: var(--fontMeduim);
    text-align: center;
    font-size: 16px;
    font-weight: 500;
    border-radius: 4px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px;
    border:none;
    margin: 0;
}
.iconBtn {
    min-width: 56px;
}
a:focus,
button:focus,
.linkBtn:focus{
    outline: 1px solid var(--text-default);
    border-radius: 4px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px;
}

.linkBtn,
.linkBtn:visited,
button,
button:visited,
.solidBtn,
.solidBtn:visited {
    color: var(--Colors-whaite);
    background: var(--Colors-SA-600);
}

.linkBtn:active,
.linkBtn:target,
button:target,
button:active,
.solidBtn:target,
.outline-GoldBtn:target,
.solidBtn:active,
.outline-GoldBtn:active {
    color: var(--Colors-whaite);
    background: var(--Colors-SA-900);
}

.linkBtn:hover,
button:hover,
.solidBtn:hover,
.outline-GoldBtn:hover {
    color: var(--Colors-whaite);
    background: var(--Colors-SA-700);
}
.transparentBtn{
    background-color: transparent;
    color:var(--text-default) !important;
}
.transparentBtn:hover{
    background-color: var(--Colors-Gray-100);
    color:var(--text-default);
}
.transparentBtn:active,
.transparentBtn:target{
    background-color: var(--Colors-Gray-200);
    color:var(--text-default);
}


.outlineBtn,
.outlineBtn:visited,
.outline-GoldBtn,
.outline-GoldBtn:visited {
    color: var(--text-default);
    border: var(--Colors-Gray-300) solid 1px;
    background: transparent;
}


.grayBtn,
.grayBtn:visited {
    color: var(--text-default);
    background: var(--Colors-Gray-100);
}

.outline-whiteBtn,
.outline-whiteBtn:visited {
    color: var(--Colors-whaite);
    border: var(--Colors-whaite) solid 1px;
    background: transparent;
}

.solid-whiteBtn,
.solid-whiteBtn:visited {
    color: var(--Colors-SA-500);
    background: var(--Colors-whaite);
}

.outlineBtn:hover {
    color: var(--text-default);
    border-color: var(--Colors-Gray-100);
    background: var(--Colors-Gray-100);
}

.outline-whiteBtn:hover {
    color: var(--Colors-SA-500);
    background: var(--Colors-whaite);
}

.grayBtn:hover {
    color: var(--text-default);
    background: var(--Colors-Gray-200);
}

/* Header Styles */
header.moia-header {
    background-color: #fff;
    position: relative;
    z-index: 99;
}

header.moia-header .top-hader {
    background-color: var(--Colors-SA-700);
    color: #fff;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(255,255,255,0.3);
    height: 40px;
}

header.moia-header .top-hader ul,
header.moia-header .date-time {
    gap: 20px;
}

header.moia-header .date-time>div {
    display: flex;
    align-items: center;
    gap: 5px;
}

header.moia-header nav {
    background-color: var(--Colors-whaite);
    height: 75px;
}

header.moia-header nav .navContainer,
header.moia-header nav .navContainer ul {
    display: flex;
    align-items: center;
}

header.moia-header nav .navContainer {
    justify-content: space-between;
    position: relative;
}

header.moia-header .menu {
    gap: 16px;
}

header.moia-header .menu>ul>li>a,
.searchLogin>ul>li>a {
    font-size: 14px;
    font-family: var(--fontBold);
    color: var(--text-default);
    display: flex;
    height: 72px;
    padding: 8px 16px;
    justify-content: center;
    align-items: center;
    gap: 4px;
    width: fit-content;
    position: relative;
    transition: all 0.6s ease-in-out;
    -webkit-transition: all 0.6s ease-in-out;
    -moz-transition: all 0.6s ease-in-out;
    -ms-transition: all 0.6s ease-in-out;
    -o-transition: all 0.6s ease-in-out;
    overflow: hidden;
}

header.moia-header .menu>ul>li>a {
    padding-top: 16px;
}

.searchLogin>ul>li>a {
    flex-direction: row;
    min-width: 118px;
}

/*
header.moia-header .menu>ul>li>a {
    border-right: 2px solid var(--Colors-Gray-300);
}
.searchLogin>ul>li>a,
header.moia-header .menu>ul>li:last-of-type>a {
    border-left: 2px solid var(--Colors-Gray-300);
}
*/

header.moia-header .menu>ul>li>a:hover,
.searchLogin>ul>li>a:hover {
    color: var(--text-default);
    background-color: var(--Colors-Gray-100);
}

header.moia-header .menu>ul>li>a.active,
.searchLogin>ul>li>a.active{
    color: var(--Colors-whaite);
    background-color: var(--Colors-SA-600);
}

.searchLogin>ul>li>a.active svg path {
    fill: var(--Colors-whaite);
}


header.moia-header .menu>ul>li>a.active svg {
    transform: rotate(180deg);
    transition: all 0.5s ease-in-out;
}
header.moia-header .menu>ul>li>a svg path{
    fill: var(--text-default);
}
header.moia-header .menu>ul>li>a.active:hover svg path{
    fill: var(--Colors-whaite);
}

header.moia-header .menu>ul>li>a svg path,
header.moia-header .menu>ul>li>a.active svg path,
header.moia-header .menu>ul>li>a:hover svg path {
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}

header.moia-header .menu>ul>li>a.active svg path{
    fill: var(--Colors-whaite);
}
header.moia-header .menu>ul>li>a:hover svg path {
    fill: var(--text-default);
}

.searchLogin>ul>li>a::after,
header.moia-header .menu>ul>li>a::after {
    content: '';
    background-color: var(--Colors-Gray-400);
    border-radius: 4px;
    width: 80%;
    height: 6px;
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    transition: all 0.6s ease-in-out;
    -webkit-transition: all 0.6s ease-in-out;
    -moz-transition: all 0.6s ease-in-out;
    -ms-transition: all 0.6s ease-in-out;
    -o-transition: all 0.6s ease-in-out;
    bottom: -6px;
}

.searchLogin>ul>li>a:hover::after,
header.moia-header .menu>ul>li>a:hover::after {
    bottom: 0;
}

.searchLogin>ul>li>a.active::after,
header.moia-header .menu>ul>li>a.active::after {
    bottom: 0;
    background-color: var(--Colors-SA-400);
}

.searchLogin>ul>li>a img {
    width: auto;
    height: 16px;
    transition: all 0.6s ease-in-out;
    -webkit-transition: all 0.6s ease-in-out;
    -moz-transition: all 0.6s ease-in-out;
    -ms-transition: all 0.6s ease-in-out;
    -o-transition: all 0.6s ease-in-out;
}

.searchLogin {
    gap: 20px;
}

.searchLogin form {
    position: relative;
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 40px;
    width: 670px;
}

.searchLogin form button {
    width: 80px;
}
.searchLogin .searchForm {
	display: flex;
	gap: 16px;
}

.searchLogin .form-group {
    width: 950px;
    display: flex;
    flex-direction: column;
}

.searchLogin .form-group img {
	position: relative;
	top: -32px;
	width: 24px;
	right: 8px;
}

.searchLogin input.form-control {
    padding-inline-start: 45px;
}


.searchSuggestions h3 {
    color: var(--Colors-SA-600);
    font-size: 14px;
    font-family: var(--fontSemiBold);
    margin-bottom: 16px;
}

.searchSuggestions ul {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.searchSuggestions a {
    height: 30px;
    border: 1px solid var(--Colors-Gray-300);
    border-radius: 4px;
    color: var(--Colors-Gray-600);
    font-size: 14px;
    font-family: var(--fontMeduim);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 12px;
    transition: all 0.6s ease-in-out;
    -webkit-transition: all 0.6s ease-in-out;
    -moz-transition: all 0.6s ease-in-out;
    -ms-transition: all 0.6s ease-in-out;
    -o-transition: all 0.6s ease-in-out;
}

.searchSuggestions a:hover {
    background-color: #fff;
}

/* Dropdown Animation */
header.moia-header ul li .dropDiv {
    background-color: var(--Colors-whaite);
    box-shadow: 0px 12px 16px -4px rgba(16, 24, 40, 0.08), 0px 4px 6px -2px rgba(16, 24, 40, 0.03);
    border-radius: 0 0 8px 8px;
    position: absolute;
    width: 100%;
    left: 0;
    z-index: -99;
    height: 270px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 75px;
    bottom: 0;
    transition: all 0.6s ease-in-out;
    -webkit-transition: all 0.6s ease-in-out;
    -moz-transition: all 0.6s ease-in-out;
    -ms-transition: all 0.6s ease-in-out;
    -o-transition: all 0.6s ease-in-out;
    transform: translateY(-560px);
    -webkit-transform: translateY(-560px);
    -moz-transform: translateY(-560px);
    -ms-transform: translateY(-560px);
    -o-transform: translateY(-560px);
}

header.moia-header ul li .dropDiv.openDropMenu {
    transform: translateY(270px);
}

header.moia-header ul li .dropDiv .dropImg {
    height: 75px;
    display: flex;
    align-items: end;
    justify-content: center;
}

header.moia-header ul li .dropDiv ul li a img {
    height: 40px;
    width: auto;
}

header.moia-header ul.ministryLink li{
    width: 100%;
}

header.moia-header ul.ministryLink li h3 {
    font-size: 18px;
    font-family: var(--fontBold);
    margin-bottom: 0;
    color: var(--Colors-SA-600);
    width: 100%;
    margin-bottom: 12px;
    padding-right: 10px;
}

header.moia-header ul.ministryLink {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: start;
    padding-top: 20px;
    height: 200px;
    width: 20%;
}

header.moia-header ul li .ministryLink a {
    color: var(--Colors-Gray-600);
    font-size: 14px;
    font-family: var(--fontMeduim);
    line-height: 24px;
    height: 30px;
    display: block;
    min-width: 250px;
    padding: 0 10px;
    transition: all 0.2s ease-in-out;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
}

header.moia-header ul li .ministryLink a:hover {
    background-color: var(--Colors-Gray-100);
}

header.moia-header .menu ul li .dropDiv ul li a {
    display: flex;
    justify-content: center;
    align-self: center;
    flex-direction: column;
    gap: 15px;
    width: 190px;
}

header.moia-header ul li .dropDiv ul li a img {
    transition: all 0.6s ease-in-out;
    -webkit-transition: all 0.6s ease-in-out;
    -moz-transition: all 0.6s ease-in-out;
    -ms-transition: all 0.6s ease-in-out;
    -o-transition: all 0.6s ease-in-out;
}

header.moia-header ul li .dropDiv ul li a:hover img {
    filter: var(--filter-SA-600);
    height: 75px;
    -webkit-filter: var(--filter-SA-600);
}

header.moia-header ul li .dropDiv ul li a span {
    font-size: 14px;
    font-family: var(--fontBold);
    color: var(--Colors-Gray-600);
    transition: all 0.6s ease-in-out;
    -webkit-transition: all 0.6s ease-in-out;
    -moz-transition: all 0.6s ease-in-out;
    -ms-transition: all 0.6s ease-in-out;
    -o-transition: all 0.6s ease-in-out;
    text-align: center;
}

header.moia-header ul li .dropDiv ul li a:hover span {
    color: var(--Colors-SA-600);
}

/* end header */

/* Toast */

#moiaToast {
    background: #fff;
    opacity: 1;
}

#moiaToast.success {
    border-right: 8px solid #079455 !important;
}

#moiaToast.warning {
    border-right: 8px solid #DC6803 !important;
}

#moiaToast.error {
    border-right: 8px solid #D92D20 !important;
}

#moiaToast.info {
    border-right: 8px solid #1570EF !important;
}

#moiaToast.neutral {
    border-right: 8px solid #E5E7EB !important;
}

#moiaToast.success i {
    border: 1px solid #079455;
    color: #079455;
}

#moiaToast.warning i {
    border: 1px solid #B54708;
    color: #B54708;
}

#moiaToast.error i {
    border: 1px solid #D92D20;
    color: #D92D20;
}

#moiaToast.info i {
    border: 1px solid #1570EF;
    color: #1570EF;
}

#moiaToast.neutral i {
    border: 1px solid #161616;
    color: #161616;
}

#moiaToast.success .icon {
    background: #ECFDF3;
}

#moiaToast.warning .icon {
    background: #FFFAEB;
}

#moiaToast.error .icon {
    background: #FEF3F2;
}

#moiaToast.info .icon {
    background: #EFF8FF;
}

#moiaToast.neutral .icon {
    background: #F9FAFB;
}

#moiaToast .icon {
    display: flex;
    width: 40px;
    height: 40px;
    padding: 10px;
    margin: 10px;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
}

#moiaToast button {
    min-width: 30px;
    height: 30px;
}

#moiaToast i {
    display: flex;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}


/*--------------------------------- Breadcrumbs ---------------------------------*/
.breadcrumbs-container {
    background: var(--Colors-SA-50);
}

.breadcrumbs {
    width: 100%;
    min-height: 60px;
    display: flex;
    align-items: center;
}

.breadcrumbs .separator {
    color: var(--Colors-Gray-400);
    display: inline-block;
    font-size: 14px;
    padding: 0 8px;
    border: none;
}

.breadcrumbs a,
.breadcrumbs a:visited,
.breadcrumbs a:active,
.breadcrumbs a:focus {
    font-size: 14px;
    font-family: var(--fontMeduim);
    color: var(--Colors-Gray-700);
}

.breadcrumbs .dropdown ul li a{
    text-align: right;
    cursor: pointer;
    color: var(--Colors-Gray-700);
}

.breadcrumbs a:hover {
    color: var(--Colors-Gray-600);
    text-decoration: underline;
}

.breadcrumbs .current {
    font-size: 14px;
    font-family: var(--fontMeduim);
    color: var(--Colors-Gray-500);
}


/*--------------------------------- serviceSlider ---------------------------------*/

svg.servRate.gary path {
    fill: var(--Colors-Gray-300);
}
svg.servRate.gold  path {
    fill: var(--Colors-SA-600);
}
.ContentPageTitle {
    background: var(--Colors-SA-50);
    padding-bottom: var(--Global-spacing-5xl);
}

.title h2 {
    font-size: 26px;
    margin-bottom: 30px;
}

.title.orangeTitle h2 {
    color: var(--text-default);
    font-size: 30px;
    font-style: normal;
    font-weight: 700;
    line-height: 38px;
}

.title.no-paragraph h2{
margin-bottom:0
}
.title.no-paragraph  .disLink{
    display: none;
}

.title .disLink {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-inline-end: 16px;
}

.title .disLink p {
    font-size: 14px;
    font-family: var(--fontRegular);
}

.title .disLink a {
    font-size: 14px;
    font-family: var(--fontMeduim);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    min-width: 155px;
    position: relative;
    border-radius: 4px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px;
}

.services {
    padding: 50px 0;
    background-color: var(--Colors-whaite);
}

.services .slick-arrow {
    opacity: 0;
    visibility: hidden;
}

.servslickBtns {
    display: flex;
    align-items: center;
    gap: 25px;
    justify-content: start;
    margin-top: 20px;
    padding-inline-end: 16px;
}

.servslickBtns button {
    width: 48px;
    height: 48px;
    min-width: 48px;
    min-height: 48px;
    background-color: var(--Colors-SA-600);
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.servslickBtns .disabled {
    background-color: transparent;
}
.servslickBtns .disabled svg path{
    fill: var(--text-default);
}

.serviceSlider .slick-slide {
    padding: 16px
}

.mainCard {
    background-color: var(--Colors-whaite);
    border: 1px solid var(--Colors-Gray-300) !important;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    padding: 16px;
    border-radius: 16px;
    -webkit-border-radius: 16px;
    -moz-border-radius: 16px;
    -ms-border-radius: 16px;
    -o-border-radius: 16px;

}

.mainCard:hover {
    background-color: var(--Colors-Gray-50);
}

.mainCard a {
    position: relative;
    margin-left: auto;
}

.servItem {
    position: relative;
}

.servItem h3 {
    overflow: hidden;
    font-size: 18px;
    font-family: var(--fontBold);
    color: var(--Colors-Gray-800);
    margin-bottom: 10px;
    width: 100%;
}

.servItem p {
    text-align: right;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    font-family: var(--fontRegular);
    color: var(--Colors-Gray-800);
    min-height: 70px;
}

.servItem .keyWord{
    background-color: #ECFDF3;
    border: 1px solid #ABEFC6;
    color: #085D3A;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3px 8px;
    font-size: 14px;
    max-width: 150px;
    border-radius: 8px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
}



/* End serviceSlider */

/*------------------------------- Search -----------------------------------*/

#UpScopeLinkTop,
#ResultFooter,
#NoResult ul li:last-child{
    display: none !important;
}

/*------------------------------- News -----------------------------------*/

.NewsList {
    padding-top: 50px;
}

.NewsList ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.NewsList ul li {
    margin-bottom: 30px;
}

.moia-news-slider {
    margin-top: 30px;
}

.serviceSlider ul.slick-dots,
.moia-news-slider ul.slick-dots,
.branch-news-slider ul.slick-dots,
.appsSlider ul.slick-dots {
    display: flex;
    justify-content: end;
    bottom: -65px;
}

.serviceSlider ul.slick-dots li,
.moia-news-slider ul.slick-dots li,
.branch-news-slider ul.slick-dots li,
.appsSlider  ul.slick-dots li {
    width: 16px;
    height: 16px;
    max-height: 16px;
    border-radius: 50%;
    background: var(--Colors-Gray-200);
}

.serviceSlider ul.slick-dots li.slick-active,
.moia-news-slider ul.slick-dots li.slick-active,
.branch-news-slider ul.slick-dots li.slick-active,
.appsSlider ul.slick-dots li.slick-active {
    background: var(--Colors-SA-600);
}

.serviceSlider ul.slick-dots li button::before,
.moia-news-slider ul.slick-dots li button::before,
.branch-news-slider ul.slick-dots li button::before,
.appsSlider ul.slick-dots li button::before {
    display: none;
}

.pSection {
    padding: 50px 0;
}

.newsItem {
    width: 400px;
    margin-right: 16px;
}

.newsItem .newsImg {
    width: 100%;
    border-radius: 8px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
    overflow: hidden;
    position: relative;
    margin-bottom: 15px;
    border: 1px var(--Colors-Gray-200) solid;
}

.newsItem .newsImg img {
    object-fit: cover;
    height: 216px;
    width: 100%;
    transition: all 0.6s ease-in-out;
    -webkit-transition: all 0.6s ease-in-out;
    -moz-transition: all 0.6s ease-in-out;
    -ms-transition: all 0.6s ease-in-out;
    -o-transition: all 0.6s ease-in-out;
}

.newsItem:hover .newsImg img {
    transform: scale(1.3);
    transition: all 0.6s ease-in-out;
    -webkit-transition: all 0.6s ease-in-out;
    -moz-transition: all 0.6s ease-in-out;
    -ms-transition: all 0.6s ease-in-out;
    -o-transition: all 0.6s ease-in-out;
    -webkit-transform: scale(1.3);
    -moz-transform: scale(1.3);
    -ms-transform: scale(1.3);
    -o-transform: scale(1.3);
}

.newsItem .newsImg .newsCat {
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 8px 0 8px 0;
    -webkit-border-radius: 8px 0 8px 0;
    -moz-border-radius: 8px 0 8px 0;
    -ms-border-radius: 8px 0 8px 0;
    -o-border-radius: 8px 0 8px 0;
    background: var(--Colors-Gray-800);
    width: 75px;
    height: 24px;
    color: var(--Colors-whaite);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-family: var(--fontRegular);
}

.newsItem .newsImg .newsCat.newlabel {
    background: var(--Colors-Gray-800);
}

.newsItem .newsImg .newsCat.eventlabel {
    background: var(--Colors-SA-600);
}

.newsItem h3 {
    font-family: var(--fontBold);
    font-size: 16px;
    line-height: 28px;
    color: var(--text-default);
    margin-bottom: 10px;
    height: 85px;
    overflow: hidden;
}

.newsItem p {
    height: 96px;
    font-size: 14px;
    font-family: var(--fontRegular);
    color: var(--text-default);
}

.newsSlider .slick-slide {
    padding: 16px;
    color: var(--Colors-Gray-600);
}



/* rating */

.green-divider {
    border: 1px solid var(--background-SA-Flag);
}

.rating .rateDiv,
.rating .rateDiv form {
    display: flex;
    gap: 30px;
}

.yonBtn {
    display: flex;
    align-items: center;
    gap: 10px;
}


.rating .rateDiv .yonContainer,
.rating .rateDiv {
    display: flex;
    justify-content: space-between;
    color: var(--Colors-Gray-600);
    font-family: var(--fontRegular);
    font-size: 14px;
    padding: 10px 0;
}

.rating .rateDiv {
    align-items: center;
}

.rating .rateDiv.stars p {
    margin-top: unset;
}


.rating .rateDiv .yonContainer {
    width: 100%;
    border-bottom: none;
    align-items: center;
}

.star-rating {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
    gap: 10px;
    height: 24px;
    align-items: center;
}

.yonBtn .activeBtn {
    color: var(--Colors-whaite);
    border-color: var(--Colors-SA-800);
    background: var(--Colors-SA-800);
}

.star-rating input[type="radio"] {
    display: none;
}

.star-rating label {
    cursor: pointer;
    transition: transform 0.2s;
    height: 24px;
}

.star-rating label svg path {
    fill: #989FA9;
}

.rateDone {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 7px 0;
}

.star-rating label:hover svg path,
.star-rating label:hover~label svg path,
.star-rating input[type="radio"]:checked~label svg path {
    fill: var(--Colors-SA-600);
}

.rateDiv.three {
    padding: 25px 0 30px;
}

.rateDiv.three h3 {
    font-size: 16px;
    font-family: var(--fontBold);
}

.sendRateSucess span,
.rateDiv.three h3 span {
    font-size: 15px;
    font-family: var(--fontRegular);
}

.rateDiv.three ul li:not(:last-of-type) {
    margin-bottom: 16px;
}

.rateDiv.three ul li div {
    display: flex;
    align-items: center;
    gap: 16px;
    position: relative;
    width: fit-content;
}

.rateDiv.three .gander div {
    position: relative;
}

.rateDiv.three .gander div input,
.rateDiv.three ul li div input {
    position: absolute;
    height: 100%;
    width: 100%;
    z-index: 9;
    opacity: 0;
    cursor: pointer;
}

.rateDiv.three ul li div .checkBoxDiv svg {
    opacity: 0;
    transition: all 0.6s ease-in-out;
    -webkit-transition: all 0.6s ease-in-out;
    -moz-transition: all 0.6s ease-in-out;
    -ms-transition: all 0.6s ease-in-out;
    -o-transition: all 0.6s ease-in-out;
}

.rateDiv.three ul {
    margin-bottom: 32px;
}

.rateDiv.three .gander .radioBoxDiv,
.rateDiv.three ul li div .checkBoxDiv {
    width: 24px;
    height: 24px;
    border: 1px solid #6C737F;
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    -ms-border-radius: 2px;
    -o-border-radius: 2px;
}

.rateDiv.three .gander .radioBoxDiv span {
    display: block;
    width: 15px;
    height: 15px;
    background-color: var(--Colors-Gray-950);
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    right: 0;
    margin: auto;
    opacity: 0;
}

.rateDiv.three ul li div input:checked+.checkBoxDiv {
    background-color: var(--Colors-SA-600);
    border-color: var(--Colors-SA-600);
    transition: all 0.6s ease-in-out;
    -webkit-transition: all 0.6s ease-in-out;
    -moz-transition: all 0.6s ease-in-out;
    -ms-transition: all 0.6s ease-in-out;
    -o-transition: all 0.6s ease-in-out;
}

.rateDiv.three .gander div input:checked+.radioBoxDiv span,
.rateDiv.three ul li div input:checked+.checkBoxDiv svg {
    opacity: 1;
    transition: all 0.6s ease-in-out;
    -webkit-transition: all 0.6s ease-in-out;
    -moz-transition: all 0.6s ease-in-out;
    -ms-transition: all 0.6s ease-in-out;
    -o-transition: all 0.6s ease-in-out;
}

.rateDiv.three ul li div {
    font-size: 16px;
    font-family: var(--fontMeduim);
}

.rateDiv.three .gander span {
    font-size: 16px;
    font-family: var(--fontBold);
}

.rateDiv.three .gander .radioBoxDiv {
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}

.sendRateSucess,
.rateDiv.three .gander div,
.rateDiv.three .gander {
    display: flex;
    align-items: center;
    gap: 15px;
}

.rateDiv.three .gander div.radioBoxDiv {
    gap: 0
}

.chooseRateYoN {
    display: flex;
}

.rateDiv.three .gander div {
    gap: 8px
}

.rateDiv .textareaRate label {
    font-size: 14px;
    font-family: var(--fontRegular);
    margin-bottom: 8px;
}

.rateDiv .textareaRate textarea {
    height: 96px;
    border-radius: 4px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px;
}

.rateDiv .textareaRate textarea:focus {
    outline: none;
    box-shadow: none;
    border-color: var(--Colors-Gray-300);
    border-bottom: 2px solid var(--Colors-Gray-950);
}


/*******************statistics***************/

.statistics{
    padding: 50px 0;
    background-color: var(--Colors-whaite);
}
.statistics .title h2{
    margin-bottom: 6px;
}
.statistics .statisticGroup{
    margin-top: 50px;
}
.statistics .statisticItem{
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}
.statistics .statisticItem .statisticInfo{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    align-self: stretch;
}
.statistics .statisticItem .statisticInfo h3{
    font-size: 48px;
    font-family: 'IBMRegular';
    color: var(--Colors-SA-800);
}
.statistics .statisticItem .statisticInfo p{
    margin-bottom: 0;
    font-family: 'IBMRegular';
    font-size: 16px;
    color: var(--text-default);
}

@media (max-width:1200px) {
    .statistics .statisticItem svg{
        width: 80px;
    }
    .statistics .statisticItem .statisticInfo h3 {
        font-size: 25px;
        margin-top: 18px;
    }
    .statistics .statisticItem .statisticInfo p {
        font-size: 18px;
    }
    .searchLogin .form-group {
	    width: 750px;
    }
}
@media (max-width:992px){
    .statistics .statisticItem{
        margin-bottom: 40px;
    }
    .searchLogin .form-group {
	width: 100%;
    }
    .searchLogin .searchForm {
        flex-direction: column;
    }
}
@media (max-width:550px){
    .statistics .statisticItem .statisticInfo p {
        font-size: 12px;
    }
    .statistics .statisticItem .statisticInfo h3 {
        font-size: 16px;
        margin-top: 5px;
    }
    .statistics .statisticItem svg {
        width: 55px;
    }
}

/*branchsList Page and branchDetails Page*/
.branchsList ul.dfwp-column {
    float: unset;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-around;
    flex-wrap: wrap;
    margin: unset;
}

.branchsList ul.dfwp-column li.dfwp-item {
    width: 400px;
}

.branchsList ul.dfwp-column {
    font-size: 10px;
    min-width: 120px;
}

.branchDetails .branchHeader {
    background: var(--branch-Gradient);
}

.branchDetails .branchTitleMap .branchTile ul,
.branchDetails .branchTitleMap .branchTile ul li a,
.branchDetails .branchTitleMap {
    display: flex;
    align-items: center;
    gap: 35px;
}

.branchDetails .branchTitleMap .branchTile h3 {
    margin-bottom: 25px;
    font-size: 26px;
    font-family: var(--fontMeduim);
    color: var(--Colors-Gray-600);
}

.branchDetails .branchTitleMap .branchTile ul {
    gap: 12px;
}

.branchDetails .branchTitleMap .branchTile ul li a {
    gap: 10px;
    color: var(--Colors-Gray-700);
    font-size: 14px;
    font-family: var(--fontMeduim);
    transition: all 0.6s ease-in-out;
    -webkit-transition: all 0.6s ease-in-out;
    -moz-transition: all 0.6s ease-in-out;
    -ms-transition: all 0.6s ease-in-out;
    -o-transition: all 0.6s ease-in-out;
}

.branchDetails .branchTitleMap .branchTile ul li a:hover {
    color: var(--Colors-SA-600);
    transition: all 0.6s ease-in-out;
    -webkit-transition: all 0.6s ease-in-out;
    -moz-transition: all 0.6s ease-in-out;
    -ms-transition: all 0.6s ease-in-out;
    -o-transition: all 0.6s ease-in-out;
}

.branchDetails .branchTitleMap .branchTile ul li a:hover img {
    filter: brightness(0) saturate(100%) invert(38%) sepia(59%) saturate(513%) hue-rotate(101deg) brightness(94%) contrast(94%);
    transition: all 0.6s ease-in-out;
    -webkit-transition: all 0.6s ease-in-out;
    -moz-transition: all 0.6s ease-in-out;
    -ms-transition: all 0.6s ease-in-out;
    -o-transition: all 0.6s ease-in-out;
}

.branchDetails .activePath {
    fill: var(--Colors-SA-400);
}

.branchDetails .branchImg::after,
.branchDetails .branchImg {
    background-color: unset;
}

.branchDetails .branchImg img {
    width: 97.67px;
    height: 100%;
    object-fit: contain;
    filter: opacity(0.5);
}

.branchDetails .branchInfocontainer {
    padding: 125px 0 75px;
    background: var(--Colors-Gray-100);
}

.branchDetails .branchInfocontainer .branchAboutTitle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.branchDetails .branchInfocontainer .branchAboutTitle h3 {
    color: var(--Colors-SA-700);
    font-size: 26px;
    font-family: var(--fontMeduim);
}

.branchDetails .branchInfocontainer .branchAboutTxt {
    background-color: var(--Colors-whaite);
    padding: 30px 15px;
    border: 1px solid var(--Colors-Gray-200);
    border-radius: 16px;
    -webkit-border-radius: 16px;
    -moz-border-radius: 16px;
    -ms-border-radius: 16px;
    -o-border-radius: 16px;
    min-height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.branchDetails .branchInfocontainer .branchAboutTxt p {
    color: var(--Colors-Gray-700);
    font-size: 14px;
    font-family: var(--fontRegular);
    line-height: 25px;
}

.branchDetails .branchInfocontainer iframe {
    border-radius: 16px;
    -webkit-border-radius: 16px;
    -moz-border-radius: 16px;
    -ms-border-radius: 16px;
    -o-border-radius: 16px;
}

.branchDetails .branchInfocontainer .branchAboutTxt ul li:not(:last-of-type) {
    margin-bottom: 10px;
}

.branchsList {
   padding-top: 50px;
}
.afterLogin h3{
    margin-bottom: 0;
}
.afterLogin h3,
.afterLogin div,
.afterLogin ul{
    height: 40px;
}
.ms-welcome-root > a.ms-core-menu-root, .ms-signInLink{
    color: var(--Colors-whaite);
}
.branchsList .branchItem a:active{
    color: var(--text-default);
}
.branchsList .branchItem {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 10px;
    background-color: var(--Colors-whaite);
    border-radius: 16px;
    -webkit-border-radius: 16px;
    -moz-border-radius: 16px;
    -ms-border-radius: 16px;
    -o-border-radius: 16px;
    margin-bottom: 30px;
    transition: all 0.6s ease-in-out;
    -webkit-transition: all 0.6s ease-in-out;
    -moz-transition: all 0.6s ease-in-out;
    -ms-transition: all 0.6s ease-in-out;
    -o-transition: all 0.6s ease-in-out;
    height: 200px;
}

.branchsList .branchItem:hover {
    overflow: unset;
}


.branchsList .branchItem:hover .branchImg {
    background-color: transparent;
    transition: height 0.5s ease-in-out;
    -webkit-transition: height 0.5s ease-in-out;
    -moz-transition: height 0.5s ease-in-out;
    -ms-transition: height 0.5s ease-in-out;
    -o-transition: height 0.5s ease-in-out;

}


.branchsList .branchInfo {
    padding: 30px;
}

.branchsList .branchInfo h3 {
    font-size: 16px;
    color: var(--Colors-SA-600);
    font-family: var(--fontMeduim);
    margin-bottom: 50px;
}

.branchsList .branchInfo a {
    min-width: 120px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px;
}

.branchsList .branchImg {
    height: 200px;
    transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
}

.branchsList .branchImg img {
    height: 100%;
    object-fit: contain;
    border-radius: 16px 0 0 16px;
}
.branchImage img{
    height: 20px;
    object-fit: contain;
}

.branchsList .branchItem.agenciesItem:hover {
    overflow: hidden;
}

.branchsList .branchItem.agenciesItem .branchImg {
    display: flex;
    align-items: end;
    justify-content: center;
    width: 150px;
    transition: all 0.6s ease-in-out;
    -webkit-transition: all 0.6s ease-in-out;
    -moz-transition: all 0.6s ease-in-out;
    -ms-transition: all 0.6s ease-in-out;
    -o-transition: all 0.6s ease-in-out;
}


.branchsList .branchItem.agenciesItem .branchInfo {
    width: 189px;
}

.branchsList .branchItem.agenciesItem:hover .branchImg img {
    height: 120px;
    object-fit: contain;
    transform: scale(1.4);
    -webkit-transform: scale(1.4);
    -moz-transform: scale(1.4);
    -ms-transform: scale(1.4);
    -o-transform: scale(1.4);
    transform-origin: left bottom;
    transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
}

.branchsList .branchItem.agenciesItem {
    margin-top: 30px;
    margin-bottom: 0;
}

.branchsList .branchItem.agenciesItem .branchImg img {
    height: 120px;
    object-fit: contain;
    transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
}

.branchsList .branchItem.agenciesItem:hover .branchImg {
    transition: all 0.2s ease-in-out;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
}

.branchImg {
    position: relative;
    border-radius: 16px 0 0 16px;
}

.branchImg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--Colors-SA-400);
    border-radius: 16px 0 0 16px;
    opacity: 65%;
    transition: opacity 0.5s ease-in-out 0.3s;
    -webkit-transition: opacity 0.5s ease-in-out 0.3s;
    -moz-transition: opacity 0.5s ease-in-out 0.3s;
    -ms-transition: opacity 0.5s ease-in-out 0.3s;
    -o-transition: opacity 0.5s ease-in-out 0.3s;
}

.branchsList .branchItem:hover .branchImg::after {
    opacity: 0;
    transition: opacity 0.1s ease-in-out;
    -webkit-transition: opacity 0.1s ease-in-out;
    -moz-transition: opacity 0.1s ease-in-out;
    -ms-transition: opacity 0.1s ease-in-out;
    -o-transition: opacity 0.1s ease-in-out;
}

.branchDetails .branchInfocontainer .branchAboutTitle a,
.branchsList .branchInfo a {
    display: block;
    height: 40px;
    min-width: 94px;
    padding: 0 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 12px;
    font-family: var(--fontMeduim);
    border-radius: 4px;
    overflow: hidden;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px;
    transition: all 0.6s ease-in-out;
    -webkit-transition: all 0.6s ease-in-out;
    -moz-transition: all 0.6s ease-in-out;
    -ms-transition: all 0.6s ease-in-out;
    -o-transition: all 0.6s ease-in-out;
    overflow: hidden;
    position: relative;
}

.branchDetails .branchInfocontainer .branchAboutTitle a svg,
.branchsList .branchInfo a svg {
    position: absolute;
    left: -30px;
    transition: all 0.6s ease-in-out;
    -webkit-transition: all 0.6s ease-in-out;
    -moz-transition: all 0.6s ease-in-out;
    -ms-transition: all 0.6s ease-in-out;
    -o-transition: all 0.6s ease-in-out;
}

/* .branchDetails .branchInfocontainer .branchAboutTitle a:hover,
.branchsList .branchInfo a:hover {
    background-color: var(--Colors-whaite);
    color: var(--Colors-SA-600);
    border-color: var(--Colors-SA-600);
    transition: all 0.6s ease-in-out;
    -webkit-transition: all 0.6s ease-in-out;
    -moz-transition: all 0.6s ease-in-out;
    -ms-transition: all 0.6s ease-in-out;
    -o-transition: all 0.6s ease-in-out;
} */

/* .branchDetails .branchInfocontainer .branchAboutTitle a:hover svg,
.branchsList .branchInfo a:hover svg {
    position: relative;
    left: 0;
    transition: all 0.6s ease-in-out;
    -webkit-transition: all 0.6s ease-in-out;
    -moz-transition: all 0.6s ease-in-out;
    -ms-transition: all 0.6s ease-in-out;
    -o-transition: all 0.6s ease-in-out;
} */

/*  end rating */
/*footer*/
footer {
    padding: 50px 0 40px;
    background-color: var(--background-SA-Flag);
}

footer .footer-item {
    margin-bottom: 40px;
    color: var(--Colors-whaite);
}

footer .footer-item h3 {
    color: var(--Colors-whaite);
    font-size: 16px;
    font-family: var(--fontMeduim);
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    margin-bottom: 8px;
}

footer .footer-item ul:not(.socialLinks) li:not(:last-of-type) {
    margin-bottom: 8px;
}

footer .footer-item ul.socialLinks {
    gap: 8px;
}

footer .footer-item ul.socialLinks li a {
    height: 32px;
    width: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.6s ease-in-out;
    -webkit-transition: all 0.6s ease-in-out;
    -moz-transition: all 0.6s ease-in-out;
    -ms-transition: all 0.6s ease-in-out;
    -o-transition: all 0.6s ease-in-out;
    border-radius: 5px;
    border: 1px solid var(--Colors-Gray-300);
}

footer .footer-item ul.socialLinks li a:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transition: all 0.6s ease-in-out;
    -webkit-transition: all 0.6s ease-in-out;
    -moz-transition: all 0.6s ease-in-out;
    -ms-transition: all 0.6s ease-in-out;
    -o-transition: all 0.6s ease-in-out;
}

footer .footer-item ul.socialLinks li a img {
    height: 16px;
    width: 16px;
    transition: all 0.6s ease-in-out;
    -webkit-transition: all 0.6s ease-in-out;
    -moz-transition: all 0.6s ease-in-out;
    -ms-transition: all 0.6s ease-in-out;
    -o-transition: all 0.6s ease-in-out;
}

footer .footer-item ul.socialLinks li a:hover img {
    height: 20px;
    width: 20px;
    transition: all 0.6s ease-in-out;
    -webkit-transition: all 0.6s ease-in-out;
    -moz-transition: all 0.6s ease-in-out;
    -ms-transition: all 0.6s ease-in-out;
    -o-transition: all 0.6s ease-in-out;
}

footer .footer-item ul.socialLinks li a:hover.x {
    border: 1px solid var(--Colors-Gray-950);
    background-color: var(--Colors-Gray-950);
    transition: all 0.6s ease-in-out;
    -webkit-transition: all 0.6s ease-in-out;
    -moz-transition: all 0.6s ease-in-out;
    -ms-transition: all 0.6s ease-in-out;
    -o-transition: all 0.6s ease-in-out;
}

footer .footer-item ul.socialLinks li a:hover.snap {
    border: 1px solid #C9C607;
    background-color: #C9C607;
    transition: all 0.6s ease-in-out;
    -webkit-transition: all 0.6s ease-in-out;
    -moz-transition: all 0.6s ease-in-out;
    -ms-transition: all 0.6s ease-in-out;
    -o-transition: all 0.6s ease-in-out;
}

footer .footer-item ul.socialLinks li a:hover.youtube {
    border: 1px solid #E53935;
    background-color: #E53935;
    transition: all 0.6s ease-in-out;
    -webkit-transition: all 0.6s ease-in-out;
    -moz-transition: all 0.6s ease-in-out;
    -ms-transition: all 0.6s ease-in-out;
    -o-transition: all 0.6s ease-in-out;
}

footer .footer-item a {
    color: var(--Colors-whaite);
    font-size: 14px;
    font-family: var(--fontRegular);
    opacity: 1;
}
footer .footer-item a svg{ 
    margin-inline-start: 6.17px;
}
footer .bottomFooter ul {
    display: flex;
    align-items: center;
    gap: 16px
}
 
footer .footerLogos img.vision2030{
    height: 40px;
    width: 60px;
}
footer .bottomFooter ul a {
    font-size: 14px;
    font-family: var(--fontRegular);
    color: var(--Colors-whaite);
    opacity: 1;
    text-decoration: none;
    transition: all 0.6s ease-in-out;
    -webkit-transition: all 0.6s ease-in-out;
    -moz-transition: all 0.6s ease-in-out;
    -ms-transition: all 0.6s ease-in-out;
    -o-transition: all 0.6s ease-in-out;
}

footer .footer-item a:hover,
footer .bottomFooter ul a:hover {
    color:var(--Colors-whaite);
    opacity: 0.8;
    transition: all 0.6s ease-in-out;
    -webkit-transition: all 0.6s ease-in-out;
    -moz-transition: all 0.6s ease-in-out;
    -ms-transition: all 0.6s ease-in-out;
    -o-transition: all 0.6s ease-in-out;
    text-decoration: underline;
}

footer .bottomFooter .copyRight {
    color: var(--Colors-whaite);
    font-family: var(--fontRegular);
    font-size: 14px;
    margin-top: 24px;
}

footer .bottomFooter .copyRight h3 {
    font-family: var(--fontBold);
    margin-bottom: 8px;
    font-size: 14px;
}

footer .bottomFooter .copyRight p {
    margin-bottom: 0;
}
footer .bottomFooter .copyRight p.mb-8{
    margin-bottom: 8px;
}
footer .footerLogos {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: end;
}
footer .footerLogos svg{
    height: 42px;
    width: auto;
}

footer .footerLogos img {
    width: 106px;
    height: 42px;
}
footer .footerLogosGroup{
    width: 252px;
}
footer .box-icon a {
    width: 127.45px;
    height: 42px;
    display: block;
    margin: 16px auto 0;
}

footer .box-icon img {
    width: 100%;
    height: auto;
}

/* end footer */

/*-----------------------Modal--------------------------------*/
.modal #ModalTitle {
    font-family: var(--fontSemiBold);
    font-size: 18px;
    margin-bottom: 30px;
}

.modal #ModalLabel {
    font-size: 14px;
    margin-bottom: 30px;
}

.modal .close {
    border: unset;
    font-size: 20px;
    min-width: 40px;
    margin-top: 15px;
}

.modal .modal-header {
    border-bottom: unset;
}

.modal .modal-header h5 {
    margin-right: 10px;
    margin-top: 15px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    background: var(--Colors-Gray-100);
    border-radius: 50%;
}

.modal .modal-header h5 svg {
    height: 20px;
    width: 20px;
    margin: auto;
}

.overLayBody {
    background: var(--Colors-SA-400);
    position: fixed;
    z-index: 99;
    opacity: 0.6;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
}


.openNav svg path {
    stroke: var(--Colors-SA-600)
}

.mobileHeader {
    display: none;
    justify-content: space-between;
    align-items: center;
    height: 75px;
}

.mobileHeader .logos {
    display: flex;
    align-items: end;
    gap: 15px;
}

.backMainMenu {
    position: absolute;
    left: 10px;
    border: none;
    transform: rotate(90deg);
    display: none;
}

.backMainMenu,
.closeNav {
    border-radius: 0;
    width: 40px;
    height: 40px;
    padding: 0;
    min-width: 40px;
    border: none;
    background: transparent;
    width: fit-content;
    position: absolute;
    top: 0;
    left: 0;
    background-color: transparent;
}

.closeNav {
    display: none;
}

.backMainMenu svg,
.closeNav svg {
    fill: var(--Colors-Gray-700);
}

.openNav:hover,
.openNav:focus,
.backMainMenu:hover,
.backMainMenu:focus,
.closeNav:hover,
.closeNav:focus {
    background-color: transparent;
}

.openNav {
    border: none;
    background-color: transparent;
}

.AgenciesSection {
    padding-bottom: 50px;
}

.branchsList.AgenciesSection .branchInfo a {
    min-width: 145px;
}

.contactUs {
    padding: 50px 0;
    background-color: var(--Colors-Gray-200);
}

.contactUs label span {
    color: var(--Colors-Error-700);
}

.contactUs label {
    font-size: 14px;
    font-family: var(--fontBold);
    margin-bottom: 10px;
}

.contactUs input {
    background-color: var(--Colors-Gray-25);
}

.contactUs .uploadFile {
    position: relative;
}

.contactUs .uploadFile input {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
}

.contactUs .map {
    padding-bottom: 10px;
    padding-top: 40px;
}

.contactUs .map h2 {
    font-size: 18px;
    margin-bottom: 15px;
    color: var(--Colors-SA-600);
}

.contactUs .map iframe {
    border-radius: 16px;
    -webkit-border-radius: 16px;
    -moz-border-radius: 16px;
    -ms-border-radius: 16px;
    -o-border-radius: 16px;
}

.contactUs textarea {
    min-height: 100px;
}

.contactUs .solidBtn {
    min-width: 120px;
}

.contactUs .form-control:focus {
    outline: none;
    box-shadow: none;
    border: var(--Colors-Gray-400) solid 1px;
    ;
}

.contactUs .uploadFile button {
    outline: 1px solid var(--Colors-Gray-400);
    background-color: transparent;
    color: var(--Colors-Gray-900);
    transition: all 0.6s ease-in-out;
    -webkit-transition: all 0.6s ease-in-out;
    -moz-transition: all 0.6s ease-in-out;
    -ms-transition: all 0.6s ease-in-out;
    -o-transition: all 0.6s ease-in-out;
}

.contactUs .uploadFile:hover button {
    background-color: var(--Colors-whaite);
    transition: all 0.6s ease-in-out;
    -webkit-transition: all 0.6s ease-in-out;
    -moz-transition: all 0.6s ease-in-out;
    -ms-transition: all 0.6s ease-in-out;
    -o-transition: all 0.6s ease-in-out;
}

.sideContactInfo {
    background-color: var(--Colors-whaite);
    padding: 10px;
    border-radius: 16px;
    -webkit-border-radius: 16px;
    -moz-border-radius: 16px;
    -ms-border-radius: 16px;
    -o-border-radius: 16px;
}

.sideContactInfo h3 {
    margin-bottom: 15px;
    font-size: 21px;
    color: var(--Colors-SA-500);
}

.sideContactInfo .text {
    display: flex;
    align-items: center;
    gap: 5px;
}

.sideContactInfo li {
    display: flex;
    align-items: start;
    gap: 10px;
}

.sideContactInfo li:not(:last-of-type) {
    margin-bottom: 15px;
}

.sideContactInfo .text span:first-of-type,
.sideContactInfo h4 {
    font-size: 14px;
    font-weight: bold;
}

.sideContactInfo h4 {
    margin: 0;
}

.sideContactInfo li a {
    color: var(--Colors-SA-600);
}


.Pagination {
    gap: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.Pagination strong,
.Pagination a {
    position: relative;
    color: var(--Colors-Gray-600);
    display: flex;
    width: 20px;
    height: 20px;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}

.Pagination strong::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    width: 40%;
    height: 3px;
    background-color: var(--Colors-SA-400);
    border-radius: 9px;
    -webkit-border-radius: 9px;
    -moz-border-radius: 9px;
    -ms-border-radius: 9px;
    -o-border-radius: 9px;
}

.Pagination strong:hover,
.Pagination a:hover {
    background-color: var(--Colors-whaite);
    border-radius: 4px;
    transition: all 0.6s ease-in-out;
    -webkit-transition: all 0.6s ease-in-out;
    -moz-transition: all 0.6s ease-in-out;
    -ms-transition: all 0.6s ease-in-out;
    -o-transition: all 0.6s ease-in-out;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px;
}

.SideMenu li>a {
    position: relative;
}

li>a.ms-core-listMenu-item.ms-core-listMenu-selected:hover,
li>a.ms-core-listMenu-item:hover,
li>a.ms-core-listMenu-item:active,
.ms-core-listMenu-selected:link,
.ms-core-listMenu-selected:visited,
.ms-core-listMenu-selected,
.SideMenu li>a.ms-core-listMenu-item.ms-core-listMenu-selected:hover,
li>a.ms-core-listMenu-item:hover,
li>a.ms-core-listMenu-item:active {
    background-color: none !important;
    position: relative;
    border-bottom: 2px solid var(--Colors-SA-700);
}

.CQWPPager {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
}

.NewsList ul {
    position: relative;
    padding-bottom: 30px;

}

@media only screen and (max-width:992px) {
    .modal {
        max-width: 100% !important;
        width: 100% !important;
        margin-left: 0px;
        margin-right: 0px;
        margin-top: 50px;
    }
}

@media(max-width:1400px) {
    .newsItem {
        width: auto;
    }

    .newsItem .newsImg img {
        width: 100%;
    }


    header.moia-header .menu img {
        height: 56px;
    }


    .searchLogin {
        gap: 5px;
    }

    .searchLogin>ul>li>a {
        min-width: 70px;
    }

    header.moia-header .menu>ul>li>a,
    .searchLogin>ul>li>a {
        padding: 0 10px;
    }


    header.moia-header ul li .dropDiv {
        gap: 30px;
    }
}

@media (max-width:991px) {
    .sideContactInfo {
        margin-top: 30px;
    }

    .jobPlattform .jobPlattformLink {
        flex-wrap: wrap;
    }

    .jobPlattform h2 {
        margin-bottom: 30px;
    }

    header.moia-header .menu {
        padding-top: 40px;
    }

    header.moia-header .menu>ul>li>a.active svg {
        transform: rotate(270deg);
        -webkit-transform: rotate(270deg);
        -moz-transform: rotate(270deg);
        -ms-transform: rotate(270deg);
        -o-transform: rotate(270deg);
    }


    .closeNav,
    .backMainMenu {
        display: block;
    }

    .mobileHeader {
        display: flex;
        padding: 0 10px;
    }

    header.moia-header .date-time>div.time,
    .accessibility,
    header .vision2030Img,
    .searchLogin>ul>li>a::after,
    header.moia-header .menu>ul>li>a::after {
        display: none !important;
    }

    header.moia-header .menu>ul>li:last-of-type>a {
        border: none
    }

    .searchLogin>ul>li>a span,
    header.moia-header nav .navContainer .menu a.logoImg {
        display: none;
    }

    header.moia-header nav .navContainer {
        position: fixed;
        top: 0;
        right: 0;
        transform: translateX(300px);
        transition: all 0.6s ease-in-out;
        height: 100%;
        width: 300px;
        background: #fff;
        flex-direction: column;
        -webkit-transform: translateX(300px);
        -moz-transform: translateX(300px);
        -ms-transform: translateX(300px);
        -o-transform: translateX(300px);
        -webkit-transition: all 0.6s ease-in-out;
        -moz-transition: all 0.6s ease-in-out;
        -ms-transition: all 0.6s ease-in-out;
        -o-transition: all 0.6s ease-in-out;
    }

    header.moia-header ul li .dropDiv {
        position: fixed;
        top: 0;
        right: 0;
        height: 100%;
        display: block;
        width: 300px;
        z-index: 99;
        overflow-y: auto;
        transform: translateY(0) translateX(300px);
        -webkit-transform: translateY(0) translateX(300px);
        -moz-transform: translateY(0) translateX(300px);
        -ms-transform: translateY(0) translateX(300px);
        -o-transform: translateY(0) translateX(300px);
    }

    header.moia-header .menu>ul>li>a,
    header.moia-header nav .navContainer ul.nav li {
        width: 100%;
        justify-content: space-between;
    }

    header.moia-header .menu>ul>li>a svg {
        width: 13px;
        height: 13px;
        transform: rotate(90deg);
        -webkit-transform: rotate(90deg);
        -moz-transform: rotate(90deg);
        -ms-transform: rotate(90deg);
        -o-transform: rotate(90deg);
    }

    header.moia-header nav .navContainer ul,
    header.moia-header ul li .ministryLink {
        display: block;
        width: 100%;
        height: auto;
    }

    header.moia-header ul li .dropDiv .dropImg,
    header.moia-header .menu ul li .dropDiv ul li a {
        align-items: center;
        flex-direction: row;
        justify-content: start;
    }

    header.moia-header .menu,
    header.moia-header .menu ul li .dropDiv ul li,
    header.moia-header .menu ul li .dropDiv ul li a {
        width: 100%
    }

    header.moia-header ul li .dropDiv .dropImg,
    header.moia-header ul li .dropDiv ul li a img{
        height: 30px;
    }

    header.moia-header .menu ul li .dropDiv ul li a {
        margin-bottom: 10px;
        padding: 10px;
        border-bottom: 1px solid var(--Colors-SA-200);
        min-height: 40px;
    }

    header.moia-header nav .navContainer .searchLogin ul {
        display: flex;
        gap: 15px;
        margin-bottom: 10px;
    }

    .searchLogin>ul>li>a {
        min-width: auto;
        height: auto;
        background-color: var(--Colors-SA-200);
        padding: 15px;
        border-left: none;
        border-radius: 8px;
        -webkit-border-radius: 8px;
        -moz-border-radius: 8px;
        -ms-border-radius: 8px;
        -o-border-radius: 8px;
    }

    .searchLogin>ul>li>a.active .searchLogin>ul>li>a:hover {
        background-color: var(--Colors-SA-700);
    }


    header.moia-header .searchLogin ul li .dropDiv {
        right: unset;
        left: 0;
        width: 100%;
        transform: translateY(0) translateX(100%);
        -webkit-transform: translateY(0) translateX(100%);
        -moz-transform: translateY(0) translateX(100%);
        -ms-transform: translateY(0) translateX(100%);
        -o-transform: translateY(0) translateX(100%);
        z-index: 999;
    }

    .searchLogin form {
        width: 100%;
    }

    header.moia-header .searchLogin .searchMenuDiv {
        padding: 10px;
    }

    header.moia-header ul li .dropDiv.openDropMenu {
        transform: translateY(0) translateX(0);
        -webkit-transform: translateY(0) translateX(0);
        -moz-transform: translateY(0) translateX(0);
        -ms-transform: translateY(0) translateX(0);
        -o-transform: translateY(0) translateX(0);
    }

    header.moia-header nav .navContainer.openNavDiv {
        transition: all 0.6s ease-in-out;
        transform: translateX(0);
        -webkit-transform: translateX(0);
        -moz-transform: translateX(0);
        -ms-transform: translateX(0);
        -o-transform: translateX(0);
        -webkit-transition: all 0.6s ease-in-out;
        -moz-transition: all 0.6s ease-in-out;
        -ms-transition: all 0.6s ease-in-out;
        -o-transition: all 0.6s ease-in-out;
    }
}

@media (max-width:767px) {
    .digitalStamp_heads span{
        font-size: 12px;
    }
    .navActions button{
        min-width: 50px;
    }
    footer .footerLogos {
        margin-top: 20px;
    }

    .chooseRateYoN,
    .rating .rateDiv form {
        margin-bottom: 10px;
    }

    .rateDiv,
    .rating .rateDiv .yonContainer {
        flex-wrap: wrap;
    }
}
@media(max-width:530px){
    .navActions{
        display: none;
    }
}
@media(max-width:420px) {
    .branchsList ul.dfwp-column li.dfwp-item {
        width: 100%;
    }
    .digitalStamp_heads {
        gap: 5px;
        height: auto;
        flex-wrap: wrap;
        padding-bottom: 20px;
    }
    .digitalStamp_moreInfo span{
        font-size: 12px;
    }
}

@media(max-width:375px) {
    .digitalStamp_moreInfo{
        flex-wrap: wrap;
        gap: 10px;
    }
    .branchsList.AgenciesSection .branchItem.agenciesItem .branchInfo {
        width: 195px;
    }

    .branchsList.AgenciesSection .branchItem.agenciesItem .branchImg img {
        height: 100px;
    }

    .branchsList.AgenciesSection .branchItem.agenciesItem .branchImg {
        width: 105px;
    }
    .servItem .keyWord{
        margin-bottom: 10px;
    }
}

/*----------------------/Modal--------------------------------*/

/*cookies*/
.container-cookie-banner {
    background: #fff;
    bottom: 0;
    height: 328px;
    left: 0;
    opacity: 1;
    overflow-x: hidden;
    overflow-y: auto;
    padding: 2rem;
    position: fixed;
    right: 0;
    transform: translateY(0);
    transition: opacity .3s ease, transform .3s ease;
    width: 100%;
    z-index: 9999;
    box-shadow: 0 0 10px #dadada;
}
.container-cookie-banner .cursor-pointer {
    cursor: pointer;
}

.text-md{
    font-size: 1rem;
    line-height: calc(1.275rem + .3vw);
}

.font-normal {
    font-weight: 400;
}


.container-cookie-banner .accept {
    width: 100%;
}


.container-cookie-banner .accept {
    width: 100%;
}
