/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/

@font-face {
    font-family: 'Rubik';
    font-style: normal;
    font-weight: 100 1000;
    font-stretch: 0% 200%;
    src: url('/documents/d/guest/rubik-regular');
}

@font-face {
    font-family: 'RubikSemiBold';
    font-style: normal;
    src: url('/documents/d/guest/rubik-semibold');
}

@font-face {
    font-family: 'RubikBold';
    font-style: normal;
    src: url('/documents/d/guest/rubik-bold');
}

@font-face {
    font-family: 'Almarai';
    font-style: normal;
    font-weight: 100 1000;
    font-stretch: 0% 200%;
    src: url('/documents/d/guest/almarai-regular');
}

@font-face {
    font-family: 'AlmaraiBold';
    font-style: normal;
    src: url('/documents/d/guest/almarai-bold');
}

:root {
    --prim: #fbfbfb;
    --second: #2a303b;
    --second2: #273242;
    --third: #f5f6fd;
    --fourth: #e7eff3;
    --blue: #14719d;
    --blue2: #3d7088;
}

.section-title{
    text-transform: none;
}

body,
#wrapper {
    font-family: "Rubik", sans-serif;
    color: #444444;
    background-color: var(--third);
}

[dir="rtl"] body,
[dir="rtl"] #wrapper {
    font-family: "Almarai";
}

a {
    color: var(--second);
    text-decoration: none;
}

a:hover {
    color: #3d7088;
    text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6,
a,
button,
p,
span {
    font-family: "Rubik", sans-serif;
}

[dir="rtl"] h1,
[dir="rtl"] h2,
[dir="rtl"] h3,
[dir="rtl"] h4,
[dir="rtl"] h5,
[dir="rtl"] h6,
[dir="rtl"] a,
[dir="rtl"] button,
[dir="rtl"] p,
[dir="rtl"] span {
    font-family: "Almarai";
}

p {
    font-size: 16px;
    line-height: 25px;
    font-family: "Rubik", sans-serif;
}

[dir="rtl"] p {
    font-family: "Almarai";
}

h1,
h2,
h3,
h4,
h5,
h6 {
    /*font-family: 'RubikBold';*/
    font-weight: 700;
}

.btn-primary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    background-color: var(--blue2);
    color: #fff;
    border: 1px solid var(--blue2);
    border-radius: 50px;
    padding: 5px;
    font-size: 16px;
    font-family: "RubikSemiBold";
    font-weight: 600;
    text-align: center;
    width: max-content;
    min-width: 250px;
    opacity: 1 !important;
    transition: 0.3s;
    span {
        width: calc(100% - 42px);
    }
    i {
        /*position: absolute;
        top: 5px;
        inset-inline-end: 5px;*/
        background-color: #fff;
        color: var(--blue2);
        border-radius: 25px;
        width: 42px;
        height: 42px;
        font-size: 25px;
        display: flex;
        justify-content: center;
        align-items: center;
    }
}

