/* ----------------------------------------------------------------
Typography
-----------------------------------------------------------------*/
:root {
    --gold: #A4905D;
    --beige: #f8f2ea;
    --black: #11100F;
    --dark-gold: #6c6559;
    /*
    --gray: #6c6d70;
    --dark-gray: #444545;
    --dark-beige: #e2cbac;*/
    --link-clr: #231f20;
    --link-hover: #24211d;
    --font-80: 80px;
    --font-70: 70px;
    --font-60: 60px;
    --font-50: 50px;
    --font-40: 40px;
    --font-30: 30px;
    --font-26: 26px;
    --font-24: 24px;
    --font-22: 22px;
    --font-20: 20px;
    --font-18: 18px;
    --font-16: 16px;
    --font-15: 15px;
    --font-13: 13px;
    --px-100: 100px;
    --px-80: 80px;
    --px-70: 70px;
    --px-60: 60px;
    --px-50: 50px;
    --px-40: 40px;
    --px-30: 30px;
    --px-20: 20px;
}

@font-face {
    font-family: 'OpenSans';
    src: url('../fonts/OpenSans.ttf');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'OpenSans-Light';
    src: url('../fonts/OpenSans-Light.ttf');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'OpenSans-Regular';
    src: url('../fonts/OpenSans-Regular.ttf');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'OpenSans-Medium';
    src: url('../fonts/OpenSans-Medium.ttf');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'OpenSans-SemiBold';
    src: url('../fonts/OpenSans-SemiBold.ttf');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'OpenSans-Bold';
    src: url('../fonts/OpenSans-Bold.ttf');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}


@font-face {
    font-family: 'NotoKufiArabic-Medium';
    src: url('../fonts/NotoKufiArabic-Medium.ttf');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

html, body {
    scroll-behavior: smooth;
}

body {
    color: var(--black);
    line-height: 1.5;
    line-height: normal;
    font-family: "OpenSans-Medium", sans-serif;
    font-size: var(--font-18);
}

a {
    text-decoration: none;
    color: var(--link-clr);
}

    a:hover {
        color: var(--link-hover);
        border-color: var(--link-hover);
    }

h1, h2, h3, h4, h5, h6 {
    font-family: 'OpenSans-Bold';
}

section {
    overflow: hidden;
}

img {
    max-width: 100%;
}

.form-control {
    font-size: var(--font-20);
}

    .form-control:focus {
        border-color: var(--beige);
        box-shadow: 0 0 0 .25rem #f7d5a6ad;
    }

.bg-img {
    background-repeat: no-repeat !important;
    background-size: cover;
    background-position: center;
}

/* ----------------------------------------------------------------
	Basic
-----------------------------------------------------------------*/
.container-kha {
    max-width: 1610px;
    margin: auto;
    padding: 0 20px;
    /* padding: 0; */
}

.container-fluid {
    padding-left: 20px;
    padding-right: 20px;
}

@media (min-width:1200px) {

    .container-fluid {
        /* padding-left: 50px; */
        /* padding-right: 50px; */
    }
}

.home-slider {
    display: block;
}

.clear {
    clear: both;
    display: block;
    font-size: 0px;
    height: 0px;
    line-height: 0;
    width: 100%;
    overflow: hidden;
}

::selection {
    background: var(--dark-gold);
    color: #fff;
    text-shadow: none;
}

::-moz-selection {
    background: var(--dark-gold); /* Firefox */
    color: #fff;
    text-shadow: none;
}

::-webkit-selection {
    background: var(--dark-gold); /* Safari */
    color: #fff;
    text-shadow: none;
}

:active, :focus {
    outline: none !important;
}

section {
    overflow: hidden;
}

img {
    max-width: 100%;
}

.form-control {
    font-size: var(--font-20);
}

    .form-control:focus {
        border-color: var(--beige);
        box-shadow: 0 0 0 .25rem #f7d5a6ad;
    }

.link {
    display: inline-block;
    position: relative;
    font-size: var(--font-22);
    display: flex;
    color: #fff;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

    .link img {
        width: 27px;
        margin-right: 11px;
    }

    .link:hover {
        transform: translateX(8px);
        color: #fff;
    }

/* ----------------------------------------------------------------
Helper Classes + margins + paddings + Animations
-----------------------------------------------------------------*/
/*
.beige-bg {
    background-color: var(--beige);
}*/

.dark-gold {
    background: var(--dark-gold);
}

.py-100 {
    padding-top: var(--px-100);
    padding-bottom: var(--px-100);
}

.py-80 {
    padding-top: var(--px-80);
    padding-bottom: var(--px-80);
}

.mt-80 {
    margin-top: var(--px-80);
}

.mb-80 {
    margin-bottom: var(--px-80);
}

.py-70 {
    padding-top: var(--px-70);
    padding-bottom: var(--px-70);
}

.mt-70 {
    margin-top: var(--px-70);
}

.mb-70 {
    margin-bottom: var(--px-70);
}

.py-60 {
    padding-top: var(--px-60);
    padding-bottom: var(--px-60);
}

.mt-60 {
    margin-top: var(--px-60);
}

.mb-60 {
    margin-bottom: var(--px-60);
}

.py-50 {
    padding-top: var(--px-50);
    padding-bottom: var(--px-50);
}

.mt-50 {
    margin-top: var(--px-50);
}

.mb-50 {
    margin-bottom: var(--px-50);
}

.py-40 {
    padding-top: var(--px-40);
    padding-bottom: var(--px-40);
}

.mt-40 {
    margin-top: var(--px-40);
}

.mb-40 {
    margin-bottom: var(--px-40);
}

.py-30 {
    padding-top: var(--px-30);
    padding-bottom: var(--px-30);
}

.mt-30 {
    margin-top: var(--px-30);
}

.mb-30 {
    margin-bottom: var(--px-30);
}

.py-20 {
    padding-top: var(--px-20);
    padding-bottom: var(--px-20);
}

.mt-20 {
    margin-top: var(--px-20);
}

.mb-20 {
    margin-bottom: var(--px-20);
}

/* --------------------------------------
Page Elements
--------------------------------------- */
#wrapper {
    position: relative;
    max-width: 100%;
    margin: 0 auto;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.kha-btn, .kha-btn:visited, .kha-btn:focus {
    text-align: center;
    display: inline-block;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    padding: 8px 27px;
    background-color: #fff;
    border: 1px solid var(--gray);
    -webkit-box-shadow: none;
    box-shadow: none;
    -webkit-transition: .3s;
    transition: .3s;
    position: relative;
    cursor: pointer;
    overflow: hidden;
    color: var(--gold);
}

    .kha-btn:before {
        position: absolute;
        inset: 0;
        width: 0;
        content: "";
        background: linear-gradient(45deg,var(--gold),var(--gold));
        transition: .5s;
        opacity: .3;
    }

    .kha-btn:hover:before {
        width: 100%;
        opacity: 1
    }

    .kha-btn span {
        position: relative
    }

    .kha-btn:hover, input.kha-btn:hover {
        color: #fff;
        border-color: var(--gold);
        box-shadow: 0 2px 8px #3333337f;
        cursor: pointer
    }

.section-ttl {
    font-size: var(--font-50);
    font-weight: 400;
    position: relative;
}
/*
.img-box {
    overflow: hidden;
}

    .img-box img {
        -webkit-transition: 0.5s;
        transition: 0.5s;
        -moz-transition: 0.5s;
        -ms-transition: 0.5s;
        -o-transition: 0.5s;
    }

    .img-box:hover img {
        transform: scale(1.1);
    }*/

@media screen and (max-width:1199px) {
    :root {
        --font-80: 70px;
        --font-70: 60px;
    }
}

@media screen and (max-width:991px) {
    :root {
        --font-80: 65px;
        --font-70: 55px;
        --font-60: 60px;
        --font-50: 40px;
        --font-40: 30px;
        --font-30: 25px;
        --font-26: 24px;
        --font-24: 22px;
        --font-22: 20px;
        --font-20: 18px;
        --font-18: 17px;
        --font-16: 15px;
        --font-15: 14px;
        --font-13: 12px;
        --px-80: 50px;
        --px-60: 40px;
        --px-50: 30px;
        --px-40: 25px;
        --px-30: 20px;
    }
}

@media screen and (max-width:767px) {
    .section-ttl {
        /* font-size: 24px; */
    }

    :root {
        --font-80: 55px;
        --font-70: 45px;
        --font-50: 30px;
        --font-40: 25px;
        --font-22: 18px;
        --font-18: 16px;
    }
}

@media screen and (max-width:575px) {
    :root {
        --font-80: 45px;
        --font-70: 42px;
        --font-50: 30px;
        --font-40: 25px;
        --font-22: 17px;
        --font-18: 15px;
    }
}

/* ----------------------------------------------------------------
Header
-----------------------------------------------------------------*/

/* topbar */
#header {
    position: absolute;
    z-index: 100;
    width: 100%;
    transition: 0.5s;
}

.header-wrap {
    /* display: flex;
  align-items: center;
  justify-content: space-between; */
    background: linear-gradient(to bottom, black, transparent);
    transition: 0.5s;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.topRight-header {
    display: flex;
    align-items: center;
}


.drop1-item {
    /* color: #fff; */
}

    .drop1-item.active, .drop-item-a.active {
        color: var(--gold);
    }

.drop-item .drop-item-a {
    /*color: var(--dark-gray);*/
}
/*
.topbar-content .topbar-item:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgb(35 36 36 / 20%);
    z-index: 0;
    transition: 0.3s;
    transform: translateY(-90%);
    opacity: 0;
}

.topbar-content .topbar-item > * {
    position: relative;
    z-index: 10;
}*/

.search-btn {
    width: 50px;
    cursor: pointer;
    padding: 8px 10px;
    margin-right: 10px;
    border-radius: 50px;
}

    .search-btn img {
        margin: 0;
    }

.desktop-menu .drop1-item {
    font-size: var(--font-22);
    color: #fff;
    padding: 4px 20px;
    padding-right: 40px;
    border: 1px solid;
    border-radius: 50px;
    margin-right: 20px;
    position: relative;
    display: flex;
    align-items: center;
}

.desktop-menu .drop:hover .drop1-item {
    background: #c9c9c92e;
    border-color: transparent;
    background: #a4905ddb;
    box-shadow: inset 0 0 10px #3333334a;
}

.desktop-menu .drop1-item:after {
    content: "";
    position: absolute;
    width: 13px;
    height: 13px;
    border: 1px solid;
    border-bottom: 0;
    border-left: 0;
    transform: rotate(45deg);
    right: 20px;
    top: 14px;
}

.langText {
    font-family: "NotoKufiArabic-Medium", sans-serif;
    font-size: var(--font-18) !important;
}

#header:not(.sticky-header) .dark-logo {
    display: none;
}

#header.sticky-header .white-logo {
    display: none;
}

