
.card-thumbnail img {
    aspect-ratio: 370 / 200;
}

.home-slider {
    display: block;
    height: 810px;
}

.clear {
    clear: both;
    display: block;
    font-size: 0px;
    height: 0px;
    line-height: 0;
    width: 100%;
    overflow: hidden;
}

::selection {
    background: #123356;
    color: #fff;
    text-shadow: none;
}

::-moz-selection {
    background: #123356; /* Firefox */
    color: #fff;
    text-shadow: none;
}

::-webkit-selection {
    background: #123356; /* Safari */
    color: #fff;
    text-shadow: none;
}

:active,
:focus {
    outline: none !important;
}

img {
    max-width: 100%;
}
/* ----------------------------------------------------------------
Typography
-----------------------------------------------------------------*/
@font-face {
    font-family: 'NotoKufiArabic-Regular';
    src: url('../fonts/NotoKufiArabic-Regular.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;
}

@font-face {
    font-family: 'NotoKufiArabic-Bold';
    src: url('../fonts/NotoKufiArabic-Bold.ttf');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

html, body {
    scroll-behavior: smooth;
}

body {
    line-height: 1.5;
    color: var(--blue);
    font-family: "NotoKufiArabic-Regular", sans-serif !important;
    /* font-family: "Verdana"!important; */
    font-size: 18px;
    padding-top: 123px;
    font-weight: 600;
    direction: rtl;
    text-align: right;
}

a {
    text-decoration: none !important;
    color: var(--link-clr);
}

    a:hover {
        color: var(--blue-light);
    }

h1, h2, h3, h4, h5, h6 {
    color: var(--font-blue);
    font-family: "NotoKufiArabic-Bold", sans-serif;
    line-height: 1.5;
}

h3 {
    font-size: var(--font-24);
}

section {
    overflow: hidden;
}
/* ----------------------------------------------------------------
Helper Classes + margins + paddings + Animations
-----------------------------------------------------------------*/

:root {
    --blue: #123356;
    --blue-light: #3b89b0;
    --lightgray: #f2f2f2;
    /* --lightgray: #ededed; */
    --gold: #d0bd79;
    --gold-dark: #957627;
    --gray: #696969;
    --link-clr: #393939;
    --gray: #6b6b6b;
    /* --gray: #707074; */
    --px-80: 80px;
    --px-50: 50px;
    --px-30: 30px;
    --font-24: 24px;
    --font-26: 26px;
}

.blue-clr {
    color: var(--blue);
}

.blue-bgclr {
    background-color: var(--blue);
}

.font-blue-clr {
    color: var(--font-blue);
}
/* .gray-clr {
  color: var(--gray);
} */
.grayLight-bg {
    background-color: var(--lightgray);
}

.py-80 {
    padding-top: var(--px-80);
    padding-bottom: var(--px-80);
}

.mb-80 {
    margin-bottom: var(--px-80);
}

.py-50 {
    padding-top: var(--px-50);
    padding-bottom: var(--px-50);
}

.mb-30 {
    margin-bottom: var(--px-30);
}

.mt-30 {
    margin-top: var(--px-30);
}

.mb-50 {
    margin-bottom: 50px;
}

.mt-50 {
    margin-top: 50px;
}

/*
p.mb-30 {
  color: #5f5f62;
} */

/* --------------------------------------
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);
}

.wrapper {
    min-height: 3500px;
}

.cbiq-container {
    width: 100%;
    padding-right: 20px;
    padding-left: 20px;
    margin: auto;
    margin-right: auto;
    margin-left: auto;
}

@media (min-width: 1200px) {
    .container {
        max-width: 1170px;
    }

    .cbiq-container {
        max-width: 90%;
    }
}

.cbiq-btn,
.cbiq-btn:visited,
.cbiq-btn:focus,
input.cbiq-btn,
input.cbiq-btn:visited,
input.cbiq-btn:focus {
    font-weight: 600;
    color: var(--gold);
    text-align: right;
    display: inline-block;
    min-width: 180px;
    height: 46px;
    padding: 10px 20px;
    background-color: var(--blue);
    text-transform: capitalize;
    border: 1px solid var(--green);
    -webkit-box-shadow: none;
    box-shadow: none;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    border-radius: 50px;
}

    .cbiq-btn:hover,
    input.cbiq-btn:hover {
        color: var(--blue);
        /* background: #fff; */
    }

.section-ttl {
    font-size: 36px;
    font-weight: 400;
    margin-bottom: var(--px-50);
    /* padding-bottom: 15px; */
    position: relative;
    font-family: 'GothamHTF-Bold';
}

    .section-ttl:after {
        content: '';
        width: 80px;
        height: 4px;
        -webkit-border-radius: 4px;
        border-radius: 4px;
        background-color: var(--green);
        /* position: absolute; */
        /* left: 0; */
        /* bottom: 0; */
        display: block;
        /* margin: auto; */
        margin-top: 20px;
    }

.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:992px) {
    .section-ttl {
        font-size: 30px;
    }

    :root {
        --px-80: 50px;
        /* --px-50:30px;
  --px-30:20px; */
    }
}

@media screen and (max-width:768px) {
    .section-ttl {
        font-size: 24px;
    }

    :root {
        --font-24: 20px;
    }
}
/* ----------------------------------------------------------------
Header
-----------------------------------------------------------------*/
.topbar {
    /* background-color: #001489;*/
    position: relative;
    z-index: 200;
    line-height: 30px;
    padding-top: 10px;
    padding-bottom: 10px;
}

.topbar-content {
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-content: center;
}

    .topbar-content a {
        color: #fff;
    }

        .topbar-content a:hover {
            color: #98999b;
        }

#header {
    /* height: 100px; */
    /* transition: height 0.4s ease, opacity 0.3s ease; */
    /* -webkit-transition: height 0.4s ease, opacity 0.3s ease; */
    -o-transition: height 0.4s ease, opacity 0.3s ease;
    -moz-transition: height 0.4s ease, opacity 0.3s ease;
    -ms-transition: height 0.4s ease, opacity 0.3s ease;
    position: absolute;
    background: #fff;
    z-index: 200;
    width: 100%;
    font-size: 16px;
    font-weight: 600;
    box-shadow: 0 0 6px rgb(51 51 51 / 50%);
    top: 0;
}

.stretched #wrapper {
    width: 100%;
    max-width: 100%;
}

.top-header {
    /* padding: 5px 0; */
}

    .top-header .container {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

#logo img, .mob-logo-menu img {
    /*    height: 85px;*/
    height: auto;
    transition: 0.3s;
    aspect-ratio: 4.09;
    width: 350px;
}

@media (max-width: 565px) {
    #logo img {
        width: auto;
        height: 70px;
    }

    body {
        padding-top: 105px;
    }
}

#header-wrap {
}

.topRight-header {
    display: flex;
    align-items: center;
    font-size: 14px;
    font-weight: 600;
    justify-content: flex-end;
}

    .topRight-header .footer-social a {
        background: transparent;
        margin: 0;
    }

    .topRight-header address {
        margin-bottom: 0;
        margin-right: 20px;
    }

    .topRight-header .contact {
        margin-bottom: 0;
    }

.footer-social a:hover {
    background: rgb(51 51 51 / 80%);
}

.header-content {
    /* display: flex; */
    /* position: relative; */
    /* align-items: center; */
}

#logo {
    /* padding-right: 30px; */
    /* margin-right: 30px; */
    /* border-right: 1px solid rgba(0, 0, 0, 0.1); */
    /* padding-bottom: 30px; */
}

.header-text {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
}

.topRight-content {
    display: flex;
    margin-right: 0;
    align-items: center;
}

    .topRight-content a {
        display: flex;
        align-items: center;
    }

    .topRight-content img {
        width: 20px;
        /* margin: 5px; */
    }


.topRight-header a {
    display: flex;
}

.topHeaderContact {
    display: flex;
    /* margin-right: 0; */
    align-items: center;
    height: 100%;
}

.topRight-header img, .topRight-header svg {
    width: 23px;
    max-height: 23px;
    margin-left: 10px;
    transition: 0.3s;
}

.langBtn {
    background: #2f6d8c;
    background: #0f345e;
    padding: 7px 12px;
    /* margin-left: 10px; */
}
    .langBtn span {
        color: #d0bc80;
        font-family: 'NotoKufiArabic-Bold';
        font-weight: 200;
    }

    .langBtn:hover img {
        transform: scale(1.3);
    }

.topRight-header a {
    color: var(--gray);
    padding: 8px 8px;
    position: relative;
    overflow: hidden;
    height: 100%;
}

.topHeaderContact a:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(0deg, #cec0a0, #f6f3e7 50%);
    transform: translateY(-100%);
    z-index: 1;
    transition: .3s
}

.topHeaderContact a > * {
    z-index: 2
}

.topHeaderContact a:hover:before {
    transform: inherit
}

.topHeaderContact a:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    background: var(--gold);
    height: 4px;
    width: 0;
    transition: .5s;
    z-index: 10;
}

.topHeaderContact a:hover:after {
    width: 100%;
}


a.langBtn img {
    margin: 0;
    margin-right: 5px;
}
/*
#primary-menu ul>li li a:after {
    position: absolute;
    content: "";
    width: 0px;
    height: 100%;

    top: 0;
    left: 0px;
    transition: 0.3s;
    z-index:10;
}

#primary-menu ul>li li a:hover:after {
    width: 100%;
}
*/
#primary-menu ul > li.submenu .drop-menu li > a {
    /* border-left: 4px solid transparent; */
}

#primary-menu ul > li.submenu ul li > a:hover {
    /* border-color: #937632; */
}

.arrow-down {
    width: 0px;
    height: 0px;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 10px solid var(--gold);
    margin-right: 8px;
}



li.subItemOf-submenu.active {
    /*background: linear-gradient(0deg, #f6f3e7, #cec0a0 50%, #f6f3e7 );*/
    pointer-events: none;
    border-radius: 3px;
    /* background: linear-gradient(0deg, #cec0a0,#f6f3e7,#cec0a0 );*/
    /*color: var(--gray);*/
}

    li.subItemOf-submenu.active a {
        color: #94762d !important;
        color: var(--gold-dark) !important;
    }
/*- Menu -*/