[dir="rtl"] .btn-primary {
    font-family: "AlmaraiBold";
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:focus-visible,
.btn-primary:active {
    background-color: #fff !important;
    border: 1px solid var(--blue2) !important;
    color: var(--blue2) !important;
    transform: scale(1.05);
    i {
        background-color: var(--blue2);
        color: #fff;
    }
}

[dir="rtl"] .bi-arrow-up-right::before {
    content: "\f13f";
}

[dir="rtl"] .bi-chevron-left::before {
    content: "\f285";
}

[dir="rtl"] .bi-chevron-right::before {
    content: "\f284";
}

.white {
    background-color: #fff;
}

.dark {
    background-color: var(--second);
    color: #fff;
}

.dark.blue2 {
    background-color: var(--blue2);
    color: #fff;
}


.dark .section-title {
    color: #fff;
}

.dark.btn-primary {
    background-color: #fff;
    color: var(--second);
    border: 1px solid #fff;
    i {
        background-color: var(--blue2);
        color: #fff;
    }
}

.bg-liner2 {
    background-image: linear-gradient(45deg, #b5c7e4, #d9e4e1);
}

.dark.btn-primary:hover,
.dark.btn-primary:focus,
.dark.btn-primary:focus-visible,
.dark.btn-primary:active {
    background-color: var(--second) !important;
    border: 1px solid #fff !important;
    color: #fff !important;
    i {
        background-color: #fff;
        color: var(--blue2);
    }
}

.mb-40 {
    margin-bottom: 40px;
}

.newLinkHover {
    position: relative;
    padding-bottom: 2px;
}

.newLinkHover::before {
    content: "";
    position: absolute;
    height: 4px;
    min-width: 0px;
    width: 0px;
    bottom: 0px;
    border-radius: 10px;
    transition: all 0.22s ease-in-out 0s;
    background-color: var(--second);
    max-width: 150px;
}

.newLinkHover:hover::before {
    width: calc(100% - 16px);
}


/*--------------------------------------------------------------
# Cards
--------------------------------------------------------------*/


/*.media-slider .swiper-slide {
    margin-inline-end: 3px
}*/

.card-style1,
.card-style9 {
    display: block;
    position: relative;
    margin-block: 15px;
    overflow: hidden;
}

.card-style1 .image,
.card-style3 .image,
.card-gallery .image,
.card-style5 .image,
.card-style7 .image {
    aspect-ratio: 4/3;
    border-radius: 15px;
    overflow: hidden;
    width: 100%;
    filter: brightness(0.5);
}

.card-style9 .image {
    aspect-ratio: 1300/630;
    border-radius: 15px;
    overflow: hidden;
    width: 100%;
    filter: brightness(0.5);
}

.card-style1 .image img,
.card-style9 .image img,
.card-style3 .image img,
.card-gallery .image img,
.card-style5 .image img,
.card-style7 .image img,
.card-initiatives .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.3s;
}

.card-style1:hover>.image img,
.card-style9:hover>.image img,
.card-style3:hover>.image img,
.card-style3:hover>.image .arrow,
.card-gallery:hover>.image img,
.card-initiatives:hover>.image img,
.card-style8:hover>.image img {
    transform: scale(1.2);
}

.card-style1 .content,
.card-style9 .content {
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    padding: 30px;
    color: #fff;
    z-index: 1;
}

.card-style1 .content {
    padding: 0 30px;
}

.card-style1 .content h3 {
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.card-style9 .content {
    bottom: 0px;
    padding: 50px;
}

.card-style1 h3 {
    font-size: 36px;
    margin-bottom: 10px;
}

.card-style9 h3 {
    font-size: 48px;
}

.card-style9 p {
    font-size: 16px;
    line-height: 32px;
}

.card-style9 .content a {
    font-family: "RubikBold";
    font-size: 24px;
    font-weight: 700;
    color: #fff;
}

[dir="rtl"] .card-style9 .content a {
    font-family: "AlmaraiBold";
}

.card-style9 .content a::before {
    background-color: #fff;
}

.card-style1 h5 {
    font-size: 24px;
    margin-bottom: 10px;
}

.card-style1 p {
    font-size: 18px;
}

.card-initiatives {
    display: block;
    background-color: #fff;
    padding: 20px;
    border-radius: 20px;
}

.card-initiatives .image {
    width: 100%;
    aspect-ratio: 356/218;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 20px;
}

.card-initiatives .title {
    font-size: 24px;
    font-family: "RubikSemiBold";
    font-weight: 600;
    color: var(--second);
    line-height: 24px;
    margin-bottom: 10px;
}

[dir="rtl"] .card-initiatives .title {
    font-family: "AlmaraiBold";
}

.card-initiatives .content {
    height: 120px;
    justify-content: space-between;
    display: flex;
    flex-direction: column;
}

.card-initiatives .content .content-end {
    align-items: end;
}

.card-initiatives .content .content-end a {
    font-size: 18px;
    color: #3d7088;
    font-family: "RubikSemiBold";
}

[dir="rtl"] .card-initiatives .content a {
    font-family: "AlmaraiBold";
}

.card-initiatives .content a i {
    padding-inline-start: 5px;
}

.card-initiatives:hover {
    box-shadow: 0 0 10px rgb(218, 218, 218);
}

.card-initiatives:hover .title {
    color: var(--blue);
}

.card-initiatives .desc,
.card-initiatives .desc p {
    font-size: 16px;
    font-weight: 400;
    color: #64748b;
    line-height: 25px;
    margin-bottom: 10px;
}

.card-initiatives p {
    font-size: 14px;
    font-weight: 500;
    color: #8fa0ba;
    line-height: 18px;
    margin-bottom: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.Events .card-style1 .image {
    aspect-ratio: 4/3.5;
}

.card-style3 .image img {
    filter: brightness(0.5);
}

.card-style3 .image,
.card-gallery .image {
    aspect-ratio: 4/4;
    filter: brightness(1);
    margin-bottom: 20px;
}

.card-style3.rect .image {
    aspect-ratio: 4/2.5;
}

.card-style3 p {
    font-family: "RubikBold";
    margin-bottom: 10px;
    font-size: 32px;
    font-weight: 700;
    line-height: 45px;
}

[dir="rtl"] .card-style3 p {
    font-family: "AlmaraiBold";
}

.card-style3 span {
    font-size: 18px;
    font-family: "RubikSemiBold";
    font-weight: 600;
    margin-bottom: 10px;
    display: block;
    color: var(--blue);
}

[dir="rtl"] .card-style3 span {
    font-family: "AlmaraiBold";
}

.card-style3 .arrow {
    position: absolute;
    z-index: 1;
    top: 10px;
    inset-inline-end: 10px;
    background-color: #fff;
    color: #000;
    width: 40px;
    height: 40px;
    border-radius: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    -webkit-text-stroke: 1px;
    transition: 0.3s;
}

.card-style4 {
    position: relative;
    margin-block: 20px 30px;
}

.card-style4 .image {
    aspect-ratio: 4/4;
    border-radius: 15px;
    overflow: hidden;
    width: 100%;
    background-color: #eaebf5;
    /*filter: contrast(0.6)*/
}

.card-style4 .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.3s;
}

.card-style4:hover>.image img {
    transform: scale(1.2);
}

.card-style4 .image2 {
    height: 80px;
    max-width: 100%;
    margin-block: 20px;
}

.card-style4 .image2 img {
    max-width: 100%;
    height: 100%;
    object-fit: contain;
}

.card-style4 .content {
    padding: 0;
    color: var(--second);
    z-index: 1;
}

.card-style4 h3 {
    font-family: "RubikBold";
    font-size: 28px;
    line-height: 34px;
    font-weight: 700;
    color: var(--second);
}

[dir="rtl"] .card-style4 h3 {
    font-family: "AlmaraiBold";
}

.card-style5 .image,
.card-style7 .image {
    aspect-ratio: 4/5.4;
    filter: none;
}

.card-style5 h3 {
    margin-block: 10px 0;
    font-size: 22px;
    font-family: "RubikSemiBold";
    font-weight: 600;
    color: #000;
}

[dir="rtl"] .card-style5 h3 {
    font-family: "AlmaraiBold";
}

.card-style5 p {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.card-style5 p,
.card-style7 p {
    margin-block: 10px;
    font-size: 16px;
    font-weight: 400;
    color: #62769d;
}

.card-style7 p {
    margin-block: 20px;
    display: block;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.card-style7 .newLinkHover {
    color: #14719d;
    font-size: 18px;
    font-weight: 500;
    font-family: "RubikSemiBold";
}

[dir="rtl"] .card-style7 .newLinkHover {
    font-family: "AlmaraiBold";
}

.card-style7 .newLinkHover::before {
    background-color: #14719d;
    max-width: 80px;
}

.card-style5 a,
.card-style7 a {
    font-family: "RubikBold";
    font-size: 18px;
    font-weight: 700;
    color: var(--blue);
}

[dir="rtl"] .card-style5 a,
[dir="rtl"] .card-style7 a {
    font-family: "AlmaraiBold";
}

.card-style5 a::before {
    background-color: var(--blue);
}

.card-style6 {
    background-color: #fff;
    padding: 50px;
    border-radius: 15px;
    border: 1px solid #c7c7c7;
    height: 100%;
}

.card-style6 p {
    font-size: 14px;
    font-weight: 500;
    line-height: 32px;
    margin-top: 20px;
    margin-bottom: 0;
}

.card-style6 .image img {
    height: 90px;
}

.card-style6 a {
    width: 50px;
    height: 50px;
    border: 1px solid #00000042;
    border-radius: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.3s;
}

.card-style6 a i {
    color: #000;
    font-size: 20px;
}

.card-style6 a i::before {
    font-weight: 800 !important;
}

.card-style6 a:hover {
    transform: rotate(25deg);
}

.card-style6 a:hover i {
    color: #3d7088;
}

.card-style7 {
    gap: 50px;
}

.card-style7 h5 {
    margin-block: 20px;
    font-size: 22px;
    font-weight: 500;
    color: #62769d;
    font-family: "RubikSemiBold";
}

[dir="rtl"] .card-style7 h5 {
    font-family: "AlmaraiBold";
}

.card-style7 h3,
.card-style7 h3 p {
    font-family: "RubikBold";
    margin-block: 10px 0;
    font-size: 34px;
    font-weight: 700;
    color: #000;
    line-height: 48px;
}

[dir="rtl"] .card-style7 h3,
[dir="rtl"] .card-style7 h3 p {
    font-family: "AlmaraiBold";
}

.first_section {
    margin-top: 160px;
    /* padding-top: 30px !important;*/
}

.card-style8 {
    display: block;
    position: relative;
}

.card-style8 .image {
    aspect-ratio: 4/3;
    border-radius: 15px;
    overflow: hidden;
    width: 94%;
    margin: 0 3%;
}

.card-style8 .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.3s;
}

.card-style8 .content {
    display: flex;
    justify-content: space-between;
    align-items: end;
    position: relative;
    z-index: 1;
    margin-top: -100px;
    background-color: #fff;
    border-radius: 15px;
    padding: 15px 30px;
    transition: 0.3s;
}

.card-style8 .content h3 {
    max-width: calc(100% - 100px);
}

.card-style8 h3 {
    font-family: "RubikBold";
    font-size: 24px;
    font-weight: 700;
    margin-block: 10px;
    color: var(--second);
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

[dir="rtl"] .card-style8 h3 {
    font-family: "AlmaraiBold";
}

.card-style8 p {
    font-size: 16px;
    font-weight: 400;
    margin-block: 10px;
    color: #62769d;
    max-width: 80%;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.card-style8 .arrow {
    width: 40px;
    min-width: 40px;
    height: 40px;
    background: var(--blue);
    border-radius: 50px;
    font-size: 18px;
    color: #fff;
    transition: 0.2s;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 0 10px #0000001f;
    margin-bottom: 15px;
}

.card-style8 .arrow i::before {
    font-weight: 800 !important;
}

.card-style8 .arrow:hover {
    color: #fff;
    transform: scale(1.05) rotate(20deg);
}

.card-style8 .date {
    position: absolute;
    top: calc(100% - 200px);
    inset-inline-end: 8%;
    z-index: 2;
    background-color: #fff;
    padding: 7px;
    width: 95px;
    border-radius: 15px;
    border: 1px solid #a7bfcb;
    text-align: center;
}

.card-style8 .date h3 {
    font-size: 48px;
    color: var(--blue);
    margin: 0;
}

.card-style8 .date p {
    font-family: "RubikBold";
    font-size: 18px;
    font-weight: 700;
    color: #62769d;
    margin: 0 auto;
}

[dir="rtl"] .card-style8 .date p {
    font-family: "AlmaraiBold";
}

.card-white {
    display: flex;
    position: relative;
    padding: 15px;
    background-color: #fff;
    border-radius: 20px;
}

.card-white .image {
    border-radius: 15px;
    overflow: hidden;
    width: 180px;
    min-width: 180px;
    height: 162px;
}

.card-white .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.3s;
}

.card-white:hover>.image img {
    transform: scale(1.2);
}

.card-white .content {
    position: relative;
    padding: 10px 15px 30px;
    width: 100%;
}

.card-white h5 {
    font-size: 23px;
    margin-bottom: 10px;
    color: var(--second2);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    font-family: "RubikSemiBold";
}

[dir="rtl"] .card-white h5 {
    font-family: "AlmaraiBold";
}

.card-white p {
    font-size: 14px;
    color: #8fa0ba;
    font-weight: 500;
    margin-bottom: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.card-white p.desc {
    font-size: 16px;
    color: #64748b;
    font-weight: 400;
    line-height: 25px;
    margin-bottom: 10px;
}

.card-white a {
    color: var(--blue2);
    font-size: 16px;
    font-family: "RubikSemiBold";
    font-weight: 600;
    position: absolute;
    bottom: 5px;
    inset-inline-end: 5px;
}

[dir="rtl"] .card-white a {
    font-family: "AlmaraiBold";
}

.card-white a:hover {
    color: #8fa0ba;
}

.card-white a i {
    font-size: 18px;
    -webkit-text-stroke: 1px;
}

.card-white2 {
    display: flex;
    position: relative;
    padding: 15px;
    background-color: #fff;
    border-radius: 20px;
    width: 100%;
    align-items: center;
    margin-bottom: 15px;
}

.card-white2 .image {
    border-radius: 15px;
    overflow: hidden;
    width: 126px;
    min-width: 126px;
    height: 120px;
}

.card-white2 .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.3s;
}

.card-white2:hover>.image img {
    transform: scale(1.2);
}

.card-white2 .content {
    padding: 0 15px;
}

.card-white2 h5 {
    font-size: 20px;
    margin-bottom: 5px;
    color: v#000;
}

.card-white2 p {
    font-size: 16px;
    color: #64748b;
    margin-bottom: 5px;
}

.card-white2 p.date {
    font-family: "RubikSemiBold";
    font-weight: 600;
    color: var(--blue2);
    margin-bottom: 0;
}

[dir="rtl"] .card-white2 p.date {
    font-family: "AlmaraiBold";
}

.card-white2 a {
    color: var(--blue2);
    font-size: 16px;
    font-family: "RubikSemiBold";
    font-weight: 600;
    float: inline-end;
}

[dir="rtl"] .card-white2 a {
    font-family: "AlmaraiBold";
}

.card-white2 a:hover {
    color: #8fa0ba;
}

.card-white2 a i {
    font-size: 18px;
    -webkit-text-stroke: 1px;
}


/*--------------------------------------------------------------
# form1
--------------------------------------------------------------*/

.form1 input,
.form1 textarea,
.form1 select,
.form1 .select-field-trigger {
    padding: 10px;
    border: 0;
    background-color: #fff;
    border-radius: 15px;
}

.form1 label {
    font-size: 14px;
    font-family: "RubikSemiBold";
    color: var(--second);
}

[dir="rtl"] .form1 label {
    font-family: "AlmaraiBold";
}

.form1 button {
    width: 100%;
    padding: 10px;
    font-size: 18px;
    text-align: center;
    margin-bottom: 40px;
    justify-content: center;
}


/*--------------------------------------------------------------
# contact-info
--------------------------------------------------------------*/

.contact-info {
    gap: 20px;
    max-width: 400px;
}

.contact-info i {
    font-size: 18px;
    color: #000;
    line-height: 18px;
}

.contact-info p {
    font-size: 14px;
    color: #000;
    line-height: 18px;
}

.contact-title-mobile {
    padding: 50px 20px;
    margin: 0 !important;
}


/*--------------------------------------------------------------
# datepicker
--------------------------------------------------------------*/

.datepicker-container {
    width: 100%;
    height: 100%;
    /*height: 500px;*/
    border-radius: 20px;
    padding: 20px;
    margin-bottom: 20px;
}

.datepicker-container .datepicker-panel ul:first-child {
    display: flex;
    justify-content: space-between;
    padding: 20px 0;
}

.datepicker-container li[data-view="month prev"],
.datepicker-container li[data-view="month next"] {
    box-shadow: 0 0 10px #0000001f;
    border-radius: 25px;
}

.datepicker-container li[data-view="month current"] {
    font-size: 22px;
    font-weight: 500;
}

.datepicker-container .datepicker-panel ul[data-view="week"] {
    justify-content: space-between;
    display: flex;
    padding: 0 0 10px;
    border-bottom: 1px solid #b5c7e4;
    margin-bottom: 10px;
}

.datepicker-container .datepicker-panel ul[data-view="days"] {
    display: flex;
    flex-wrap: wrap;
    row-gap: 8px;
    justify-content: space-between;
}

.datepicker-panel>ul[data-view="days"]>li {
    width: 13%;
    text-align: center;
    padding-block: 7px;
    height: auto;
    border: 1px solid transparent;
}

.datepicker-panel>ul[data-view="days"]>li.highlighted,
.datepicker-panel>ul[data-view="days"]>li.highlighted.picked,
.datepicker-panel>ul[data-view="days"]>li:hover {
    background-color: transparent;
    border-radius: 15px;
    border: 1px solid var(--blue2);
    color: #000;
}

.datepicker-panel>ul[data-view="days"]>li.picked,
.datepicker-panel>ul[data-view="days"]>li.picked:hover {
    background-color: var(--blue2);
    border-radius: 15px;
    border: 1px solid var(--blue2);
    color: #fff;
}


/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/

.back-to-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: 15px;
    z-index: 996;
    background: var(--fourth);
    width: 50px;
    height: 50px;
    border-radius: 50px;
    transition: all 0.4s;
    border: 1px solid #00000042;
}

.back-to-top i {
    font-size: 18px;
    color: #000;
    line-height: 0;
}

.back-to-top:hover {
    background: var(--second);
}

.back-to-top:hover i {
    color: #fff;
}

.back-to-top.active {
    visibility: visible;
    opacity: 1;
}

.go-back {
    display: block;
    background-color: #fff;
    border-radius: 50px;
    width: 48px;
    height: 48px;
    color: #000;
    margin-bottom: 10px;
    font-size: 20px;
    -webkit-text-stroke: 1px;
    display: flex;
    justify-content: center;
    align-items: center;
}


/*--------------------------------------------------------------
# Disable AOS delay on mobile
--------------------------------------------------------------*/

@media screen and (max-width: 768px) {
    [data-aos-delay] {
        transition-delay: 0 !important;
    }
}


/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/

#header {
    top: 80px;
    height: 80px;
    transition: all 0.5s;
    z-index: 997;
    transition: all 0.5s;
    background: transparent;
}

#header .navbar {
    top: 80px;
}

#header .navbar .logo {
    margin-left: 0 !important;
    width: 200px;
    display: none;
    transition: 0.3s;
}

