/**
 * If using a CSS pre-processor, tell it to overwrite this file. If not, place
 * your custom CSS modifications here.
 */

body {
    background: ;
    margin: 0;
}

html,
body {
    scroll-behavior: smooth;
}

/* ----------------------------------------- */
/* FONTS STACK */
/* ----------------------------------------- */

@font-face {
    font-family: 'albertB';
    src: url('AlbertSans-Bold.ttf');
}

@font-face {
    font-family: 'albertSB';
    src: url('AlbertSans-SemiBold.ttf');
}

@font-face {
    font-family: 'albertM';
    src: url('AlbertSans-Medium.ttf');
}

@font-face {
    font-family: 'albertR';
    src: url('AlbertSans-Regular.ttf');
}

@font-face {
    font-family: 'albertL';
    src: url('AlbertSans-Light.ttf');
}

@font-face {
    font-family: 'outfitB';
    src: url('Outfit-Bold.ttf');
}

@font-face {
    font-family: 'outfitR';
    src: url('Outfit-Regular.ttf');
}

@font-face {
    font-family: 'outfitL';
    src: url('Outfit-Light.ttf');
}

@font-face {
    font-family: 'spaceSB';
    src: url('SpaceGrotesk-SemiBold.otf');
}


/* ----------------------------------------- */
/* variables */
/* ----------------------------------------- */

:root {
    /* typography */
    --albertB: albertB, 'sans-serif';
    --albertSB: albertSB, 'sans-serif';
    --albertM: albertM, 'sans-serif';
    --albertR: albertR, 'sans-serif';
    --albertL: albertL, 'sans-serif';
    --outfitB: outfitB, 'sans-serif';
    --outfitR: outfitR, 'sans-serif';
    --outfitL: outfitL, 'sans-serif';
    /* colors */
    --gold-gradient: linear-gradient(188.41deg,
            #D4A041 6.59%,
            #FBE67B 35.92%,
            #FFDB62 54.87%,
            #F7D14E 76.01%,
            #D4A041 96.75%);
    --color-primary: #D4A041;
    --color-secondary: #121212;
    --color-white: #ffffff;
    --color-black: #000;
    --color-grey: #737373;
    --color-text: #3C4244;
    /* spacing */
    --section-spacing: 82px 50px;
    /* transitions */
    --transition-05: all 0.5s ease;
}

/* ----------------------------------------- */
/* 100% WIDTH */
/* ----------------------------------------- */

.navbar>.navbar-header,
.navbar>.navbar-collapse {
    margin: 0 !important;
}

.container {
    width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
}

.navbar.container {
    max-width: 100%;
}

.row {
    margin: 0;
}

.banner01,
.banner02,
.banner03,
.banner04,
.banner05,
.banner06,
.banner07,
.banner08,
.banner09,
.banner10 {
    padding: 0;
}

/* ----------------------------------------- */
/* NAVIGATION */
/* ----------------------------------------- */

.navbar-default {
    border: 0;
}

#navbar {
    background-color: var(--color-secondary);
    padding: 15px 21px !important;
    margin: 0 !important;
    border: 0;
    border-radius: 0;
}

.navbar {
    margin: 0;
}

@media only screen and (min-width: 767px) {

    #navbar {
        display: flex;
        align-items: center;
    }

}

.navbar-header {
    background: transparent;
    width: auto;
    height: auto;
    padding: 0;
    margin: 0;
}

.navbar .logo {
    padding: 0;
    margin: 0;
    /* padding-bottom: 1em; */
}

.navbar-collapse {
    padding: 0 !important;
    margin: 0 !important;
    border: 0 !important;
    width: 100%;
}

/* .region.region-navigation-collapsible {
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: flex-end;
    gap: 28px;
} */

.navbar-nav {
    margin: 0;
    padding: 0;
    text-align: right;
    float: right;
}

.navbar-default .navbar-nav>li {
    margin: 0;
    display: inline-block;
    float: none;
    padding: 0;
    background: transparent;
    transition: all 0.5s ease;
}

.navbar-default .navbar-nav>li>a {
    font: 15px var(--albertM);
    color: var(--color-primary);
    transition: all 0.5s ease;
    padding: 10px 24px;
    /* Menu Link */
    border: 1px solid var(--color-primary);
    border-radius: 4px;

}

.navbar-default .navbar-nav>li>a:hover,
.navbar-default .navbar-nav>li>a:focus,
.navbar-default .navbar-nav>.active>a,
.navbar-default .navbar-nav>.active>a:hover,
.navbar-default .navbar-nav>.active>a:focus,
.dropdown-menu>.active>a,
.dropdown-menu>.active>a:hover,
.dropdown-menu>.active>a:focus {
    color: var(--color-secondary);
    background: var(--gold-gradient);
    border-radius: 4px;
}