@media only screen and (min-width: 1200px) {
    li.submenu.active {
        background: linear-gradient(0deg, #cec0a0, #f6f3e7 50%);
        border-radius: 5px 5px 0 0;
    }

    #primary-menu {
        /* margin-left: auto; */
        display: flex;
        background-color: rgba(255, 255, 255, 0.5);
        /* padding-right: 30px; */
        margin-right: auto;
        margin-bottom: 0;
    }

        #primary-menu ul {
            list-style: none;
            margin: 0;
            display: flex;
            padding: 0;
        }

    .drop-menu ul {
        flex-direction: column
    }

    #primary-menu ul > li > a {
        display: block;
        padding: 15px 8px;
        color: var(--blue);
        /* text-transform: uppercase; */
        /* -webkit-transition: margin 0.4s ease, padding 0.4s ease; */
        -o-transition: margin 0.4s ease, padding 0.4s ease;
        /* transition: margin 0.4s ease, padding 0.4s ease; */
        display: flex;
        align-items: center;
        position: relative;
        font-size: 15px;
    }

        #primary-menu ul > li > a div {
            position: relative;
        }
    /*#primary-menu ul>li>a {
   background: url(../images/menu-seperate.png); 
    position: relative;
    background-repeat: no-repeat;
    background-position-x: right;
    background-position-y: center;
}

#primary-menu ul>li.active>a {
    color: var(--blue);
}

.menu-btn {
    padding: 10px 0px;
    margin-left: auto;
}

.menu-btn>button,
.menu-btn>button:visited,
.menu-btn>button:focus{
    padding: 10px 20px;
    width: auto;
    min-width: 150px;
}*/
    #primary-menu ul > li {
        position: relative;
    }

    a.submenu-txt {
        overflow: hidden;
    }

        a.submenu-txt:before {
            position: absolute;
            top: 0;
            content: "";
            width: 100%;
            height: 100%;
            background: #f6f3e7;
            background: linear-gradient(0deg, #cec0a0, #f6f3e7 50%);
            transform: translateY(100%);
            transition: 0.3s;
            left: 0;
            right: 0;
            z-index: 0;
            border-radius: 5px 5px 0 0;
        }

    .submenu:hover:not(.active) a.submenu-txt:before {
        transform: initial;
    }
    /*#primary-menu ul>li.active:before,
#primary-menu ul>li:hover:before{
  position: absolute;
  top: 0;
  content: "";
  width: 100%;
  height: 100%;
  background: var(--gold);
   left: calc(50% - 20%); 
}
#primary-menu ul>li>ul>li:hover:before{
  display: none;
}*/
    #primary-menu ul > li li {
        /* border-bottom:1px solid #9E9E9E; */
        position: relative;
    }

    #primary-menu ul li.submenu > .drop-menu {
        display: block;
    }

    #primary-menu ul > li.submenu {
        position: relative;
        margin-top: 0;
    }

        #primary-menu ul > li.submenu .drop-menu {
            /* background: #f8f5eb; */
            background: hsl(0deg 0% 100% / 95%);
            /* border: 1px solid #6c757d4a; */
            border-top: 3px solid #94762d;
            box-shadow: 0px 13px 16px 4px rgba(0, 0, 0, 0.09);
            width: 230px;
            position: absolute;
            display: none !important;
            margin: 0;
            padding: 10px;
        }

        #primary-menu ul > li.submenu .mega-menu {
            width: 625px;
            padding: 10px;
        }

    .drop-menu.mega-menu ul {
        flex-direction: column;
    }

    #primary-menu ul > li.submenu .drop-menu li > a {
        padding: 10px 20px;
        font-size: 16px;
        font-weight: 600;
        /* color: #666; */
        /* border: 0; */
        line-height: 1.2;
        /* font-family: "Lato", sans-serif; */
        -webkit-transition: all 0.2s ease-in-out;
        -o-transition: all 0.2s ease-in-out;
        transition: all 0.2s ease-in-out;
        text-transform: none;
        position: relative;
        /* display: flex; */
        /* align-items: center; */
        /* flex-direction: column; */
        padding-left: 10px;
    }

    #primary-menu ul > li.submenu:hover .drop-menu {
        display: block !important;
        -webkit-animation-duration: 0.5s;
        animation-duration: 0.5s;
        -webkit-animation-fill-mode: both;
        animation-fill-mode: both;
        animation-name: fadeIn, fadeInBottom;
    }

    #primary-menu ul > li.submenu ul li:hover > a {
        background-color: #f9f9f9;
        /* padding-left: 18px; */
        color: var(--blue);
    }

    #primary-menu ul > li.submenu .mega-menu {
        left: 0;
    }

    #primary-menu ul > li.submenu:first-child .mega-menu {
        right: 0;
    }

    .mob-logo-menu {
        display: none;
    }

    .long-arrow {
        position: sticky;
        margin-right: 10px;
        width: 10px;
        height: 10px;
        border-top: 2px solid #d0bd80;
        border-left: 2px solid #d0bd80;
    }

        .long-arrow::after {
            content: "";
            display: block;
            width: 2px;
            height: 16px;
            background-color: #d0bd80;
            transform: rotate(-45deg) translate(5px, 2px);
            left: 0;
            top: 0;
        }

    .long-arrow {
        transform: rotate(135deg);
    }

    #primary-menu ul > li.submenu ul li:hover > a .long-arrow {
        border-color: #94762d;
    }

        #primary-menu ul > li.submenu ul li:hover > a .long-arrow::after {
            background: #94762d;
        }

    .dot-list {
        position: absolute !important;
        right: 2px;
        top: 15px;
        background: var(--gold);
        width: 9px;
        height: 9px;
        border-radius: 50%;
        transition: 0.6s ease;
    }

    li.subItemOf-submenu:hover {
    }

        li.subItemOf-submenu:hover .dot-list {
            background: radial-gradient(#937632 30%, transparent );
            transform: scale(1.5);
        }

    .drop-menu {
        padding: 10px;
    }
}

@media only screen and (min-width: 1350px) {
    #primary-menu ul > li > a {
        padding-left: 16px;
        padding-right: 16px;
        font-size: 16px;
    }
}

@media only screen and (max-width:1199px) {
    .mobile-menue-open {
        overflow: hidden;
    }

    .mob-logo-menu {
        text-align: center;
        display: block;
        margin: auto;
        margin-bottom: 30px;
        max-width: 230px;
    }

        .mob-logo-menu img {
            margin: auto;
            height: auto;
            aspect-ratio: 4.09; /*??*/
        }

    .mobile-menue-style {
        /* background: rgb(0 0 0 / 30%);
            position: fixed;
            top: 0;
            right: 0;
            bottom: 0;
            left: 0; */
    }

    #primary-menu-trigger {
        cursor: pointer;
        position: relative;
        display: flex;
        flex-direction: column;
        width: 40px;
        height: 30px;
        justify-content: space-between;
        padding: 4px;
    }

    .hamburger-icon {
        /* width: 100%; */
        background: var(--blue);
        height: 2px;
        display: inline-block;
        margin-bottom: 1px;
        right: 0;
    }

    .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;
    }

    .mobile-menue-style .mobile-overlay {
        opacity: 1;
        visibility: visible;
    }

    .mobile-menu {
        background: #fff;
        position: fixed;
        left: -400px;
        top: 0;
        bottom: 0;
        padding-top: 60px;
        width: 400px;
        max-width: 100%;
        overflow-y: scroll;
        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 {
            left: 0;
        }

        .mobile-menu ul {
            list-style: none;
            padding: 0;
        }

            .mobile-menu ul li a {
                /* border-top: 1px solid #efefef;*/
                padding: 15px;
                display: block;
                /* position: relative; */
                /* cursor: default; */
                font-size: 16px;
            }

                .mobile-menu ul li a.submenu-txt {
                    margin-left: 50px;
                }

            .mobile-menu ul li:first-child a {
                border-top: 0;
            }

            .mobile-menu ul li:last-child a {
                /* border-bottom: 1px solid #efefef; */
            }

        .mobile-menu .drop-menu li {
            /* margin-right: 30px;*/
        }

    .drop-menu.mega-menu .row > * {
        padding: 0;
    }

    li.submenu .drop-menu {
        /* height: 0; */
        display: none;
    }

    .menu-btn {
        text-align: center;
        padding: 10px 30px;
    }

    .mobile-menu ul li.submenu {
        /*  padding-right: 30px;
            padding-left: 30px;*/
        position: relative;
        border-bottom: 1px solid #efefef;
    }

        .mobile-menu ul li.submenu:before {
            /* content: ""; */
            width: 30px;
            height: 30px;
            position: absolute;
            right: 30px;
            bottom: 15px;
            background: #333;
            cursor: pointer;
        }

    .mobile-menu .toggle-menu-children {
        position: absolute;
        left: 30px;
        top: 20px;
        margin-top: 10px;
        -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        transform: translateY(-50%);
        width: 16px;
        height: 16px;
        display: flex;
        cursor: pointer;
        padding: 10px;
        align-content: center;
        justify-content: center;
    }

        .mobile-menu .toggle-menu-children:before,
        .mobile-menu .toggle-menu-children:after {
            content: '';
            position: absolute;
            background-color: #252525;
        }

        .mobile-menu .toggle-menu-children:before {
            width: 1px;
            height: 90%;
            left: calc(50% - 0px);
            top: 8%;
            -webkit-transition: 0.5s;
            transition: 0.5s;
        }

    .mobile-menu li.open .toggle-menu-children:before {
        height: 0;
    }

    .mobile-menu .toggle-menu-children:after {
        height: 1px;
        width: 90%;
        top: calc(50% - 0px);
        left: 5%;
        -webkit-transition: 0.5s;
        transition: 0.5s;
    }

    .mobile-menu ul > li.submenu.active {
        color: var(--blue);
        background: var(--gold);
    }

    .mobile-menu ul li.submenu.active .subItemOf-submenu {
        background: #f9f7ef;
        /* border-right: 5px solid rgb(105 105 105 / 30%); */
    }

    .mobile-menu ul > li.active > .toggle-menu-children:after {
        background-color: var(--blue);
    }

    .mobile-menu ul > li > .drop-menu > li {
        padding: 0 0 0 15px;
    }

    .mobile-menu ul > li > .drop-menu li a {
        /*   padding: 10px;*/
        border-top: 0;
        font-size: 14px;
        font-weight: 600;
    }

    .mobile-menu ul > li > ul > li a:hover {
        background: #efefef;
    }

    .close-mobile-panel {
        width: 30px;
        height: 30px;
        display: block;
        position: absolute;
        margin-bottom: 25px;
        top: 12px;
        left: 12px;
    }

        .close-mobile-panel:before {
            content: "";
            width: 2px;
            height: 100%;
            position: absolute;
            right: 14px;
            top: 0;
            left: 0;
            background-color: #393939;
            -webkit-transform: rotate(45deg);
            -ms-transform: rotate(45deg);
            transform: rotate(45deg);
        }

        .close-mobile-panel:after {
            content: '';
            width: 2px;
            height: 100%;
            position: absolute;
            right: 14px;
            top: 0;
            background-color: #393939;
            -webkit-transform: rotate(-45deg);
            -ms-transform: rotate(-45deg);
            transform: rotate(-45deg);
        }

    .header-text {
        align-items: center;
    }
    /*
.mobile-menu ul li.submenu.open ul{
    display:block;
  height:auto;
} */
    .arrow-down {
        display: none;
    }

    li.subItemOf-submenu.active {
        /*background: linear-gradient(0deg, #f6f3e7, #cec0a0 50%, #f6f3e7 );*/
    }

    .mobile-menu .drop-menu.active li.subItemOf-submenu, .mobile-menu li.submenu.open .drop-menu .subItemOf-submenu {
        border-right: 5px solid rgb(105 105 105 / 30%);
    }

        .mobile-menu .drop-menu.active li.subItemOf-submenu:hover, .mobile-menu li.submenu.open .drop-menu .subItemOf-submenu:hover {
            border-color: #e2ca72 !important;
        }

        .mobile-menu .drop-menu.active li.subItemOf-submenu.active {
            /*background: linear-gradient(0deg, #f6f3e7, #cec0a0 50%, #f6f3e7 );*/
            color: #937632 !important;
            border-color: #e2ca72 !important;
        }

    #primary-menu li.subItemOf-submenu:hover a {
        color: #94762d;
        /* color: #f4da7b; */
        border-left-color: #e2ca72 !important;
    }

    .drop-menu.mega-menu .row {
        margin: 0;
    }
}

@media only screen and (max-width:767px) {
    .topRight-content a:not(.langBtn) span {
        display: none;
    }
}













#top-search {
    margin-top: 36px;
}

a#top-search-trigger {
    padding: 10px 5px;
}