[dir="rtl"] #header .navbar .logo {
    margin-left: 10px !important;
    margin-right: 0 !important;
}

#header.header-scrolled .navbar .logo {
    display: block !important;
}

#header .navbar .logo2 {
    display: block;
}

#header.header-scrolled .navbar .logo2 {
    display: none;
}

#header.header-scrolled .navbar .logo,
#header.header-scrolled .navbar .logo img {
    max-height: 50px;
    width: 70px;
}

#header.header-scrolled,
#header.header-scrolled .navbar {
    top: 0;
    transition: all 0.5s;
}

#header.header-scrolled {
    /*position: fixed;
    top: 0;*/
    background: rgba(255, 255, 255, 0.9);
}

#header.style2 {
    background-color: #fff;
}

#header .logo {
    margin-left: 10px;
}

#header .logo h1 {
    font-family: "RubikBold";
    font-size: 28px;
    margin: 0;
    padding: 0;
    line-height: 1;
    font-weight: 700;
}

[dir="rtl"] #header .logo h1 {
    font-family: "AlmaraiBold";
}

#header .logo h1 a,
#header .logo h1 a:hover {
    color: #fff;
    text-decoration: none;
}

#header .logo img {
    padding: 0;
    margin: 0;
    max-height: 60px;
}

.navbar a.header-button,
.navbar .header-button {
    background-color: #ffffff13;
    border-radius: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0px 18px !important;
    border: 0;
    font-size: 14px;
}

.navbar button.header-button {
    margin-inline: 10px;
    width: 50px;
}

.navbar a.header-button:hover,
.navbar .header-button:hover {
    background-color: #ffffff36;
}

.header-button i {
    font-size: 18px;
    color: #fff;
}

.header-scrolled .navbar a.header-button,
.header-scrolled .navbar .header-button,
#header.style2 .navbar a.header-button,
#header.style2 .navbar .header-button {
    background-color: #2a303b0a;
    color: var(--second);
}

.header-scrolled .navbar .header-button i,
#header.style2 .navbar .header-button i {
    color: var(--second);
}

.header-scrolled .navbar .header-button img,
#header.style2 .navbar .header-button img {
    filter: brightness(0.3);
}

@media (min-width: 1200px) {
    #header .container-xl {
        max-width: 1350px;
    }
}


/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/


/**
* Desktop Navigation 
*/

.navbar {
    padding: 0;
}

.navbar ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
    align-items: start;
}

.navbar li {
    position: relative;
}

.navbar a,
.navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 5px 0 !important;
    margin: 0 10px;
    font-size: 15px;
    color: #fff;
    white-space: nowrap;
    border-radius: 50px;
    font-weight: 400;
}

.navbar .show a,
.navbar .show a:focus {
    color: var(--second);
}

.header-scrolled .navbar a,
.header-scrolled .navbar a:focus,
#header.style2 .navbar a,
#header.style2 .navbar a:focus {
    color: rgba(var(--bs-dark-rgb), var(--bs-text-opacity)) !important;
}

.navbar a i,
.navbar a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
}

[dir="rtl"] .navbar a i,
[dir="rtl"] .navbar a:focus i {
    margin-left: 0;
    margin-right: 5px;
}

.navbar a:hover,
.navbar a:focus,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
    color: #fff !important;
    font-family: "RubikSemiBold";
    font-weight: 600;
}

[dir="rtl"] .navbar a:hover,
[dir="rtl"] .navbar a:focus,
[dir="rtl"] .navbar .active,
[dir="rtl"] .navbar .active:focus,
[dir="rtl"] .navbar li:hover>a {
    font-family: "AlmaraiBold";
}

.navbar .active.newLinkHover::before {
    width: 100%;
}

.navbar .newLinkHover::before {
    background-color: #fff;
    border-radius: 5px 5px 0 0;
}

.header-scrolled .navbar .newLinkHover::before,
#header.style2 .navbar .newLinkHover::before {
    background-color: var(--second);
}

.navbar button {
    font-size: 14px;
    padding: 0 20px;
}