.navbar-default .navbar-nav>.active>a,
.navbar-default .navbar-nav>.active>a:hover,
.navbar-default .navbar-nav>.active>a:focus {
    color: #fff;
    background-color: var(--color-primary);
    border-radius: 8px;
}

.navbar-default .navbar-nav>li>a {
    font: 15px var(--albertM);
    color: var(--color-primary);

    padding: 10px 24px;

    border: 1px solid var(--color-primary);
    border-radius: 4px;

    position: relative;
    overflow: hidden;
    isolation: isolate;

    /* Keep the actual link background transparent */
    background: transparent !important;

    transition: color 0.3s ease;
}

/* Gradient background layer */
.navbar-default .navbar-nav>li>a::before {
    content: "";
    position: absolute;
    inset: 0;

    background: var(--gold-gradient);

    opacity: 0;
    transition: opacity 0.3s ease;

    z-index: -1;
}

/* Hover / Focus / Active */
.navbar-default .navbar-nav>li>a:hover::before,
.navbar-default .navbar-nav>li>a:focus::before,
.navbar-default .navbar-nav>.active>a::before,
.navbar-default .navbar-nav>.active>a:hover::before,
.navbar-default .navbar-nav>.active>a:focus::before {
    opacity: 1;
}

/* Hover / Active text and border */
.navbar-default .navbar-nav>li>a:hover,
.navbar-default .navbar-nav>li>a:focus,
.navbar-default .navbar-nav>.active>a,
.navbar-default .navbar-nav>.active>a:hover,
.navbar-default .navbar-nav>.active>a:focus {
    color: var(--color-secondary);

    background: transparent !important;

    border-color: var(--color-primary);
}

.navbar-default .navbar-nav>.dropdown>a .caret {
    border-top-color: #fff;
    border-bottom-color: #fff;
}

.dropdown-menu>li>a:hover,
.dropdown-menu>li>a:focus {
    color: #fff;
    background-color: var(--color-primary);
}

.navbar-nav .dropdown-menu>li.active>a {
    color: #333;
}

.navbar-default .navbar-nav li.last .dropdown-menu {
    left: auto;
    right: 0;
}

.dropdown:hover .dropdown-menu {
    display: block;
}

/* ----------------------------------------- */
/* INTERNAL PAGES */
/* ----------------------------------------- */

.view-jobs .view-empty::after,
.view-tenders .view-empty::after {
    content: "Currently no items are available, please check back later!";
}

a {
    outline: 0 !important;
}

#block-views-block-slick-x-block-main {
    display: none;
}

.region.region-content .content,
.region.region-content .view-content {
    font: 15px var(--robotoR);
    color: #333333;
    word-spacing: ;
    line-height: 1.75;
}

.region.region-content .content a,
.region.region-content .view-content a {
    font: 15px var(--robotoR);
    text-decoration: none;
    color: #2e2d2c;
    border-bottom: 1px dotted #2e2d2c;
}

.inner-page {
    min-height: calc(100vh - 413px);
}

#notfrontwrap {
    height: auto;
    min-height: 436px;
    /*position: relative;
    bottom: 10px;*/
    background: linear-gradient(rgba(255, 255, 255, .5),
            rgba(255, 255, 255, .5)), url(../images/internal.jpg);
    background-size: cover;
    background-attachment: fixed;
    padding: 0 1em;
    padding-bottom: 3em;
}

.path-frontpage #notfrontwrap {
    padding-bottom: 0;
}

#notfrontwrap {
    min-height: calc(100vh - 171px);
}

#notfrontwrap ul {
    /*list-style-image: url(../images/list-icon.png);*/
    */ line-height: 25px;
}

#contentsection {
    padding: 0;
}

#page-title {
    color: var(--color-primary);
    border: 0;
    margin: 0;
    margin-bottom: 18px;
    padding: 0;
}

.region.region-content h3 {
    color: var(--color-secondary);
}

.region.region-content h4 {
    color: var(--color-secondary);
}

.region.region-content .content ul,
.region.region-content .view-content ul {
    /*list-style-image: url("../images/bullet.png");*/
}

.region.region-content .content li,
.region.region-content .view-content li {
    padding: 6px 0;
}

.path-frontpage #notfrontwrap {
    min-height: 0;
    height: 0 !important;
}

.path-frontpage #contentsection {
    padding: 0 49px;
}

.breadcrumb {
    background: #f5f5f5;
    border-radius: 0;
    font: var(--text-paragraph);
    margin: 0 -14px 12px;
    padding: 10px 18px;
}