#top-search form input {
    box-shadow: none;
    /* pointer-events: none; */
    /* border-radius: 0; */
    border: 0;
    outline: 0 !important;
    font-size: 32px;
    /* padding: 10px 80px 10px 0; */
    height: calc(100% - 1px);
    color: #333;
    font-weight: 700;
    margin-top: 0 !important;
    letter-spacing: 2px;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: #fff;
    padding: 10px 80px 10px 40px;
}
/* sticky menu */
@media only screen and (min-width:1200px) {
    .sticky-header .bottom-header {
        background: #fff;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 300;
        box-shadow: 0 0 4px 4px #33333340;
    }

    .sticky-header #primary-menu {
        background: transparent;
    }

        .sticky-header #primary-menu ul > li.active > a,
        .sticky-header #primary-menu ul > li > a:hover {
            /* color: #98999b; */
        }

    .sticky-header .menu-btn > button {
        color: var(--green);
        background: #fff;
    }

        .sticky-header .menu-btn > button:hover {
            color: #fff;
            background: var(--green);
        }

    .sticky-header #logo img {
        width: 280px;
        margin-top: 10px;
    }
}

@media (max-width:1199px) {
    .sticky-header .bottom-header {
        background: #fff;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 20;
        box-shadow: 0 2px 4px #33333380;
        transition: 0.2s;
    }

    .topRight-header > address, .topRight-header > .socials {
        display: none;
    }
}
/* ----------------------------------------------------------------
Slider
-----------------------------------------------------------------*/

/* Swiper */
.swiper-wrapper {
    /* position: relative; */
    /* width: 100%; */
    /* height: 100%; */
    /* z-index: 1; */
    /* display: flex; */
    /* transition-property: transform; */
    /* transition-timing-function: var(--swiper-wrapper-transition-timing-function, initial); */
    /* box-sizing: content-box; */
    /* height: 550px; */
}


.swiper {
    width: 100%;
    height: 500px;
}

@media (max-width:1199px) {
    .mySwiper {
        height: 500px;
    }
}

@media (max-width:767px) {
    .mySwiper {
        height: 500px;
        height: calc(400px + 5vh);
    }
}

.swiper-slide {
    position: relative;
    /* text-align: center; */
    /* font-size: 26px; */
    /* background: #fff; */
    /* display: flex; */
    /* justify-content: center; */
    /* align-items: center; */
    /* background-size: cover; */
}

.swiper-slide-img {
    position: absolute;
    width: 100%;
    height: 100%;
    background-position: center;
    background-size: cover;
    /* transform: scaleX(-1); */
}

.mySwiper .swiper-slide-img:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(to left, hsl(211deg 65% 20% / 95%), transparent 40%);
    color: var(--blue);
}

.swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.swiper.mySwiper .swiper-pagination {
    bottom: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.swiper.mySwiper .swiper-pagination-bullet {
    background: #fff;
}

.swiper.mySwiper .swiper-pagination-bullet-active {
    background: #cfbc80;
}

.swiper.mySwiper .swiper-pagination:before {
    content: "";
    /* background: #fff; */
    top: 0;
    left: 0;
    width: 100px;
    height: 1px;
    margin-right: 20px;
    overflow: scroll;
    opacity: 0.5;
}

.swiper.mySwiper .swiper-pagination:after {
    content: "";
    opacity: 0.5;
    width: 100px;
    height: 1px;
    margin-left: 20px;
    overflow: scroll;
}
/* Grid Swiper */

.services {
    background: #efefef;
    min-height: 908px;
}

.swiper.GridSwiper {
    height: 750px;
    padding: 50px 30px;
    padding-bottom: 70px;
}

.grid-slide {
    border-radius: 20px;
    border-bottom-left-radius: 0;
    background-color: white;
    transition: background-image 0.5s ease-in-out, opacity 0.5s ease-in-out;
    transition: 0.5s;
    position: relative;
    /* min-height: 310px; */
}

    .grid-slide:hover {
        background-image: url(/images/home/BG.jpg);
        transform-origin: center;
        transform: scale(1.03) !important;
        box-shadow: 0 0 10px 5px rgb(51 51 51 / 30%);
        border-bottom-left-radius: 0;
    }

        .grid-slide:hover .info-ttl,
        .grid-slide:hover .info-abstract {
            color: #fff;
        }

.info-box {
    width: 100%;
    height: 100%;
    /* text-align: left; */
}

img.info-img {
    display: block;
    /* width: 32%; */
    height: 100%;
    object-fit: cover;
    width: auto;
    height: 80px;
}

.info-desc {
    /* display: -webkit-box; */
    /* -webkit-line-clamp: 3; */
    /* -webkit-box-orient: vertical; */
    /* overflow: hidden; */
    /* text-overflow: ellipsis; */
    direction: rtl;
    text-align: right;
}

.info-ttl {
    color: #0F345E;
    margin-block: 10px;
    font-size: 20px;
    font-weight: 600;
}

.info-abstract {
    color: black;
    font-size: 18px;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    padding-left: 20px;
}


.grid-slide:hover .info-image .hover-hide {
    display: block;
    transition: display 0.5s ease;
}

.grid-slide:hover .info-image .hover-show {
    display: none;
    transition: display 0.5s ease;
}

.grid-slide:not(:hover) .info-image .hover-hide {
    display: none;
}

.grid-slide:not(:hover) .info-image .hover-show {
    display: block;
}

.swiper-pagination-bullet {
    background: #cfbc80;
    opacity: 1;
    width: 18px;
    height: 18px;
}

.swiper-pagination-bullet-active {
    background: #3d88ae;
}

.swiper-horizontal > .swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal, .swiper-pagination-custom, .swiper-pagination-fraction {
    /* bottom: -6px; */
    /* top: 100%; */
}

.grid-arrow {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 14px;
    padding-right: 16px;
    background: #4088ad;
    transition: 0.3s;
}

.long-arrow-grid {
    display: block;
    margin-left: -2px;
    width: 13px;
    height: 13px;
    border-bottom: 2px solid #fff;
    border-right: 2px solid #fff;
    transition: 0.3s;
}

    .long-arrow-grid::after {
        content: "";
        display: block;
        width: 2px;
        height: 20px;
        background-color: #fff;
        transform: rotate(-45deg) translate(6px, -2px);
        position: absolute;
        left: 0;
        top: 0;
        /* margin-top: 1px; */
        transition: 0.3s;
    }

.long-arrow-grid {
    transform: rotate(135deg);
}


.info-box a {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
    padding: 30px 20px;
    /* min-height: 310px; */
}

.grid-slide:hover .long-arrow-grid {
    border-color: #4088ad;
}

    .grid-slide:hover .long-arrow-grid::after {
        background: #4088ad;
    }

.grid-slide:hover .grid-arrow {
    background: #fff;
}

.servicesListing {
    background: #f7f7f7;
}

.service-box .grid-slide {
    box-shadow: 0 0 10px rgb(51 51 51 / 26%);
    border-bottom-left-radius: 0;
    height: 100%;
}

.info-image {
    height: 80px;
}

    .info-image svg {
        height: 100%;
    }

/* Vidhula changes   */
/*
.swiper.GridSwiper {
    direction: ltr !important;   
    text-align: left !important;  
}*/
/*.info-image {
    direction: rtl;
}
*/
/*------*/

/*second swiper*/
.SecondSwiper {
    height: auto;
    padding-bottom: 50px;
}

@media (max-width:768px) {
    .swiper.GridSwiper {
        padding: 40px 20px;
    }

    .news-list-home #newsListingContainer {
        background: #e6e6e6;
    }

    #articleListingContainer {
        background: url(/MediaManager/Media/Home/bg1.jpg);
    }
}
/*
@media (min-width:992px) {
    .SecondSwiper {
        padding-bottom: 50px;
    }
}
*/
.Section-title {
    margin: 60px 50px 25px 50px;
    text-align: center;
    font-size: 30px;
    font-weight: bold;
    color: #0F345E;
}

@media (min-width:1500px) {
    .info-ttl {
        font-size: 24px;
    }

    .info-abstract {
        color: black;
        font-size: 20px;
        -webkit-line-clamp: 2;
    }

    .Section-title {
        font-size: 40px;
    }
}
 
@keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes fadeInTop {
    0% {
        transform: translateY(-50%);
        -webkit-transform: translateY(-50%);
        -moz-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        -o-transform: translateY(-50%);
    }

    100% {
        transform: initial;
        -webkit-transform: initial;
        -moz-transform: initial;
        -ms-transform: initial;
        -o-transform: initial;
    }
}

@keyframes fadeInLeft {
    0% {
        transform: translateX(-150px);
        -webkit-transform: translateX(-150px);
        -moz-transform: translateX(-150px);
        -ms-transform: translateX(-150px);
        -o-transform: translateX(-150px);
    }

    100% {
        transform: initial;
        -webkit-transform: initial;
        -moz-transform: initial;
        -ms-transform: initial;
        -o-transform: initial;
    }
}

@keyframes fadeInRight {
    0% {
        transform: translateX(150px);
        -webkit-transform: translateX(150px);
        -moz-transform: translateX(150px);
        -ms-transform: translateX(150px);
        -o-transform: translateX(150px);
    }

    100% {
        transform: initial;
        -webkit-transform: initial;
        -moz-transform: initial;
        -ms-transform: initial;
        -o-transform: initial;
    }
}

@keyframes fadeInBottom {
    0% {
        transform: translateY(15px);
        -webkit-transform: translateY(15px);
        -moz-transform: translateY(15px);
        -ms-transform: translateY(15px);
        -o-transform: translateY(15px);
    }

    100% {
        transform: initial;
        -webkit-transform: initial;
        -moz-transform: initial;
        -ms-transform: initial;
        -o-transform: initial;
    }
}



/*  .carousel-caption*/
/* Slider content -Z*/

.slider-content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    text-align: right;
    /* font-family: "Raleway", sans-serif; */
}

    .slider-content h1 {
        font-size: 50px;
        max-width: 600px;
        padding: 0 20px;
        font-weight: bold;
        animation-name: slide;
        animation-duration: 3s;
        animation-fill-mode: forwards;
        opacity: 0;
        color: #fff;
        text-shadow: 0 4px 5px rgb(0 0 0 / 35%);
    }

@keyframes slide {
    0% {
        opacity: 0;
        transform: translate(100px,0px);
    }

    100% {
        opacity: 1;
        transform: translate(0px,0px);
    }
}

.slider-content h2 {
    font-size: 55px;
    font-weight: bold;
    animation-name: slide;
    animation-duration: 3s;
    animation-fill-mode: forwards;
    animation-delay: 0.5s;
    opacity: 0;
}

.readMoreButton {
    margin-top: 40px;
    padding: 0 20px;
    animation-name: slideUp;
    animation-duration: 3s;
    animation-fill-mode: forwards;
}

@keyframes slideUp {
    0% {
        opacity: 0;
        transform: translate(0px,20px);
    }

    100% {
        opacity: 1;
        transform: translate(0px,0px);
    }
}