.header-scrolled .navbar a:hover,
.header-scrolled .navbar a:focus,
.header-scrolled .navbar .active,
.header-scrolled .navbar .active:focus,
.header-scrolled .navbar li:hover>a,
.dropdown-item.active,
#header.style2 .navbar a:hover,
#header.style2 .navbar a:focus,
#header.style2 .navbar .active,
#header.style2 .navbar .active:focus,
#header.style2 .navbar li:hover>a {
    color: var(--second) !important;
    background-color: transparent;
}

.navbar .dropdown ul {
    display: block;
    position: absolute;
    right: 5px;
    top: calc(100% + 30px);
    margin: 5px 0 0 0;
    padding: 10px;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    transition: 0.3s;
    border-radius: 15px;
}

[dir="rtl"] .navbar .dropdown ul {
    right: auto;
    left: 5px;
}

.navbar .dropdown-menu,
.navbar .dropdown ul li {
    min-width: 70px;
}

.navbar .dropdown ul a {
    padding: 10px 20px;
    color: #2a2c39;
    margin: 0 5px;
    font-size: 14px;
    background-color: transparent;
}

.navbar .dropdown ul a i {
    font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul a:focus,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
    color: var(--second) !important;
    background-color: transparent;
}

.navbar .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
}

.navbar .dropdown .dropdown ul {
    top: 0;
    left: calc(100% - 30px);
    visibility: hidden;
}

.navbar .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: 100%;
    visibility: visible;
}

@media (max-width: 1366px) {
    .navbar .dropdown .dropdown ul {
        left: -90%;
    }
    .navbar .dropdown .dropdown:hover>ul {
        left: -100%;
    }
}


/**
* Mobile Navigation 
*/

.mobile-nav-toggle {
    color: var(--third);
    font-size: 28px;
    cursor: pointer;
    display: none;
    line-height: 0;
    transition: 0.5s;
}

@media (max-width: 991px) {
    .mobile-nav-toggle {
        display: block;
    }
    /* .navbar ul {
        display: none;
    }*/
    #header:not(.header-scrolled) .logo img {
        filter: brightness(0) invert(1);
    }
    #header.style2 .logo img {
        filter: none !important
    }
    #header .logo img {
        max-height: 35px;
    }
    #header.header-scrolled .navbar .logo,
    #header.header-scrolled .navbar .logo img {
        max-height: 35px;
        padding: 0 !important;
        width: auto;
    }
}


/*--------------------------------------------------------------
# tagline
--------------------------------------------------------------*/

.tagline {
    background-color: transparent;
    font-size: 14px;
    color: var(--prim) !important;
    width: 100%;
    z-index: 1000;
    padding: 12px 0;
    height: 80px;
}

.tagline.tagline-scrolled {
    top: -70px;
    transition: all 0.65s;
}

.tagline .logo {
    height: 58px;
    width: 157;
}

.tagline .logo img {
    height: 100%;
    /*object-fit: none;*/
}

.tagline.style2 {
    background-color: #fff;
}

.search-click {
    background-color: transparent;
    color: #fff;
    border: 0;
    outline: none;
    background-size: 22px;
    background-position: 13px;
    border-radius: 10px;
    width: 100px;
    height: 50px;
    padding: 10px;
    transition: all 0.5s;
}

.search-click:focus {
    width: 200px;
    padding-left: 50px;
}

.search-click {
    position: relative;
    overflow: hidden;
    height: 50px;
}

.search-click input {
    background: transparent;
    border: 1px solid #ccc;
    outline: none;
    position: absolute;
    width: 300px;
    height: 50px;
    left: 0%;
    padding: 10px;
}

.search-click:-moz-placeholder {
    color: #fafafa;
}

.search-click:-ms-input-placeholder {
    color: #fafafa;
}

.search-click::-webkit-input-placeholder,
.search-click[type="search"]::-webkit-input-placeholder {
    color: #fafafa;
}

.header-scrolled .search-click:-moz-placeholder,
#header.style2 .search-click:-moz-placeholder {
    color: var(--second);
}

.header-scrolled .search-click:-ms-input-placeholder,
#header.style2 .search-click:-ms-input-placeholder {
    color: var(--second);
}

.header-scrolled .search-click::-webkit-input-placeholder,
.header-scrolled .search-click[type="search"]::-webkit-input-placeholder,
#header.style2 .search-click::-webkit-input-placeholder,
#header.style2 .search-click[type="search"]::-webkit-input-placeholder {
    color: var(--second);
}

.btn.nav-search {
    outline: 0;
    border: 0;
    margin: 0;
    padding: 0;
}


/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/

.section {
    padding-top: 60px;
    padding-bottom: 60px;
    position: relative !important;
    overflow: hidden;
}

.section-title {
    display: inline-block;
    font-size: 60px;
    font-family: "Rubik", sans-serif;
    font-family: "RubikSemiBold";
    font-weight: 600;
    margin: 0;
    margin-bottom: 50px;
    flex-shrink: 0;
    color: var(--second2);
    max-width: 850px;
    line-height: 77px;
    text-transform: none;
}

[dir="rtl"] .section-title {
    font-family: "AlmaraiBold";
}

.path {
    flex-wrap: wrap;
}

.path p,
.path a {
    font-size: 16px;
    color: var(--blue2);
    font-weight: 500;
}


/*--------------------------------------------------------------
# swiper-pagination
--------------------------------------------------------------*/

.swiper-pagination .swiper-pagination-bullet {
    width: 50px;
    height: 4px;
    border-radius: 10px;
    background-color: #fff;
}

.swiper-pagination-bullets.swiper-pagination-horizontal {
    left: 0;
    right: 0;
    bottom: 35px;
    width: 100%;
}

.swiper-pagination-fraction {
    font-size: 24px;
    color: #62769d;
    inset: auto;
    font-weight: 400;
}

.dark-pagination.swiper-pagination-fraction {
    color: var(--second);
}

.pagination-before,
.pagination-after {
    font-family: sans-serif;
    font-size: 25px;
    color: #62769d;
    display: none;
}

.pagination-after {
    margin-inline-end: 15px;
}

.dark-pagination.pagination-before,
.dark-pagination.pagination-after {
    color: var(--second);
}


/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/

#footer {
    background: var(--fourth);
    color: var(--third);
    font-size: 14px;
    text-align: start;
    padding: 80px 0 20px;
    position: relative;
    margin-top: 60px;
}

#footer .list-inline {
    padding-right: 0;
}

.footer-logo {
    display: flex;
    justify-content: end;
    padding-right: 10%;
}

[dir="rtl"] .footer-logo {
    justify-content: start;
}

[dir="rtl"] .bi.bi-arrow-right::before {
    content: "\f12f";
}

#footer .logo img {
    width: auto;
    max-width: 100%;
}

#footer h5 {
    color: #323e48;
    font-size: 18px;
    margin-bottom: 25px;
    font-family: "RubikBold";
}

[dir="rtl"] #footer h5 {
    font-family: "AlmaraiBold";
}

#footer a,
#footer p {
    color: #323e48;
    font-size: 12px;
    font-family: "RubikSemiBold";
    margin-bottom: 17px;
    display: block;
    padding: 0;
}

[dir="rtl"] #footer a,
[dir="rtl"] #footer p {
    font-family: "AlmaraiBold";
}

#footer a span {
    font-family: "RubikSemiBold";
}

[dir="rtl"] #footer a span {
    font-family: "AlmaraiBold";
}

#footer .list-item a,
#footer .list-item p,
#footer .list-item a span {
    font-size: 14px;
    font-family: "Rubik";
}

[dir="rtl"] #footer .list-item a,
[dir="rtl"] #footer .list-item p,
[dir="rtl"] #footer .list-item a span {
    font-family: "Almarai";
}

#footer a.nav-link {
    position: relative;
    padding-bottom: 2px;
}

#footer a.nav-link::before {
    content: "";
    position: absolute;
    height: 4px;
    min-width: 0px;
    width: 0px;
    bottom: 0px;
    border-radius: 10px;
    transition: all 0.22s ease-in-out 0s;
    background-color: var(--second);
    max-width: 150px;
}

#footer .newLinkHover:hover::before,
#footer a.nav-link:hover::before {
    width: 50px;
    inset-inline-start: 0;
}

#footer h6 {
    color: #323e48;
    font-size: 14px;
    font-weight: 100;
}

#footer .footer-icon {
    gap: 5px;
}

#footer .footer-icon a i {
    font-size: 16px;
    color: var(--blue2);
}

#footer .footerScaleLink:hover,
#footer .footerScaleLink:hover h6 {
    color: var(--blue2);
}

#footer .footer-icon a {
    width: 35px;
    height: 35px;
    border: 1px solid #a7bfcb;
    padding: 10px;
    border-radius: 50px;
    transition: 0.3s;
    display: flex;
    justify-content: center;
    align-items: center;
}

#footer .footer-icon a:hover {
    transform: translateY(-10px);
}