.breadcrumb li {
    color: var(--color-secondary);
}

.breadcrumb li a {
    color: var(--color-secondary);
}

.breadcrumb>li+li:before {
    color: var(--color-secondary);
}

.breadcrumb>li.active {
    color: var(--color-primary);
}

.dfile a {
    background: url('../images/download.png') no-repeat center center / cover;
    width: 25px;
    height: 25px;
    display: block;
    overflow: hidden;
    text-indent: 100%;
    white-space: nowrap;
    border: none !important;
    /*margin: 0 auto;*/
}

.galleryp_image img,
.video-pgallery iframe {
    display: block;
    height: 215px;
    width: 220px;
    max-width: 100%;
    /* object-fit: cover; */
    margin: 0 auto 1em;
}

.galleryp_title {
    text-align: center;
}

.galleryp_desg {
    text-align: center;
    font-size: 13px;
    min-height: 46px;
}

.galleryp_title a {
    display: block;
    height: 52.5px;
    overflow: hidden;
}

#block-system-main .date-display-single {
    display: block;
    font-weight: bold;
    margin-bottom: 6px;
}

.noticep-wrap ul {
    padding-left: 1em;
}

time {
    font-weight: bold;
    margin-bottom: 10px;
}

.page-node-type-gallery .slick .slick__slide:focus {
    border: 0
}

#edit-submitted-email {
    display: block;
    width: 100%;
    height: 34px;
    padding: 6px 12px;
    font-size: 14px;
    line-height: 1.428571429;
    color: #555;
    vertical-align: middle;
    background-color: #fff;
    background-image: none;
    border: 1px solid #ccc;
    border-radius: 4px;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
    -webkit-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
    transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
}

.webform-submit.button-primary.btn.btn-primary.form-submit {
    margin-bottom: 2%;
}

/** Sitemap **/

.sitemap {
    padding: 0 1em;
}

.sitemap-item {}

.sitemap-item ul {
    padding: 0 0 0 1.5em;
    margin: 0 !important;
    float: none;
    text-align: start;
    list-style: disc;
}

.sitemap-item ul li {
    float: none;
    display: list-item;
}

.sitemap-item ul li a {
    text-decoration: none;
    display: initial;
    font: var(--text-paragraph);
    color: #333333;
    padding: 0;
}

.sitemap-item ul li a:hover,
.sitemap-item ul li a:focus {
    text-decoration: underline;
    background: transparent;
}

.sitemap .caret {
    display: none;
}

.sitemap-item ul li ul {
    position: initial;
    display: block;
    border: none;
    border-radius: 0;
    box-shadow: none;
    -webkit-box-shadow: none;
    background: transparent;
    background-clip: inherit;
    list-style: circle;
}

.sitemap-item ul li ul li {
    display: list-item;
}

.sitemap-item ul li ul li a,
.sitemap-item .navbar-nav .dropdown-menu>li>a {
    text-decoration: none;
    display: initial;
    font: var(--text-paragraph);
    color: #333333;
    padding: 0;
}

.sitemap-item ul li ul li a:hover,
.sitemap-item ul li ul li a:focus,
.sitemap-item .navbar-nav .dropdown-menu>li>a:hover,
.sitemap-item .navbar-nav .dropdown-menu>li>a:focus {
    text-decoration: underline;
    background: transparent;
}

.sitemap-item .dropdown-menu>li>a:hover,
.sitemap-item .dropdown-menu>li>a:focus {
    color: #00173C !important;
}

.sitemap-item ul li ul li ul {
    display: none;
}

.sitemap-item ul li ul li.expanded ul {
    display: block;
    list-style: square;
}

/* ----------------------------------------- */
/* REUSABLE COMPONENTS */
/* ----------------------------------------- */

.section-container {
    padding: var(--section-spacing);
}

.section-heading-wrap {
    margin-bottom: 58px;
    text-align: center;
}

.section-sub-heading {
    font: 24px var(--outfitR);
    color: var(--color-primary);
    margin-bottom: 22px;
}

.section-heading {
    font: 48px var(--outfitB);
    color: var(--color-secondary);
    margin-bottom: 22px;
}

.section-heading-desc {
    font: 16px var(--albertL);
    font-weight: 300;
    line-height: 26px;
    text-align: center;
    color: #121212;
}

.section-heading span {
    color: var(--color-primary);
}

.white-heading {
    color: #fff;
}

.section-heading-para {
    font: var(--text-paragraph-l);
    color: var(--color-dark);
    text-align: center;
    margin-bottom: 32px;
}