.sticky-header .header-wrap {
    background: linear-gradient(to bottom, #daceaf57, transparent);
}

.desktop-menu .drop1-item.registerLink:after {
    top: 12px;
}

/*============
   Menu
============*/
.standard-logo {
    padding: 20px 10px;
    display: inline-block;
    transition: 0.3s;
}

.head-links-container {
    margin: auto;
}

.drop1-item {
    padding: 6px 20px;
    display: inline-block;
    /* background-position: 0; */
    /* transition: background-position 5s; */
    font-size: var(--font-26);
}
/*
.drop-item-a img {
    width: 45px;
    transition: 1s;
    margin-bottom: 15px;
}

.drop-item-a span {
    margin-right: 5px;
}*/

.standard-logo img {
    max-width: 100%;
}

@media (max-width:992px) {
    .standard-logo img {
        max-width: 90%;
    }
}

/*****  sticky menu ******/
#header.sticky-header {
    background: rgb(46 46 46 / 85%);
    background: hsl(0deg 0% 100% / 90%);
    box-shadow: 0 0 10px #33333369;
    position: fixed;
    top: 0;
}

.sticky-header .standard-logo img {
    height: 70px;
    transition: 0.5s;
    width: 100%;
}

.sticky-header .standard-logo {
    padding: 5px;
}

.sticky-header .drop1-item {
    font-size: 19px;
}

.sticky-header .desktop-menu .drop1-item {
    color: var(--black);
}

.sticky-header .hamburger-icon {
    background: var(--black);
}

.sticky-header #primary-menu-trigger {
    border-color: var(--black);
}

@media (max-width: 768px) {
    .desktop-menu .drop1-item:after {
        top: 12px;
    }
}

    /*********************End*/


    .head-links-container .container-kha {
        position: relative;
        padding-top: var(--px-30);
        padding-bottom: var(--px-30);
    }

    .mobile-menue-open {
        overflow: hidden;
    }

    .drop-menu .container-kha {
        padding: 0;
    }

    .main-menu-items .row, .main-menu-items .col-xl-3 {
        margin: 0;
        padding: 0;
    }

    .drop-item {
        font-size: 16px;
    }

    #primary-menu-trigger {
        cursor: pointer;
        position: relative;
        display: flex;
        flex-direction: column;
        width: 50px;
        height: 46px;
        justify-content: space-between;
        padding: 10px;
        align-items: flex-end;
        border-radius: 50%;
        border: 1px solid rgb(255 255 255 / 70%);
        transition: 0.3s;
    }

    .hamburger-icon {
        width: 100%;
        background: #fff;
        height: 2px;
        display: inline-block;
        margin-bottom: 1px;
        transition: 0.3s;
    }

        .hamburger-icon:last-child {
            width: 50%;
        }

    #primary-menu-trigger:hover .hamburger-icon {
        width: 100%;
    }

    .mobile-overlay {
        background: rgb(0 0 0 / 30%);
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        opacity: 0;
        visibility: hidden;
        z-index: 10;
        backdrop-filter: blur(6px);
    }

    .mobile-menu-style .mobile-overlay {
        opacity: 1;
        visibility: visible;
    }

    .mobile-menu {
        background: #fff;
        border-left: 4px solid var(--beige);
        position: fixed;
        right: 0;
        left: 0;
        top: 0;
        transform: translateY(-100%);
        max-width: 100%;
        transition: 0.5s;
        -webkit-transition: 0.5s;
        -moz-transition: 0.5s;
        -ms-transition: 0.5s;
        -o-transition: 0.5s;
        z-index: 11;
    }

        .mobile-menu.openMenu {
            transform: initial;
        }

    .mob-logo-menu {
        display: block;
        margin-bottom: 20px;
        position: relative;
    }

        .mob-logo-menu a {
            display: inline-block;
        }

    .drop1-item {
        display: block;
        position: relative;
        transition: 0.3s;
    }

    .main-menu-items {
        font-family: 'OpenSans-SemiBold';
    }

        .main-menu-items .drop1-item:hover {
            color: var(--gold);
        }
    /*
.drop-item-a {
    padding: 10px;
    display: block;
    perspective: 300px;
    transform: rotateX(70deg);
    transform-origin: top;
    opacity: 0;
    transition: 0.8s;
    border-bottom: 1px solid #d9d9d9;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    border-left: 6px solid #ffffff82;
    border-bottom: 1px solid #ffffff82;
}

.open .drop-item-a {
    transform: initial;
    opacity: 1;
}*/

    .drop-menu {
        opacity: 0;
        visibility: hidden;
        height: 0;
        transition: 0.5s;
    }

    .open .drop-menu {
        opacity: 1;
        visibility: visible;
        height: 100%;
    }

    .has-menu .drop1-item:before {
        content: "";
        position: absolute;
        top: calc(50% - 7px);
        right: 66%;
        height: 15px;
        width: 15px;
        border: 2px solid transparent;
        border-bottom-color: var(--black);
        border-right-color: var(--black);
        transform: rotate(-45deg);
        transition: .3s;
        border-radius: 2px;
    }

    .has-menu.open .drop1-item:before {
        transform: rotate(45deg);
    }
    /*
.drop-item-a:hover {
    background: #ffffff82;
    color: var(--blue);
}

.drop-item-a img, .drop-item-a-f img {
    margin: 0;
    margin-right: 10px;
    width: 30px;
}

.drop-item-a-f {
    justify-content: flex-start;
    background: var(--light-purple);
    border-bottom: 1px solid #ffffff4a;
}

.drop-item-a-f {
    padding: 10px 15px;
}
*/
    /* close */
    .close-mobile-panel {
        position: absolute;
        top: 11px;
        right: 12px;
        border: 1px solid var(--gold);
        width: 40px;
        height: 40px;
        border-radius: 50%;
        transition: 0.3s;
        z-index: 10;
    }

        .close-mobile-panel span {
            width: 30px;
            height: 30px;
            display: block;
            position: absolute;
            top: 4px;
            right: 3px;
            transition: 0.2s;
            cursor: pointer;
        }

            .close-mobile-panel span:hover {
                border-color: var(--dark-gray);
            }

            .close-mobile-panel span:before {
                content: "";
                width: 2px;
                height: 100%;
                position: absolute;
                right: 15px;
                top: 1px;
                /* right: 0; */
                background-color: var(--black);
                -webkit-transform: rotate(45deg);
                -ms-transform: rotate(45deg);
                transform: rotate(45deg);
            }

            .close-mobile-panel span:after {
                content: '';
                width: 2px;
                height: 100%;
                position: absolute;
                right: 15px;
                top: 1px;
                background-color: var(--black);
                -webkit-transform: rotate(-45deg);
                -ms-transform: rotate(-45deg);
                transform: rotate(-45deg);
            }

        .close-mobile-panel:hover {
            background: var(--gold);
        }

    .desktop-menu.quick-links .drop1-item {
        color: #000;
        font-size: var(--font-20);
    }

    .quick-links {
        justify-content: flex-end;
        margin-top: 15px;
    }

    .drop-menu.level2 {
        display: flex;
        flex-direction: column;
        /* padding: 15px 0; */
        transition: 0.8s;
        -webkit-clip-path: inset(0 0 100% 0);
        clip-path: inset(0 0 100% 0);
    }

    .drop.has-menu.open .drop1-item {
        color: var(--gold);
        font-weight: bold;
    }

    .open .drop-menu.level2 {
        -webkit-clip-path: inset(0 0 0 0);
        clip-path: inset(0 0 0 0);
        transition: 0.8s;
    }

    a.drop-item-a {
        margin-bottom: 15px;
        transition: 0.5s;
    }

    .drop-menu.level2 ul {
        margin-bottom: 0;
        margin-top: 15px;
    }

    a.drop-item-a:hover {
        color: var(--gold);
    }

    @media (min-width:992px) {
        .close-mobile-panel {
            top: 27px;
        }

        .mob-logo-menu {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding-right: 64px;
            margin-top: 0px;
        }
    }

    @media (max-width:768px) {
        .has-menu .drop1-item:before {
            right: 0;
        }
    }


    .menu-logo {
        max-width: 60%;
    }
    /*
.langBtn {
    font-family: weblysleekuil;
    font-size: 23px;
    font-weight: 600;
    border-radius: 3px;
    padding: 5.5px 13px;
    transition: 0.3s;
    color: #fff;
}

    .langBtn:hover {
        background: #c9c9c92e;
        color: #fff;
    }*/
    /*************  Search  *************/
    .search-popup {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(64,64,64,.7);
        z-index: 9999;
        display: flex;
        justify-content: center;
        flex-direction: column;
        align-items: center;
        visibility: hidden;
        opacity: 0;
        transition: 300ms;
        padding: 25px;
        color: #fff;
        backdrop-filter: blur(46px);
    }

        .search-popup.open {
            opacity: 1;
            visibility: visible
        }

    .search-close {
        position: absolute;
        top: 15px;
        right: 15px;
        fill: #fff;
        width: 50px !important;
        height: 50px;
        padding: 15px;
        cursor: pointer;
        border: 1px solid transparent
    }

        .search-close:hover {
            border-color: var(--dark-beige);
            fill: var(--dark-beige);
        }

    .search-box {
        width: 100%;
        max-width: 700px;
        margin: 15px;
        display: flex;
        opacity: 0;
        transform: translateY(100px);
        transition: 1.5s;
        transition-delay: 100ms;
        position: relative;
        border-radius: 90px;
        overflow: hidden
    }

    .search-bar {
        background: transparent;
        border: none;
        outline: none;
        padding: 12px 32px;
        font-size: 20px;
        width: 100%;
        color: #000;
        border-radius: 90px;
        background: #fff
    }

        .search-bar:focus::placeholder {
            opacity: 0
        }

    .search-box .search-btn {
        background: #bea482;
        display: flex;
        cursor: pointer;
        position: absolute;
        top: 0;
        right: 0;
        padding: 0;
        padding-left: 4px;
        margin: 0;
        border: 0;
        width: 66px;
    }

    .search-btn svg {
        fill: #fff;
        padding: 18px;
        width: 54px;
        height: 54px;
        transform: rotateY(180deg);
        padding: 14px;
    }

    .search-popup span {
        display: block;
        font-size: 30px;
        margin-bottom: 30px;
        opacity: 0;
        transform: translateY(100px);
        transition: 1.5s;
    }

    .search-popup.open .search-box, .search-popup.open span {
        transform: inherit;
        opacity: 1;
    }

    .search-box {
        transition-delay: .5s
    }


    /*==================================
                Footer 
 */
    footer {
        background: var(--dark-gold);
        color: #fff
    }

    .footer-top {
        color: #fff;
        position: relative;
    }

    .footer-ttl {
        font-size: var(--font-50);
        font-weight: bold;
        margin-bottom: 30px;
        font-family: 'OpenSans-SemiBold';
    }