#footer hr {
    opacity: 1;
    border-top-color: #64748b;
}

#footer .footer-contact-i {
    color: #3d7088;
    font-size: 18px;
}

.bottomfooter {
    background-color: #fff;
    padding: 10px 0;
    box-shadow: 0 0 10px #00000033;
    position: relative;
}

.bottomfooterbtn {
    padding-inline-end: 10px;
    border-inline-end: 1px solid #dcdcdc;
}


/*--------------------------------------------------------------
# home
--------------------------------------------------------------*/

.home {
    align-items: center;
    position: relative;
    display: flex;
    margin-bottom: 0;
}

.home .bg-overlay {
    background-image: linear-gradient( 0deg, #000000, #0000009f 25%, #3d70889f, #3d70889f);
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
}


/*[dir="rtl"] .home .bg-overlay {
    background-image: linear-gradient(90deg, transparent, #c96d1a);
}
*/

.home .container {
    z-index: 1;
}

.home .hero-slider,
.home .swiper-slide {
    width: 100%;
    aspect-ratio: 1440/900;
}

.home .swiper-slide img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.home .home-heading {
    color: #fff;
    top: 0;
    right: auto;
    left: auto;
    /*padding-inline: 100px;*/
    padding-bottom: 120px;
    text-align: start;
    max-width: 80%;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: end;
}

.max-two-lines {
    display: -webkit-box;        /* Fallback for older browsers */
    -webkit-line-clamp: 2;       /* Specifies the maximum number of lines */
    -webkit-box-orient: vertical;
    overflow: hidden;            /* Ensures overflow text is hidden */
    text-overflow: ellipsis;     /* Adds ellipsis at the end of the truncated text */
    max-height: 3em;             /* Ensures a maximum height for two lines */
    line-height: 1.5em;          /* Sets the line height */
  }

.home .home-heading .home-title,
.home .home-heading .home-title p {
    font-family: "RubikBold";
    font-size: 70px;
    line-height: 90px;
}

[dir="rtl"] .home .home-heading .home-title,
[dir="rtl"] .home .home-heading .home-title p {
    font-family: "AlmaraiBold";
}

.home .home-heading .home-desc {
    padding-top: 100px;
    font-size: 38px;
    color: var(--third);
    margin-bottom: 20px;
    display: block;
}

.home .second {
    position: absolute;
    bottom: 70px;
    left: calc(50% - 10px);
    right: calc(50% - 10px);
    z-index: 2;
    margin: 20px auto;
}


/*.home .swiper-button-next,
.home .swiper-button-prev {
    position: absolute;
    z-index: 11111;
    top: 50%;
    color: #fff;
    font-size: 18px;
    background-color: #0a0a0a66;
    border-radius: 50px;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid gray;
}*/

.home .swiper-button-next,
.home .swiper-button-prev {
    position: absolute;
    z-index: 11111;
    top: 40%;
    color: #ffffffb2;
    font-size: 60px;
    background-color: transparent;
    border-radius: 50px;
    width: auto;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 0;
}

.home .swiper-button-next:hover,
.home .swiper-button-prev:hover {
    color: #ffffff;
}

.home .swiper-button-next {
    inset-inline-end: 80px;
}

.home .swiper-button-prev {
    inset-inline-start: 80px;
}

.home .swiper-button-next i,
.home .swiper-button-prev i {
    height: 25px;
}

.home .swiper-button-next::after,
.home .swiper-button-prev::after {
    content: unset;
}

.media {
    width: 100%;
    aspect-ratio: 526/616;
}

.media img,
.media picture {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
}


/*--------------------------------------------------------------
# About home section
--------------------------------------------------------------*/

#about .media {
    width: 92%;
}

#about .section-title {
    max-width: 600px;
}

#about .col2 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 15px;
}

#about .col2 .row .col-lg-4 {
    padding: 0 6px;
}

#about .col2 h2,
#about .col2 h2 b {
    font-size: 40px;
    font-weight: 400;
}

#about .col2 h2 small {
    font-size: 20px;
    font-weight: 400;
}

#about .col2 p {
    font-size: 16px;
    margin-bottom: 0;
}

#about .col2 h5 {
    font-size: 18px;
    font-weight: 400;
    line-height: 34px;
    /* max-width: 550px;*/
}

#about .col2 .btn-primary {
    width: max-content;
}

#about .num-card {
    width: 100%;
    border-radius: 15px;
    background-color: #373f4d;
    padding: 25px 15px;
    margin-block: 6px;
}


/*--------------------------------------------------------------
# About Page
--------------------------------------------------------------*/

.about .section-title {
    margin-bottom: 20px;
}

.about .media {
    width: 100%;
    aspect-ratio: unset;
    background-color: #fff;
    border-radius: 25px;
    margin-bottom: 40px;
}

.about .media2 {
    width: 100%;
    aspect-ratio: unset;
    background-color: #fff;
}

.about .media img,
.about .media picture {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
}

.about .media2 img,
.about .media2 picture {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about p {
    font-size: 17px;
    line-height: 32px;
}


/*--------------------------------------------------------------
# members
--------------------------------------------------------------*/

#members {
    background: linear-gradient(45deg, #b5c7e4, #d9e4e1);
}

#members .card-style7 .image {
    width: 280px;
    min-width: 280px;
    height: 430px;
    aspect-ratio: unset;
}

#members .swiper-slide {
    transition: 0.3s;
}

#members .swiper-slide-next {
    transform: scale(0.85);
}


/*--------------------------------------------------------------
# memberDetalis
--------------------------------------------------------------*/

.memberDetalis .media {
    width: 90%;
    height: auto;
    aspect-ratio: unset;
    margin-bottom: 30px;
}

.memberDetalis .media picture {
    width: 100%;
}

.memberDetalis .title,
.memberDetalis .title p {
    font-family: "RubikBold";
    font-size: 34px;
    font-weight: 700;
    line-height: 48px;
    color: #000;
    max-width: 400px;
    margin-bottom: 20px;
}

[dir="rtl"] .memberDetalis .title,
[dir="rtl"] .memberDetalis .title p {
    font-family: "AlmaraiBold";
}

.memberDetalis .career {
    font-size: 24px;
    max-width: 500px;
    margin-bottom: 20px;
}

.memberDetalis p {
    font-size: 18px;
    font-weight: 500;
    line-height: 28px;
    color: #62769d;
}


/*--------------------------------------------------------------
# Initiativesdetails, Newsdetails
--------------------------------------------------------------*/

.initiatives-slider .card-white {
    margin: 0 10px 20px;
}

.Newsdetails .overlay {
    background-image: linear-gradient(0deg, transparent, #1a171c);
    position: absolute;
    inset: 0;
    width: 100%;
    height: 50%;
}

.Initiativesdetails .date,
.Newsdetails .date {
    font-size: 24px;
    font-weight: 500;
    color: #8fa0ba;
    margin-top: 15px;
    margin-bottom: 0;
}

.Newsdetails .section-title,
.Initiativesdetails .section-title {
    margin-bottom: 20px;
}

.Newsdetails .all-path {
    position: absolute;
    top: 30px;
    z-index: 1;
}

.Newsdetails .all-path .path a,
.Newsdetails .all-path .path p {
    color: #fff;
    font-weight: 400;
}

.Newsdetails .image {
    width: 100%;
    aspect-ratio: 1440/540;
    overflow: hidden;
    margin-bottom: 25px;
    border-radius: 0;
    min-height: 300px;
}

.Initiativesdetails .image {
    width: 100%;
    aspect-ratio: 1280/485;
    overflow: hidden;
    margin-bottom: 25px;
    border-radius: 25px;
    min-height: 300px;
}

.Initiativesdetails .image img,
.Newsdetails .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.Initiativesdetails .description {
    min-height: 300px;
}

.Initiativesdetails .description,
.Initiativesdetails .description p {
    font-size: 16px;
    font-weight: 400;
    color: var(--second);
    line-height: 25px;
}


/*--------------------------------------------------------------
# Mediacenter
--------------------------------------------------------------*/

#Mediacenter .swiper-slide {
    /*height: calc((200px) / 2) !important;*/
}

.swiper-grid-column>.swiper-wrapper {
    display: grid;
    grid-template-rows: 1fr 1fr;
    grid-auto-flow: column;
}


/*#Mediacenter .swiper-wrapper {
    display: flex;
    flex-direction: column;
}



#Mediacenter .swiper-wrapper .swiper-slide {
    width: 100% !important
}*/


/*#Mediacenter .swiper-wrapper {
    display: grid;
    grid-template-columns: 49% 49%;
    grid-template-rows: 50% 50%;
    grid-auto-flow: column;
    gap: 2%;
}

#Mediacenter .swiper-slide {
    width: 100% !important;
}

#Mediacenter .swiper-slide:not(.swiper-slide-active) .card-style1 {
    display: flex;
}

#Mediacenter .swiper-slide:not(.swiper-slide-active) .card-style1 .content {
    position: relative;
    color: #000;
}

#Mediacenter .swiper-slide-active {
    grid-column: 1;
    grid-row: 1 / 3;
}

.swiper-wrapper {
    width: 100%;
}
*/