.section-para {
    font: var(--text-paragraph-l);
    color: var(--color-white);
    margin-bottom: 16px;
}

.section-btn-secondary {
    height: 46px;
    width: 255px;
    background-color: var(--color-white);
    font: var(--text-h6);
    color: var(--color-blue);
    border-radius: 20px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

/* .section-btn-wrap a {
    text-decoration: none;
}

.section-btn {
    width: 168px;
    height: 44px;
    background: #FFFFFF;
    border-radius: 10px;
    font: 18px var(--outfitR);
    line-height: 20px;
    display: flex;
    align-items: center;
    letter-spacing: 0.14px;
    color: #333333;
    justify-content: space-between;
    text-align: center;
    padding-left: 34px;
    margin: 0 auto;
}

.section-btn:hover {
    background: var(--gold-gradient);
}

.btn-box {
    background: var(--gold-gradient);
    border-radius: 10px;
    height: 100%;
    width: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
} */

.section-btn-wrap a {
    text-decoration: none;
}

.section-btn {
    width: 168px;
    height: 44px;
    background: #FFFFFF;
    border-radius: 10px;
    font: 18px var(--outfitR);
    line-height: 20px;
    letter-spacing: 0.14px;
    color: #333333;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: center;
    padding-left: 34px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

.section-btn:hover {
    color: var(--color-secondary);
}

/* Gold gradient fill */
.section-btn::before {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--gold-gradient);
    transform: translateX(-100%);
    transform-origin: left center;
    transition: transform 0.45s ease;
    z-index: -1;
}

/* Fill from left to right on hover */
.section-btn:hover::before {
    transform: translateX(0);
}


/* Arrow box */
.btn-box {
    background: var(--gold-gradient);
    border-radius: 10px;
    height: 100%;
    width: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
    transition: background 0.2s ease;
}

/* Make arrow box transparent when gradient reaches it */
.section-btn:hover .btn-box {
    background: transparent;
}

/* Keep arrow completely static */
.btn-box img {
    display: block;
}

.secondary-btn {
    background: var(--color-secondary);
}

.section-col a {
    text-decoration: none;
}

.slick--skin--boxed .slide__content {
    margin: 0px;
    border-radius: 0;
    background-color: transparent;
    border: unset;
    border-bottom: unset;
}

.slick--skin--boxed .slide__content:hover {
    box-shadow: none;
    border-color: unset !important;
}

.slick--skin--boxed-carousel .slide__caption {
    padding: 0;
}

#backtotop {
    bottom: 38px;
    height: 50px;
    width: 50px;
    border-radius: 10px;
}

.text-left {
    text-align: left;
}

/* ----------------------------------------- */
/* BANNER 1 MAIN BANNER */
/* ----------------------------------------- */



/* ----------------------------------------- */
/* BANNER 2 -  */
/* ----------------------------------------- */



/* ----------------------------------------- */
/* BANNER 3 -  */
/* ----------------------------------------- */



/* ----------------------------------------- */
/* BANNER 4 -  */
/* ----------------------------------------- */

.partners {
    width: 100%;
    background: var(--partners-bg);
    padding: clamp(3rem, 7vw, 5.75rem) clamp(1.25rem, 5vw, 4.5rem);
    padding-top: 0;
}

.partners__inner {
    display: grid;
    grid-template-columns: minmax(0, 1.18fr) minmax(19rem, 0.82fr);
    align-items: center;
    gap: clamp(2rem, 5vw, 4rem);
    max-width: 1240px;
    margin: 0 auto;
}

.partners__media {
    overflow: hidden;
    border-radius: 20px;
    aspect-ratio: 1.63 / 1;
    background: #d9dee0;
}

.partners__media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.partners__content {
    min-width: 0;
}

.partners__content .section-heading-wrap {
    margin-bottom: 38px;
}

.partners__content .section-sub-heading,
.partners__content .section-heading {
    margin-bottom: 17px;
}

.partners__content .section-heading-wrap,
.partners__content .section-heading-desc {
    text-align: left;
}

.partners__list {
    display: grid;
    gap: 18px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.partners__item {
    position: relative;
    /* display: flex; */
    align-items: center;
    min-height: 1.7rem;
    padding: 7px 14px;
    line-height: 1.35;
    width: fit-content;
}

.partners__item:hover {
    background: var(--gold-gradient);
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
}

.partners__item a {
    font: 19px var(--outfitL);
    color: var(--color-secondary);
    text-decoration: none;
}

.partners__item::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.15rem;
    bottom: 0.15rem;
    width: 2px;
    background: var(--color-primary);
}