.contact-btn {
    text-align: center;
    display: flex;
    justify-content: center;
}

    .contact-btn button, .contact-btn button:focus {
        text-transform: uppercase;
        font-size: var(--font-22);
        width: 130px;
        border-radius: 50px;
        padding: 6px 20px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .footer-bottom {
        background: var(--dark-gold);
        color: #b9b9b9;
        text-align: center;
        /*    transform: scaleY(0);*/
        transform-origin: bottom;
        /*    opacity: 0;
    transition: .6s;*/
        font-size: var(--font-15);
    }

    /*.aos-animate .footer-bottom {
    transform: inherit;
    opacity: 1
}*/

    .footer-bottom-content a {
        color: #fff;
        transition: 0.3s;
    }
    /*
.footer-link {
    display: block;
    color: #fff;
    padding: 4px 8px;
    padding-right: 26px;
    position: relative;
    overflow: hidden;
    transition: .2s;
    font-size: var(--font-16);
}

.footer-links-container {
    font-size: var(--font-16);
}

.footer-link:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: #c68b663b;
    box-shadow: 0 0 0 4px #C68B66;
    z-index: 1;
    transform: skewX(40deg) translateX(-110%);
    width: 120%;
    transition: .6s
}

.footer-link * {
    z-index: 2;
    position: relative
}*/
    /*
.footer-link:hover:before {
  transform: skewX(40deg) translateX(-24%);
  -webkit-transform: skewX(40deg) translateX(-24%);
  -moz-transform: skewX(40deg) translateX(-24%);
  -ms-transform: skewX(40deg) translateX(-24%);
  -o-transform: skewX(40deg) translateX(-24%);
}*/

    .footer-link:hover {
        color: #fff
    }

    .footer-social {
        display: flex;
        justify-content: flex-end;
        align-items: center;
    }

    .social-item {
        display: inline-block;
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding: 8px;
        margin-right: 5px;
        border-radius: 3px;
        overflow: hidden;
        position: relative;
    }

        .social-item img {
            width: 27px;
            height: 27px;
        }

        .social-item.youtube img {
            width: 33px;
        }

        .social-item:before {
            content: "";
            position: absolute;
            bottom: 100%;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--blue);
            transition: 0.3s;
        }

        .social-item:hover:before {
            bottom: 0;
        }

    .youtube:before {
        background: #bb0000;
    }

    .instagram:before {
        background-color: #bc2a8d;
        background: #f09433;
        background: -moz-linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
        background: -webkit-linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);
        background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);
    }

    .facebook:before {
        background-color: #3b5998
    }

    .linkedIn:before {
        background-color: #007bb6;
    }

    .twitter:before {
        background-color: #000;
    }


    .social-item:hover img {
        filter: brightness(10);
    }
    /*
.footer-style {
    transition: 3s;
    background-position: center;
    background-size: 100% 100%;
    background-repeat: no-repeat;
    height: 17px;
    position: relative;
    width: 0;
    transition: 3s;
    opacity: 0.5;
    background: var(--dark-beige);
}

.aos-animate .footer-style {
    width: 100%;
    opacity: 1;
}

@keyframes moveBackground {
    to {
        left: 100%;
    }
}

.aos-animate .footer-style:before {
    content: "";
    position: absolute;
    top: 0;
    left: -190px;
    height: 17px;
    background: linear-gradient(45deg, transparent, #fff2d5, transparent);
    background: linear-gradient(45deg, transparent, #D29E0E, transparent);
    background: linear-gradient(45deg, transparent, var(--beige), transparent);
    transition: .1s;
    animation: moveBackground 8s 3s infinite;
    width: 20%;
    -webkit-animation: moveBackground 8s 3s infinite;
}
*/

    .footer-bottom-end a {
        padding: 10px;
        display: inline-block;
    }

    .footer-bottom-first {
        /* padding-top: 10px; */
        padding-bottom: 15px;
    }


    @media (min-width:1200px) {
        .footer-ttl {
            text-align: center;
        }

        .footer-acc-block {
            margin-left: 10%;
        }

        .footer-bottom-first {
            padding-top: 15px;
            padding-bottom: 15px;
            text-align: left;
        }
    }

    @media (min-width:1200px) {
        .footer-bottom-links a {
            padding: 8px;
            white-space: nowrap;
        }
    }

    @media(max-width: 1199px) {

        .footer-bottom-links a {
            padding: 15px;
            white-space: nowrap;
        }

        .footer-extend {
            display: none;
            padding: 15px
        }

        .footer-ttl {
            font-size: var(--font-30);
            margin: 0;
            padding: 11px 0;
            border-bottom: 1px solid rgba(255,255,255,.329);
            position: relative;
            transition: .3s
        }

        .footer-top {
            padding: 30px 0
        }

        .footer-ttl:before {
            content: "";
            position: absolute;
            top: calc(50% - 7px);
            height: 10px;
            width: 10px;
            transform: rotate(45deg);
            border: 1px solid transparent;
            border-bottom-color: #fff;
            border-right-color: #fff;
            right: 3px;
            transition: .3s
        }

        .footer-open .footer-ttl:before {
            transform: rotate(225deg);
            margin-top: 5px;
            right: 15px;
        }

        .footer-open .footer-ttl {
            padding: 11px 15px;
            border-bottom-color: rgba(255,255,255,.1)
        }

        .footer-acc-block.footer-open {
            background: rgba(255,255,255,.078);
            box-shadow: 0 6px 25px rgba(0,0,0,.071)
        }

        .footer-acc-block {
            transition: .3s
        }
        /*
    .footer-logos-box {
        text-align: center;
    }*/
    }

    @media (min-width:768px) {
        .footer-social {
            order: 2;
        }

        .footer-bottom-links {
            display: flex;
        }

        .footer-bottom-end {
            display: flex;
            justify-content: space-around;
            align-items: center;
        }
    }

    @media(min-width: 1200px) {
        .footer-extend {
            display: block !important
        }

        .footer-bottom-end {
            justify-content: flex-end;
        }

        .footer-bottom-links a {
            padding: 8px;
        }
    }


    .contact-info .icon img {
        width: 20px;
        height: 20px;
        margin-right: 5px;
    }

    .contact-info a {
        margin-bottom: 10px;
        transition: 0.3s;
    }

    footer a:hover {
        color: var(--dark-beige);
    }

    @media (max-width:991px) {
        .footer-social {
            justify-content: center;
        }
    }

    /*************************
        Home Content
**************************/


    /************* Home Slider ***************/

    /**  Slider  **/
    .home-slider-container {
        position: relative;
    }

    .home-slider-item {
        background-position: center;
        background-size: cover;
        background-repeat: no-repeat;
        height: 100vh;
        position: relative;
        min-height: 400px;
    }

    .home-video {
        height: 100%;
    }

    .home-video {
        padding-bottom: 42%;
        overflow: hidden;
        position: relative;
        background-position: center;
        background-size: cover;
    }

    .home-tag {
        position: absolute;
        top: 0;
        left: 0;
        bottom: 0;
        right: 0;
        width: 100%;
        left: 0;
        right: 0;
        bottom: 0;
        height: 100%;
        object-fit: cover;
        object-position: top;
        filter: brightness(1.3) contrast(1.1);
    }

    .home-slider-ttl-box {
        padding: 0 40px;
        color: #fff;
        width: 100%;
    }

        .home-slider-ttl-box a {
            display: flex;
            background: rgb(35 36 36 / 90%);
            padding: 20px 40px 120px;
            border-radius: 30px 30px 0 0;
            align-items: center;
        }

    .ttl-icon {
        width: 40px !important;
        margin-left: 26px;
    }

    .w-30 {
        width: 30px;
    }

    .home-slider-content {
        position: absolute;
        left: 0;
        right: 0;
        bottom: 0;
        top: 0;
        display: flex;
        align-items: flex-end;
        justify-content: flex-start;
        z-index: 11;
    }

    .slider-ttl {
        color: #fff;
        margin: 0;
        margin-bottom: 9%;
        padding-left: 17%;
        font-family: 'BarlowCondensed-MediumItalic';
        letter-spacing: 2px;
    }

    .slider-ttl-1 {
        font-size: var(--font-70);
        font-style: italic;
        /* font-family: 'Gotham-Bold'; */
        text-shadow: 3px 4px 4px #00000094;
    }

    .slider-ttl-2 {
        font-size: var(--font-80);
        color: #ffffea;
        padding-left: 3%;
        text-shadow: 3px 4px 4px #00000094;
        font-style: italic;
        white-space: nowrap;
        opacity: 0;
    }
    /* .line-before {
    position: relative;
    display: inline-block;
}

.line-before:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 5px;
    left: calc(-100% + -30px);
    background: linear-gradient(271deg, white, transparent);
    top: 47%;
} */
    .home-slider-bg {
        background-position: -300px;
        background-size: cover;
        background-repeat: no-repeat;
        height: 100vh;
        position: relative;
        min-height: 400px;
        /*    transform: scale(1.3);
    transition: 6.5s;
    -webkit-transition: 6.5s;
    -moz-transition: 6.5s;
    -ms-transition: 6.5s;
    -o-transition: 6.5s;*/
    }

    .swiper-slide-active .home-slider-bg {
        background-position: center;
        transform: initial;
    }

    @media (max-width:1399px) {
        .slider-ttl {
            /* line-height: 1.2; */
            /* margin-bottom: 15px; */
            /* font-size: 35px; */
        }
    }

    @media (max-width:1199px) {
        .slider-ttl {
            /* font-size: 30px; */
        }

        .w-30 {
            width: 20px;
        }
    }


    @media (max-width:991px) {
        .topbar-item-txt {
            display: none;
        }

        .home-slider-ttl-box a {
            padding-left: 30px;
            padding-right: 30px;
            padding-bottom: 100px;
        }

        .home-slider-item, .home-slider-bg {
            height: auto;
            aspect-ratio: 1.5;
        }

        .slider-ttl {
            margin-bottom: 5%;
            padding-left: 7%;
        }

        .slider-ttl-2 {
            padding-left: 5%;
        }

        .home-Box-ttl {
            font-size: 25px;
        }

        .ttl-icon {
            margin-left: 20px;
        }
    }

    @media (max-width:767px) {
        .home-slider-ttl-box a {
            padding-left: 25px;
            padding-right: 25px;
            padding-bottom: 80px;
        }

        .home-slider-item {
            /* height: 450px; */
        }

        .w-30 {
            width: 10px;
        }

        .ttl-icon {
            width: 35px !important;
        }

        .home-slider-ttl-box {
            padding: 0 30px;
        }

        .slider-ttl {
            margin-bottom: 5%;
            padding-left: 3%;
        }

        .slider-ttl-2 {
            padding-left: 3%;
        }

        .home-Box-ttl {
            font-size: 20px;
        }

        .home-slider-ttl-box p {
            font-size: 16px;
            margin: auto;
            text-align: center;
        }
    }

    @media (max-width:575px) {
        .home-slider-ttl-box a {
            padding-left: 20px;
            padding-right: 20px;
            padding-bottom: 40px;
        }

        .slider-ttl {
            padding-left: 0;
        }

        .ttl-icon {
            width: 30px !important;
        }

        .home-slider-ttl-box {
            padding: 0 25px;
        }
    }

    .slider-overlay {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        /* background: rgb(0 0 0 / 8%); */
        /* background: rgb(51 51 51 / 50%); */
        /* filter: brightness(1.05) contrast(1.05); */
        z-index: 10;
    }
    /*************  Sliders Buttons  *************/
    .home-slider .swiper-pagination {
        bottom: 39px !important;
    }

    .swiper-pagination-bullet {
        background: transparent;
        border: 1px solid #dfdcd4;
        width: 16px;
        height: 16px;
        opacity: 1;
        transition: 0.3s;
    }

        .swiper-pagination-bullet:hover {
            background: #cdbcac;
        }

        .swiper-pagination-bullet.swiper-pagination-bullet-active {
            background: #cdbcac;
            width: 35px;
            border-radius: 50px;
        }

    .swiper-button-prev:after {
        content: "" !important;
        transition: all .4s ease-out;
        width: 55px;
        height: 55px;
        padding: 30px;
        cursor: pointer;
        z-index: 1000;
        background: url(/images/longArrow-prev.svg);
        background-repeat: no-repeat;
        background-position: center;
        background-size: 57%;
        border-radius: 50%;
        box-shadow: 0 6px 10px 2px #3333334d
    }

    .swiper-button-next:after {
        content: "" !important;
        transition: all .4s ease-out;
        width: 55px;
        height: 55px;
        padding: 30px;
        cursor: pointer;
        z-index: 1000;
        background: url(./img/longArrow-next.svg);
        background-repeat: no-repeat;
        background-position: center;
        background-size: 57%;
        border-radius: 50%;
        box-shadow: 0 6px 10px 2px #3333334d
    }

    .swiper-button-prev:hover:after {
        background-color: var(--light);
        transform: translate(-5px)
    }

    .swiper-button-next:hover:after {
        background-color: var(--light);
        transform: translate(5px)
    }

    .swiper-button-prev:after {
        background: transparent url(../images/A-L.svg) center no-repeat;
        box-shadow: none;
        transition: .3s;
        background-size: 40%
    }

    .swiper-button-next:after {
        background: transparent url(../images/A-R.svg) center no-repeat;
        box-shadow: none;
        transition: .3s;
        background-size: 40%
    }

    .swiper-button-next:hover:after {
        background-color: #0003
    }

    .swiper-button-prev:hover:after {
        background-color: #0003
    }

    @media (min-width: 992px) {

        .swiper-button-prev {
            left: 20px
        }

        .swiper-button-next {
            right: 20px
        }
    }

    @media (min-width: 1200px) {
        .swiper-button-prev {
            left: 72px
        }

        .swiper-button-next {
            right: 72px
        }
    }
    /************************************/

    /* aos */
    .aos-animate[data-aos] {
        transition-delay: .2s
    }

    [data-aos='fade-start'] {
        transform: translateX(-150px);
        transition: 1s;
        opacity: 0
    }

    [data-aos='fade-end'] {
        transform: translateX(150px);
        transition: 1s;
        opacity: 0
    }

    [data-aos*="fade-up"] {
        transform: translateY(100px);
        transition: 1s;
        opacity: 0;
    }


    [data-aos*="fade-bottom"] {
        transform: translateY(-50px);
        transition: 1s;
        opacity: 0
    }

    [data-aos='fade-in'] {
        transition: 1s;
        opacity: 0
    }

    .aos-animate[data-aos*='fade'] {
        transform: inherit;
        opacity: 1
    }

    .aos-animate[data-aos]:nth-child(2), .fadeInBottom:nth-child(2) {
        transition-delay: 500ms;
    }

    .aos-animate[data-aos]:nth-child(3), .fadeInBottom:nth-child(3) {
        transition-delay: 700ms;
    }

    .aos-animate[data-aos]:nth-child(4), .fadeInBottom:nth-child(4) {
        transition-delay: 800ms;
    }

    .aos-animate[data-aos]:nth-child(5), .fadeInBottom:nth-child(5) {
        transition-delay: 1000ms;
    }

    .aos-animate[data-aos]:nth-child(6), .fadeInBottom:nth-child(6) {
        transition-delay: 1200ms;
    }

    .aos-animate[data-aos]:nth-child(7) {
        transition-delay: 1400ms;
    }

    .aos-animate[data-aos]:nth-child(8) {
        transition-delay: 1600ms;
    }

    .aos-animate[data-aos]:nth-child(9) {
        transition-delay: 1800ms;
    }

    .aos-animate[data-aos]:nth-child(10) {
        transition-delay: 2000ms;
    }

    .aos-animate[data-aos]:nth-child(11) {
        transition-delay: 2200ms;
    }

    .aos-animate[data-aos]:nth-child(12) {
        transition-delay: 2400ms;
    }
    /************************/
    .home-sections {
        background: var(--dark-gold);
    }

    .home-apply-container {
        background: #fff;
        padding-top: var(--px-30);
    }

    .home-apply-box {
        background: var(--dark-gold);
    }

    .home-apply {
        text-align: center;
        display: flex;
        justify-content: center;
    }

    .apply-btn, .apply-btn:hover, .apply-btn:active, .apply-btn:focus {
        background: #fff !important;
        font-size: var(--font-30);
        border-radius: 0 0 15px 15px;
        padding-left: var(--px-40);
        padding-right: var(--px-40);
        position: relative;
        /*box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.2), inset -2px -2px 5px rgba(255, 255, 255, 0.5), inset -1px -10px 5px rgb(0 0 0 / 5%);*/
        color: #333;
        /*text-shadow: 1px 1px 2px rgb(92 92 92 / 70%);*/
        backdrop-filter: blur(5px);
        transition: 0.3s;
        overflow: hidden;
    }

        .apply-btn:before {
            content: "";
            position: absolute;
            top: 0;
            left: -26px;
            /* background: red; */
            width: 30px;
            height: 30px;
            /* border-radius: 15px; */
        }

        .apply-btn:hover {
            color: var(--gold); /* White text for contrast */
        }

    .home-app-box {
        position: relative;
        background: #fff;
        width: 25px;
        height: 25px;
        display: inline-block;
    }

        .home-app-box:before {
            background: var(--dark-gold);
            content: "";
            width: 25px;
            height: 25px;
            position: absolute;
            top: 0;
        }

    ._start:before {
        border-radius: 0 15px 0 0;
        right: 0;
    }

    ._end:before {
        border-radius: 15px 0 0 0;
        left: 0;
    }

    /*********  quote   **********/
    .quote {
        display: flex;
        position: relative;
    }

    .quote-img {
        display: flex;
        align-items: center;
        padding-top: 5%;
        padding-bottom: 5%;
    }

        .quote-img img {
            /* border: 2px solid #efe9e1;*/
            border-radius: 25px;
        }

    .quote-txt-box {
        display: flex;
        align-items: center;
    }

    .quote-text {
        padding-top: 11%;
        padding-bottom: 11%;
        padding-left: 93px;
        padding-right: 60px;
        position: relative;
        font-size: 30px;
    }

    blockquote {
        position: relative;
    }

    .quote-text blockquote:before {
        content: "";
        width: 70px;
        height: 55px;
        background: url(../images/quote-icon-top.svg) no-repeat top left;
        position: absolute;
        left: -93px;
    }

    .quote-text blockquote:after {
        content: "";
        width: 70px;
        height: 55px;
        background: url(../images/quote-icon-bottom.svg) no-repeat top left;
        position: absolute;
        right: -58px;
        bottom: 0;
    }

    .quote-style {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 1;
    }

        .quote-style > div {
            /* background: #fff; */
            position: absolute;
            height: 100%;
            /* background: #fff; */
            /* border-radius: 15px; */
            /* box-shadow: 0 10px var(--gold); */
        }

    .quote .container-kha {
        position: relative;
        z-index: 5;
    }

    .quote-author {
        color: var(--gold);
        font-family: 'OpenSans-Bold';
        margin-top: var(--px-50);
    }

    @media (min-width:992px) {
        .quote-text {
            margin-top: 11%;
            margin-bottom: 11%;
            padding-top: 0;
            padding-bottom: 0;
            margin-left: 5%;
        }
    }

    @media (max-width:1199px) {
        .quote-text {
            font-size: 25px;
        }

        .footer-quote .quote-text {
            margin-top: 5%;
            margin-bottom: 5%;
            padding-top: 0;
            padding-bottom: 0;
            margin-left: 0;
            background: transparent;
            box-shadow: none;
        }
    }

    @media (max-width:991px) {
        .quote-text {
            font-size: 20px;
            padding: 100px 120px 60px;
            background: #fff;
            border-radius: 15px;
            box-shadow: 0 10px var(--gold);
        }

        .quote-img {
            padding: 0 50px;
            padding-bottom: 0;
            position: relative;
            z-index: 5;
            margin-bottom: -70px;
        }

        .quote-text:before {
            left: 30px;
        }

        .quote-text:after {
            right: 30px;
            bottom: 70px;
        }

        .quote-style {
            display: none;
        }

        .footer-quote .quote-text {
            padding: 0 70px;
        }

            .footer-quote .quote-text:before {
                left: 0;
                width: 50px;
            }

            .footer-quote .quote-text:after {
                right: 0;
                bottom: 0;
                width: 50px;
                height: 40px;
            }
    }

    @media (max-width:767px) {
        .quote .container-kha {
            padding: 0;
        }

        .quote-text:before, .quote-text:after {
            width: 50px;
        }

        .quote-text {
            padding: 90px 100px;
        }
    }

    /****  Home Content ******/




    .about-item {
        /* background: #fff; */
        padding: var(--px-50);
        border-radius: 15px;
        /* box-shadow: 0 10px  var(--gold); */
        margin-bottom: var(--px-60);
        transition: 0.5s;
        /* overflow: hidden; */
        -webkit-transition: 0.5s;
        -moz-transition: 0.5s;
        -ms-transition: 0.5s;
        -o-transition: 0.5s;
        position: relative;
        /* box-shadow: 0px 0px 13px #2b2b2bcf inset; */
    }

    .about-ttl {
        color: var(--gold);
        margin-bottom: var(--px-20);
    }

    .about-icon {
        text-align: center;
        display: flex;
        align-items: center;
        justify-content: center;
        height: 100%;
        transition: 0.8s;
    }

        .about-icon img {
            width: 130px;
        }

    .about-item:hover .about-icon {
        transform: scale(1.05);
    }

    .about-item:hover {
        /* background:#faf8f1; */
        transition: 0.5s !important;
        /* box-shadow: -10px 0px var(--gold); */
    }


    ul {
        list-style: none;
        padding-left: 40px;
    }

        ul li {
            position: relative;
            /* font-family: 'Gotham-Medium'; */
            margin-bottom: 15px;
        }

            ul li:before {
                content: "";
                position: absolute;
                left: -23px;
                top: 8px;
                /* border: 1px solid; */
                /* border-radius: 50%; */
                width: 10px;
                height: 10px;
                /* background: url(../images/Arrow-3d.png) no-repeat; */
                background-size: contain;
                background-color: #a3905f;
                border-radius: 50px;
            }

    /********* Home card sections **********/
    .section-header {
        margin-bottom: var(--px-40);
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .news {
        background: var(--black);
        color: #fff;
    }

    .homebox-item {
        /* border: 1px solid var(--light-purple); */
        transition: 0.3s;
        height: 100%;
        position: relative;
        overflow: hidden;
    }

        .homebox-item a {
            display: block;
            /* position: relative; */
            height: 100%;
        }
    /*
.homebox-item:hover {
 transform: scale(1.03);
 box-shadow: 0 0 25px 2px #33333347;
 background: var(--beige);
 -webkit-transform: scale(1.05);
 -moz-transform: scale(1.05);
 -ms-transform: scale(1.05);
 -o-transform: scale(1.05);
}
*/
    .card-img img {
        width: 100%;
        transition: 0.3s;
        /* border: 1px solid #efe9e1; */
    }

    .card-info {
        /*display: flex;
  flex-direction: column;*/
        padding: var(--px-30) 0;
        /* position: relative;*/
        color: #fff;
        transition: 0.3s;
    }

    .event-date {
        display: flex;
        margin-bottom: var(--px-20);
        /* font-family: 'Gotham-Medium'; */
        /* font-size: var(--font-16); */
        align-items: center;
    }
    /*
.event-abstract {
    font-size: var(--font-15);
    margin-top: var(--px-20);
    font-family: 'Gotham-Medium';
}
.card-icon{
  display:flex;
  margin-bottom:0.5rem;
}
.card-icon img {
  width: 23px;
  margin-right: 10px;
}
*/
    .card-ttl {
        /* color: var(--dark-gray); */
        font-size: var(--font-20);
        transition: 0.3s;
        /* margin-bottom: 25px; */
        font-family: inherit;
    }

    .homebox-item:hover .card-ttl {
        color: var(--gold);
    }

    .card-content {
        /* position: relative; */
        /* overflow: hidden; */
        height: 100%;
        display: flex;
        flex-direction: column;
        /* padding: 3px; */
    }

    .card-img-box:before {
        content: "";
        position: absolute;
        top: 0;
        right: -5px;
        background: #efe9e1;
        width: 90px;
        height: 90px;
        border-radius: 12px;
        transition: 0.5s;
    }

    .card-img-box {
        position: relative;
        padding-top: 5px;
    }

    .homebox-item:hover .card-img-box:before {
        width: 130px;
        height: 130px;
    }

    .event-btn {
        margin-top: auto;
        /* padding: 0 var(--px-30) var(--px-30); */
        display: flex;
        align-items: center;
        color: #fff;
        transition: 0.3s;
    }

        .event-btn img {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            border: 1px solid #fff;
            padding: 7px;
            margin-right: 11px;
        }

        .event-btn span {
            display: inline-block;
        }

    .homebox-item:hover .event-btn {
        padding-left: 10px;
    }

    .card-img {
        overflow: hidden;
        border-radius: 12px;
        border: 1px solid #efe9e1;
        position: relative;
        /* padding: 7px; */
    }

    .homebox-item:hover .card-img img {
        transform: scale(1.1);
    }

    /************ About page **************/
    .banner {
        padding-top: 20%;
        /* padding-bottom: 6%; */
        text-align: center;
        position: relative;
        height: 430px;
        display: flex;
        filter: brightness(1.3) contrast(1.05);
    }

        .banner:before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(to bottom, rgb(0 0 0 / 50%), rgb(0 0 0 / 10%), rgb(0 0 0 / 20%));
        }

    .page-ttl {
        color: #fff;
        margin: 0;
        font-size: var(--font-50);
        font-family: 'OpenSans-SemiBold';
    }

    .banner-content {
        position: relative;
        width: 100%;
        margin-top: auto;
        padding-top: 100px;
        padding-bottom: 50px;
        background: linear-gradient(to top, rgb(0 0 0 / 45%), transparent);
        margin-bottom: -3px;
    }



    @media (min-width:992px) {
        .banner {
            padding-top: 15%;
            padding-bottom: 0;
            text-align: center;
            position: relative;
            height: 100vh;
            display: flex;
        }
    }

    .quote-text-about {
        padding-top: 11%;
        padding-bottom: 11%;
        padding-left: 10%;
        padding-right: 60px;
        padding-right: 21%;
        position: relative;
        font-size: 35px;
    }

    @media (max-width:991px) {
        .quote-text-about {
            font-size: var(--font-30);
            padding: 100px 80px 60px;
            background: #fff;
            border-radius: 15px;
            box-shadow: 0 10px var(--gold);
        }
    }

    @media (max-width:768px) {
        .quote-text-about {
            padding: 100px 35px 40px;
        }
    }
    /**************Honorees************/


    .filter-container {
    }

    .filter-box {
        padding: 30px;
        background: rgb(255 255 255 / 35%);
        border-radius: 10px;
    }

        .filter-box .form-select, .filter-box .form-control {
            padding: 12px 18px;
            font-size: var(--font-20);
            border-color: #969698;
            border-radius: 10px
        }

    .filter-search-box {
        position: relative
    }

        .filter-search-box .filter-search-btn {
            display: flex;
            cursor: pointer;
            position: absolute;
            top: 0;
            right: 0;
            padding: 0 0 0 4px;
            margin: 0;
            border: 0;
            height: 100%
        }

            .filter-search-box .filter-search-btn svg {
                fill: #c4c4c4;
                transform: rotate(0);
                padding: 10px;
                width: auto;
                height: auto;
                transition: .3s
            }

            .filter-search-box .filter-search-btn:hover svg {
                fill: var(--gold)
            }
    /**------------***/
    .hon-item {
        background: #fff;
        padding: var(--px-30);
        border-radius: 15px;
        box-shadow: 0 10px var(--gold);
        margin-bottom: var(--px-60);
        transition: 0.5s;
        overflow: hidden;
    }

    .item-ttl {
        color: var(--gold);
        margin-bottom: var(--px-20);
    }

    .item-category {
        font-family: 'OpenSans-Bold';
        font-style: italic;
    }

    .item-img-box {
        overflow: hidden;
        height: 100%;
        border-radius: 8px;
        outline: 3px solid transparent;
        border: 3px solid transparent;
        transition: 0.3s;
    }

    .item-img {
        padding-top: 56%;
        height: 100%;
        transition: 0.3s;
    }

    .about-item:hover .item-img {
        transform: scale(1.03);
    }

    .about-item:hover .item-img-box {
        border-radius: 8px;
        outline: 3px solid var(--gold);
        border: 3px solid #fff;
    }

    /************   News   ***************/

    .news-img {
        text-align: center
    }

        .news-img img {
            max-width: 100%;
            max-height: 700px;
            filter: brightness(1.05) contrast(1.05);
            border-radius: 15px;
            width: 100%;
        }

    .news-ttl {
        color: var(--gold);
        margin-bottom: var(--px-30);
    }

    .news-date {
        margin-bottom: var(--px-40);
        display: flex;
        align-items: center;
    }

        .news-date img {
            margin-right: 10px;
        }

    .news-nav {
        display: flex;
        justify-content: center
    }

        .news-nav svg {
            width: 30px;
            fill: var(--gray);
            fill: #6d6d70;
            transition: .3s
        }

    .news-list svg {
        fill: #9d9ea1
    }

    .news-nav a {
        padding: 5px;
        margin: 0 10px
    }

        .news-nav a:hover svg {
            fill: var(--blue)
        }


    .news-details {
        background: #fff;
        border-radius: 15px;
        padding: var(--px-60);
        overflow: hidden;
    }


    /* FAQ */

    @keyframes bg-anim {
        from {
            background-position: 0 0;
        }

        to {
            background-position: 100% 100%;
        }
    }

    .faq-section {
        padding-top: var(--px-80);
    }

    .faq-title {
        display: block;
        background-color: var(--gold);
        background-image: url(/images/quran-bg-repeat-min.jpg);
        padding: 15px 25px;
        color: white !important;
        background-size: 165px;
        cursor: pointer;
        font-weight: bold;
        position: relative;
        padding-left: 80px;
        animation: bg-anim 100s linear infinite;
        padding-right: 42px;
    }

    .faq-content {
        padding: 15px 25px;
        background: #FFFF;
    }

    .faq-item {
        margin-bottom: 30px;
        color: black;
        box-shadow: 0 7px 16px rgba(0, 0, 0, 0.15);
        border: 1px solid var(--gold);
        border-radius: 10px;
        overflow: hidden;
    }

    .faq-acc {
        counter-reset: faq-counter;
    }

    .faq-title:before {
        counter-increment: faq-counter;
        content: counter(faq-counter);
        position: absolute;
        top: 0;
        left: 0;
        bottom: 0;
        background: var(--gold);
        background: linear-gradient(135deg, var(--gold), transparent);
        font-size: 26px;
        width: 192px;
        padding-top: 7px;
        padding-left: 29px;
        z-index: 1;
        background: transparent;
    }

    .faq-title span {
        position: relative;
        z-index: 2;
    }

    .faq-title:after {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: black;
        z-index: 3;
        opacity: 0;
        transition: .15s;
    }

    .faq-title:hover:after {
        opacity: .1;
    }

    .faq-arrow {
        position: absolute !important;
        height: 18px;
        width: 18px;
        border-bottom: 2px solid white;
        top: calc(50% - 14px);
        right: 15px;
        display: block;
        transition: .3s;
    }

    .faq-item.open .faq-arrow {
        /* transform: rotate(-135deg); */
        /* margin-top: 9px; */
        /* height: 0; */
    }

    .faq-arrow:after {
        content: "";
        height: 18px;
        width: 18px;
        border-left: 2px solid #fff;
        left: calc(50% - 1px);
        top: 50%;
        position: absolute;
        transition: 0.3s;
    }

    .faq-item.open .faq-arrow:after {
        height: 0;
    }


    /*********************/
    .glassy {
        box-shadow: 0 3px 6px rgba(0,0,0,0.16), 0 3px 6px rgba(0,0,0,0.23);
        position: relative;
        border-radius: 25px;
        animation-name:;
        box-shadow: 0 0 0 rgb(186 186 186), 0 0 0 #ffffff, -0.2rem 0 0.75rem 0 hsla(0, 0%, 0%, 0.3);
        transform: translate3d(0, 0, 0);
        animation-duration: 3s;
        animation-timing-function: ease-in-out;
        animation-iteration-count: infinite;
        overflow: hidden;
        transition: 0.8s;
    }

        .glassy:after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            box-shadow: 0px 0px 10px #cecece inset;
            border-radius: 25px;
            /*box-shadow: 0 0 5px #aaa inset;*/
        }


        .glassy:befor {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: linear-gradient(-80deg,rgb(255 255 255 / 15%) 25%,hsl(0deg 0% 100% / 63%), hsla(0,0%,100%,0.1) 25%);
            /* z-index:10; */
            transition: 0.3s;
            /* transform: translate3d(-50%,0,0); */
            top: 0;
            left: 0;
            width: 200%;
            height: 100%;
            animation-duration: 3s;
            animation-timing-function: ease-in-out;
            animation-iteration-count: infinite;
            transition: 1s;
        }

    .quote-img:hover .glassy:befor {
        transform: translate3d(-100%,0,0);
    }

    /*.glassy:hover {
    transform: skewX(-1deg) rotateY(-10deg);
    box-shadow: -0.1rem 0 0 hsl(0, 0%, 80%), 0 0 0 hsl(0, 0%, 100%), -0.3rem -0.1rem 1.5rem 0.3rem hsla(0, 0%, 0%, 0.3);
}*/

    .quote-bg {
        height: 100%;
        /*box-shadow: 0px 0px 13px #2b2b2bcf inset;*/
        /* box-shadow: 0px 0px 16px var(--gold) inset; */
        border-radius: 15px;
        position: relative;
        background: #fff;
    }

    /*.quote-style .col-lg-9:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;*/
    /* box-shadow: 0px 0px 10px #cecece inset; */
    /*background: #9d9d9d;*/
    /* background: #a4905de8; */
    /*transform: translate(0px, 9px) skew(0.2deg) scaleY(1.001);
    z-index: -1;
    border-radius: 15px 15px 6px 26px;
    box-shadow: 0 0 0 rgb(186 186 186), 0 0 0 #ffffff, -0.2rem 0 0.75rem 0 hsl(0deg 0% 0% / 20%);
}*/

    .about-section .quote-style .col-lg-9:before {
        border-radius: 15px 15px 29px 10px;
    }

    @keyframes rotate {
        0%, 100% {
            animation-timing-function: ease-in;
            box-shadow: 0 0 0 hsl(0, 0%, 80%), 0.1rem 0 0 hsl(0, 0%, 100%), -0.2rem 0 0.75rem 0 hsla(0, 0%, 0%, 0.3);
            transform: rotateY(-10deg);
        }

        25%, 75% {
            animation-timing-function: ease-out;
            box-shadow: 0 0 0 hsl(0, 0%, 80%), 0 0 0 hsl(0, 0%, 100%), -0.25rem -0.05rem 1rem 0.15rem hsla(0, 0%, 0%, 0.3);
            transform: rotateY(0deg);
        }

        50% {
            animation-timing-function: ease-in;
            box-shadow: -0.1rem 0 0 hsl(0, 0%, 80%), 0 0 0 hsl(0, 0%, 100%), -0.3rem -0.1rem 1.5rem 0.3rem hsla(0, 0%, 0%, 0.3);
            transform: rotateY(10deg);
        }
    }


    .about-item:before {
        content: '';
        position: absolute;
        top: -8px;
        left: 0;
        width: 100%;
        height: 100%;
        /* box-shadow: 0px 0px 10px #cecece inset; */
        background: #9d9d9d;
        /* background: #a4905de8; */
        transform: translate(0px, 9px) skew(0.5deg, 0deg) scaleY(1.001);
        z-index: 1;
        border-radius: 15px 23px 15px 32px;
        box-shadow: 0 0 0 rgb(186 186 186), 0 0 0 #ffffff, -0.2rem 0 0.75rem 0 hsl(0deg 0% 0% / 20%);
    }


    .about-bg-box {
        content: '';
        position: absolute;
        top: -18px;
        left: 0;
        width: 99%;
        height: 100%;
        /* box-shadow: 0px 0px 10px #cecece inset; */
        background: #fff;
        /* background: #a4905de8; */
        transform: translate(0px, 9px) skew(0.2deg) scaleY(1.001);
        z-index: 5;
        border-radius: 15px 15px 6px 26px;
        box-shadow: 0px 0px 13px #2b2b2bcf inset;
    }

    .about-item .row {
        position: relative;
        z-index: 10;
    }

    @media (max-width:991px) {
        .quote-txt-box .quote-text {
            box-shadow: 0px 0px 13px #2b2b2bcf inset;
        }

            .quote-txt-box .quote-text:before {
                content: '';
                position: absolute;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                /* box-shadow: 0px 0px 10px #cecece inset; */
                background: #9d9d9d;
                /* background: #a4905de8; */
                transform: translate(0px, 9px) skew(0.2deg) scaleY(1.001);
                z-index: -1;
                border-radius: 15px 15px 10px 26px;
                box-shadow: 0 0 0 rgb(186 186 186), 0 0 0 #ffffff, -0.2rem 0 0.75rem 0 hsl(0deg 0% 0% / 20%);
            }
    }


    /**********************/

    /* Enhanced 3D Effects */
    .about-list {
        perspective: 1200px;
        perspective-origin: center;
    }

    .about-item {
        position: relative;
        transform-style: preserve-3d;
        transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        margin-bottom: 50px;
        will-change: transform;
        backface-visibility: visible;
        /* overflow: hidden; */
    }

        .about-item:hover {
            transform: translateZ(60px) translateY(-15px) rotateX(3deg) scale(1.02);
        }

    .about-bg-box {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(145deg, #ffffff, #f0f0f0);
        border-radius: 25px;
        box-shadow: 8px 8px 20px rgba(0,0,0,0.15), 0px 0px 10px rgba(255,255,255,0.9), inset 2px 2px 4px rgba(255,255,255,0.8), inset -2px -2px 4px rgba(0,0,0,0.05);
        border: 1px solid rgba(255,255,255,0.8);
        transform: translateZ(-40px);
        transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        will-change: transform;
    }

    .about-item:hover .about-bg-box {
        transform: translateZ(-70px) scale(1.05);
        box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.2), -8px -8px 15px rgb(255 255 255 / 35%), inset 3px 3px 6px rgba(255, 255, 255, 1), inset -3px -3px 6px rgba(0, 0, 0, 0.08);
        background: linear-gradient(145deg, #ffffff, #f5f5f5);
    }

    .about-item .row {
        transform-style: preserve-3d;
        position: relative;
        z-index: 2;
    }

    .about-icon {
        transform: translateZ(60px);
        transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        filter: drop-shadow(0 15px 30px rgba(0,0,0,0.2));
        will-change: transform;
    }

    .about-item:hover .about-icon {
        transform: translateZ(110px) scale(1.2) rotateY(10deg);
        filter: drop-shadow(0 25px 50px rgba(0,0,0,0.3));
    }

    .about-icon img {
        transition: transform 0.6s ease-in-out;
    }

    .about-item:hover .about-icon img {
        transform: rotateY(180deg) scale(1.05);
    }

    .about-ttl {
        transform: translateZ(40px);
        transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        /*text-shadow: 2px 2px 4px rgba(0,0,0,0.1), 4px 4px 8px rgba(0,0,0,0.08), 6px 6px 12px rgba(0,0,0,0.05);*/
        position: relative;
        will-change: transform;
        font-weight: bold;
        letter-spacing: 0.5px;
    }

    .about-item:hover .about-ttl {
        transform: translateZ(60px) translateX(10px);
        /*text-shadow: 3px 3px 6px rgba(0,0,0,0.15), 6px 6px 12px rgba(0,0,0,0.1), 9px 9px 18px rgba(0,0,0,0.08), 12px 12px 24px rgba(0,0,0,0.05);*/
    }

    /* 3D text effect for title */
    /*.about-ttl::before {
    content: attr(data-text);
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    text-shadow: -1px -1px 0 rgba(0,0,0,0.05), -2px -2px 0 rgba(0,0,0,0.04), -3px -3px 0 rgba(0,0,0,0.03), -4px -4px 0 rgba(0,0,0,0.02), -5px -5px 10px rgba(0,0,0,0.1);
    transition: all 0.5s ease;
}
*/
    /*.about-item:hover .about-ttl::before {
    text-shadow: -1px -1px 0 rgba(0,0,0,0.08), -2px -2px 0 rgba(0,0,0,0.06), -3px -3px 0 rgba(0,0,0,0.05), -4px -4px 0 rgba(0,0,0,0.04), -5px -5px 0 rgba(0,0,0,0.03), -6px -6px 0 rgba(0,0,0,0.02), -7px -7px 15px rgba(0,0,0,0.15);
}*/

    .about-item ul {
        transform: translateZ(30px);
        transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        will-change: transform;
    }

    .about-item:hover ul {
        transform: translateZ(50px);
    }

    .about-item ul li {
        transition: all 0.4s ease;
        position: relative;
        padding-left: 5px;
    }

    .about-item:hover ul li {
        transform: translateX(10px);
    }

    .about-item ul li:nth-child(1) {
        transition-delay: 0.05s;
    }

    .about-item ul li:nth-child(2) {
        transition-delay: 0.1s;
    }

    .about-item ul li:nth-child(3) {
        transition-delay: 0.15s;
    }

    /* Subtle glow effect with neutral colors */
    .about-item::before {
        content: '';
        position: absolute;
        top: 0px;
        left: 0px;
        right: 0px;
        bottom: 0px;
        background: linear-gradient(145deg, rgba(255,255,255,0.3), rgba(200,200,200,0.2));
        border-radius: 25px;
        opacity: 0;
        z-index: -1;
        filter: blur(15px);
        /* transition: opacity 0.5s ease; */
    }

    .about-item:hover::before {
        /* opacity: 0.4; */
    }

    /* Light reflection effect */
    .about-item .row::after {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 50%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgb(165 147 103), transparent);
        transform: skewX(-20deg);
        transition: left 0.8s ease;
        z-index: 10;
        pointer-events: none;
        overflow: hidden;
    }

    .about-item:hover::after {
        left: 150%;
    }

    /* Floating animation
@keyframes floatAnimation {
    0%, 100% {
        transform: translateY(0px) translateZ(0px);
    }

    50% {
        transform: translateY(-15px) translateZ(20px);
    }
}

.about-item:nth-child(1) {
    animation: floatAnimation 5s ease-in-out infinite;
}

.about-item:nth-child(2) {
    animation: floatAnimation 5s ease-in-out infinite 1.7s;
}

.about-item:nth-child(3) {
    animation: floatAnimation 5s ease-in-out infinite 3.3s;
}
     */

    /* Particle effect background - neutral tones */
    .about-bg-box::before {
        content: '';
        position: absolute;
        width: 100%;
        height: 100%;
        background: radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.08) 0%, transparent 50%), radial-gradient(circle at 80% 70%, rgba(200, 200, 200, 0.06) 0%, transparent 50%), radial-gradient(circle at 40% 80%, rgba(230, 230, 230, 0.05) 0%, transparent 50%);
        opacity: 0;
        transition: opacity 0.5s ease;
        border-radius: 25px;
    }

    .about-item:hover .about-bg-box::before {
        opacity: 1;
    }


    /*Hayat - Spinner*/
    .loader img {
        min-width: 50px;
        width: 50px;
        height: 50px;
        animation: spinner 1.5s linear infinite;
    }

    @keyframes spinner {
        0% {
            transform: rotate(0deg);
        }

        100% {
            transform: rotate(360deg);
        }
    }

    .loader img {
        min-width: 40px;
        width: 40px;
        height: 40px;
        animation: spinner 1.5s linear infinite;
    }

    @keyframes spinner {
        0% {
            transform: rotate(0deg);
        }

        100% {
            transform: rotate(360deg);
        }
    }

    #LoadMore {
        display: flex;
        justify-content: center;
    }

        #LoadMore button {
            display: flex;
            justify-content: center;
            align-items: center;
        }

        #LoadMore span {
            margin-left: 10px;
        }

    /*Hayat - Honorees listing*/

    .item-date {
        display: flex;
        margin-bottom: var(--px-20);
        align-items: center;
    }

        .item-date span {
            color: #6c6559;
        }

    div#searchResultEmpty {
        color: #fff;
    }

    /* 404 Error Page Styles */
    .template404-container {
        height: calc(100vh - 500px);
        display: flex;
        justify-content: center;
        align-items: center;
        text-align: center;
        min-height: 500px;
    }

    .error-banner {
        height: 50vh;
    }

    .template404 h1 {
        font-family: sans-serif;
        font-weight: bold;
        color: var(--dark-gold);
        font-size: 95px;
        margin: 0;
        text-shadow: 0 0 44px #aeaeae
    }

    .template404 {
        width: 100%;
    }

        .template404 a {
            color: #fff;
            border-color: var(--gold);
            box-shadow: 0 2px 8px #3333337f;
            background-color: var(--dark-gold);
            text-transform: uppercase;
            font-size: var(--font-22);
            border-radius: 50px;
            padding: 6px 20px;
            position: relative;
        }

            .template404 a:before {
                position: absolute;
                inset: 0;
                width: 0;
                content: "";
                background: linear-gradient(45deg, var(--gold), var(--gold));
                transition: .5s;
                opacity: .3;
                border-radius: 50px;
            }

            .template404 a:hover:before {
                width: 100%;
                opacity: 1;
            }

        .template404 p {
            margin-bottom: 40px;
        }

        .template404 span {
            position: relative;
            z-index: 1;
        }

    .error-page {
        background-color: #fff;
    }

    /*  Search Section */
    @keyframes fadeInUp {
        from {
            transform: translate3d(0,40px,0)
        }

        to {
            transform: translate3d(0,0,0);
            opacity: 1
        }
    }

    .search-content h2 {
        transform: translateZ(40px);
        transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        position: relative;
        will-change: transform;
        font-weight: bold;
        letter-spacing: 0.5px;
        color: #fff;
        margin-bottom: var(--px-20);
    }

    span.search-text {
        color: #0F345E;
    }

    .search-url {
        color: #000;
    }

    .search-ttl {
        color: #A4905D;
    }


    .search-abstract {
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
        overflow: hidden;
    }

    .search-result.search-table:nth-child(even):hover {
        -ms-transform: scale(1.02);
        transform: scale(1.02);
        transition: 0.5s;
    }

    .search-result.search-table:nth-child(even) {
        background: #f1f1f1;
        border-left: 3px solid #A4905D;
    }

    .search-result:hover {
        background: #0F345E;
        -ms-transform: scale(1.02);
        transform: scale(1.02);
    }


    button.search-result-search-btn {
        color: white;
        padding: 10px 70px;
        font-size: 16px;
        border-radius: 30px;
        background-color: var(--dark-gold);
        font-weight: bold;
        color: var(--beige);
        background-size: 200% auto;
        -webkit-transition: 1s;
        -moz-transition: 1s;
        -ms-transition: 1s;
        transition: 1s;
        position: relative;
        border: 0;
    }


    .search-box {
        position: relative;
    }


    .search-result.search-table {
        padding: 0;
        display: flex;
        justify-content: space-between;
        background: #e1ddd2;
        transition: 0.5s;
    }

    .search-table-extra {
        color: #000000;
        display: flex;
        justify-content: center;
        align-items: center;
        text-align: center;
        width: 300px;
        border: 1px solid #ebebeb;
        font-size: 15px;
        border-bottom: 0;
        border-top: 0;
    }

    .msgEmpty {
        font-size: 20px;
        font-weight: 600;
        color: #fff;
        padding: 25px;
    }

    .search-table-info {
        padding: 20px 15px;
        width: calc(100% - 300px);
    }

    .search-result.search-table:first-child {
        border-top: 1px solid #ebebeb;
    }

    @media (max-width: 800px) {
        .search-result.search-table {
            display: block;
            padding: 20px 15px;
            margin: 20px 0px;
        }

        .search-table-extra {
            padding-top: 20px;
            width: 100%;
            text-align: inherit;
            display: block;
            font-weight: bold;
        }

        .search-table-info {
            padding: 0;
            width: 100%;
        }
    }

    .item-num {
        display: flex;
        align-items: center;
        color: #fff;
        margin: 20px 0;
    }

        .item-num span {
            color: black;
            padding: 7px 15px;
            border-radius: 90px;
            font-weight: bold;
            font-size: 18px;
            margin-left: 10px;
            background: #f1f1f1;
        }

    .search-box-inside-page {
        width: 100%;
        max-width: 700px;
        display: flex;
        box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.11);
        border: 1px solid rgba(0, 0, 0, 0.12);
        transition: 1s;
        border-radius: 90px;
        overflow: hidden;
        background: #fff;
        padding: 0;
        position: relative;
    }

    button.search-result-search-btn:before {
        position: absolute;
        inset: 0;
        width: 0;
        content: "";
        background: linear-gradient(45deg, var(--gold), var(--gold));
        transition: .5s;
        opacity: .3;
        border-radius: 30px;
    }

    .search-result:hover button.search-result-search-btn:before {
        width: 100%;
        opacity: 1;
    }

    button.search-result-search-btn span {
        position: relative;
    }


    /******** photo Gallery ********/


    .photo-img-box {
        transition: 0.3s;
        overflow: hidden;
        border-radius: 20px;
        position: relative;
        border-radius: 0;
        overflow: hidden;
        background-position: center;
        background-size: cover;
    }

    .photo-img {
        background-repeat: no-repeat;
        background-position: center;
        background-size: cover;
        border-radius: 0;
        padding-top: 70%;
        transition: 0.3s;
    }

    .photo-Item:hover .photo-img,
    .video-Item:hover .photo-img {
        transform: scale(1.1);
    }

    .video-Item {
        cursor: pointer;
    }

    .list-bg-hover {
        position: absolute;
        top: 0;
        left: 0;
        bottom: 0;
        right: 0;
        background: rgba(0,0,0,.4);
        color: #fff;
        fill: white;
        display: flex;
        justify-content: center;
        align-items: center;
        transition: .3s;
        opacity: 0;
        visibility: hidden
    }

    .list-bg-hover-content svg {
        width: 63px;
        transform: translateY(-35px);
        transition: .3s
    }

    .list-bg-hover-content span {
        font-size: 18px;
        font-weight: 500;
        display: block;
        margin-top: 21px;
        transform: translateY(35px);
        transition: .3s;
        font-weight: 500
    }

    .list-bg-hover-content {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        filter: drop-shadow(0 0 19px white);
    }

    .photo-Item:hover .list-bg-hover, .photo-Item:hover .list-bg-hover svg, .photo-Item:hover .list-bg-hover span,
    .video-Item:hover .list-bg-hover, .video-Item:hover .list-bg-hover svg, .video-Item:hover .list-bg-hover span {
        opacity: 1;
        visibility: visible;
        transform: inherit
    }

    .photo-ttl {
        padding: 15px 20px;
        /* text-align: center; */
    }

    .photo-Item, .video-Item {
        background: var(--white);
        background: #fff;
        display: block;
        border-radius: 15px;
        transition: 0.3s;
        height: 100%;
        overflow: hidden;
        border: 1px solid #857f75;
    }

    .photo-ttl h2 {
        margin: 0;
        color: var(--dark-gold);
        font-size: 22px;
    }

    .photo-Item:hover, .video-Item:hover {
        background: #fff;
        box-shadow: 0 0 10px 10px #cacaca;
        box-shadow: 0 20px 40px rgba(6,8,14,0.28), 0 10px 20px rgba(6,8,14,0.12);
        border-color: #857f75;
    }

    /***********  Contact Us ***********/

    .contact-icon {
        width: 60px;
        padding: 11px;
        background: #5e574b;
        border-radius: 10px;
        margin-bottom: var(--px-30);
        transition: 0.3s;
    }

    .contact-item {
        color: #fff;
    }

        .contact-item:hover .contact-icon {
            background: #4c4437;
        }

    .contact-footer {
        margin-top: var(--px-30);
    }

        .contact-footer a {
            color: var(--gold);
            transition: 0.3s;
        }

            .contact-footer a:hover {
                color: var(--black);
            }

    .contact-ttl {
        color: #fff;
        text-align: center;
        font-family: 'OpenSans-Medium';
        font-size: var(--font-40);
        /* font-size: 40px; */
    }

    /*Hayat*/
    .input-group {
        position: relative;
        display: flex;
        flex-wrap: wrap;
        align-items: stretch;
        width: 100%;
        overflow: hidden;
    }

    .input-group-text {
        display: flex;
        align-items: center;
        padding: 0;
        font-size: 1rem;
        font-weight: 400;
        line-height: 1.5;
        color: #212529;
        text-align: center;
        white-space: nowrap;
        border-radius: .375rem;
        background-color: white;
    }

    select#CountrySelect {
        border: none;
        height: 100%;
    }

    span.text-danger.field-validation-error {
        position: absolute;
        top: -20px;
        font-size: 14px;
        font-weight: 600;
        color: var(--beige) !important;
    }

    .form-floating > label {
        color: gray;
        padding: 0.7rem .75rem;
    }

    .swiper .videoAlbumsSwiper {
        width: 100%;
        height: 100%;
    }

    .videoAlbumsSwiper .swiper-slide {
        text-align: center;
        font-size: 18px;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
    }

        .videoAlbumsSwiper .swiper-slide img {
            display: block;
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .videoAlbumsSwiper .swiper-slide video {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

    .videoAlbumModel .modal-dialog {
        max-width: 670px !important;
    }

    .videoAlbumsSwiper iframe {
        min-height: 50vh;
        width: 100%;
        height: 90%;
    }

    .videoAlbumModel .modal-header {
        background-color: #A4905D;
        color: white;
    }

    .videoAlbumModel .swiper-button-next, .swiper-button-next {
        right: var(--swiper-navigation-sides-offset, -60px);
    }

    .videoAlbumModel .swiper-button-prev, .swiper-button-prev {
        left: var(--swiper-navigation-sides-offset, -60px);
    }

    .videoAlbumsSwiper p {
        margin-bottom: 0;
        margin-top: 16px;
    }



    .videoAlbumModel iframe {
        min-height: 37vh;
        width: 100%;
        height: 88%;
    }

    @media(max-width:786px) {
        .videoAlbumModel .swiper-button-next, .swiper-button-next {
            right: 100px;
            top: var(--swiper-navigation-top-offset, 110%);
        }

        .videoAlbumModel .swiper-button-prev, .swiper-button-prev {
            top: var(--swiper-navigation-top-offset, 110%);
            left: 100px;
        }
    }

    /*Nomination Pge*/

    #NomationFormHeader .header-wrap {
        background: var(--dark-gold);
    }


    .gradient-header {
        background: linear-gradient(90deg, #a89057 0%, #cdbf9c 35%, #efe9db 70%, #f7f4ee 100%);
    }


    .nominationPage .tabs-wrapper {
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 10px 0;
    }

    .nav-tabs {
        border-bottom: none;
        gap: 24px;
    }

    .nominationPage .nav-tabs .nav-link.active {
        font-weight: 700;
        color: #2a251f;
        position: relative;
        background: none;
    }

        .nominationPage .nav-tabs .nav-link.active::after {
            content: "";
            position: absolute;
            left: 50%;
            bottom: -10px;
            width: 100%;
            height: 2px;
            background-color: var(--black);
            transform: translateX(-50%);
        }

    .nominationPage .tab-content {
        padding: 16px 0;
    }


    .nominationPage ul li:before {
        display: none;
    }

    .nominationPage .nav-tabs .nav-link {
        font-size: var(--font-20);
        color: var(--black);
        font-weight: 500;
        border: none;
        background: transparent;
    }

    .nominationPage ul li {
        margin-bottom: 0;
        /* width: 80px; */
        /* max-width: 14%; */
        padding: 0 30px;
    }

    .nominationPage .nav-tabs .nav-link:not(.nav-link.active):hover {
        font-weight: bold;
        color: var(--gold);
    }

    .page-wrap {
        padding: 12px 0 0;
    }

    .form-title {
        text-align: center;
        font-weight: 600;
        font-size: var(--font-20);
        /* margin: 40px 0; */
    }

    .form-ttl {
        background: var(--beige);
        padding: 13px 16px;
        border-left: 3px solid var(--dark-gold);
        border-radius: 5px;
        color: #36322c;
        background: linear-gradient(90deg, #dad0b6 0%, #cdbf9c 35%, #efe9db 70%, #f7f4ee 100%);
    }

    .form-row label {
        font-weight: 600;
        margin-bottom: 15px;
        font-size: 18px;
    }

    .nav.stepper li {
        max-width: 14%;
    }
    /* -------- Stepper as Tabs -------- */
    .stepper {
        display: flex;
        justify-content: center;
        /* margin: 12px 0 28px; */
    }

        .stepper .nav-link {
            position: relative;
            width: 34px;
            height: 34px;
            border-radius: 50%;
            border: 1px solid #cfcfcf !important;
            color: #666;
            background: #fff;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 0;
            /* margin: 0 40px; */
            margin: 0 calc();
            font-weight: 500;
            z-index: 5;
        }

            .stepper .nav-link.active {
                background: #a4894a !important;
                border-color: #a4894a !important;
                color: #fff !important;
            }

            .stepper .nav-link::after {
                content: "";
                position: absolute;
                top: 50%;
                top: calc(50% - 1px);
                /* right: -85px; */
                /* width: 83px; */
                left: calc(100% + 1px);
                width: 190%;
                height: 2px;
                background: #d7d7d7;
                /* transform: translateY(-50%); */
                /* top: calc(50% - 1px); */
            }

        .stepper .nav-item:last-child .nav-link::after {
            display: none;
        }

    .nextButton-app, .prevButton-app {
        color: black;
        padding: 9px;
        line-height: 30px;
        display: inline-block;
        font-size: 18px;
        background-color: #909090;
        border-radius: 8px;
        min-width: 170px;
        border: none;
        text-align: center;
        transition: 1s;
        cursor: pointer;
    }

    .save-next-prev-submit-buttons {
        justify-content: center;
        gap: 18px;
        margin-top: 22px;
        display: flex;
        flex-wrap: wrap;
    }

    .saveButton-app {
        color: black;
        padding: 7px;
        line-height: 30px;
        display: inline-block;
        font-size: 18px;
        background-color: #a3905f;
        border-radius: 8px;
        height: 48px;
        max-width: 170px;
        border: none;
        transition: 1s;
        width: 100%;
    }

    .submitButton-app {
        color: white;
        padding: 7px;
        line-height: 30px;
        display: inline-block;
        font-size: 18px;
        background-color: var(--black);
        border-radius: 8px;
        height: 48px;
        min-width: 170px;
        border: none;
        transition: 1s;
    }


    .nextButton-app:hover, .prevButton-app:hover {
        background-color: var(--dark-gold);
    }

.saveButton-app:hover {
    background-color: #6c6559;
}

    .submitButton-app:hover {
        background-color: #646262;
    }

    li.nav-item button:hover {
        transform: scale(1.2);
        background: #a8905b;
        box-shadow: 0 0 10px #f2c768;
        color: #fff;
        border-color: #a8905b !important;
    }

    /*Coming Soon message*/

.comingSoonMesage {
    background: linear-gradient(145deg, #ffffff, #f0f0f0);
    border-radius: 5px;
    border: 2px solid rgb(163 144 95);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 20px;
    min-height: 100px;
    display: flex;
    align-items: center;
}

    .comingSoonMesage p {
        margin: 0;
    }

    /*FAQ categrization*/

.faqCategorizeTitle {
    position: relative;
    padding-inline-start: 15px;
    line-height: 1.2;
    margin-bottom: 30px;
    background-color: rgba(0, 0, 0, 0);
    border: none;
    border-left: 5px solid #a29061;
    color: white;
    font-size: 25px;
}

ul.categorizeList {
    max-width: 95%;
}

li.faqCategorzeItem {
    border-bottom: 1px solid #cbcbcb;
    padding: 10px 0;
    margin-bottom: 0;
}

    li.faqCategorzeItem.active a {
        color: white;
        font-weight: bold;
    }

    li.faqCategorzeItem a {
        font-size: 18px;
        color: white;
        padding: 15px;
        width: 100%;
        text-decoration: none;
        transition: 0.5s;
    }

    li.faqCategorzeItem.active {
        background-color: #a3905f;
    }

    li.faqCategorzeItem a:not(li.faqCategorzeItem.active a):hover {
        color: #a3905f;
    }

ul li.faqCategorzeItem:before {
    display: none;
}

@media (max-width: 992px) {
    .faqCategorize-toggler {
        background-color: #E5E5E5;
        width: 100%;
        padding: 15px;
        justify-content: space-between;
        position: relative;
        position: relative;
        padding-inline-start: 15px;
        line-height: 1.2;
        border: none;
        border-right: 5px solid #a29061;
        color: black;
    }

        .faqCategorize-toggler:before {
            content: "";
            position: absolute;
            height: 13px;
            width: 13px;
            transform: rotate(45deg);
            border: 2px solid transparent;
            border-bottom-color: #a48332;
            border-right-color: #a48332;
            top: 18px;
            left: 24px;
            transition: .5s;
            -webkit-transition: all 0.5s ease;
            -o-transition: all 0.5s ease;
            transition: all 0.5s ease;
        }

    ul.categorizeList {
        padding-right: 6px;
        max-width: 100%;
        padding-left: 0;
    }

    .faqCategorzeContent ul.categorizeList {
        overflow: hidden;
        max-height: 0;
        transition: max-height 300ms ease;
    }

    .faqCategorize-toggler[aria-expanded="true"]::before {
        transform: rotate(223deg);
    }

    li.faqCategorzeItem a {
        font-size: 14px;
    }
}



/*Validation color*/
/*.validation-summary-errors li {
    color: white;
}
*/
.disabledbtn {
    opacity: 0.6;
    cursor: not-allowed;
}


/***** Start Nomination dashboard *****/
.deadline {
    background: #d1c7ae;
    padding: 25px;
    border-radius: 8px;
}

.head-top {
    font-size: var(--font-30);
}

.start-box {
    background: #e9e8e6;
    padding: var(--px-40);
}

.process-block {
    background: #d1c7ae;
    padding: var(--px-60) 0;
}

.step-num {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
    position: relative;
}

    .step-num h5 {
        background: #efe9e1;
        padding: 10px;
        border-radius: 50%;
        border: 10px solid #fff;
        aspect-ratio: 1;
        width: 105px;
        display: flex;
        justify-content: center;
        align-items: center;
        position: relative;
        z-index: 3;
    }
/*     .step-num:after {
        content: "";
        position: absolute;
        top: calc(50% - 1px);
        left: 50%;
        width: 190%;
        height: 2px;
        background: #fff;
    }*/

/*.last-col .step-num:after {
    display: none;
}*/

.start-img {
    display: flex;
    align-items: center;
    justify-content: center;
}

    .start-img img {
        width: 100%;
        max-width: 270px;
    }

.start-info-col {
    display: flex;
    align-items: center;
}
@media (min-width: 992px) {
    .step-list > div:not(:last-child) .step-num:after {
        content: "";
        position: absolute;
        top: calc(50% - 1px);
        left: 50%;
        width: 100%;
        height: 2px;
        background: #fff;
    }
}

.startpage-footerTxt {
    display: flex;
    align-items: center;
}

/*Nomination form*/

.form-check .form-check-input {
    border: 1px solid #a99259;
}