/*--------------------------------------------------------------
# authorities
--------------------------------------------------------------*/

#authorities .authorities-list {
    gap: 25px;
    display: grid;
    grid-template-columns: repeat(auto-fill, 260px);
    justify-content: space-between;
    align-items: center;
}

#authorities .authorities-list img {
    display: block;
    margin: auto;
    transition: 0.3s;
}

#authorities .authorities-list img:hover {
    transform: scale(1.1);
}


/*--------------------------------------------------------------
# Economic-agenda
--------------------------------------------------------------*/

.Economic-agenda-bg {
    height: 750px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top;
    background-attachment: fixed;
    display: flex;
    align-items: start;
    padding: 50px;
}

.Economic-agenda-bg .content {
    background-color: #f5f9ffcc;
    backdrop-filter: blur(3px);
    position: relative;
    padding: 50px 150px;
    border-radius: 15px;
    color: #000;
}

.Economic-agenda-bg .content .qute1 {
    position: absolute;
    inset-inline-start: 50px;
    top: 20px;
    font-size: 70px;
    color: var(--blue2);
}

.Economic-agenda-bg .content .qute2 {
    position: absolute;
    inset-inline-end: 50px;
    bottom: 130px;
    font-size: 70px;
    color: var(--blue2);
    transform: rotate(180deg);
}

[dir="rtl"] .Economic-agenda-bg .content .qute1 {
    transform: scaleX(-1);
}

[dir="rtl"] .Economic-agenda-bg .content .qute2 {
    transform: scaleY(-1);
}

.Economic-agenda-bg .content p {
    font-size: 24px;
    line-height: 38px;
    color: #000;
}

.Economic-agenda-bg .content .blue {
    color: var(--blue2);
}

.Economic-agenda-bg .content img {
    width: 625px;
}

.btn-bottom {
    margin-top: 50px;
}


/*--------------------------------------------------------------
# members_first_section
--------------------------------------------------------------*/

#members_first_section .card-style7 {
    position: relative;
    width: 100%;
    margin-top: 0px;
    z-index: 1;
    background-color: #fff;
    border-radius: 20px;
    overflow: hidden;
}

#members_first_section .card-style7 .image {
    width: 400px;
    border-radius: 20px;
}

#members_first_section .card-style7 .content {
    max-width: 500px;
}


/*--------------------------------------------------------------
# event_details_section
--------------------------------------------------------------*/

#event_details_section .card-style7 {
    position: relative;
    width: 100%;
    margin-top: 0px;
    z-index: 1;
    background-color: #fff;
    border-radius: 20px;
    overflow: hidden;
    gap: 30px;
}

#event_details_section .card-style7 .image {
    position: relative;
    aspect-ratio: 533/400;
    width: 500px;
    border-radius: 20px;
}

#event_details_section .card-style7 .content {
    max-width: 600px;
    padding: 0 15px;
}

#event_details_section .card-style7 h3,
#event_details_section .card-style7 h3 p {
    font-size: 42px;
    color: var(--second);
}

#event_details_section .card-style7 p {
    font-size: 16px;
    line-height: 28px;
    font-weight: 400;
    color: var(--second);
}

#event_details_section .date {
    position: absolute;
    bottom: 20px;
    right: 20px;
    z-index: 2;
    background-color: #fff;
    padding: 7px 27px;
    border-radius: 15px;
    border: 1px solid #a7bfcb;
    text-align: center;
}

#event_details_section .date h2 {
    font-size: 48px;
    color: var(--blue);
    margin: 0;
}

#event_details_section .date p {
    font-family: "RubikBold";
    font-size: 18px;
    font-weight: 700;
    color: var(--blue);
    margin: 0;
}

[dir="rtl"] #event_details_section .date p {
    font-family: "AlmaraiBold";
}


/*--------------------------------------------------------------
# Frequently Asked Questions
--------------------------------------------------------------*/

#faq {
    margin-top: -100px;
}

.faq .faq-list {
    padding: 0;
    padding-inline-end: 10px;
    max-height: 600px;
    overflow: auto;
}

.faq .faq-list ul {
    padding: 0;
    list-style: none;
}

.faq .faq-list li+li {
    margin-top: 15px;
}

.faq .faq-list li {
    padding: 20px 0;
    background: transparent;
    border-radius: 4px;
    position: relative;
    list-style: none;
}

.faq .faq-list a {
    display: block;
    position: relative;
    padding: 0;
    outline: none;
    cursor: pointer;
    color: #fff;
}

.faq .faq-list a p {
    max-width: 88%;
    font-size: 26px;
    line-height: 38px;
    font-weight: 300;
    color: #fff;
}

.faq .faq-list .icon-show,
.faq .faq-list .icon-close {
    font-size: 30px;
    background-color: transparent;
    border: 0;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
    position: absolute;
    inset-inline-end: 0;
    top: 0;
}

.faq .faq-list p {
    margin-bottom: 0;
    padding: 10px 0 0 0;
    color: #fff;
    font-size: 18px;
    font-weight: 300;
}

.faq .faq-list .icon-show {
    display: none;
}

.faq .faq-list a.collapsed {
    color: #fff;
    transition: 0.3s;
}

.faq .faq-list a.collapsed:hover {
    color: #ffffffcb;
}

.faq .faq-list a.collapsed .icon-show {
    display: flex;
}

.faq .faq-list a.collapsed .icon-close {
    display: none;
}

.faq.light .card {
    padding: 40px;
    background-color: #fff;
    border-radius: 25px;
    border: 0;
}

.faq.light .faq-list a p {
    font-family: "RubikBold";
    font-weight: 700;
}

[dir="rtl"] .faq.light .faq-list a p {
    font-family: "AlmaraiBold";
}

.faq.light .faq-list a,
.faq.light .faq-list a p,
.faq.light .faq-list p,
.faq.light .faq-list a.collapsed,
.faq.light .faq-list a.collapsed:hover {
    color: var(--second);
}


/*--------------------------------------------------------------
# contact
--------------------------------------------------------------*/

#contact .map {
    width: 100%;
    height: 100%;
    min-height: 600px;
    -webkit-filter: grayscale(100%);
    -moz-filter: grayscale(100%);
    -ms-filter: grayscale(100%);
    -o-filter: grayscale(100%);
    filter: grayscale(100%);
}

#contact .map iframe {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#contact .col2 {
    padding: 40px 8%;
}


/*--------------------------------------------------------------
# SliderStyle1
--------------------------------------------------------------*/

.SliderStyle1 .swiper-button-next,
.SliderStyle1 .swiper-button-prev {
    /*width: 50px;
    min-width: 50px;*/
    min-width: 35px;
    height: 50px;
    background: transparent;
    border-radius: 50px;
    font-size: 12px;
    border: 0;
    margin-top: 0;
    position: relative;
    inset: auto;
    color: var(--second);
    transition: 0.2s;
}

.SliderStyle1 .swiper-button-next i,
.SliderStyle1 .swiper-button-prev i {
    font-size: 25px;
    -webkit-text-stroke: 1px;
}

.SliderStyle1 .swiper-button-next::after,
.SliderStyle1 .swiper-button-prev::after {
    content: none;
}

.SliderStyle1 .swiper-button-next:hover,
.SliderStyle1 .swiper-button-prev:hover {
    color: var(--blue);
}

.SliderStyle1 .swiper-pagination-fraction {
    position: relative;
    padding-inline-end: 10px;
}


/*--------------------------------------------------------------
# galleryModal
--------------------------------------------------------------*/

.galleryModal {
    background: #ffffffce;
    background: hsla(0, 0%, 100%, 0.8) !important;
    -webkit-backdrop-filter: blur(3px);
    backdrop-filter: blur(5px);
}

.galleryModal .btn-close {
    margin: 10px;
    border: 2px solid;
}

.galleryModal .modal-content {
    background: transparent;
}

.galleryModal .image {
    max-width: 40%;
    max-height: 100vh;
    margin: 0 auto;
}

.galleryModal .image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.galleryModal .swiper-button-next,
.galleryModal .swiper-button-prev {
    top: 40%;
}

.galleryModal .swiper-button-prev::after,
.galleryModal .swiper-button-next::after {
    color: var(--second);
}