.readMoreButton a,
.readMoreButton button {
    padding: 6px 20px 6px 50px;
    transition: .3s;
    background-size: 200% auto;
    border: none;
    background-image: linear-gradient(to right, #D1BD7D 0, #D1BD7D 51%, #0F345E 100%);
    text-decoration: none;
    position: relative;
    border-radius: 20px;
    font-size: 15px;
    text-decoration: none;
    color: #0F345E;
    animation-delay: 0.15s;
    transition: .3s;
    -webkit-transition: 1s;
    -moz-transition: 1s;
    -ms-transition: 1s;
    transition: 1s;
}

    .readMoreButton a::before,
    .readMoreButton button::before{
        content: '';
        background-image: url(../images/home/Arrow2.svg);
        position: absolute;
        width: 22px;
        height: 22px;
        left: 10px;
        background-repeat: no-repeat;
        bottom: 8px;
        -webkit-transition: 1s;
        -moz-transition: 1s;
        -ms-transition: 1s;
        transition: 1s;
        transform: rotate(180deg);
    }

    .readMoreButton a:hover,
    .readMoreButton button:hover {
        background-position: right center;
        color: #fff;
        text-decoration: none;
        transition: .3s;
        -webkit-transition: 1s;
        -moz-transition: 1s;
        -ms-transition: 1s;
        transition: 1s;
    }


@media (max-width: 991px) {
    .slider-content h1 {
        font-size: 45px;
    }
    /*
    .carousel-caption h2 {
        font-size: 40px;
    }*/

    .readMoreButton {
        margin-top: 20px;
    }

        .readMoreButton a {
            font-size: 12px;
        }

            .readMoreButton a::before {
                width: 15px;
                height: 15px;
            }
}

@media (max-width: 767px) {
    .slider-content h1 {
        font-size: 38px;
    }
}

@media (max-width: 500px) {
    .slider-content h1 {
        font-size: 30px;
    }
    .swiper-pagination-bullet {
        width: 22px;
        height: 22px;
    }

}

.footer {
    line-height: 60px;
    background: #0f345e;
    padding: 20px 15px;
    font-size: 16px;
    font-weight: bold;
}

.footer-container {
    display: flex;
    /* padding: 0 50px; */
    margin: auto;
    /* font-size: 18px; */
    color: white;
}

.footer-items {
    display: flex;
    justify-content: right;
}

.f-item {
    margin-inline: 10px;
    color: white;
}

    .f-item:hover {
        color: #D1BD7D;
    }

.Rights {
    text-align: left;
}

    .Rights a {
        color: var(--gold);
        color: #bead6e;
        font-weight: 500;
    }

        .Rights a:hover {
            color: var(--blue-light);
        }

/*Home - Explore Section*/
.Explore-Section {
    margin: 30px 0;
}

.Explore-Section-top {
    margin: 50px;
    text-align: center;
}

    .Explore-Section-top h4 {
        font-size: 45px;
        font-weight: bold;
        color: #0F345E;
    }

    .Explore-Section-top p {
        font-size: 40px;
        font-weight: bold;
        color: #D1BD7D;
    }

.exploreImage {
    position: relative;
    height: 100%;
}

.ex-exploreImage {
    min-height: 480px;
    height: 100%;
    background-position: center;
    background-size: cover;
}

.dark {
    background: #0f345e;
    display: flex;
    align-items: center;
}

.light {
    background: #e6e6e6;
    display: flex;
    align-items: center;
}

.ex-exploreDetails:hover {
    text-decoration: none;
}

.ex-exploreDetails {
    display: block;
    text-align: right;
    padding: 35px 20px;
}

.dark > .ex-exploreDetails h3, .dark > .ex-exploreDetails h2 {
    font-size: 30px;
    font-weight: bold;
    color: #ffffff;
    -webkit-transition: 1s;
    -moz-transition: 1s;
    -ms-transition: 1s;
    transition: 1s;
    border: 0;
    margin: 0;
}

.dark > .ex-exploreDetails p,
.dark > .ex-exploreDetails .info-abstract {
    margin-top: 20px;
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
}

.ex-exploreDetails > .dark-readMoreButton {
    margin-top: 40px;
    color: #0F345E;
    padding: 10px 20px 10px 50px;
    height: 46px;
    display: inline-block;
    font-size: 16px;
    border-radius: 50px;
    background-image: linear-gradient(to right, #D1BD7D 0, #D1BD7D 51%, #0F345E 100%);
    background-size: 200% auto;
    background-position: left;
    transition: .5s;
    -webkit-transition: 1s;
    -moz-transition: 1s;
    -ms-transition: 1s;
    transition: 1s;
    text-decoration: none;
    font-weight: bold;
    position: relative;
    border: none;
    margin-bottom: 20px;
    margin-left: 10px;
    min-width: 180px;
}

.dark-readMoreButton::before {
    content: '';
    background-image: url(../images/home/Arrow2.svg);
    position: absolute;
    width: 27px;
    height: 27px;
    left: 10px;
    background-repeat: no-repeat;
    bottom: 10px;
    -webkit-transition: 1s;
    -moz-transition: 1s;
    -ms-transition: 1s;
    transition: 1s;
    transform: rotate(180deg);
}

.light > .ex-exploreDetails h3, .light > .ex-exploreDetails h2 {
    font-size: 20px;
    font-weight: bold;
    color: #0F345E;
    -webkit-transition: 1s;
    -moz-transition: 1s;
    -ms-transition: 1s;
    transition: 1s;
    border: 0;
    margin: 0;
    line-height: 1.3;
}

.light > .ex-exploreDetails p,
.light > .ex-exploreDetails .info-abstract {
    margin-top: 25px;
    color: #0F345E;
    /*        font-size: 18px;*/
    font-weight: 600;
}

@media(max-width:575px) {
    .ex-exploreImage {
        min-height: 350px;
    }
}

@media(min-width:500px) {
    .light > .ex-exploreDetails h3, .light > .ex-exploreDetails h2 {
        font-size: 25px;
    }
}

@media(min-width:992px) {
    .light > .ex-exploreDetails h3, .light > .ex-exploreDetails h2 {
        font-size: 30px;
    }

    .ex-exploreDetails {
        /*padding: 40px;*/
    }
}

@media(min-width:1200px) {
    .ex-exploreDetails {
        /*padding: 80px;*/
    }

    .dark > .ex-exploreDetails h3, .dark > .ex-exploreDetails h2 {
        font-size: 35px;
    }

    .dark > .ex-exploreDetails p {
        font-size: 18px;
    }
}

@media(min-width:1500px) {
    .ex-exploreDetails {
        /*padding: 112px;*/
    }

    .dark > .ex-exploreDetails h3, .dark > .ex-exploreDetails h2,
    .light > .ex-exploreDetails h3, .light > .ex-exploreDetails h2 {
        font-size: 40px;
    }

    .dark > .ex-exploreDetails p,
    .light > .ex-exploreDetails p {
        font-size: 20px;
    }
}

.light-readMoreButton::before {
    content: '';
    background-image: url(../images/home/Arrow2-gold.svg);
    position: absolute;
    width: 22px;
    height: 22px;
    right: 10px;
    background-repeat: no-repeat;
    bottom: 8px;
    -webkit-transition: 1s;
    -moz-transition: 1s;
    -ms-transition: 1s;
    transition: 1s;
}

.light > .ex-exploreDetails > .light-readMoreButton {
    margin-top: 40px;
    color: #D1BD7D;
    padding: 7px 50px 7px 20px;
    font-size: 16px;
    border-radius: 20px;
    background-image: linear-gradient(to right, #0F345E 0, #0F345E 51%, #D1BD7D 100%);
    background-size: 200% auto;
    -webkit-transition: 1s;
    -moz-transition: 1s;
    -ms-transition: 1s;
    transition: 1s;
    text-decoration: none;
    font-weight: bold;
    position: relative;
    border: none;
}

.light:hover .ex-exploreDetails h3 {
    /*color: #D1BD7D;*/
    transform: translateX(5px);
    -webkit-transition: 1s;
    -moz-transition: 1s;
    -ms-transition: 1s;
    transition: 1s;
}

.light:hover .light-readMoreButton::before {
    background-image: url(../images/home/Arrow2.svg);
}

.light:hover button.light-readMoreButton {
    background-position: right center;
    color: #fff;
    text-decoration: none;
}


.dark:hover .ex-exploreDetails h3, .dark:hover .ex-exploreDetails h2 {
    color: #fff;
    transform: translateX(5px);
    -webkit-transition: 1s;
    -moz-transition: 1s;
    -ms-transition: 1s;
    transition: 1s;
}

#newsListingContainer .dark:hover .ex-exploreDetails h3,
#newsListingContainer .dark:hover .ex-exploreDetails h2 {
    color: var(--blue);
}

.dark-readMoreButton:hover {
    background-position: right;
    color: #fff;
    text-decoration: none;
}

    .dark-readMoreButton:hover::before {
        background-image: url(../images/home/Arrow2-white.svg);
    }

/****** Phone Banking ******/
/*Home - Mobile Section*/
.mobileDetails {
    background-color: #9dc4d7;
    text-align: left;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding-top: 20px;
    padding-bottom: 30px;
    display: flex;
    justify-content: center;
    text-align: center;
    padding-left: 13%;
    padding-right: 5%;
}

    .mobileDetails span {
        color: #0F345E;
        font-size: 23px;
        font-weight: bold;
    }

    .mobileDetails h4 {
        color: #0F345E;
        font-size: 50px;
        font-weight: bold;
        margin: 20px 0;
        width: 100%;
    }

    .mobileDetails p {
        color: #0F345E;
        font-size: 25px;
        font-weight: bold;
        margin-top: 6rem;
        margin-bottom: 2rem;
        width: 100%;
        max-width: 330px;
    }

.mobileDetails-list {
    margin: 60px 20px;
    color: white;
    margin-right: 10%;
    margin-left: 5%;
}

@media(max-width:1300px) {
    .mobileDetails-list {
        margin: 50px 30px;
    }
}

@media(max-width:1199px) {
    .mobileDetails-list {
        margin: 50px 30px;
    }
}

.item-list p {
    position: relative;
    padding-right: 50px;
}

.item-list img {
    width: 30px;
    height: 30px;
    position: absolute;
    top: 0;
    right: 0;
}

.item-list span {
    /*        font-size: 18px;*/
    font-weight: 700;
    display: inline-block;
}

.item-list {
    width: 100%;
    max-width: 900px;
}

.store {
    display: flex;
    place-items: end;
    place-content: end;
}

img.mobile {
    height: 100%;
    width: 100%;

    max-height: 500px;
}

.appStore {
    margin-bottom: 25px;
}

.googlePay {
    margin-bottom: 25px;
}

    .googlePay img, .appStore img {
        position: relative;
        -webkit-transition: 1s;
        -moz-transition: 1s;
        -ms-transition: 1s;
        transition: 1s;
        aspect-ratio: 2.37;
        width: 170px;
        height: auto;
    }

        .googlePay img:hover, .appStore img:hover {
            opacity: 1;
            transform: scale(1.2);
        }

/* side menu */

.sticky-menu {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    z-index: 10;
    border-radius: 0 6px 6px 0;
    overflow: hidden;
}

.sticky-menu-x {
    display: flex;
    flex-direction: column;
}

.sticky-item {
    background: #ffffffa1;
    text-align: center;
    padding: 10px;
    /* border-top-right-radius: 9px; */
    /* border-bottom-right-radius: 9px; */
    position: relative;
    transition: .3s;
    /* border-top: groove; */
    width: 70px;
    height: 80px;
    text-align: -webkit-center;
    place-content: center;
    border-bottom: 1px solid #949494;
}

    .sticky-item:last-child {
        border: none;
    }

.sticky-bg {
    height: 30px;
}

.sticky-item:not(:last-child) {
    /* margin-bottom: 0px; */
}

.sticky-item:hover .-info {
    opacity: 1;
    transform: inherit;
    visibility: visible;
}

.sticky-item:hover {
    background: #00000040;
    background: var(--gold);
}

.sticky-item:hover {
    cursor: pointer;
}

.hover-info {
    font-size: 12px;
    color: #0F345E;
    font-weight: bold;
}

.sticky-item:hover .hover-info {
    color: white;
}

.sticky-item:hover .hover-hide {
    display: block;
    transition: display 0.5s ease;
}

.sticky-item:hover .hover-show {
    display: none;
    transition: display 0.5s ease;
}

.sticky-item:not(:hover) .hover-hide {
    display: none;
}

.sticky-item:not(:hover) .hover-show {
    display: block;
}

/* 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(150px);
    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;
}

.img-box img, .transition-5s, .transition-5s > * {
    -webkit-transition: .5s;
    transition: .5s;
    -moz-transition: .5s;
    -ms-transition: .5s;
    -o-transition: .5s;
}




@media (max-width: 991px) {
    .footer-container {
        flex-direction: column;
    }

    .footer-items {
        display: block;
        text-align: -webkit-center;
    }

    .Rights {
        text-align: center;
    }
}

@media (max-width: 565px) {
    .f-item {
        margin-inline: 5px;
    }

    .footer-container {
        line-height: 2;
    }

    .footer-items {
        margin-bottom: 10px;
    }
}

span.field-validation-error {
    color: red;
    font-size: 14px;
}

.cibiq-popup {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(255,255,255,.839);
    z-index: 999;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px;
    opacity: 0;
    transition: .4s;
    visibility: hidden
}

    .cibiq-popup.open {
        opacity: 1;
        visibility: visible
    }

.cibiq-popup-box {
    width: 100%;
    max-width: 900px;
    background: #fff;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 5px 17px rgba(0,0,0,.22);
    transform: translateY(100px);
    transition: .4s
}

.cibiq-popup.open .cibiq-popup-box {
    transform: inherit
}

.cibiq-popup-tools {
    display: flex;
    justify-content: flex-end;
    padding: 5px
}

.fullscreen-popup svg:last-child {
    display: none
}

.popup-a svg {
    height: 50px;
    width: 50px;
    padding: 12px;
    color: #888;
    fill: #888
}

.popup-a {
    display: flex;
    border-radius: 5px
}

.cibiq-popup-body {
    max-height: calc(100vh - 105px);
    overflow: auto
}

.popup-a:hover {
    background: #f1f1f1
}

    .popup-a:hover svg {
        color: #063153;
        fill: #063153
    }

.cibiq-popup.fullscreen .cibiq-popup-box {
    max-width: 100%;
    height: 100%;
    border-radius: 0
}

.cibiq-popup.open.fullscreen {
    padding: 0
}

.cibiq-popup.fullscreen .cibiq-popup-body {
    height: 100%;
    max-height: 100%
}

.cibiq-popup.fullscreen .fullscreen-popup svg:first-child {
    display: none
}

.cibiq-popup.fullscreen .fullscreen-popup svg:last-child {
    display: block;
    color: #fff;
    fill: white
}

.cibiq-popup.fullscreen .fullscreen-popup {
    background: #005191
}

.cibiq-popup.fullscreen .cibiq-popup-body .embed-responsive {
    height: 100%
}

.list-info {
    position: absolute;
    bottom: 0;
    left: 0;
    background: #005192;
    color: #fff;
    padding: 13px 21px;
    font-size: 16px;
    border-radius: 9px;
    font-weight: 500;
    line-height: 17px
}

    .list-info svg {
        fill: white;
        position: absolute;
        top: 0;
        left: 0;
        bottom: 0;
        height: 100%;
        padding: 11px
    }

        .list-info svg + span {
            padding-left: 33px
        }

    .list-info.have-arrow {
        padding-right: 53px;
        left: inherit;
        right: 0
    }



/* ----------------------------------------------------------------
Sections
-----------------------------------------------------------------*/

.banner {
    position: relative;
    padding-top: 13%;
    padding-bottom: 35px;
}

.bannerPage-img {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    z-index: 1;
    /* transform: scaleX(-1); */
}

    .bannerPage-img:before {
        content: "";
        position: absolute;
        width: 100%;
        height: 100%;
        top: 0;
/*        background: linear-gradient(to left, rgb(255 255 255 / 90%), transparent 70%);
        background: linear-gradient(to left, rgba(255,255,255,1) 5%,rgba(255,255,255,0) 90%);*/
        background: url(/images/BG-overlay-bnr.png);
    }

.banner .cbiq-container {
    position: relative;
    z-index: 2;
}

.bnr-ttl {
    font-weight: bold;
    max-width: 566px;
}

nav.cbiq-breadcrumb {
    /* margin-bottom: 50px; */
    padding: 20px 0;
    box-shadow: 0 2px 10px rgb(51 51 51 / 30%);
}

.cbiq-breadcrumb .breadcrumb {
    margin: 0;
}

.breadcrumb-item {
    position: relative;
}

    .breadcrumb-item:not(:last-child):after {
        content: "";
        margin-right: 15px;
        width: 10px;
        height: 10px;
       /* border-bottom: 2px solid #d0bd80;
        border-left: 2px solid #d0bd80;*/
        border-bottom: 2px solid var(--gold-dark);
        border-left: 2px solid var(--gold-dark);
        display: inline-block;
        transform: rotate(45deg) translate(5.8px, -6px);
    }

    .breadcrumb-item:not(:last-child):before {
        content: "";
        display: inline-block;
        width: 2px;
        height: 16px;
        background-color: #d0bd80;
        transform: rotate(90deg) translate(5.8px, -15px);
        position: absolute;
        left: 0;
        top: 0;
        padding-right: 0;
        visibility: hidden;
    }


.first-img {
    border-radius: 30px;
    overflow: hidden;
    margin-bottom: 50px;
}

    .first-img img {
        width: 100%;
    }

.breadcrumb-item + .breadcrumb-item {
    padding-right: 12px;
    padding-left: 0;
}

.second-txt {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 30px;
    font-size: 24px;
    font-weight: 600;
    color: #000;
}

.list-content {
    list-style: none;
    margin: 30px 0;
    font-weight: 600;
}

    .list-content li {
        position: relative;
        margin-bottom: 20px;
    }

        .list-content li:before {
            content: "";
            position: absolute;
            left: -28px;
            top: 5px;
            width: 18px;
            height: 18px;
            border: 2px solid #11345d;
            border-radius: 50%;
        }

.list-content-yellow {
    list-style: none;
    margin-top: 20px;
    margin-bottom: 30px;
    font-weight: 600;
}

    .list-content-yellow li {
        position: relative;
        margin-bottom: 20px;
        color: #000;
        font-weight: 400;
    }

        .list-content-yellow li:before {
            content: "";
            position: absolute;
            right: -28px;
            top: 5px;
            width: 18px;
            height: 18px;
            border: 2px solid var(--gold-dark);
            border-radius: 50%;
        }

/* Services */

.service-img img {
    border-radius: 20px;
    box-shadow: 0 0 10px 4px rgb(51 51 51 / 15%);
    width: 100%;
}

.service-content {
}

    .service-content h2 {
        color: var(--gold-dark);
        /* text-shadow: 0 1px 0px #12335669; */
        padding-bottom: 20px;
        border-bottom: 1px solid #000;
        margin-bottom: 40px;
        font-size: var(--font-26);
        line-height: 1.8;
        font-size: calc(1.375rem + 0.2vw);
    }

@media (min-width:992px) {
    .service-img {
        margin-left: 20px;
    }
}


/****** BOD page *********/
.bod-member {
    background: #e6e6e6;
    padding: 45px 20px;
    border-radius: 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: 0.5s;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 240px;
}

    .bod-member h2 {
        margin-bottom: 15px;
        font-size: 30px;
        font-weight: bold;
        position: relative;
        transition: 0.5s;
        color: var(--blue);
    }

.bod-title {
    color: #6d6d6d;
    font-size: 20px;
    position: relative;
    transition: 0.5s;
}

.bod-member:before {
    content: "";
    position: absolute;
    width: 20%;
    height: 100%;
    background: url(/images/home/BG.jpg);
    /*  transform:scale(0);
    transform: rotateZ(23deg) scale(0);*/
    border-radius: 20px;
    left: 0;
    top: 0;
    opacity: 0;
    transition: 0.5s;
}

.bod-box:hover .bod-member {
    box-shadow: 0 0 10px 4px #3333335e;
}

    .bod-box:hover .bod-member:before {
        width: 200%;
        height: 100%;
        opacity: 1;
        transform: initial;
        -webkit-animation-duration: 1s;
        animation-duration: 30s;
        -webkit-animation-fill-mode: both;
        animation-fill-mode: both;
        animation-name: MoveToLeft;
        animation-delay: 0.3s;
        animation-iteration-count: infinite;
    }

    .bod-box:hover .bod-member h2 {
        color: #fff;
    }

    .bod-box:hover .bod-member .bod-title {
        color: var(--gold);
    }


@keyframes MoveToLeft {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* News Listing */
.form-row {
    align-items: center;
    justify-content: center;
    /* padding: 20px; */
}

section.news-filter {
    padding: 80px 0 10px;
    /* background: #f1f1f1; */
    padding-top: 80px;
}

.select-box-month select {
    background-image: url(/images/Selectarrow.svg);
    background-repeat: no-repeat;
    background-position: 15px;
    background-size: 29px;
    border-radius: 50px;
    padding: 11px 20px;
    transition: 0.3s;
    font-weight: 500;
}

.news-filter .form-control {
    border-radius: 50px;
    padding: 11px 20px;
    transition: 0.3s;
    font-weight: 500;
}

    .news-filter .form-control:focus {
        box-shadow: none;
        font-size: 18px;
        box-shadow: 0 4px 4px rgb(17 52 93 / 30%);
        transform: scale(1, 1.05);
        border-color: #333;
    }


input#txtKeywords {
}

.form-search {
    position: relative;
}

.search-Button {
    position: absolute;
    top: 5px;
    left: 30px;
    transition: 0.3s;
    transform: scaleX(-1);
}

.search-orginal-icon, .search-hover-icon {
    transition: 0.2s;
    width: 30px;
    cursor: pointer;
    /* position: absolute; */
    /* right: 0; */
}

.search-hover-icon {
    opacity: 0;
    visibility: hidden;
    position: absolute;
    right: 0;
}

.search-Button:hover .search-orginal-icon {
    opacity: 0;
    visibility: hidden;
}

.search-Button:hover .search-hover-icon {
    opacity: 1;
    visibility: visible;
    transform: scale(1.1);
}

.news-Items {
    background: #ebebeb;
    border-radius: 20px;
    transition: 0.3s;
    border: 3px solid transparent;
    cursor: pointer;
    display: block;
    height: 100%;
}

section.NewsListing {
}

.news-img-box {
    transition: 0.3s;
    overflow: hidden;
    border-radius: 20px;
}

.news-img {
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    border-radius: 20px;
    padding-top: 70%;
    transition: 0.3s;
}

.news-Items:hover .news-img {
    transform: scale(1.1);
}

.news-date {
    /* display: flex; */
}

    .news-date svg {
        width: 20px;
        fill: var(--blue);
        margin-right: 6px;
    }

.news-details {
    padding: 25px 25px 35px;
    padding-bottom: 80px;
    /* position: relative; */
}

._topDate {
    font-size: 25px;
    line-height: 1;
}

._bottomDate {
    font-size: 15px;
    margin-right: 30px;
}

h2.news-ttl {
    font-size: 26px;
    margin: 25px 0;
    font-weight: 600;
    border: 0;
}

.news-readMoreButton:after,
.cbiq-btn:after {
    position: absolute;
    top: calc(50% - 10px);
    left: 18px;
    top: 14px;
    content: "";
    display: inline-block;
    width: 17px;
    height: 17px;
    /* background: red; */
    border-bottom: 3px solid var(--gold);
    border-left: 3px solid var(--gold);
    transform: rotate(45deg);
    border-radius: 3px;
    transition: 0.5s;
}

.news-readMoreButton, .cbiq-btn {
    position: relative;
    background: linear-gradient(to right, #0F345E 0, #0F345E 50%, #D1BD7D);
    background-size: 200%;
    background-position: left;
}


    .news-Items:hover .news-readMoreButton,
    .cbiq-btn:hover {
        background-position: right;
        min-width: 200px;
        color: var(--blue);
        color: #fff;
    }

        .news-readMoreButton:hover:after, .cbiq-btn:hover:after {
            border-color: white;
        }

.news-Items:hover {
    box-shadow: 0 0 10px 4px #d0bd7966;
    border: 3px solid var(--gold);
}


.newsImg img {
    border-radius: 20px;
    box-shadow: 0 0 10px 4px rgb(51 51 51 / 15%);
    width: 100%;
}

.news-body h2 {
    color: var(--gold-dark);
    /* text-shadow: 0 1px 0px #12335669; */
    padding-bottom: 20px;
    margin-bottom: 40px;
    font-weight: 600;
}

@media (min-width:992px) {
    .newsImg {
        margin-left: 45px;
        max-width: 50%;
        float: right;
    }
}

.news-btn-box {
    text-align: center;
    margin-top: 20px;
}

.news-btn {
    font-weight: 600;
    color: var(--gold);
    /* text-align: left; */
    display: inline-block;
    min-width: 150px;
    /* height: 46px; */
    padding: 15px 39px;
    background-color: var(--blue);
    text-transform: capitalize;
    border: 1px solid var(--green);
    -webkit-box-shadow: none;
    box-shadow: none;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    border-radius: 10px;
    margin: 20px 10px;
}

._news-btn {
    position: absolute;
    bottom: 40px;
}

.under-const {
    height: 25vh;
}

    .under-const h3 {
        font-weight: 900;
    }

h2 {
    color: var(--gold-dark);
    /*text-shadow: 0 1px 0px #12335669;*/
    font-size: var(--font-26);
    line-height: 1.8;
    padding-bottom: 20px;
    /* border-bottom: 1px solid #000; */
    margin-bottom: 40px;
    font-size: calc(1.375rem + 0.2vw);
}

    h2.underline-ttl {
        border-bottom: 1px solid #000;
    }
.news-body .underline-ttl {
    display: flex;
    flex-direction: column;
}
/* photo Gallery */

.news-Items {
    background: #ebebeb;
    border-radius: 20px;
    transition: 0.3s;
    border: 3px solid transparent;
    cursor: pointer;
    display: block;
    position: relative;
}

.photo-img-box {
    transition: 0.3s;
    overflow: hidden;
    border-radius: 20px;
    position: relative;
    border-radius: 9px;
    overflow: hidden;
    background-position: center;
    background-size: cover;
}

.photo-img {
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    border-radius: 15px;
    padding-top: 70%;
    transition: 0.3s;
}

.photo-Item:hover .photo-img {
    transform: scale(1.1);
}


.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 {
    opacity: 1;
    visibility: visible;
    transform: inherit
}

.photo-ttl {
    padding: 15px 20px;
    text-align: center;
}

.photo-Item {
    background: var(--blue-light);
    display: block;
    border-radius: 15px;
    transition: 0.3s;
    height: 100%;
}

.photo-ttl h2 {
    margin: 0;
    color: #fff;
    font-size: 22px;
}

.photo-Item:hover {
    background: var(--blue);
    box-shadow: 0 0 10px 10px #cacaca;
}
/* Contact Us*/
.contact {
    margin-bottom: 20px;
}

    .contact a {
        /* color: #fff; */
    }

.contact-nav h3 {
    color: #fff;
    background: var(--blue);
    padding: 10px 20px;
    margin: 0;
    font-weight: 600;
}

.contact-nav a {
    background: #e6e6e6;
    padding: 10px 20px;
    color: var(--blue);
    border-bottom: 1px solid #b7b7b7;
    transition: 0.3s;
    display: flex;
    align-items: center;
}

    .contact-nav a:last-child {
        border-bottom: 0;
    }

    .contact-nav a:hover {
        background: #b7b7b7;
        /* color: #fff; */
    }

    .contact-nav a.show {
        background: var(--blue-light);
        color: #fff;
        pointer-events: none;
    }

.contact-details {
    background: #f5f5f5;
    position: relative;
    max-width: 1000px;
    margin: auto;
}

.contact-bg-clr {
    background: #f5f5f5;
    /*        padding: 50px;*/
    min-height: calc(100% - 30px);
}

.contact-icon-list h4 {
    font-weight: bold;
}

.contact-icon-list img {
    width: 30px;
    position: absolute;
    right: 0;
    top: 3px;
}

.contact-icon-list p {
    margin: 0;
}

.contact-icon-list {
    padding-right: 50px;
    position: relative;
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid var(--gray);
}

    .contact-icon-list a {
        color: var(--blue);
    }

.contact-img {
    height: 100%;
    display: flex;
}

    .contact-img img {
        margin: auto;
        margin-left: 10%;
        max-width: 270px;
        /*transform: rotateY(-180deg);*/
    }

@media(max-width:991px) {
    .contact-img img {
        position: absolute;
        top: 20px;
        right: 20px;
        width: 40%;
        opacity: 0.25;
    }

}

@media(max-width:575px) {
    .contact-img img {
        width: 30%;
        opacity: 0.15;
    }

}

.contact-from {
    /*padding: 30px 40px 40px;*/
}

.floating-label {
    position: relative;
    padding-top: 30px;
}

    .floating-label label,
    .floating-select:has([value=""]):valid ~ label {
        position: absolute;
        padding: 3px;
        transition: 0.5s;
        right: 9px;
        top: 32px;
        color: #6c6c6c;
        pointer-events: none;
    }

    .floating-label:active label,
    .floating-label:focus-within label,
    .form-control:not(:placeholder-shown) + .form-label,
    .floating-select:focus ~ label,
    .floating-select:focus ~ label, .floating-select:not([value=""]):valid ~ label {
        transform: translate(7px, -2.25em) scale(.8);
        color: var( --blue);
        font-weight: 700;
    }

.contact-btn {
    margin-top: 30px;
    text-align: center;
}

.sideNav-content {
    padding: 50px;
}

    .sideNav-content h2 {
        /*text-shadow: 0 2px 2px #333333b8;*/
    }


.success-msg {
    padding: 40px;
    text-align: center;
    background: url(/images/home/BG.jpg);
    width: 100%;
    max-width: 600px;
    border-radius: 20px;
    margin: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: 0 0 5px #333;
}

    .success-msg h2 {
        margin-bottom: 30px;
        color: #fff;
    }

    .success-msg h3 {
        color: var(--gold);
    }

.failure-msg {
    text-align: center;
    padding: 20px;
}

    .failure-msg h2 {
        color: var(--bs-red);
    }
/* Complaints Form */
.form-check .form-check-input {
    float: initial;
    float: right;
    margin-left: auto;
    margin-right: -1.5em;
}

.form-check {
    padding-right: 1.5em;
    padding-left: initial;
}

.accountNo input[disabled="disabled"] {
    opacity: 0.5;
    filter: blur(1px) grayscale(1);
}

.file-note {
    color: red;
    font-size: 15px;
    margin-top: 5px;
}
/* Table Style */

.cbiq-table {
    border: 1px solid #cacaca
}

    .cbiq-table th {
        background: var(--blue-light);
        color: #ffff;
        text-align: center
    }

    .cbiq-table td, .cbiq-table th {
        padding: .5rem
    }

iframe.embed-responsive-item {
    min-height: 50vh;
    width: 100%;
    height: 90%;
}

/* download-listing */

.download-listing .bod-box a {
    position: relative;
    height: 100%;
}


.bod-box a:hover .long-arrow-grid {
    border-color: #4088ad;
}

.bod-box a:hover .grid-arrow {
    background: #fff;
    border-bottom-left-radius: 20px;
}

.bod-box a:hover .long-arrow-grid::after {
    background: #4088ad;
}

/******************  Location Map   ******************/

.branch-header {
    width: 100%;
    position: relative;
    background: var(--blue);
    color: white;
    padding: 10px;
    padding-left: 18px;
    border-top: 5px solid var(--gold);
}

.acc-sub .faq-title {
    background: var(--blue-light);
    display: flex;
    color: #303030;
    padding: 7px 12px;
    align-items: center;
    cursor: pointer;
    border-bottom: 1px solid #c3c3c3;
    position: relative;
}


.acc-ttl {
    color: #fff;
    font-size: 20px;
}


.faq-arrow {
    position: absolute !important;
    height: 18px;
    width: 18px;
    border-bottom: 3px solid white;
    border-right: 3px solid white;
    top: calc(50% - 14px);
    left: 20px;
    display: block;
    transform: rotate(45deg);
    transition: .3s;
}

.faq-item.open .faq-arrow {
    transform: rotate(-135deg);
    margin-top: 9px;
}


span.locator-menu-icon img {
    height: 32px;
    margin-left: 7px;
}


ul.nav.nav-list > li {
    display: block;
    width: 100%;
    background: white;
    padding: 7px 12px;
    border-bottom: 1px solid #c3c3c3;
    cursor: pointer;
    /* display: flex; */
}

    ul#accordionloc > li > *:not(.navbar-side-dropdown):hover, ul.nav.nav-list > li:hover {
        background: #f1f1f1;
    }

.branch-icon {
    display: inline-block;
}

    .branch-icon img {
        margin-left: 5px;
        height: 29px;
    }

.mapLink-box {
    margin-top: 15px;
    text-align: center;
    font-size: 15px;
}

    .mapLink-box a {
        min-width: 160px;
        height: 40px;
    }

        .mapLink-box a.cbiq-btn:after {
            height: 15px;
            width: 15px;
            top: calc(50% - 7.5px);
        }

        .mapLink-box a.cbiq-btn:hover {
            min-width: 170px;
        }

.faq-content-container .nav {
    padding: 0;
}
/******** Careers ************/
.career-Abstract {
    margin-bottom: 40px
}

.careerDetails {
    padding: 30px;
    border-bottom: 3px solid var(--gold);
}

.careerListing {
    padding-left: 30px;
}

.career-acc .faq-title {
    background: url(/images/home/BG.jpg);
    border-bottom: 3px solid var(--gold);
    padding: 15px 25px;
}

    .career-acc .faq-title:hover,
    .career-acc .open .faq-title {
        filter: brightness(0.8);
    }



.career-acc .acc-sub.faq-item {
    margin-bottom: 30px;
    border-radius: 10px;
    overflow: hidden;
}

.downloadDetails {
    padding: 0 20px;
}

    .downloadDetails a {
        font-weight: bold;
    }

.bg-fit {
    /* background-position: center; */
    /* background-size: cover; */
    transition: 0.6s;
}

    .bg-fit img {
        width: 100%
    }

.outer {
    padding-bottom: 60%;
    position: relative;
}

.some-box {
    position: relative;
    display: block;
    opacity: .9;
    transition: 600ms;
    cursor: pointer;
    overflow: hidden;
    box-shadow: 0px 0px 6px 3px rgb(0 0 0 / 0.2);
    /* margin-bottom: 11px; */
    border-radius: 20px;
    padding-bottom: 20px;
}

    .some-box:hover {
        opacity: 1;
        box-shadow: 0 0 13px rgba(0, 0, 0, 0.64);
    }

.some-text {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    text-align: center;
    color: white;
    font-weight: bold;
    font-size: 18px;
    padding: 7px 15px;
    transition: .6s;
    transform-origin: bottom;
    background: rgba(0, 0, 0, 0.42);
    background: var(--blue);
}

.some-box:hover .some-text {
    background: #fff;
    transform: scale(1.1);
    color: var(--blue);
    border-color: #a3741f;
    background: rgba(0, 0, 0, 0.42);
    background: var(--gold);
}

.some-box:hover .bg-fit {
    transform: translateY(-20px);
}

#btnContact[disabled] {
    opacity: 0.5;
    pointer-events: none;
}

form#CareerForm .form-check .form-check-input {
    float: right;
    margin-right: -1.5em;
    margin-left: 0;
}

