* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Kefa", sans-serif;
}

@font-face {
    font-family: 'Kefa';
    src: url("/font/Kefa.ttc") format('truetype');
}

@font-face {
    font-family: 'GE Thameen';
    src: url('/font/GE Thameen Book.ttf') format('opentype');
    font-weight: normal;
}

.eng-list {
    text-align: center;
}

.quicklinks a.contact-menu {
    padding: 12px 0px;
}

/* table style start here */
.page-meta .col-md-2 {
    position: relative;
    padding-left: 2%;
}

.page-meta {
    width: 100%;
    float: left;
    margin: 5% 0 2%;
}

    .page-meta .col-md-2:before {
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        bottom: 0;
        width: 0.25rem;
        background: #65aeb7;
    }

    .page-meta .val-lbl p {
        margin-bottom: 1px;
    }

        .page-meta .val-lbl p.val {
            font-size: 17px;
            color: #65aeb7;
            line-height: 1.8em;
            font-weight: 900;
        }

    .page-meta .val-lbl p {
        margin-bottom: 0px;
        line-height: 1.5em;
        color: #000;
    }

        .page-meta .val-lbl p.lbl {
            font-size: 14px;
        }


@media (min-width: 1200px) and (max-width: 1400px) {
    .page-meta .val-lbl p.val {
        font-size: 15px;
    }
    .right-popup {
        width: 60% !important;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .page-meta .val-lbl p.val {
        font-size: 12px;
    }

    .page-meta .val-lbl p.lbl {
        font-size: 10px;
    }
    .right-popup {
        width: 60% !important;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .page-meta .val-lbl p.val {
        font-size: 9px;
    }

    .page-meta .val-lbl p.lbl {
        font-size: 8px;
    }
    .right-popup {
        width: 60% !important;
    }
}

@media (max-width: 768px) {
    .page-meta .col-md-2 {
        width: 33.333%;
        margin-bottom: 6%;
    }

    .page-meta .val-lbl p.lbl {
        font-size: 14px;
    }

    .page-meta .val-lbl p.val {
        font-size: 15px;
    }

    .container.wrap-stucture {
        margin-top: 7%;
    }
    .right-popup {
        width: 85% !important;
    }
}

@media (max-width: 480px) {
    .page-meta .val-lbl p.lbl {
        font-size: 11px;
    }

    .page-meta .val-lbl p.val {
        font-size: 12px;
    }

    .page-meta .col-md-2 {
        width: 50%;
        margin-bottom: 6%;
        padding-left: 4%;
    }
    .right-popup{
        width:95% !important;
    }
}
/* table style end here */

.overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1000;
}

/* Popup container styles */
.popup-container {
    display: none;
    position: fixed;
    top: 58%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    z-index: 1001;
}

/* Close button styles */
.close-button {
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
    font-size: 25px;
    color: #888;
}

.popup-content {
    max-width: 100%;
    max-height: 70vh;
    overflow: auto;
    padding: 20px;
}


    .popup-content img {
        width: 100%;
        height: auto;
    }

.pop-up-head {
    color: #00000; /* Header text color */
    padding: 10px 0;
    text-align: center;
    font-weight: bold;
    width: 100%;
}

.button-group {
    display: inline-block;
}

    .button-group button {
        background-color: #ccc;
        border: none;
        color: #fff;
        margin-right: 17px;
        cursor: pointer;
        height: 25px;
        width: 33px;
        border-radius: 7px;
        position: relative;
        font-weight: 600;
    }

        .button-group button::after {
            content: attr(data-tooltip);
            position: absolute;
            top: -25px; /* Change 'bottom' to 'top' and adjust the value as needed */
            left: 50%;
            transform: translateX(-50%);
            white-space: nowrap;
            padding: 5px;
            background-color: rgba(0, 0, 0, 0.8);
            color: #fff;
            border-radius: 4px;
            font-size: 10px;
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.3s ease;
        }

        .button-group button:hover::after {
            opacity: 1;
        }


        .button-group button.active {
            background-color: #000;
        }

#preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #fff;
    z-index: 9999999;
}

.loader {
    top: 50%;
    width: 50px;
    height: 50px;
    border-radius: 100%;
    position: relative;
    margin: 0 auto;
}