@media (min-width: 200px) {
    #Mediacenter .swiper-slide .card-style1 {
        display: flex;
        /* margin-bottom: 0;*/
    }
    #Mediacenter .swiper-slide .card-style1 .image {
        width: 230px;
        min-width: 230px;
        height: 200px;
        aspect-ratio: unset;
    }
    #Mediacenter .swiper-slide .card-style1 .content {
        position: relative;
    }
    #Mediacenter .swiper-slide .card-style1 .content p {
        font-family: "RubikBold";
        position: relative;
        font-size: 18px;
        font-weight: 700;
        color: var(--blue2);
    }
    [dir="rtl"] #Mediacenter .swiper-slide .card-style1 .content p {
        font-family: "AlmaraiBold";
    }
    #Mediacenter .swiper-slide .card-style1 .content h3 {
        font-family: "RubikBold";
        font-size: 24px;
        font-weight: 700;
        color: #000;
    }
    [dir="rtl"] #Mediacenter .swiper-slide .card-style1 .content h3 {
        font-family: "AlmaraiBold";
    }
}

@media (max-width: 1240px) {
    .home .home-heading {
        padding-inline: 120px;
    }
    .home .home-heading .home-title,
    .home .home-heading .home-title p {
        font-size: 70px;
        line-height: 70px;
    }
    .search-click:focus {
        width: 100px;
        padding-left: 10px;
    }
    #members_first_section .members-title {
        max-width: 100%;
    }
    #about .col2 h2,
    #about .col2 h2 b {
        font-size: 30px;
    }
    #about .col2 p {
        font-size: 12px;
        text-wrap: nowrap;
    }
    .section-title {
        font-size: 50px;
        line-height: 50px;
        max-width: 600px;
    }
    #event_details_section .card-style7 {
        gap: 20px;
    }
    #event_details_section .card-style7 h3,
    #event_details_section .card-style7 h3 p,
    .card-style7 h3,
    .card-style7 h3 p {
        font-size: 30px;
    }
}

@media (max-width: 1240px) and (min-width: 992px) {
    #header .navbar .logo {
        width: 180px;
    }
    #header .navbar ul {
        gap: 0px !important;
    }
    .navbar a,
    .navbar a:focus {
        font-size: 14px;
    }
    .card-style8 .date {
        inset-inline-end: 5%;
        top: calc(100% - 215px);
    }
}

@media (max-width: 1340px) and (min-width: 992px) {
    .home .hero-slider,
    .home .swiper-slide {
        min-height: 150vh;
    }
}

@media (max-width: 1140px) {
    .home .home-heading {
        max-width: 80%;
    }
}

@media (max-width: 992px) {
    #header,
    #header .navbar {
        top: 0;
        height: 50px;
    }
    #header .navbar {
        padding-top: 5px !important;
    }
    #header .navbar .logo {
        width: 150px;
        display: block;
    }
    #header .navbar-toggler {
        border: 0 !important;
        outline: 0;
        box-shadow: none;
    }
    .navbar a i {
        font-size: 18px;
    }
    .offcanvas-header {
        z-index: 1;
    }
    .offcanvas-header img {
        width: 100px;
    }
    .navbar-nav {
        gap: 15px !important;
        padding: 0 !important;
    }
    .navbar .dropdown ul {
        width: 100%;
        background: transparent;
        border: 0;
        box-shadow: none;
        margin: 0;
        padding: 0 10px;
        border-radius: 0;
        border-top: 1px solid #aeb1b36e;
        left: auto;
        right: auto;
        top: auto;
    }
    .navbar .dropdown ul.show,
    .navbar .dropdown:hover>ul {
        position: relative !important;
    }
    .navbar a:hover,
    .navbar a:focus,
    .navbar .active,
    .navbar .active:focus,
    .navbar li:hover>a {
        color: #3d7088 !important;
    }
    .navbar .show a,
    .navbar .show a:focus {
        color: var(--forText);
        font-size: 18px;
    }
    .navbar .newLinkHover::before {
        width: 0 !important;
    }
    .navbar li {
        /*background: #fbfbfb;*/
        width: 100%;
        border-radius: 5px;
    }
    .navbar .btn-primary {
        width: 100%;
        margin-top: 50px;
        padding: 5px 20px;
        border-radius: 5px;
        font-size: 18px;
    }
    .offcanvas .background {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
        opacity: 0.05;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 0;
    }
    .offcanvas-icon {
        margin-top: 30px;
        margin-bottom: 40px;
    }
    .offcanvas-icon a i {
        font-size: 20px;
    }
    .offcanvas-icon a {
        border: 2px solid;
        border-radius: 0;
        width: 35px;
        height: 35px;
        padding: 5px;
        -webkit-mask: conic-gradient( from 180deg at top 8px right 8px, #0000 90deg, #000 0) var(--_i, 200%) 0 /200% var(--_i, 8px) border-box no-repeat, conic-gradient(at bottom 8px left 8px, #0000 90deg, #000 0) 0 var(--_i, 200%) / var(--_i, 8px) 200% border-box no-repeat, linear-gradient(#000 0 0) padding-box no-repeat;
        transition: 0.2s, -webkit-mask-size 0.2s 0.2s;
    }
    .offcanvas-icon a:hover {
        --_i: 100%;
        transition: 0.2s, -webkit-mask-size 0.2s 0.2s;
    }
    .home .second {
        display: none;
    }
    .home {
        margin-top: 0;
    }
    .home.container-xxl {
        padding: 0;
        margin-bottom: 0;
    }
    .home .hero-slider,
    .home .swiper-slide {
        min-height: 100vh !important;
    }
    .home .home-heading {
        max-width: unset;
        width: 100%;
        inset: 0;
        padding-inline: 0;
        /*justify-content: center;
        text-align: center;*/
        padding: 0 20px 120px 20px;
        margin: 0 auto;
    }
    .home .home-heading .home-desc {
        font-size: 18px;
        width: 100%;
    }
    .home .home-heading .home-title,
    .home .home-heading .home-title p {
        font-size: 40px;
        line-height: normal;
        width: 100%;
    }
    .section-title {
        max-width: calc(100% - 90px);
        font-size: 40px;
    }
    #about {
        padding-left: 20px;
        padding-right: 20px;
    }
    #about .btn-primary {
        margin: 20px auto 50px auto;
        justify-content: center;
        display: flex;
    }
    #footer {
        -webkit-mask-box-image: none;
        margin-top: 0;
        padding-top: 50px;
    }
    #footer .logo {
        margin-bottom: 30px;
    }
    #footer .logo img {
        width: 30%;
        max-width: 200px;
    }
    #footer h5 {
        margin-top: 20px;
    }
    .card-style6 {
        height: auto;
        margin-bottom: 20px;
    }
    #members_first_section .card-style7 .image {
        width: 280px;
    }
    #members_first_section .card-style7 .content {
        max-width: calc(100% - 340px);
    }
    #event_details_section .card-style7 {
        padding: 20px;
    }
    #event_details_section .card-style7 .image {
        width: 100%;
    }
    #event_details_section .card-style7 .content {
        padding: 20px 0;
        max-width: 100%;
    }
    .card-style7 h3,
    .card-style7 h3 p {
        font-size: 26px;
    }
    .first_section {
        margin-top: 50px;
    }
    #members_first_section .members-title {
        font-size: 40px;
        line-height: 40px;
        font-weight: 600;
        max-width: 100%;
    }
    #members_first_section .members-desc {
        max-width: 100%;
    }
    #about .col2 {
        margin-top: 30px;
        gap: 15px;
    }
    #about .col2 .row {
        flex-wrap: nowrap;
        overflow: auto;
        -ms-overflow-style: none;
        /* Internet Explorer 10+ */
        scrollbar-width: none;
        /* Firefox */
    }
    #about .col2 .row ::-webkit-scrollbar {
        display: none;
    }
    #about .col2 .row .col-lg-4 {
        width: max-content !important;
        min-width: 180px;
    }
    .about .media {
        margin-top: 20px;
    }
    .memberDetalis .media {
        width: 100%;
    }
    .memberDetalis .title,
    .memberDetalis .career {
        max-width: unset;
    }
    .Newsdetails .all-path {
        top: 80px;
    }
    .Newsdetails .overlay {
        height: 100%;
    }
    .Economic-agenda-bg .content .qute2 {
        bottom: 150px;
    }
    .Economic-agenda-bg {
        height: 1000px;
    }
    #about .media {
        width: 100%;
    }
    .galleryModal .image {
        max-width: 70%;
    }
    .home .swiper-button-prev,
    .home .swiper-button-next {
        font-size: 20px;
        display: none;
    }
    #header:not(.header-scrolled) .navbar-toggler-icon {
        filter: brightness(0) invert(1);
    }
    #header.style2 .navbar-toggler-icon {
        filter: none !important
    }
    .SliderStyle1 .swiper-button-next,
    .SliderStyle1 .swiper-button-prev {
        display: none;
    }
    #Mediacenter.SliderStyle1 .swiper-pagination-fraction {
        display: none;
    }
    #Mediacenter .card-style1 {
        margin-bottom: 30px !important;
    }
    #Mediacenter .swiper-slide .card-style1 {
        margin: 0 !important;
    }
    #Mediacenter .swiper-slide {
        height: auto;
    }
    #members .section-title {
        max-width: 100%;
    }
    .section.about-mobile {
        padding-top: 0;
    }
}