form .form-check:first-child {
    padding-right: 30px;
    padding-left: 48px;
}

input#DateOfBirth {
    text-align: right;
}
/*************  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;
    color: #fff;
    width: 50px !important;
    height: 50px;
    padding: 15px;
    cursor: pointer;
    border: 1px solid transparent
}

    .search-close:hover {
        border-color: #d7d7d7
    }

.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-btn {
    background: var(--blue-light);
    display: flex;
    cursor: pointer;
    position: absolute;
    top: 0;
    left: 0;
    padding-right: 4px;
    margin: 0;
    border: 0
}

    .search-btn svg {
        color: #fff;
        padding: 18px;
        width: 54px;
        height: 54px
    }

.search-popup span {
    display: block;
    font-size: 30px;
    margin-bottom: 30px;
    opacity: 0;
    transform: translateY(100px);
    transition: 1.5s;
    /* animation-name: slideUp; */
    /* animation-duration: 1s; */
    /* animation-fill-mode: forwards; */
}

.search-popup.open .search-box, .search-popup.open span {
    transform: inherit;
    opacity: 1;
}

.search-box {
    transition-delay: .5s
}

.search-btn:hover {
    background: var(--blue);
}

/***** Search Listing  ****/


.listing-btn {
    padding-top: 15px;
}