#loader-1:before, #loader-1:after {
    content: "";
    position: absolute;
    top: -10px;
    left: -10px;
    width: 100%;
    height: 100%;
    border-radius: 100%;
    border: 2px solid transparent;
    border-top-color: #65aeb7;
}

#loader-1:before {
    z-index: 100;
    animation: spin 1s infinite;
}

#loader-1:after {
    border: 2px solid #f2f2f2;
}

@keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

/*animate*/

.animate__animated.animate__fadeInUp {
    --animate-duration: 2s;
}

.reveal {
    position: relative;
    transform: translateY(150px);
    opacity: 0;
    transition: 1s all ease;
}

    .reveal.active {
        transform: translateY(0);
        opacity: 1;
    }

.second-nav-links:hover {
    color: #65aeb7;
    border-bottom: 4px solid #65aeb7;
}

/*button*/
/* Sweep To Right */
.hvr-sweep-to-right {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
    position: relative;
    -webkit-transition-property: color;
    transition-property: color;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
}

    .hvr-sweep-to-right:before {
        content: "";
        position: absolute;
        z-index: -1;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        border-radius: 5%;
        background: #212529;
        -webkit-transform: scaleX(0);
        transform: scaleX(0);
        -webkit-transform-origin: 0 50%;
        transform-origin: 0 50%;
        -webkit-transition-property: transform;
        transition-property: transform;
        -webkit-transition-duration: 0.3s;
        transition-duration: 0.3s;
        -webkit-transition-timing-function: ease-out;
        transition-timing-function: ease-out;
    }

    .hvr-sweep-to-right:hover,
    .hvr-sweep-to-right:focus,
    .hvr-sweep-to-right:active {
        color: white;
    }

        .hvr-sweep-to-right:hover:before,
        .hvr-sweep-to-right:focus:before,
        .hvr-sweep-to-right:active:before {
            -webkit-transform: scaleX(1);
            transform: scaleX(1);
        }

.btn-outline {
    border: solid #fff 1px;
    color: #fff;
}

.btn-outline-2 {
    border: solid black 1px;
    color: #000;
}
/*child menu*/
.child-menu {
    display: none;
    list-style: none;
}

    .child-menu a {
        text-decoration: none;
        color: #fff;
    }

.fund-child li {
    display: none;
}

.portfolio-child li {
    display: none;
}

.discretionary-child li {
    display: none;
}

.non-discretionary-child li {
    display: none;
}

.investment-manage-child {
    list-style: none;
    display: none;
}

.alternative-invest-child {
    list-style: none;
    display: none;
}

.consulting-service-child {
    list-style: none;
    display: none;
}
/*child menu end*/
/*animate*/

header {
    transition: all 0.3s ease-in-out;
}

.navbar-toggler {
    background-color: #fff;
}

.navbar-nav > li {
    padding-left: 5px;
    padding-right: 5px;
}

.navbar-nav > li {
    margin-left: 5px;
    margin-right: 20px;
}

.mega-menu {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    /* Set your desired styling for the mega menu */
    padding: 10px;
    width: 100%;
    height: 300px;
}

.mega-drop {
    background-color: #fff;
    width: 100%;
    height: 300px;
    padding: 2%;
}

.mega-drop-2 {
    background-color: #fff;
    width: 100%;
    min-height: 450px;
    padding: 4%;
}

.mega-heading {
    font-weight: bold;
    font-size: 16px;
    color: #000;
    list-style: none;
}

.portfoliomenu {
    margin-top: -17%;
}

/*sub icons right*/
.sub-cion-1 {
    position: relative !important;
    color: #000;
}

.sub-cion-2 {
    position: relative !important;
    color: #000;
    left: 25px !important;
}

.sub-cion-3 {
    position: relative !important;
    color: #000;
    left: 10px !important;
}

.sub-cion-4 {
    position: relative !important;
    color: #000;
    left: 122px !important;
}

.sub-cion-35 {
    position: relative !important;
    color: #000;
    left: 80px !important;
}

.sub-cion-mena {
    position: relative !important;
    color: #000;
    left: 80px !important;
}

.sub-cion-inter {
    position: relative !important;
    color: #000;
    left: 37px !important;
}

.invest-cion-1 {
    position: relative !important;
    color: #000;
    left: 20px !important;
}

.invest-cion-2 {
    position: relative !important;
    color: #000;
    left: 28px !important;
}