.partners__item::after {
    content: "";
    position: absolute;
    /* right: 0.25rem; */
    top: 50%;
    width: 17px;
    height: 14px;
    background: url("../images/sp-icon.png") no-repeat;
    margin-top: -7px;
    margin-left: 25px;
}

@media (max-width: 860px) {
    .partners__inner {
        grid-template-columns: 1fr;
    }

    .partners__media {
        border-radius: 18px;
    }

    .partners__content {
        width: 100%;
    }

    .partners__list {
        width: 100%;
    }
}

@media (max-width: 520px) {
    .partners {
        padding-inline: 1rem;
    }

    .partners__media {
        aspect-ratio: 1.25 / 1;
        border-radius: 14px;
    }

    .partners__subtitle {
        margin-bottom: 1.35rem;
    }

    .partners__item {
        min-height: 2.15rem;
        padding-right: 1.4rem;
    }

    .partners__item--active {
        width: 100%;
    }

    .partners__item::after {
        display: none;
    }
}

/* ----------------------------------------- */
/* BANNER 10 - HIGHLIGHTS  */
/* ----------------------------------------- */

#block-views-block-highlights-block-1 {
    padding: 71px 72px;
    background: #F3F3F3;
}

#block-views-block-highlights-block-1 .view-content {
    margin-bottom: 58px;
}

.high-wrap {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 18px 30px;
    gap: 28px;
    background: #FFFFFF;
    border-radius: 12px;
    margin: 0 8px;
    min-height: 294px;
}

.high-wrap:hover {
    /* New Golden */
    background: var(--gold-gradient);
    box-shadow: 0px 0px 19px rgba(183, 136, 28, 0.32);
}

.high-date {
    background: var(--gold-gradient);
    padding: 2.5px 24px;
    border-radius: 9px;
}

.high-wrap:hover .high-date {
    background: #F2F2F2;
}

.high-title {
    font: 18px var(--albertM);
    font-weight: 500;
    line-height: 26px;
    color: #000000;
}

.high-body {
    font: 16px var(--albertL);
    font-weight: 300;
    line-height: 26px;
    color: #000000;
}

.high-wrap:hover .high-body {
    color: #121212;
}

.high-read-more {
    display: flex;
    align-items: center;
}

.high-read-more a {
    font: 16px var(--albertM);
    font-weight: 500;
    line-height: 19px;
    color: #B7881C;
    text-decoration: none;
}

.high-wrap:hover .high-read-more a {
    color: var(--color-secondary);
}

.high-btn {
    background: url("../images/arrow-gold.png") no-repeat;
    height: 13px;
    width: 21px;
    display: inline-block;
    margin-left: 8px;
}

.high-wrap:hover .high-btn {
    background: url("../images/arrow-char.png") no-repeat;
}

@media only screen and (max-width: 760px) {

    #block-views-block-highlights-block-1 {
        padding: 60px 18px;
    }
}

.cc-card a {
    justify-content: flex-start;
}

.item-cat {
    position: initial;
    transform: unset;
}

/* ----------------------------------------- */
/* BANNER 10 - GALLERY  */
/* ----------------------------------------- */

#block-views-block-gallery-block-block-1 {
    background: url("../images/gallery-bg.png") no-repeat center center/cover;
    padding: 71px 72px;
}

@media only screen and (max-width: 760px) {

    #block-views-block-gallery-block-block-1 {
        padding: 60px 18px;
    }
}

#block-views-block-gallery-block-block-1 .view-content {
    margin-bottom: 50px;
}

#block-views-block-gallery-block-block-1 a {
    text-decoration: none;
}

#block-views-block-gallery-block-block-1 .slide__caption {
    padding: 0;
}

#block-views-block-gallery-block-block-1 .slick__slide {
    margin: 0 8px;
}

.gallery-image {
    margin-bottom: 18px;
}

.gallery-image img {
    /* width: 411.31px; */
    height: 276px;
    opacity: 0.97;
    border: 1px solid #E2E2E2;
    box-shadow: 0px 2px 7px rgba(20, 20, 43, 0.06);
    border-radius: 24px;
}

.gallery-image img {
    height: 276px;
    width: 100%;
    object-fit: cover;
    opacity: 0.97;
    border: 1px solid #E2E2E2;
    box-shadow: 0px 2px 7px rgba(20, 20, 43, 0.06);
    border-radius: 24px;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.gallery-wrap:hover .gallery-image img {
    transform: translateY(-4px);
    box-shadow: 0px 8px 18px rgba(20, 20, 43, 0.12);
}

.gallery-title {
    font: 16px var(--albertR);
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
    text-align: center;
    color: #FFFFFF;
}

/* ----------------------------------------- */
/* FOOTER  */
/* ----------------------------------------- */

#section-footer {
    background-color: #151719;
    padding: 55px 75px;
}