.listing-info {
    padding: 25px 25px 30px;
    border: 3px solid transparent;
    border-bottom-color: #70707438;
    border-left-color: #70707438;
    transition: 0.3s;
}



    .listing-info:hover {
        background: #d0bd7917;
        border-left-color: var(--blue);
    }

/********* Sticky News **********/
.sticky-news {
    position: fixed;
    top: 78%;
    left: -250px;
    z-index: 10;
    /* width: 300px; */
    background: rgb(18 50 84 / 70%);
    background: url(/images/stickyNews-Bg.webp);
    /* padding: 15px; */
    border-radius: 0 10px 10px 0;
    transition: 0.5s;
    box-shadow: 0 0 10px rgb(51 51 51 / 60%);
}

.sticky-home-news {
    width: 230px;
}

.sticky-content {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 5px;
    padding-right: 0;
}

._arrow {
    position: relative;
    min-height: 100px;
    padding: 25px;
    cursor: pointer;
    flex: 0 0 auto;
    animation: fadeInRightArrow 2s linear infinite;
}

.sticky-news.open ._arrow {
    animation: initial;
}

@keyframes fadeInRightArrow {
    0% {
        opacity: 0.3;
        transform: translateX(-10px);
    }

    50% {
        opacity: 1;
        transform: translateX(0px);
    }

    100% {
        opacity: 0.3;
        transform: translateX(-10px);
    }
}