.invest-cion-3 {
    position: relative !important;
    color: #000;
    left: 60px !important;
}

.invest-cion-5 {
    position: relative !important;
    color: #000;
    left: 70px !important;
}

.invest-cion-6 {
    position: relative !important;
    color: #000;
    left: 115px !important;
}

.invest-cion-7 {
    position: relative !important;
    color: #000;
    left: 55px !important;
}

.invest-cion-8 {
    position: relative !important;
    color: #000;
    left: 55px !important;
}

/*sub icons right end*/

.mega-links li {
    list-style: none;
    position: relative;
    color: #000;
}

    .mega-links li a {
        color: #000;
    }

/* .mega-links li a::after {
    content: "";
    border-bottom: dashed 1px;
    position: absolute;
    bottom: 0;
    left: 0;
    height: 1px;
    width: 60%;
  } */

/*video*/
#player {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

/*mega headings*/

.fundmanage {
    display: none;
}

.portfoliomanage {
    display: none;
}

.internationalinvest {
    display: none;
}

.Advisory {
    display: none;
}

.investmanage {
    display: none;
}

.alternativeinvest {
    display: none;
}

.consultingservice {
    display: none;
}

.internationalmenu {
    margin-top: -33%;
}

.Advisorymenu {
    margin-top: -52%;
}



.hidden {
    display: none;
}

.submenu {
    display: none;
    position: absolute;
    top: 0;
    left: 100%;
    width: 100%;
}

    .submenu ul li {
        padding-top: 3%;
        margin-bottom: 10%;
    }

        .submenu ul li a {
            text-decoration: none;
        }

.sub-submenu {
    display: none;
    position: absolute;
    top: 0;
    left: 100%;
    width: 100%;
}

.submenu ul li:hover .sub-submenu {
    display: block;
}

.sub-submenu ul li {
    padding-top: 3%;
    margin-bottom: 10%;
}

    .sub-submenu ul li a {
        text-decoration: none;
    }

.nav-link:hover ~ .submenu,
.submenu:hover {
    display: block;
}

/*mega headings end*/

.nav-item:hover .mega-menu {
    display: block;
    animation: fade-in 0.5s ease;
}

@keyframes fade-in {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/*fixed top*/
.fixed-top {
    background-color: rgba(0, 0, 0, 0.50);
}

/*social icons header fixed */
.social i {
    margin-right: 20px;
}

.quicklinks a {
    color: #fff;
    text-decoration: none;
    margin-right: 20px;
}

/* Sticky top header */
.sticky-top {
    position: sticky;
    top: 0;
}



/*contact submenu*/


#contactSubmenu {
    position: absolute;
    z-index: 5;
    background-color: rgb(255, 255, 255);
    padding-top: 10px;
}



    #contactSubmenu ul li {
        list-style: none;
        margin-bottom: 5px;
    }

        #contactSubmenu ul li:hover a {
            color: #65aeb7;
        }

        #contactSubmenu ul li a {
            color: #000;
            text-decoration: none;
        }

#contactSubmenu {
    display: none;
    width: 15%
}

    .contact-menu:hover + #contactSubmenu,
    #contactSubmenu:hover {
        display: block;
    }

/*contact submenu end*/
/* Right align links in desktop view */
@media (min-width: 992px) {
    .navbar-nav {
        margin-left: auto;
    }

    .nav-dupe {
        margin-right: 356px;
    }

    .mob-quick {
        text-align: left;
    }
}

@media (max-width: 768px) {

    .mob-social-links {
        text-align: center;
    }

    .popup-container {
        height: 471px;
        width: 354px;
    }
}

/*header section*/

#myNavbar {
    transition: background-color 0.5s ease;
}

.navbar.white-bg {
    background-color: #fff !important;
}

    .navbar.white-bg .navbar-brand img {
        /* Change your logo here */
        filter: invert(1);
    }

.header-white {
    background-color: white;
}

.navbar-brand {
    width: 250px;
}

.logo-header {
    width: 90%;
}

.banner {
    width: 100%;
    height: 100vh;
}