#section-footer,
#section-footer a {
    color: var(--color-white);
}

.footer-heading {
    font: 20px lufgaR;
    margin-bottom: 20px;
}

.empty {
    visibility: hidden;
}

.footer-list ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}

.footer-list li {
    padding-bottom: 14px;
}

.footer-list li:last-of-type {
    padding-bottom: 0;
}

.footer-list a {
    font: var(--interR16);
    text-decoration: none;
    opacity: 0.7;
}

.footer-contact-list {
    display: flex;
    align-items: center;
}

.fcl-1 {
    margin-bottom: 23px;
}

.footer-contact-icon {
    margin-right: 14px;
}

.footer-contact-text {
    font: var(--dmSansR14);
    opacity: 0.7;
}

.contact-main-text {
    font: var(--dmSansR16);
    opacity: 1;
}

.social-wrap-1 {
    margin-bottom: 15px;
}

.social-wrap img {
    padding: 0 5px;
}

.footer-bottom {
    background-color: var(--color-primary);
    padding: 20px 75px;
}

.footer-bottom,
.footer-bottom a {
    font: var(--dmSansR16);
}

.copy-section,
.copy-section a,
.power-sec,
.power-sec a {
    color: var(--color-white);
    opacity: 0.7;
}

.power-sec {
    text-align: right;
}

/* ----------------------------------------- */
/* MEDIA QUERIES  */
/* ----------------------------------------- */

@media only screen and (min-width: 1366px) {

    body {
        max-width: 1920px;
        margin: 0 auto;
    }
}

@media only screen and (max-width: 767px) {

    :root {
        /* spacing */
        --section-spacing: 24px;
    }

    .navbar .logo img {
        width: 100%;
    }

    #navbar {
        padding: 10px !important;
        height: auto;
        background-image: none;
        margin: 0 !important;
    }

    .path-frontpage #navbar {
        position: relative;
    }

    .region.region-navigation-collapsible {
        justify-content: flex-start;
    }

    .navbar-header {
        padding: 0.5em;
    }

    /* .navbar .logo {
        width: 82%;
    }

    .navbar .logo img {
        width: 96%;
    } */

    .navbar-nav {
        margin: 0 !important;
        float: left;
        text-align: left;
        display: block;
    }

    .navbar-header {
        width: auto;
    }

    .navbar-default .navbar-nav>li {
        display: block;
        margin: 0px;
        padding: 0px;
    }

    .navbar-default .navbar-nav>li>a {
        padding: 10px !important;
        margin: 0px !important;
        display: block;
        width: 100%;
    }

    .navbar-default .navbar-nav>li>a:hover,
    .navbar-default .navbar-nav>li>a:focus,
    .navbar-default .navbar-nav>.active>a,
    .navbar-default .navbar-nav>.active>a:hover,
    .navbar-default .navbar-nav>.active>a:focus {
        border-radius: 0;
    }

    .navbar-default .input-group-btn {
        left: 0 !important;
    }

    #webform-submission-newsletter-add-form .form-actions {
        display: block;
    }

    #edit-actions-submit {
        margin: 0;
        display: block;
        margin: 0 auto;
    }

    .section-heading {
        font-size: 28px;
        margin-bottom: 10px;
    }

    .section-para {
        font-size: 14px;
    }

    .footer-items {
        display: block;
    }

    .footer-heading {
        margin-bottom: 14px;
    }

    .footer-top {
        margin-bottom: 0;
    }

    .footer-logos {
        margin-bottom: 24px;
    }

    .footer-middle {
        margin-bottom: 0;
    }

    .copy-sec,
    .power-sec {
        text-align: center;
    }

    .sitemap-item ul li ul li a,
    .sitemap-item .navbar-nav .dropdown-menu>li>a {
        white-space: normal;
    }

}

/* ----------------------------------------- */
/* VIEWS  */
/* ----------------------------------------- */

/*** HIGHLIGHTS ***/

.viewp_wrap {
    margin-bottom: 1.5em;
}

.viewp_date {
    color: var(--color-secondary);
    font-weight: bold;
    margin-bottom: 5px;
}

.highp_title a {
    border: 0 !important;
}

/*** GALLERY PAGE  ***/

.page-gallery .views-row {
    margin: 0;
    padding: 0;
    /* width: auto !important;
    float: none !important;
    clear: none !important; */

    display: flex;
    /* IMPORTANT for equal height cards */
}

/* =========================
   GRID WRAPPER
========================= */

.page-gallery .view-content {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    align-items: stretch;
}