._arrow:before {
    content: "";
    position: absolute;
    height: 18px;
    width: 18px;
    transform: rotate(225deg);
    border-bottom: 2px solid #fff;
    border-left: 2px solid #fff;
    left: calc(50% - 9px);
    top: calc(50% - 9px);
    transition: .3s;
}

h3.st-ttl {
    color: var(--gold);
    /* text-align: center; */
    font-size: 18px;
    font-weight: 700;
}

.st-news-ttl {
    color: #fff;
    display: block;
    /* text-align: center; */
    font-size: 14px;
}

.sticky-news.open {
    left: 0;
    /*    background: var(--blue);*/
}

    .sticky-news.open ._arrow::before {
        transform: rotate(45deg);
        left: 50%;
    }

.sticky-news:hover {
    /*    background: var(--blue);*/
}















/************* Subpage Banner ***********/

.pageBanner {
    position: relative;
}

.pageBannerContent {
    padding-top: 290px;
    padding-bottom: 10px;
    position: relative;
    color: #fff;
}

.featureImg {
    background-attachment: fixed;
    background-position: 50% 26px;
}

    .featureImg:before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: rgba(0, 0, 0, 0.4);
    }

.pageBannerContent h1 {
    color: #fff;
    font-family: 'GothamHTF-Bold';
    font-size: 36px;
    text-transform: uppercase;
    font-weight: 700;
    margin: 0;
    padding-bottom: 110px;
    line-height: 1.2;
    text-align: center;
}

.overlay {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 0;
    background: rgba(0, 0, 0, 0.75);
}

.section-ttl.mid-size {
    font-size: 26px;
    margin-bottom: 20px;
}
/* Profile Listing */
.team-member {
    margin-bottom: 30px;
    text-align: center;
}

.team-img a,
.post-img a {
    position: relative;
    overflow: hidden;
    display: inline-block;
    /* margin-bottom: 17px; */
}

.team-img {
}

    .team-img img,
    .post-img img {
        width: 100%;
        height: auto;
    }

.team-member h4 {
    font-size: 20px;
    margin-bottom: 3px;
    margin-top: 0;
    font-weight: 500;
    text-align: center
}

.name a:hover {
    color: #001489;
}

.team-info {
    text-align: center;
}

.profile {
    position: relative;
    padding-top: 80px;
}

    .profile .owl-nav div {
        position: absolute;
        top: 40%;
        -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        transform: translateY(-50%);
        -webkit-transition: 0.5s;
        transition: 0.5s;
        font-size: 27px;
        width: 45px;
        height: 45px;
        line-height: 42px;
        border: 1px solid #efefef;
        -webkit-border-radius: 3px;
        border-radius: 5px;
        background-color: #fff;
        text-align: center;
        overflow: hidden;
    }

    .profile .owl-nav .owl-next {
        right: -75px;
    }

    .profile .owl-nav .owl-prev {
        left: -75px;
    }

.owl-nav div i {
    position: relative;
    top: -4px;
    z-index: 10;
    font-size: 14px;
}

.owl-nav div:hover {
    background-color: var(--blue);
    border-color: var(--blue);
    color: #fff;
}

@media only screen and (max-width:1310px) {
    .profile .owl-nav div {
        top: 75px;
    }

    .profile .owl-nav .owl-next {
        right: 0;
    }

    .profile .owl-nav .owl-prev {
        left: auto;
        right: 55px;
    }
}

@media only screen and (max-width:767px) {
    .profile .owl-nav .owl-prev {
        right: auto;
    }
}

/** contact country form ***/

/*.contact-country-details {
    margin-bottom: 30px;
}

.contact-country-form input:not([type="submit"]), .contact-country-form select,
.gpa-form input:not([type="submit"]), .gpa-form select {
    margin-bottom: 10px;
    -webkit-transition: border 0.5s;
    transition: border 0.5s;
    color: #848484;
    border: 1px solid #efefef;
    padding: 0 20px;
    -webkit-border-radius: 0;
    border-radius: 0;
    outline: none;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    height: 50px;
    line-height: 50px;
    max-width: 100%;
}

.contact-country-form textarea,
.gpa-form textarea {
    margin-bottom: 10px;
    -webkit-transition: border 0.5s;
    transition: border 0.5s;
    color: #848484;
    border: 1px solid #efefef;
    padding: 10px 20px;
    -webkit-border-radius: 0;
    border-radius: 0;
    outline: none;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

    .contact-country-form input:focus,
    .contact-country-form select:focus,
    .contact-country-form textarea:focus,
    .gpa-form input:focus,
    .gpa-form select:focus,
    .gpa-form textarea:focus {
        border: 1px solid #7ac31f;
        box-shadow: 0 0 4px 4px rgb(122 195 31 / 25%);
    }

.contact-country-map {
    margin-bottom: 30px;
}
*/

/* Details page */
.details-Bnr {
    margin-bottom: 30px;
}

.aside-nav {
    background: #f2f2f2;
    border: 1px solid #efefef;
    padding: 20px 30px;
    margin-bottom: 30px;
}

.side-ttl {
    font-size: 20px;
    border-bottom: 1px solid #e5e5e5;
    padding-bottom: 15px;
    margin-bottom: 30px;
    font-weight: 500;
}

.aside-menu {
    list-style: none;
    padding: 0;
}

    .aside-menu li.menu-item {
        padding: 8px 0;
        position: relative;
        -webkit-transition: 0.5s;
        transition: 0.5s;
    }

    .aside-menu li a i {
        padding-right: 15px;
    }

.contact-aside {
    border: 1px solid #efefef;
    padding: 20px 30px;
    margin-bottom: 30px;
}

.contact-aside-content {
}


.contact-side-btn .gramco-btn {
    width: 100%;
}

/* Table CSS */
.gramco-table {
    border: 1px solid #cacaca;
    margin-bottom: 30px;
}

    .gramco-table th {
        background: var(--blue);
        color: #ffff;
        text-align: center;
    }

    .gramco-table th, .gramco-table td {
        padding: 0.5rem;
    }



/*************************/


li.menu-item.current-menu-item a {
    cursor: default;
    pointer-events: none;
    color: var(--font-blue);
}

li.menu-item a {
    display: inline-block;
    transition: 0.3s;
}

li.menu-item:not(.current-menu-item) a:hover {
    transform: translateX(6px);
}

/**************************/
.tab-content-container {
}

    .tab-content-container .nav-tabs {
        /* background: var(--blue); */
        /* border: 0; */
    }

        .tab-content-container .nav-tabs li {
            margin-right: 5px;
        }

    .tab-content-container .nav-link {
        background: var(--blue);
        color: #fff;
        padding-top: 0.7rem;
        padding-bottom: 0.7rem;
    }

    .tab-content-container .tab-content {
        background: #fff;
        padding: 20px 15px 10px;
        box-shadow: 0 0px 8px 2px rgb(51 51 51 / 25%);
        border-radius: 0 0 4px 4px;
        border: 1px solid #dee2e6;
        border-top: 0;
    }

    .tab-content-container .tab-pane {
    }

@media only screen and (max-width:767px) {
    .tab-content-container .nav-tabs li .nav-link {
        width: 100%;
    }

    .tab-content-container li.nav-item {
        margin: 0;
        margin-bottom: 3px;
    }

    .tab-content-container .tab-content {
        margin-top: 3px;
    }
}

/********** Filter **********/
.filter-box {
    padding: 40px 22px 30px;
    border: 1px solid #ced4da;
    position: relative;
}

section.filter-container {
    margin-bottom: 50px;
}

.block-ttl .section-ttl {
    /* display: inline-block; */
    /* background: #fff; */
    /* margin-top: -40px; */
    /* position: absolute; */
}

.block-ttl {
    /* position: relative; */
    /* height: 30px; */
    background: #fff;
    padding-left: 14px;
    padding-right: 15px;
    position: absolute;
    left: 10px;
    margin-top: -66px;
}

/*** News **/
.post-box {
    border: 1px solid #efefef;
    margin-bottom: 30px;
    height: calc(100% - 30px);
}

.post-img {
    height: 223px;
}

    .post-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
    }

    .post-img a {
        display: inline-block;
        height: 100%;
    }