@media (max-width: 767px) {
    .faq .faq-list a p {
        font-size: 20px;
        line-height: 22px;
    }
    #members_first_section .card-style7 {
        padding: 15px;
    }
    #members_first_section .card-style7 .image {
        width: 100%;
        margin-bottom: 20px;
    }
    #members_first_section .card-style7 .content {
        max-width: 100%;
    }
    #members .card-style7 .image {
        width: 100%;
        aspect-ratio: 280 /350;
        height: auto;
    }
    .Economic-agenda-bg .content {
        padding: 15px;
    }
    .Economic-agenda-bg .content .qute1,
    .Economic-agenda-bg .content .qute2 {
        /* display: none;*/
        position: relative;
        inset: 0;
    }
    .Economic-agenda-bg .content .qute2 {
        left: calc(100% - 70px);
    }
    #authorities .authorities-list {
        grid-template-columns: repeat(auto-fill, 200px);
    }
    .card-style9 .image {
        min-height: 400px;
    }
    .card-style7 h3,
    .card-style7 h3 p {
        margin-top: 20px;
    }
    #authorities {
        display: none;
    }
}

@media (max-width: 575px) {
    #event_details_section .date {
        width: 60px;
    }
    .card-style8 .date {
        width: 80px;
    }
    #event_details_section .date {
        padding: 5px 0;
    }
    .card-style8 .date h3 {
        font-size: 30px;
    }
    #event_details_section .date h2,
    .card-style8 h3 {
        font-size: 20px;
    }
    .card-style8 .image {
        aspect-ratio: 4/4;
    }
    /*.card-style8 .date {
        top: 15px;
        right: 30px;
    }*/
    .card-style8 .content h3 {
        max-width: calc(100% - 80px);
    }
    .card-style8 .content {
        padding: 15px;
    }
    .card-style8 p {
        font-size: 14px;
        max-width: 100%;
    }
    #event_details_section .card-style7 h3 {
        font-size: 25px;
    }
    .card-style7 p {
        margin-block: 5px;
    }
    .section-title,
    .card-style7 h3,
    .memberDetalis .title,
    .card-style9 h3 {
        font-size: 32px;
        line-height: 40px;
        margin-bottom: 30px;
    }
    .section-title2,
    .card-style3 p {
        font-size: 20px;
        line-height: 25px;
    }
    .home .home-heading .home-desc {
        font-size: 14px;
    }
    /*.home .home-heading .home-title,
    .home .home-heading .home-title p {
        font-size: 22px;
        line-height: normal;
    }*/
    .home .swiper-button-prev {
        left: 10px;
    }
    .home .swiper-button-next {
        right: 10px;
    }
    #about .media2 {
        margin-top: -40px;
    }
    #about .col2 h2,
    #about .col2 h2 b {
        font-size: 22px;
    }
    #about .col2 h2 small {
        font-size: 18px;
    }
    #about .col2 p {
        font-size: 10px;
        text-wrap: nowrap;
    }
    #footer a,
    #footer p,
    p {
        font-size: 12px;
    }
    #footer h6 {
        font-size: 10px;
        text-align: start;
    }
    #footer {
        padding-left: 20px;
        padding-right: 20px;
    }
    #footer .logo {
        justify-content: center;
    }
    .faq .faq-list a p {
        font-size: 16px;
        line-height: 20px;
        max-width: 80%;
    }
    .faq .faq-list .icon-show,
    .faq .faq-list .icon-close {
        margin-top: 10px;
    }
    .faq .faq-list p,
    .card-style9 p {
        font-size: 14px;
    }
    #authorities .authorities-list {
        justify-content: center;
        grid-template-columns: repeat(auto-fill, 100px);
    }
    .Economic-agenda-bg {
        padding: 20px;
    }
    .Economic-agenda-bg h3,
    .memberDetalis .career,
    .Initiativesdetails .date,
    .Newsdetails .date {
        font-size: 18px;
    }
    .card-style1 h3 {
        font-size: 25px;
    }
    .card-style1 p,
    .memberDetalis p,
    .Economic-agenda-bg .content p,
    .card-style9 .content a {
        font-size: 16px;
    }
    .card-style1 .image,
    .card-style3 .image,
    .card-gallery .image,
    .card-style5 .image,
    .card-style7 .image,
    .Events .card-style1 .image {
        aspect-ratio: 4/4;
    }
    #about .col2 h5 {
        font-size: 14px;
        font-weight: 400;
        line-height: 24px;
    }
    #about .col2 .btn-primary {
        width: 100%;
        margin: 0;
    }
    .btn-primary {
        width: 100%;
        min-width: auto;
        margin-inline: 0;
    }
    #about .col2 h2 {
        font-size: 25px;
    }
    .card-style6 {
        padding: 20px;
    }
    #invest .row,
    #members2 .row {
        margin: 0;
    }
    #members_first_section .members-title {
        font-size: 25px;
        line-height: 25px;
        font-weight: 600;
    }
    #members_first_section .members-desc {
        line-height: 18px;
    }
    .Economic-agenda-bg {
        padding-block: 100px !important;
    }
    .card-white,
    .card-white2 {
        flex-direction: column;
    }
    .card-white .image,
    .card-white2 .image {
        width: 100%;
        min-width: auto;
        height: auto;
        aspect-ratio: 4/4;
        margin-bottom: 20px;
    }
    .faq.light .card {
        padding: 20px;
    }
    .card-style9 .content {
        padding: 30px;
        inset: 0;
        justify-content: center;
        display: flex;
        flex-direction: column;
    }
    #Mediacenter .swiper-slide .card-style1 {
        flex-direction: column;
    }
    #Mediacenter .swiper-slide .card-style1 .image {
        width: 100%;
        aspect-ratio: 388/200;
        height: auto;
    }
    #Mediacenter .swiper-slide .card-style1 .content {
        padding: 20px 0 0;
        inset: 0;
    }
}

@media (max-width: 340px) {
    #event_details_section .card-style7 h3,
    .card-style1 h3,
    .card-style1 h5,
    .section-title,
    .card-style9 h3,
    .card-style5 h3,
    .card-style7 h3,
    .card-style4 h3,
    .memberDetalis .title,
    .card-style3 p {
        font-size: 28px;
    }
    .card-style1 p,
    .card-initiatives p,
    .Newsdetails .description,
    .Newsdetails .description p,
    .Initiativesdetails .description,
    .Initiativesdetails .description p,
    .card-style4 p,
    .card-style5 p,
    .card-style7 p,
    .Economic-agenda-bg .content p,
    .memberDetalis p,
    #event_details_section .card-style7 p {
        font-size: 14px;
    }
    .card-style1 .content {
        padding: 20px;
    }
    .Economic-agenda-bg {
        padding: 10px;
    }
    #about .col2 h2,
    #about .col2 h2 b,
    .Initiativesdetails .date,
    .Newsdetails .date,
    .card-style9 .content a {
        font-size: 18px;
    }
    #about .col2 h2 small {
        font-size: 14px;
    }
    #about .col2 p {
        font-size: 10px;
        text-wrap: nowrap;
    }
}

@media (min-width: 1400px) {
    .home .swiper-button-prev {
        inset-inline-start: calc(50% - 580px);
    }
    .home .swiper-button-next {
        inset-inline-end: calc(50% - 580px);
    }
    .home .home-heading {
        max-width: 1000px;
    }
    .home .hero-slider,
    .home .swiper-slide {
        width: 100%;
        aspect-ratio: 1440/900;
        max-height: 100vh;
    }
    .home .swiper-button-next,
    .home .swiper-button-prev {
        top: 32%;
    }
}

@media (min-width: 1200px) {
    .section-title.large-title {
        font-size: 100px;
        line-height: 110px;
        max-width: none;
    }
    .container {
        max-width: 1200px;
    }
}

@media (max-width: 1200px) {
    .faq .faq-list {
        padding: 0;
    }
    /*#Mediacenter .col-xl-6:nth-child(2) {
        display: none;
    }*/
}


/************ for liferay*************/

.portlet {
    margin-bottom: 0;
}

.form1 .container-fluid {
    padding: 0;
}

.form1 .lfr-ddm__default-page-header {
    display: none;
}

.accBtn {
    height: 40px;
    width: 40px;
    justify-content: center !important;
    margin-top: 15px;
    box-shadow: none;
}

.navbar .language-entry-long-text,
.navbar .language-entry-long-text:focus {
    font-family: "RubikSemiBold";
    background-color: #ffffff13;
    border-radius: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 18px !important;
    height: 40px;
    border: 0;
    font-size: 14px;
    font-weight: 600;
}

[dir="rtl"] .navbar .language-entry-long-text,
[dir="rtl"] .navbar .language-entry-long-text:focus {
    font-family: "AlmaraiBold";
    text-transform: capitalize;
}

.navbar .language-entry-long-text:hover {
    background-color: #ffffff36;
}

.uwaw_2-col .uwaw-header {
    background-color: #fff;
}