/* Tablet */
@media (max-width: 991px) {
    .page-gallery .view-content {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

/* Mobile */
@media (max-width: 576px) {
    .page-gallery .view-content {
        grid-template-columns: 1fr;
    }
}

/* =========================
   CARD
========================= */

.page-gallery .gallery-item {
    display: flex;
    flex-direction: column;

    flex: 1;
    /* IMPORTANT: equal height inside row */

    width: 100%;
    height: 100%;

    background: #fff;
    border-radius: 10px;
    overflow: hidden;

    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.08);

    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

/* hover effect */
.page-gallery .gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

/* =========================
   IMAGE
========================= */

.page-gallery .gallery-image {
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
}

.page-gallery .gallery-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;

    transition: transform 0.4s ease;
}

.page-gallery .gallery-item:hover .gallery-image img {
    transform: scale(1.06);
}

/* =========================
   TITLE (EQUAL HEIGHT FIX)
========================= */

.page-gallery .gallery-title {
    padding: 12px 14px;
    font-size: 15px;
    font-weight: 600;
    color: #222;
    text-align: center;
}

.page-gallery .gallery-title a {
    border: 0 !important;
}

/*=========================================
    Floating Sidebar
=========================================*/

.floating-sidebar {
    position: fixed;
    top: 52%;
    right: 20px;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    /* gap: 22px; */
    z-index: 9999;
}

/*=========================================
    Social Icons
=========================================*/

.floating-social {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

/* Glass Button */

.floating-social a {
    position: relative;
    width: 50px;
    height: 50px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    color: var(--color-secondary);
    text-decoration: none;

    /* Better visibility on white backgrounds */
    background: rgba(35, 35, 35, .28);

    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);

    border: 1px solid rgba(255, 255, 255, .15);

    /* box-shadow:
        0 10px 30px rgba(0, 0, 0, .18),
        inset 0 1px 1px rgba(255, 255, 255, .18); */

    transition: all .35s ease;
}

.floating-social a.whatsapp svg {
    width: 23px;
    height: 23px;
    transform: translateY(1px);
}

/* Glass Shine */

.floating-social a::before {
    content: "";
    position: absolute;
    top: 7px;
    left: 9px;
    width: 55%;
    height: 35%;

    background: rgba(255, 255, 255, .22);

    border-radius: 50%;
    filter: blur(2px);
}

/* SVG */

.floating-social svg {
    width: 22px;
    height: 22px;
    fill: currentColor;
    display: block;
    position: relative;
    z-index: 2;
    transition: transform .35s ease;
}

/* Hover */

.floating-social a:hover {
    transform:
        translateX(-10px) translateY(-4px) scale(1.15);
}

.floating-social a:hover svg {
    transform:
        rotate(15deg) scale(1.25);
}


.floating-social a,
.floating-social a:hover {
    background: var(--gold-gradient);
}

/*=========================================
    Brand Colors
=========================================*/



/* .facebook:hover {
    background: #1877F2;
    border-color: #1877F2;
    box-shadow:
        0 0 18px rgba(24, 119, 242, .45),
        0 18px 35px rgba(24, 119, 242, .35);
}

.twitter:hover {
    background: #000;
    border-color: #000;
    box-shadow:
        0 0 18px rgba(0, 0, 0, .45),
        0 18px 35px rgba(0, 0, 0, .35);
}

.instagram:hover {
    background: linear-gradient(45deg,
            #f09433,
            #e6683c,
            #dc2743,
            #cc2366,
            #bc1888);
    border-color: transparent;
    box-shadow:
        0 0 18px rgba(220, 39, 67, .45),
        0 18px 35px rgba(220, 39, 67, .35);
}

.linkedin:hover {
    background: #0A66C2;
    border-color: #0A66C2;
    box-shadow:
        0 0 18px rgba(10, 102, 194, .45),
        0 18px 35px rgba(10, 102, 194, .35);
}

.youtube:hover {
    background: #FF0000;
    border-color: #FF0000;
    box-shadow:
        0 0 18px rgba(255, 0, 0, .45),
        0 18px 35px rgba(255, 0, 0, .35);
} */

/*=========================================
    Floating Animation
=========================================*/

.floating-social a {
    animation: float 4s ease-in-out infinite;
}

.floating-social a:nth-child(2) {
    animation-delay: .2s;
}

.floating-social a:nth-child(3) {
    animation-delay: .4s;
}

.floating-social a:nth-child(4) {
    animation-delay: .6s;
}

.floating-social a:nth-child(5) {
    animation-delay: .8s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }

}

/*=========================================
    Helpline
=========================================*/

.floating-helpline {
    transition: all 0.5s ease-in-out;
    transform: translateX(67%);
    margin-top: 10px;
}