.team-img {
}

.post-info {
    padding: 20px 25px;
    height: calc(100% - 223px);
    display: flex;
    flex-direction: column;
}

.post-title a {
    /* font-size: 20px; */
    /* line-height: 1; */
}

h2.post-title {
    /* line-height: 1; */
    font-size: 22px;
    margin-bottom: 15px;
}

/************************/

.post-meta {
    /* margin-bottom: 15px; */
}

.post-abstract {
    /* margin-bottom: 15px; */
}

.post-footer {
    padding-top: 20px;
    /* padding-bottom: 5px; */
    border-top: 1px solid #efefef;
    margin-top: auto;
}

.news-content {
    border: 1px solid #efefef;
    margin-bottom: 50px;
}

.news-img img {
    width: 100%;
}


.news-body {
    padding: 20px 30px;
}


.newsThumbnail {
    padding-top: 143px;
    background-size: contain;
    background-position: top center;
    background-repeat: no-repeat;
}

.moreNewsItem h5 {
    font-size: 18px;
}

.moreNewsItem {
    border-bottom: 1px solid #efefef;
    padding-bottom: 20px;
    margin-bottom: 20px;
}

    .moreNewsItem:last-child {
        /* margin-bottom: 50px; */
        border-bottom: 0;
    }

.news-content .post-meta {
    padding: 30px 30px 0;
}

/*** Contact Us ***/
.locationMap {
    margin-bottom: 50px;
}

.contact-block {
    padding: 30px;
    height: 100%;
}

.contact-social {
    list-style: none;
    padding: 0;
    margin-top: 20px;
    padding-top: 30px;
    border-top: 1px solid #e5e5e5;
    text-align: center;
}

    .contact-social li {
        padding-right: 15px;
        text-align: center;
        display: inline-block
    }

        .contact-social li a {
            font-size: 18px;
            display: block;
            width: 40px;
            height: 40px;
            line-height: 38px;
            -webkit-border-radius: 50%;
            border-radius: 50%;
            border: 2px solid #e5e5e5;
            -webkit-transition: 0.5s;
            transition: 0.5s;
            color: #848484;
        }

        .contact-social li:hover a {
            color: #fff;
            background-color: #001489;
            border-color: #001489;
        }

.contactForm {
    padding: 50px 0;
    text-align: center;
}

    .contactForm p {
        font-size: 16px;
        font-weight: 600;
        margin-bottom: 50px;
    }

    .contactForm .section-ttl:after {
        margin-left: auto;
        margin-right: auto;
    }

.input-group-text {
    padding: 0;
    background: #fff;
}

    .input-group-text .form-control {
        background: #fff;
        border-color: transparent;
        max-width: 100px;
        text-align: center;
        margin-right: 3px;
    }

        .input-group-text .form-control:focus,
        .input-group-text .form-control:active {
            border: 1px solid #86b7fe;
        }

.input-group.mobileNo {
    direction: ltr;
    text-align: left;
}
/*** Accordion ***/


.acc-extend {
    display: none;
}

.fin-title {
    display: block;
    padding: 17px 25px;
    cursor: pointer;
    position: relative;
    /* padding-left: 80px; */
    animation: bg-anim 100s linear infinite;
    padding-right: 42px;
    font-size: 18px;
    font-weight: bold;
    font-family: 'GothamHTF-Bold';
    letter-spacing: 1px;
    border-bottom: 1px solid #efefef;
}

.fin-content {
    padding: 15px 25px;
    border-bottom: 1px solid #efefef;
}

.fin-item {
    overflow: hidden;
}

.fin-acc {
    padding: 0 20px;
    border: 1px solid #efefef;
}

.fin-arrow, .fa-arrow-up {
    position: absolute !important;
    top: calc(50% - 13px);
    right: 0;
    display: block;
    transform: rotate(180deg);
    transition: .3s;
    padding: 0px;
    border: 1px solid;
    border-radius: 50%;
    font-size: 13px;
    width: 27px;
    height: 27px;
    display: flex;
    margin: auto;
    justify-content: center;
    justify-items: center;
    align-items: center;
}

.fin-item.open .fin-arrow, .open .fa-arrow-up {
    transform: inherit;
}

.fin-item.open {
    pointer-events: none;
}


/* Branch Locator - Map Section */
.hide-section {
    display: none !important
}

#mapImgContainer {
    padding: 100px;
    background-position: center;
}

.location-details {
    position: absolute;
    top: 25%;
    right: 0;
    border-radius: 20px;
    padding: 30px 40px;
    background-repeat: no-repeat;
    background-size: cover;
    opacity: 1;
    animation-name: fadeInOpacity;
    animation-iteration-count: 1;
    animation-timing-function: ease-in;
    animation-duration: 1s
}

.mapBoxStyle {
    position: absolute;
    width: 360px;
    /* right: 70px; */
    z-index: 1;
    height: auto;
    border-radius: 20px;
    /* padding: 30px 40px; */
    background-size: cover;
    top: -550px;
    /*right: 400px;*/
    background-color: #fff;
    /* padding-top: 60px; */
    overflow: hidden;
}

.mapBoxStyle {
    opacity: 1;
    animation-name: fadeInOpacity;
    animation-iteration-count: 1;
    animation-timing-function: ease-in;
    animation-duration: 1s
}


@media only screen and (min-width:992px) {
    .mapBoxStyle {
        margin-right: 33.3%;
    }
}

@media only screen and (min-width:1200px) {
    .mapBoxStyle {
        margin-right: 25%;
    }
}

@media only screen and (max-width:991px) {
    .mapBoxStyle {
        right: 20px;
    }
}

@media only screen and (max-width:500px) {
    .mapBoxStyle {
        right: 15px;
        max-width: 90%;
    }
}

#mapImgContainer, .mapBoxStyle {
    background-repeat: no-repeat
}

.almuni-image-box, .almuni-info-box, .company-section, .location-image {
    margin: auto;
}

.location-body h4, h4#branch {
    font-size: 20px;
    font-weight: 700;
    text-align: left;
    color: #fff;
}

h4#branch {
    padding: 15px 30px;
    background: var(--blue-light);
    margin: 0;
}

.location-body {
    padding: 20px 30px;
}

.location-body-abstract {
    font-size: 16px;
    font-weight: 700;
    text-align: left;
    /* color: #f1ebd7; */
}

.location-body-list {
    font-size: 15px;
    color: var(--blue);
}

.closeIcon {
    position: absolute;
    top: 0;
    right: 0;
    cursor: pointer;
    color: #ffffff;
    width: 50px !important;
    height: 50px;
    padding: 15px;
    border: 1px solid transparent;
    font-size: 1.5rem;
    line-height: 0.8;
}


    .closeIcon:hover {
        color: #D1BD7D;
        font-size: 1.6rem;
    }
/*  Table hover - Loaceter */
.cibiq-table tbody tr {
    position: relative;
    -webkit-transition: 1s;
    -moz-transition: 1s;
    -ms-transition: 1s;
    transition: 1s;
}

    .cibiq-table tbody tr:hover {
        -ms-transform: scale(1.02);
        transform: scale(1.02);
    }

        .cibiq-table tbody tr:hover td {
            background: #d1bd7d;
            color: #0f345e;
            font-weight: bold;
        }

    .cibiq-table tbody tr.active {
        background: #d1bd7d;
        color: #0f345e;
        font-weight: bold;
    }

.location-body-hr {
    border-top: 1px solid var(--gray);
}

.location-body-list img {
    margin-right: 10px;
    width: 20px;
}

/***********/
/*.lg-outer {
    text-align: right;
    direction: rtl;
}*/
.lg-outer .lg-inner {
    direction: ltr !important;
}

.lg-outer .lg-thumb-item {
    float: right !important;
}

.lg-outer .lg-actions .lg-next {
    left: 20px;
    right: auto;
    transform: scaleX(-1);
}

.lg-outer .lg-actions .lg-prev {
    right: 20px;
    left: auto;
    transform: scaleX(-1);
}

.lg-outer .lg-outer .lg-toogle-thumb {
    left: 20px;
    right: auto;
}

.form-select {
    background-position: left .75rem center;
    padding-right: .75rem;
    padding-left: 2.25rem;
}



/*Error Page*/
.error-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-top: 40px;
    margin-bottom: 40px;
}

.error-icon {
    padding: 20px;
    font-size: 40px;
    border-radius: 100%;
    border: 4px solid #b2b2b282;
    box-shadow: 0px 0px 11px 0px #b2b2b2d1;
    width: 240px;
    height: 240px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.error-txt {
    font-size: 25px;
    margin-top: 50px;
    color: var(--bg-main-clr);
}


.error-icon h4 {
    font-size: 60px;
    margin: 0;
    color: #555;
    text-shadow: 0px 1px 10px #d0bd797a;
}

.error-ttl {
    font-size: 20px;
    font-weight: 600;
    padding-top: 10px;
}

.sideNav-content .under-const {
    text-align: center;
}

.news-list-home .news-date {
    color: var(--gold-dark);
    margin-bottom: 20px;
}

    .news-list-home .news-date svg {
        fill: var(--gold-dark);
    }

.input-group-text {
    padding: 0;
/*    border: 0;*/
}

    .input-group-text input:focus {
        z-index: 10;
    }

/*Hayat*/

load-more-btn {
    display: flex;
    justify-content: center;
}

.loading {
    padding: 10px 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .loading p {
        margin: 0;
        font-size: 20px;
        font-weight: bold;
        padding-left: 20px;
    }




@media (max-width:991px) {
    h3 {
        font-size: calc(1.1rem + .5vw);
    }

    .footer {
        line-height: 2.2;
    }
}

@media (max-width:767px) {
    .service-content h2 {
        font-size: calc(1.175rem + 0.2vw);
    }

    .pg-listing-filter .form-group {
        margin-bottom: 20px;
    }

    .careerListing {
        padding-left: 0;
    }
}

@media (max-width:575px) {
    .info-abstract {
        font-size: 16px;
    }

    .footer {
        font-size: 14px;
    }

    body {
        font-size: 16px;
    }

    img.info-img {
        height: 65px;
    }

    .sideNav-content {
        padding: 30px 20px;
    }
}

@media (min-width: 1500px) {
    .col-lg-4.news-box, .col-lg-4.photos-box, .download-listing .col-lg-4.bod-box {
        flex: 0 0 auto;
        width: 25%;
    }
}


/*

.swipe-slider {
    display: grid;
    grid-template-columns: repeat(3, 100vw);
    grid-gap: 5px;
    margin: 0;
    overflow-x: scroll;
    overscroll-behavior-x: contain;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: 10px;
}*/


@media(max-width:575px) {
    .mySwiper, .services {
        zoom: 60%;
    }
    .sticky-item {
        width: 100px;
    }
    .hover-info {
        font-size: 8px;
    }
}


.TrirdSwiper .swiper.TrirdSwiper.swiper-initialized.swiper-horizontal.swiper-rtl.swiper-backface-hidden {
    bottom: -6px;
}

.TrirdSwiper {
    padding-bottom: 50px;
}


.info-box:hover .s1-st1,
.info-box:hover .s7-st1 {
    fill: var(--gold);
    stroke: var(--gold);
}

.info-box:hover .s2-st1,
.info-box:hover .s3-st1,
.info-box:hover .s4-st1,
.info-box:hover .s5-st1,
.info-box:hover .s6-st1,
.info-box:hover .s8-st1,
.info-box:hover .s9-st1,
.info-box:hover .s11-st0 {
    fill: var(--gold);
}