/*about*/
.aboutbanner {
    width: 100%;
    height: 30rem;
    background-image: url("/About/images/aboutbanner-big.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

/*.about-content {
    position: relative;
    top: 35vh;
}*/
/*about-end*/

.banner video {
    position: absolute;
    top: 0;
    left: 0;
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.banner .content {
    position: relative;
    max-width: 1200px;
    top: 35vh;
}

.content h1 {
    font-weight: bold;
    font-size: 60px;
    color: #fff;
}

.content button .fa-arrow-right-long {
    position: relative;
    top: 2px;
}

/*header section end */

.funds {
    min-height: 600px;
    background-color: #fff;
}

    .funds h2 {
        font-weight: 600;
        font-size: 40px;
        margin-top: 67px;
    }

    .funds p {
        font-weight: 600;
        font-size: 25;
    }

    .funds .para-funds {
        margin-top: 66px;
        font-weight: 400;
        line-height: 27px;
        font-size: 18px;
    }

.news-para {
    font-weight: 600;
    line-height: 27px;
    font-size: 18px;
}

.latest-news h2 {
    font-weight: 600;
    font-size: 40px;
}

.latest-news a {
    color: #000;
    font-weight: bold;
}

/*news */

.news-box {
    padding-top: 1%;
    padding-bottom: 1%;
    border-radius: 3%;
}

    .news-box:hover {
        background-color: #f3f3f3;
    }

/*news end*/

/*anouncements section*/

.btn-effect {
    position: relative;
    overflow: hidden;
}

    .btn-effect::after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 50%;
        width: 0;
        height: 2px;
        background-color: black;
        transition: all 0.3s ease-in-out;
        transform: translateX(-50%);
    }

    .btn-effect:hover::after {
        width: 100%;
        transition: all 0.3s ease-in-out;
    }

.announcement {
    color: #000;
}

    .announcement .date {
        margin-bottom: 5px;
        margin-top: 20px;
    }

    .announcement h5 {
        font-weight: bold;
        color: #000;
    }

/*footer*/
.footer-icons {
    display: inline-block;
    margin-right: 10px;
    width: 25px;
}

.fb-icon {
    display: inline-block;
}


.footer-border-bottom {
    border-bottom: 1px dashed rgba(217, 217, 217, 0.2);
}

.bold {
    font-weight: bold;
}

footer a {
    text-decoration: none;
}

.Privacy p {
    font-size: 14px;
    color: #fff;
}

.Privacy a {
    color: #fff;
    margin-left: 10px;
}

.social .animate {
    transition: all 0.2s ease-in-out;
}

    .social .animate:hover {
        transform: scale(1.5);
    }

.fa-map-marker-alt {
    transition: all 0.2s ease-in-out;
}

    .fa-map-marker-alt:hover {
        transform: scale(1.5);
    }

.fa-envelope {
    transition: all 0.2s ease-in-out;
}

    .fa-envelope:hover {
        transform: scale(1.5);
    }

.fa-headset {
    transition: all 0.2s ease-in-out;
}

    .fa-headset:hover {
        transform: scale(1.5);
    }

.text-scale {
    display: inline-block;
    transition: transform 0.3s ease-in-out;
}

    .text-scale:hover {
        transform: scale(1.1);
    }

.link-border {
    text-decoration: none;
    color: #000;
}

    .link-border:hover {
        color: #65aeb7;
    }

/*media query home page*/

@media (min-width: 480px) {
    .navbar-brand {
        width: 18% !important;
    }
}

@media (max-width: 480px) {
    .banner {
        height: 650px;
    }

    .cool-head {
        text-align: center;
    }

    .banner video {
        height: 650px;
    }

    .mobile-top-nav-links {
        margin-top: 5%;
    }

    .content h1 {
        font-size: 32px;
    }

    .latest-news {
        margin-top: 20%;
    }

    .footer-border {
        border: none;
        border-right: 1px dashed rgba(217, 217, 217, 0.2);
    }

    .footer-logo {
        width: 60%;
        margin-left: auto;
        margin-right: auto;
    }

    .contact-mobile {
        margin-top: 10%;
        padding: 10%;
    }

    .navigation-mobile {
        padding: 10%;
    }

    .navigation-mobile-2 {
        margin-top: 5%;
    }

    .mobile-app img {
        width: 40%;
        margin-bottom: 5%;
    }

    .navbar-collapse {
        background-color: #000000d0;
    }

    .mega-menu {
        display: none !important;
    }

    .nav-item:hover .child-menu {
        display: block;
    }

    .fund-parent {
        padding-bottom: 13px;
    }

    .portfolio-parent {
        padding-bottom: 8px;
    }

    .fund-parent:hover .fund-child li {
        display: block;
    }

    .portfolio-parent:hover .portfolio-child li {
        display: block;
    }

    .discretionary-child {
        display: none;
    }

    .discretionary-parent:hover .discretionary-child {
        display: block;
    }

    .non-discretionary-child {
        display: none;
    }

    .non-discretionary-parent:hover .non-discretionary-child {
        display: block;
    }

    .investment-manage-parent:hover .investment-manage-child {
        display: block;
    }

    .alternative-invest-parent:hover .alternative-invest-child {
        display: block;
    }

    .consulting-service-parent:hover .consulting-service-child {
        display: block;
    }

    .footer-details {
        text-align: center;
    }

    .mob-div {
        text-align: center;
    }
}

@media (min-width: 768px) {
    .anno-div {
        padding-left: 286px;
    }

    .fact-div {
        padding-left: 140px;
    }

    .annoar-div {
        padding-right: 286px;
    }

    .factar-div {
        padding-right: 140px;
    }
}

@media (max-width: 480px) {

    .mob-an {
        margin-top: 25px;
    }

    .mob-fa {
        margin-top: 35px;
    }
}

@media (min-width: 769px) {
    .leff {
        right: 62%;
    }

    .reff {
        left: 61%;
    }
}

@media (max-width: 480px) {
    .ar-sub {
        left: 4%;
        right: 44%;
    }

    .en-sub {
        left: 33%;
        right: 19%;
    }
}


.contentbanner {
    width: 100%;
    height: 30rem;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

body {
    direction: ltr;
    text-align: left;
}

.arabic-text {
    font-family: "GE Thameen", sans-serif;
}

.key-box {
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.portbox {
    border-right: 1px solid rgba(217, 217, 217, 1);
}

.invest-img {
    right: 100px;
}

.investment {
    padding-left: 30px;
}

.tradingtask {
    margin-top: 10%;
}

.list-item-wrapper {
    left: 25px;
}

.red-line {
    left: 40px;
}

.vision {
    right: 50px;
}

.member-head {
    left: 13px;
}

.head-border {
    padding-left: 30px;
}

    .head-border:before {
        left: 0;
    }

.whatwe-box {
    border-right: 1px solid rgba(255, 255, 255, 0.3);
}

#loader1 {
    left: -11%;
}

#loader {
    left: -11%;
}

.iborder {
    border: none;
}

.sam {
    border: 1px solid #ccc; /* Add a border for the shadow box */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Add a shadow effect */
    padding: 20px;
}

.marked-list.loan-calcul {
    font-size: 15px;
    width: 100%;
    border: 1px dashed #ccc;
    padding: 25px;
    background: #818181;
    margin-top: 5px;
    color: #ffffff;
}

.loan-calc {
    display: inline-block;
    width: 100%;
    background: #f5f5f5;
    padding: 30px;
    box-shadow: 0px 4px 20px 0px #cecece;
    border-radius: 4px;
}

    .loan-calc label {
        width: 100%;
        display: inline-block;
    }

    .loan-calc input, .loan-calc select {
        width: 100%;
        padding: 0 10px;
        height: 45px;
        border: 1px solid #e0e0e0;
        background: #fff;
    }

    .loan-calc .btn {
        background: #657d9c;
        background: -moz-linear-gradient(45deg, #7c92ae 0%, #7c92ae 100%);
        background: -webkit-linear-gradient(45deg, #657d9c 0%,#7c92ae 100%);
        background: linear-gradient(45deg, #657d9c 0%,#7c92ae 100%);
        filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#657d9c', endColorstr='#7c92ae',GradientType=1 );
        padding: 12px 35px;
        border: none;
        font-size: 16px;
    }

.hide {
    display: none !important;
}

.marked-list li:before {
    width: 21px;
    height: 14px;
    content: "";
    background: url(../spritesheet.png) no-repeat;
    background-position: -90px -5px;
    left: 0;
    top: 3px;
    position: absolute;
}

.marked-list li {
    color: #ffffff;
    position: relative;
    padding-left: 30px;
}

.marked-list.loan-calcul span {
    float: right;
}

.error-message {
    color: red;
}
.noline{
    text-decoration:none;
    font-size:larger;
    color:#000 !important;
}