.floating-helpline:hover {
    transform: translate(0);
}

.floating-helpline a {
    display: block;
    transition: transform .35s ease;
}

.floating-helpline img {
    height: auto;
    display: block;

    filter: drop-shadow(0 8px 18px rgba(0, 0, 0, .22));

    transition: all .35s ease;
}

.floating-helpline a:hover {
    transform: scale(1.08);
}

.floating-helpline img:hover {
    filter: drop-shadow(0 10px 24px rgba(0, 0, 0, .30));
}

/*=========================================
    Tablet
=========================================*/

@media (max-width:992px) {

    .floating-sidebar {
        right: 15px;
        gap: 18px;
    }

    .floating-social a {
        width: 52px;
        height: 52px;
    }

    .floating-social svg {
        width: 22px;
        height: 22px;
    }

    .floating-helpline img {
        width: 64px;
    }

}

/*=========================================
    Mobile
=========================================*/

@media (max-width:768px) {

    .floating-sidebar {
        right: 10px;
        gap: 15px;
    }

    .floating-social {
        gap: 10px;
    }

    .floating-social a {
        width: 48px;
        height: 48px;
    }

    .floating-social svg {
        width: 20px;
        height: 20px;
    }

    .floating-social a:hover {
        transform: scale(1.08);
    }

    .floating-helpline img {
        width: 56px;
    }

}

/*=========================================
    Small Mobile
=========================================*/

@media (max-width:480px) {

    .floating-sidebar {
        right: 8px;
    }

    .floating-social a {
        width: 44px;
        height: 44px;
    }

    .floating-social svg {
        width: 18px;
        height: 18px;
    }

    .floating-helpline img {
        width: 50px;
    }

}




/**** ****/

/*** TEAM ***/

/* Main Team Grid */
.our-team-wrapper .view-content {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    width: 100%;
}

/* Category Heading */
.our-team-wrapper .view-content>h3 {
    grid-column: 1 / -1;
    position: relative;
    width: fit-content;
    margin: 45px auto 16px;
    padding-bottom: 12px;
    text-align: center;
    font-size: 28px;
    font-weight: 600;
    line-height: 1.3;
    color: var(--color-primary);
}

/* First Category Heading */
.our-team-wrapper .view-content>h3:first-child {
    margin-top: 0;
}

/* Category Heading Underline */
.our-team-wrapper .view-content>h3::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 60px;
    height: 3px;
    transform: translateX(-50%);
    background: var(--color-primary);
}

/* Views Row */
.our-team-wrapper .views-row {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    margin: 0;
}

/* Views Field */
.our-team-wrapper .views-field-nothing,
.our-team-wrapper .field-content {
    width: 100%;
    height: 100%;
}

/* Card */
.team-card {
    display: flex;
    align-items: center;
    gap: 20px;
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    padding: 18px;
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    transition: all .3s ease;
}

.team-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, .08);
}

/* Image */
.team-card-image {
    flex: 0 0 140px;
}

.team-card-image img {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    object-fit: cover;
    object-position: top center;
    border: 3px solid #f3f3f3;
    display: block;
}

/* Content */
.team-card-content {
    flex: 1;
    min-width: 0;
}

.team-card-name {
    margin: 0;
    font: 18px var(--interSB);
    font-weight: 700;
    color: var(--color-primary);
    line-height: 1.3;
}

.team-card-designation {
    margin: 8px 0 16px;
    color: #666;
    font-size: 16px;
    line-height: 1.5;
}

.team-card-phone a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #B7881C;
    text-decoration: none;
    font-weight: 600;
    transition: .3s;
}

.team-card-phone a:hover {
    color: #143224;
}

.team-card-phone svg {
    flex-shrink: 0;
}

/* Tablet */
@media (max-width: 991px) {

    .our-team-wrapper .view-content {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .our-team-wrapper .view-content>h3 {
        font-size: 26px;
    }
}

/* Mobile */
@media (max-width: 767px) {

    .our-team-wrapper .view-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .our-team-wrapper .view-content>h3 {
        margin-top: 40px;
        margin-bottom: 10px;
        font-size: 24px;
    }

    .team-card {
        flex-direction: column;
        text-align: center;
    }

    .team-card-content {
        width: 100%;
    }

    .team-card-phone a {
        justify-content: center;
    }
}

/* Small Mobile */
@media (max-width: 480px) {

    .team-card-image {
        flex: 0 0 120px;
    }

    .team-card-image img {
        width: 120px;
        height: 120px;
    }

    .team-card-name {
        font-size: 17px;
    }

    .team-card-designation {
        font-size: 15px;
    }
}