:root {
    --gecf-body-color: #64686a;
    --gecf-primary-color: #3aaadc;
    --gecf-primaryLight-color: rgba(58, 170, 220, 0.1);
    --gecf-primaryLightDark-color: rgba(255, 255, 255, 0.22);
    --gecf-primaryDark-color: #004a99;
    --gecf-secondary-color: #ec7552;
    --gecf-black-color: #000000;
    --gecf-white-color: #FFFFFF;
    --gecf-lightgray-color: #8b8b8b;
    --gecf-gray-color: #101d19;
    --gecf-verylightgray-color: #fcfcfc;
    --gecf-verylight-color: #fafafa;
    --gecf-lightash-color: #e2e2e2;
    --gecf-lightashGray-color: #f9f9f9;
    --gecf-danger-color: #e85564;
    --gecf-ash-color: #6f6d71;
    --gecf-blue-color: #5e4b95;
    --gecf-ashgray-color: #c5c6c8;
    --gecf-transparent-black-2: rgba(0, 0, 0, 0.02);
    --gecf-transparent-black-5: rgba(0, 0, 0, 0.05);
    --gecf-transparent-black-10: rgba(0, 0, 0, 0.10);
    --gecf-transparent-black-15: rgba(0, 0, 0, 0.15);
    --gecf-transparent-black-25: rgba(0, 0, 0, 0.25);
    --gecf-transparent-black-50: rgba(0, 0, 0, 0.50);
    --gecf-transparent-black-60: rgba(0, 0, 0, 0.60);
    --gecf-transparent-black-65: rgba(0, 0, 0, 0.65);
    --gecf-transparent-white-50: rgba(255, 255, 255, 0.5);
    --gecf-transparent-white-30: rgba(255, 255, 255, 0.3);
}

html {
    scroll-behavior: smooth;
    font-size: 15px;
}

[dir="rtl"] {
    text-align: right;
}

[dir="ltr"] {
    text-align: left;
}

body {
    color: var(--gecf-body-color);
    font-feature-settings: "liga", "kern";
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    /*background-color: var(--gecf-verylight-color);*/
}

body,
a,
button,
.btn-brand,
.header-icon-box,
.header-icon-box .header-icon {
    -webkit-transition: all 400ms ease, outline 0ms;
    -moz-transition: all 400ms ease, outline 0ms;
    -ms-transition: all 400ms ease, outline 0ms;
    -o-transition: all 400ms ease, outline 0ms;
    transition: all 400ms ease, outline 0ms;
}

a {
    color: var(--gecf-primaryDark-color);
    text-decoration: none;
}

a:hover {
    color: var(--gecf-black-color);
    text-decoration: none;
}

input:active,
input:hover {
    outline: 0;
    box-shadow: none;
}

#mainContentSection {
    min-height: 50vh;
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    backface-visibility: hidden !important;
    transform: translateZ(0) scale(1, 1) !important;
}

#mainContentSection .ms-webpart-cell-vertical,
#mainContentSection .ms-webpart-chrome-vertical,
#mainContentSection .ms-webpart-zone,
#mainContentSection div.ms-webpart-cell-vertical-inline-table {
    display: block;
}

#mainContentSection .ms-webpartzone-cell {
    margin: 0 auto;
}

h1 {
    font-size: 2.44rem;
}

h2 {
    font-size: 1.88rem;
}

h3 {
    font-size: 1.66rem;
}

h4 {
    font-size: 1.22rem;
}

.text-bold {
    font-weight: bold !important;
}

.brand-color {
    color: var(--gecf-primary-color) !important;
}

.btn-brand,
.btn-brand-primary,
.btn-brand-outline,
.btn-brand-bg,
.btn-brand-dark,
.btn-brand-white,
.btn-danger {
    border-radius: 0.5rem;
    text-align: center;
    padding: 0.75rem 1.5rem;
    display: inline-block;
}

.btn-brand,
.btn-brand-white.active,
.btn-brand-primary,
a.btn-brand,
a.btn-brand-white.active,
a.btn-brand-primary {
    background-color: var(--gecf-primaryDark-color);
    color: var(--gecf-white-color);
    font-size: 0.875rem;
}

.btn-brand-outline,
.btn-brand-white {
    background-color: var(--gecf-white-color);
    color: var(--gecf-primaryDark-color);
}

.btn-brand-outline {
    border-radius: 0.5rem;
    font-size: 0.833rem;
    padding: 0.5rem 0.75rem;
}

.btn-brand-white {
    border: 0;
    box-shadow: 0 19px 33px 0 rgba(0, 72, 118, 0.1);
}

.btn-brand-primary {
    padding: 0.75rem 2rem;
}

.btn-brand:hover,
.btn-brand:focus,
.btn-brand-primary:hover,
.btn-brand-primary:focus {
    background: var(--gecf-white-color);
    color: var(--gecf-primaryDark-color);
    text-decoration: none;
}

.btn-brand-outline:hover,
.btn-brand-outline:focus {
    background-color: var(--gecf-primaryDark-color);
    color: var(--gecf-white-color);
}

.btn-small {
    padding: 0.25rem 0.5rem;
    font-size: 0.833rem;
}

.btn-link {
    text-transform: uppercase;
    font-size: 0.875rem;
    text-decoration: none;
    color: var(--gecf-primary-color) !important;
}

.btn-brand-dark {
    background-color: var(--gecf-black-color);
    color: var(--gecf-white-color);
    border: none;
}

.btn-brand-dark:hover {
    background-color: var(--gecf-white-color);
    color: var(--gecf-black-color);
}

.btn-brand-white {
    background-color: var(--gecf-white-color);
    color: var(--gecf-primaryDark-color);
}

.btn-danger {
    border: 1px solid var(--gecf-danger-color);
    color: var(--gecf-danger-color);
    background-color: var(--gecf-white-color);
}

.btn-danger:hover {
    border: 1px solid var(--gecf-danger-color);
    color: var(--gecf-white-color);
    background-color: var(--gecf-danger-color);
}

/* Default styles */
.overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
}

.border-radius-0 {
    border-radius: 0px !important;
}

.col-container {
    display: flex;
    flex-direction: column;
}

.col-container .card {
    flex: 1;
    position: relative;
}

.form-select:focus {
    box-shadow: none;
    outline: none;
}

.main-heading {
    font-size: 2.5rem;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: normal;
    color: var(--gecf-gray-color);
}

h2.main-heading {
    font-size: 2.5rem;
}

h3.main-heading {
    font-size: 1.5rem;
}

header.header {
    background-color: var(--gecf-white-color);
    position: sticky;
    z-index: 3;
    top: 0;
        box-shadow: 0 2px 15px 0 rgba(0, 0, 142, 0.1);
}

.btn-brand {
    background-color: var(--gecf-primaryDark-color);
    border: 1px solid var(--gecf-primaryDark-color);
    box-shadow: none;
}

.btn-brand-outline {
    background-color: transparent;
    border: 1px solid var(--gecf-primaryDark-color);
    box-shadow: none;
    color: var(--gecf-primaryDark-color);
    border-radius: 0.5rem;
    padding: 0.75rem 2rem;
    font-weight: 600;
}

.top-menu {
    background-color: var(--gecf-primary-color);
    padding: 0.3rem 0;
}

.top-menu ul {
    display: flex;
    align-items: center;
    list-style: none;
    margin-bottom: 0;
    padding: 0;
    color: var(--gecf-white-color);
}

.topbar-call li {
    display: inline-block;
    padding: 0.2rem 0.4rem;
}

.topbar-social li {
    padding: 0.4rem;
    text-align: center;
}

.topbar-social li:hover {
    background-color: var(--gecf-primaryLight-color);
}

.topbar-social li a {
    color: var(--gecf-white-color);
    font-size: 1rem;
    padding: 0.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 1.3rem;
    width: 1.3rem;
    background-color: var(--gecf-white-color);
    color: var(--gecf-primary-color);
    line-height: normal;
    border-radius: 0.3rem;
}

.topbar-social li a:hover {
    background-color: var(--gecf-black-color);
}

/* navbar menu */
.header .navbar-brand img {
    max-height: 5.5rem;
}

.header .navbar-brand span {
    font-size: 0.875rem;
    display: inline-block;
    font-weight: bold;
    color: var(--gecf-body-color);
}

.header .nav-link {
    font-size: 1rem;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: normal;
    color: var(--gecf-body-color);
    margin: 0;
    width: 100%;
    position: relative;
}

.header .nav-link.active:after,
.header .nav-link:hover:after,
.header .nav-item:hover .nav-link:after {
    content: '';
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 0.1rem;
    background-color: var(--gecf-primary-color);
    border-radius: 0;
}

.header .nav-link:hover {
    color: var(--gecf-primary-color);
}

.header .nav-link.active:after {
    background-color: var(--gecf-primary-color);
}

.header .nav-link.active {
    color: var(--gecf-primary-color);
}

.header .navbar-toggler,
.header .navbar-toggler i {
    border: none;
    color: var(--gecf-primary-color);
}

.navbar-toggler:focus {
    box-shadow: none;
}

.gecf-menu .navbar-nav .nav-item {
    padding: 0 0.5rem;
}

.gecf-menu li {
    /*    position: relative;*/
    transition: all 0.5s;
}

/*.gecf-menu{
background-color: var(--gecf-primaryDark-color);
}*/
.gecf-menu li>.nav-dropdown {
    width: 100%;
    position: absolute;
    z-index: 2;
    min-width: 14rem;
    /*    border-bottom: 2px solid var(--gecf-verylightgray-color);*/
    background-color: var(--gecf-primary-color);
    font-size: 0.875rem;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    padding: 0.5rem 0;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.4s ease 0s;
    -o-transition: all 0.4s ease 0s;
    transition: all 0.4s ease 0s;
    -webkit-transform: rotateX(90deg);
    -moz-transform: rotateX(90deg);
    -ms-transform: rotateX(90deg);
    transform: rotateX(90deg);
    -webkit-transform-origin: top center;
    -ms-transform-origin: top center;
    transform-origin: top center;
    border-radius: 0;
}

.desktopSub-menu li>.nav-dropdown {
    width: calc(100% + 3.5rem);
    left: -2rem;
}

.gecf-menu li>.nav-dropdown li>.nav-dropdown {
    top: 0;
}

.gecf-menu li:hover>.nav-dropdown

/*.gecf-menu li:focus-within>.nav-dropdown */
    {
    visibility: visible;
    opacity: 1;
    -webkit-transform: rotateX(0deg);
    -moz-transform: rotateX(0deg);
    -ms-transform: rotateX(0deg);
    transform: rotateX(0deg);
}

.gecf-menu li>.nav-dropdown a {
    color: var(--gecf-white-color);
    display: block;
    padding: 0.4rem 1rem;
    position: relative;
    font-weight: normal;
    font-size: 0.875rem;
}

.gecf-menu li>.nav-dropdown a:hover,
.gecf-menu .nav-item .nav-dropdown a:focus {
    color: var(--gecf-primaryDark-color);
}

.gecf-menu li>.nav-dropdown li:before {
    content: "";
    position: absolute;
    z-index: -1;
    width: 100%;
    height: 100%;
    background: var(--gecf-primary-opacity-5);
    bottom: 0;
    transition: all 0.5s;
    opacity: 0;
}

.gecf-menu li>.nav-dropdown li:hover:before,
.gecf-menu .nav-item .nav-dropdown li:focus:before {
    opacity: 1;
}

.gecf-menu li>.nav-dropdown ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.gecf-menu li>.nav-dropdown ul li:not(:last-child) {
    border-bottom: 1px solid var(--gecf-black-opacity-5);
}

.home-main {
    background-color: var(--gecf-white-color);
    z-index: 2;
    position: relative;
}

.desktopSub-menu .nav-dropdown a img {
    border-radius: 0.5rem;
    object-fit: cover;
}

.desktopSub-menu .nav-dropdown a::after {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--gecf-transparent-black-50);
    z-index: 1;
    width: 100%;
    height: 100%;
    transition: all 0.5s;
}

.desktopSub-menu .nav-dropdown a:hover::after {
    background-color: var(--gecf-transparent-black-60);
}

.desktopSub-menu .nav-dropdown a {
    position: relative;
    border-radius: 0.5rem;
    overflow: hidden;
}

.desktopSub-menu .nav-dropdown a span {
    position: absolute;
    top: 0.5rem;
    z-index: 2;
    padding: 1rem;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--gecf-white-color);
}

.desktopSub-menu .nav-dropdown a:hover span {
    text-decoration: underline;
}

.desktopSub-menu .nav-dropdown {
    padding: 1rem 0 3rem 0 !important;
}
.sub-menu-text,
.menu-text {
    padding: 1.5rem;
}
.sub-menu-text h5,
.menu-text h5 {
    color: var(--gecf-secondary-color);
    font-size: 1.25rem;
    font-weight: 600;
}


.gecf-menu .mobile-menu li {
    position: relative;
}

.gecf-menu .mobile-menu li.with-dropdown:before {
    right: 0;
}

.gecf-menu .desktopSub-menu li>.nav-dropdown {
    background-color: var(--gecf-white-color);
}

/* menu end */
.main-heading p {
    color: var(--gecf-secondary-color);
    font-size: 1rem;
    font-weight: 600;
}

.main-heading h2 {
    font-size: 2.6rem;
    font-weight: 600;
    color: var(--gecf-black-color);
}

.main-heading h3 {
    color: var(--gecf-secondary-color);
    font-size: 2rem;
    font-weight: 600;
}

.main-heading h4 {
    font-size: 1.225rem !important;
    font-weight: 600 !important;
    color: var(--gecf-black-color) !important;
}

.home-banner {
    margin-bottom: 3rem;
    position: sticky;
    top: 147px;
    z-index: 0;
}

.home-banner .carousel-item .slider-img {
    width: 100%;
    object-fit: cover;
}

.home-banner .carousel-item .carousel-caption {
    padding: 2rem;
    right: 0;
    left: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    text-align: start;
    justify-content: center;
}

.home-banner .carousel-item .carousel-caption .caption-card {
    position: relative;
    padding: 2rem;
}

.home-banner .carousel-caption h2 {
    font-size: 2.75rem;
    font-weight: 800;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.42;
    letter-spacing: 0.5px;
    color: var(--gecf-white-color);
}

.home-banner .carousel-caption p {
    font-size: 1rem;
    color: var(--gecf-white-color);
    font-weight: 300;
    opacity: 0.9;
}

.home-banner .carousel-indicators {
    left: 0;
    right: 0;
    bottom: 10%;
}

.home-banner .carousel-indicators button {
    border-radius: 100%;
    width: 0.8rem;
    height: 0.8rem;
}

.home-banner .carousel-indicators button.active {
    background-color: var(--gecf-primary-color);
}

/* aboutus-section */




.aboutus-content q {
    position: relative;
    display: block;
    font-size: 1.25rem;
    line-height: 1.8;
}

.aboutus-content q::before,
.aboutus-content q::after {
    content: '';
    position: absolute;
    padding: 2rem;
}

.aboutus-content q::before {
    background: url(../img/q-before.svg) no-repeat center center;
    top: 0;
}

.aboutus-content q::after {
    background: url(../img/q-after.svg) no-repeat center center;
    bottom: 0rem;
}


/* Quick Links */
.quicklinks-section .card {
    background-color: transparent;
    border-radius: 0;
    border: 0;
    margin: 2rem 0;
}

.info-box {
    padding: 0.5rem;
    transition: all 0.5s;
}

.info-box p {
    color: var(--gecf-black-color);
    margin: 0;
    font-size: 1rem;
    font-weight: bold;
}

.info-box a {
    color: var(--gecf-black-color);
    transition: all 0.5s;
}

.info-box a:hover,
.info-box:hover p {
    color: var(--gecf-primary-color);
}

.quicklinks-section .info-box .icon-wraper {
    height: 3.6rem;
    width: 3.6rem;
    margin: 1rem auto;
}

.quicklinks-section .owl-carousel {
    padding: 0 1.5rem;
    background-color: var(--gecf-white-color);
    border-radius: 8px;
    box-shadow: 0 25px 55px 0 rgba(126, 126, 126, 0.15);
    text-align: center;
}

.quicklinks-section .owl-nav button {
    border-radius: 100%;
    box-shadow: 0 2px 15px 0 rgba(0, 0, 142, 0.1);
    height: 2rem;
    width: 2rem;
    position: absolute;
    text-align: center;
    top: calc(50% - 1rem);
    background-color: var(--gecf-primaryDark-color) !important;
}

.quicklinks-section .owl-nav .owl-prev:after,
.quicklinks-section .owl-nav .owl-next:after {
    position: absolute;
    font-family: 'FontAwesome';
    top: 0.2rem;
    color: var(--gecf-white-color) !important;
}

.quicklinks-section .owl-nav .owl-prev:after {
    content: '\f104';
}

.quicklinks-section .owl-nav .owl-next:after {
    content: '\f105';
}

.quicklinks-section .owl-nav button span {
    display: none;
}



.quicklinks-section .owl-nav .owl-prev.disabled,
.quicklinks-section .owl-nav .owl-next.disabled {
    display: none;
}

/* Latest Insights Section */
.latestinsights-section {
    padding: 2rem 0;
    background-color: var(--gecf-transparent-black-5);

}

.insights-content {
    background-size: 5rem;
}

.latestinsights-section .card {
    border: 0;
    overflow: hidden;
    margin: 1.5rem;
}

.latestinsights-section .card .card-body {
    padding: 0;
}

.latestinsights-section .read-more {
    color: var(--gecf-white-color);
    border-bottom: 1px solid var(--gecf-white-color);
    width: fit-content;
    padding-bottom: 0.3rem;
    font-size: 1rem;
}


.latestinsights-section .card-img-overlay {
    background-color: rgb(0 74 153 / 80%);
    color: var(--gecf-white-color);
    padding: 3rem;
}

.latestinsights-section .card-img-overlay a {
    color: var(--gecf-white-color);
}

.latestinsights-section .card-img-overlay a:hover {
    color: var(--gecf-black-color);
}

.latestinsights-section .col-container:nth-child(even) .card-img-overlay {
    background-color: rgb(58 170 220 / 80%);
}

.latestinsights-section .card-img-overlay h4 {
    opacity: 0.87;
    font-size: 1.25rem;
}

.latestinsights-section .card-img-overlay h3 {
    font-size: 2rem;
    margin: 1.25rem 0;
}

/* resources content Section */
.resources-section {
    background: url(../img/aboutus-dots.svg) no-repeat 102% 90%;
    background-size: 4rem;
    padding-top: 3rem;
}

.resources-content .card {
    border-radius: 0;
    border: 0;
}

.resources-content .owl-carousel {
    padding: 0 1.5rem;
    text-align: center;
}

.resources-content .icon-wraper img {
    width: 10rem;
    height: 10rem;
    border-radius: 50%;
    margin: 1rem auto;
}

.resources-content .owl-nav button {
    border-radius: 100%;
    height: 2rem;
    width: 2rem;
    position: absolute;
    text-align: center;
    top: calc(50% - 1rem);
    background-color: var(--gecf-white-color) !important;
    border: 1px solid var(--gecf-primaryDark-color) !important;
    color: var(--gecf-primaryDark-color) !important;
}

.resources-content .owl-nav .owl-prev:after,
.resources-content .owl-nav .owl-next:after {
    position: absolute;
    font-family: 'FontAwesome';
    top: 0.1rem;
    color: var(--gecf-primaryDark-color) !important;
}

.resources-content .owl-nav button:hover {
    background-color: var(--gecf-primaryDark-color) !important;
    color: var(--gecf-white-color) !important;
}

.resources-content .owl-nav button:hover::after {
    color: var(--gecf-white-color) !important;
}

.resources-content .owl-nav .owl-prev:after {
    content: '\f105';
}

.resources-content .owl-nav .owl-next:after {
    content: '\f104';
}

.resources-content .owl-nav button span {
    display: none;
}



.resources-content .owl-nav .owl-prev.disabled,
.resources-content .owl-nav .owl-next.disabled {
    display: none;
}

/* Press Releases Section */
.pressreleases-section {
    padding: 3rem 0;
}

.pressreleases-section .card {
    border-radius: 0.75rem;
    box-shadow: 0 25px 55px 0 rgba(126, 126, 126, 0.15);
    border: none;
    padding: 2rem;
}

.pressreleases-section .press-date {
    color: var(--gecf-primary-color);
    font-size: 1rem;
    font-weight: normal;
}

.pressreleases-section .card h4 {
    font-size: 2rem;
    font-weight: normal;
    color: black;
}

.pressreleases-section p {
    color: var(--gecf-gray-color);
}

.pressreleases-section .main-heading p {
    color: var(--gecf-secondary-color);
}

.pressreleases-section .read-more a {
    color: var(--gecf-primaryDark-color);
    border-bottom: 1px solid var(--gecf-primaryDark-color);
    padding-bottom: 0.3rem;
    font-size: 1rem;
    width: fit-content;
    display: inline-block;
}

.pressreleases-section .read-more a:hover {
    color: var(--gecf-secondary-color);
    border-bottom-color: var(--gecf-secondary-color);
}

.pressreleases-section .carousel-item {
    margin-top: 2rem;
}

.pressreleases-section .carousel-indicators button {
    width: 0.75rem;
    height: 0.75rem;
    border-radius: 100%;
    background-color: var(--gecf-transparent-black-25);
}

.pressreleases-section .carousel-indicators {
    bottom: -3rem;
}

.pressreleases-section .carousel-indicators .active {
    background-color: var(--gecf-primary-color);
}

.latestevents-section {
    background-color: var(--gecf-primary-color);
    padding-top: 3rem;
    padding-bottom: 3rem;
    /*    position: relative;*/
}

.latestevents-section:after {
    content: '';
    position: relative;
    background-image: url("../img/Dot Pattern.png");
    background-size: contain;
    background-repeat: no-repeat;
    bottom: -0.5rem;
    width: 5rem;
    height: 5rem;
    display: block;
}

.latestevents-section .nav-tabs {
    margin-bottom: 2rem;
}

.latestevents-section .nav-tabs .nav-link {
    color: var(--gecf-white-color);
}

.latestevents-section .nav-tabs .nav-link.active {
    color: var(--gecf-primary-color);
}

.latestevents-section .btn-brand-outline {
    border: 1px solid var(--gecf-white-color);
    color: var(--gecf-white-color);
}

.latestevents-section .btn-brand-outline:hover {
    background-color: var(--gecf-white-color);
    color: var(--gecf-primary-color);
}

.latestevents-section .press-date {
    color: var(--gecf-white-color);
    margin-top: 1rem;
}

.latestevents-section h4 {
    font-size: 1.5rem;
    color: var(--gecf-white-color) !important;
}

.latestevents-section p {
    color: var(--gecf-white-color);
    font-weight: normal;
    font-size: 1rem;
}

.latestevents-section .read-more a {
    color: var(--gecf-white-color);
    display: inline-block;
    border-bottom: 1px solid var(--gecf-white-color);
    width: fit-content;
    padding-bottom: 0.3rem;
}

.latestevents-section .read-more a:hover {
    color: var(--gecf-black-color);
    border-bottom-color: var(--gecf-black-color);
}

.latestevents-section .main-heading p {
    color: var(--gecf-white-color) !important;
}

.gecfawards-section {
    padding: 3rem 0;
}

.gecfawards-section .card {
    background-color: var(--gecf-primaryLight-color);
    border: none;
    margin-top: 2rem;
}

.gecfawards-section .award-img {
    width: 10rem;
    height: 10rem;
    min-width: 10rem;
    border-radius: 100%;
    object-fit: cover;
    margin-bottom: 1rem;
}

.gecfawards-section h4 {
    font-size: 1.813rem;
    color: var(--gecf-black-color);
}

.gecfawards-section p {
    color: var(--gecf-gray-color);
    margin-top: 1rem;
}

.gecfawards-section .arrow-btn {

    padding-top: 0.25rem;
    text-align: center;
}

.gecfawards-section .arrow-btn a {
    background-color: var(--gecf-primaryDark-color);
    width: 2rem;
    height: 2rem;
    border-radius: 100%;
    color: var(--gecf-white-color);
    display: flex;
    align-items: center;
    justify-content: center;
}

.gecfawards-section .arrow-btn a:hover {
    background-color: var(--gecf-secondary-color);
}

/* footer */
.footer {
    background-color: var(--gecf-primary-color);
    padding: 1.5rem 0;
    background-image: url("../img/footer-bg.png");
    background-position-y: bottom;
    background-size: 20rem;
    background-repeat: no-repeat;
    padding-top: 3rem;
    z-index: 1;
    position: relative;
}

.footer h4 {
    font-size: 2rem;
    color: var(--gecf-white-color);
}

.footer h5 {
    color: var(--gecf-white-color);
    font-size: 1.125rem;
    font-weight: 600;
}

.footer .footer-links a {
    padding: 0.5rem 1rem;
    color: var(--gecf-white-color);
    font-size: 0.9rem;
}

.footer .footer-links a:hover {
    text-decoration: underline;
}

.footer .footer-bottom {
    padding: 1rem 0 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.4);
}

.footer .footer-bottom p {
    text-align: center;
    color: var(--gecf-white-color);
    margin-bottom: 0;
}

.footer .footer-links {
    list-style: none;
    padding: 0;
}

.footer .footer-links a {
    padding: 0.3rem 0;
    display: inline-block;

}

.footer-filter .form-check-wraper {
    background-color: var(--gecf-primaryLightDark-color);
    padding: 0.75rem;
    border-radius: 0.5rem;
    margin-top: 1rem;
}

.footer-filter {
    border-bottom: 2px solid var(--gecf-primaryLightDark-color);
    padding-bottom: 2rem;
    margin-bottom: 2rem;
}

.footer-filter .form-check-label {
    color: var(--gecf-white-color);
}

.footer-filter .form-check-input {
    background-color: transparent;
    border: 1px solid var(--gecf-white-color);
    box-shadow: none !important;
}

.footer-filter .btn-brand-outline {
    border: 1px solid var(--gecf-white-color);
    color: var(--gecf-white-color);
    margin-top: 1rem;

}

.footer-filter .btn-brand-outline:hover {
    background-color: var(--gecf-white-color);
    color: var(--gecf-primary-color);
}

.footer-bottom {
    border-top: 1px solid var(--gecf-primaryLightDark-color);
    margin-top: 1rem;
    padding-top: 1rem;
}

.footer-bottom ul {
    display: flex;
    align-items: center;
    list-style: none;
    padding: 0;
    flex-wrap: wrap;
}

.footer-bottom ul a {
    color: var(--gecf-white-color);
    display: inline-block;
    padding: 0rem 1rem;
    font-size: 1rem;
}

.footer-bottom ul li:first-child a {
    border: none;
}

.footer-bottom ul a:hover {
    text-decoration: underline;
}

.innerpage-banner .banner-img {
    border-radius: 0.5rem;
}

.innerpage-banner {
    margin: 1rem 0;
}

.overview-details {
    margin: 2rem 0;
}

.overview-details p {
    font-size: 1.2rem;
}

.overview-details .info-details p {
    color: var(--gecf-black-color);
}

.overview-details .info-details {
    padding: 0 1rem;
}

.breadcrumb-wraper {
    background-color: var(--gecf-verylight-color);
    padding: 0.5rem 0;
}

.breadcrumb-wraper .breadcrumb-item+.breadcrumb-item::before {
    color: var(--gecf-primaryDark-color);
}

.breadcrumb-wraper .breadcrumb-item a {
    color: var(--gecf-primaryDark-color);
    font-weight: 600;
}

header.header.innerPages-header {
    z-index: 3;
}

.gecf-history .owl-nav .owl-prev.disabled,
.gecf-history .owl-nav .owl-next.disabled {
    display: none;
}

.gecf-history .card {
    background-color: var(--gecf-verylightgray-color);
    border: 1px solid var(--gecf-transparent-black-10);
    margin: 2rem 0;
    border-radius: 1.3rem;
    overflow: hidden;
}

.gecf-history .nav-link {
    background-color: var(--gecf-white-color);
    border: 1px solid var(--gecf-transparent-black-10);
    padding: 0.7rem 1rem;
    border-radius: 1rem;
    text-align: center;
    color: var(--gecf-black-color);
    font-weight: 600;
}

.gecf-history .nav-link.active,
.gecf-history .nav-link:hover {
    background-color: var(--gecf-primaryDark-color);
    color: var(--gecf-white-color);
}

.gecf-history .owl-nav .owl-prev:after,
.gecf-history .owl-nav .owl-next:after {
    position: absolute;
    font-family: 'FontAwesome';
    top: 0.2rem;
    color: var(--gecf-primaryDark-color) !important;
}

.gecf-history .owl-nav .owl-prev:after {
    content: '\f104';
}

.gecf-history .owl-nav .owl-next:after {
    content: '\f105';
}

.gecf-history .owl-nav button span {
    display: none;
}


.gecf-history .owl-nav button {
    border-radius: 100%;
    /*    box-shadow: 0 2px 15px 0 rgba(0, 0, 142, 0.1);*/
    height: 2rem;
    width: 2rem;
    position: absolute;
    text-align: center;
    top: calc(50% - 1rem);
    border: 1px solid var(--gecf-primaryDark-color) !important;
    background-color: var(--gecf-white-color) !important;
}

.gecf-history h2 {
    font-size: 1.75rem;
    color: var(--gecf-black-color);
    margin-top: 1rem;
}

.gecf-history p {
    font-size: 1.2rem;
}

.gecf-history .inner-card {
    background-color: var(--gecf-white-color);
    padding: 1rem;
    border: 1px solid var(--gecf-transparent-black-10);
    border-radius: 1.3rem;
    margin-top: 1rem;
}

.date p {
    font-size: 1rem;
    color: var(--gecf-secondary-color);
}

.gecf-history .inner-card h4 {
    color: var(--gecf-black-color);
    font-size: 1.5rem;
}

.gecf-history .inner-card h4 a {
    color: var(--gecf-black-color);
}

.read-more a {
    color: var(--gecf-primaryDark-color);
    border-bottom: 2px solid var(--gecf-primaryDark-color);
    padding-bottom: 0.5rem;

}

.gecf-history .innerCard-wraper {
    max-height: 100vh;
    overflow: auto;
    padding: 0 0.5rem;

}

.gecf-history .innerCard-wraper::-webkit-scrollbar {
    width: 5px;
    border-radius: 0.5rem;
}

/* Track */
.gecf-history .innerCard-wraper::-webkit-scrollbar-track {
    background: transparent;
}

/* Handle */
.gecf-history .innerCard-wraper::-webkit-scrollbar-thumb {
    background: var(--gecf-transparent-black-10);
    border-radius: 0.5rem;
}

.inner-pages {
    margin: 2rem 0;
}

.inner-heading h3 {
    background-color: var(--gecf-primaryLight-color);
    width: fit-content;
    padding: 0.5rem;
    color: var(--gecf-primary-color);
        font-size: 1.5rem;
    margin: 1.5rem 0;
}

.inner-pages p,
.inner-pages li {
    font-size: 1.2rem;
}

.inner-pages p a {
    color: var(--gecf-primaryDark-color);
}

.upload-doc .card {
    background-color: var(--gecf-lightashGray-color);
    border-radius: 1rem;
    border: 1px solid var(--gecf-lightash-color);
}

.upload-doc .card-body {
    display: flex;
}

.upload-doc .icon-wraper {
    width: 3.5rem;
    height: 3.5rem;
    min-width: 3.5rem;
    background-color: var(--gecf-secondary-color);
    border-radius: 100%;
    display: flex;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    font-size: 2rem;
    color: var(--gecf-white-color);
}

.upload-doc .card-body h5 {
    font-size: 1rem;
    color: var(--gecf-black-color);

}

.upload-doc .card-body p {
    text-align: end;
    font-size: 0.875rem;
    margin-bottom: 0;
    color: var(--gecf-primaryDark-color);
}

.governing-specialised-bodies {
    margin: 2rem 0;
}

.governing-specialised-bodies .card {
    background-color: var(--gecf-verylightgray-color);
    border: 1px solid var(--gecf-transparent-black-10);
    margin-top: 1.5rem;
    border-radius: 1rem;
}

.governing-specialised-bodies .read-more {
    text-align: end;
    border: none;
}

.governing-specialised-bodies .read-more a {
    border: none;
    font-weight: 600;
}

.governing-specialised-bodies h5 {
    color: var(--gecf-black-color);
    font-size: 1.4rem;
}

.faqs {
    margin: 2rem 0;
}

.faqs .accordion-item {
    margin-bottom: 1rem;
    border: 1px solid var(--gecf-lightash-color);
    border-radius: 1rem;
    overflow: hidden;
    background-color: var(--gecf-verylight-color);
    color: var(--gecf-body-color);
    line-height: 1.7;
}

.faqs .accordion-button {
    background-color: var(--gecf-verylight-color);
    box-shadow: none !important;
    font-size: 1.3rem;
    color: var(--gecf-black-color);
    font-weight: 600;
}

.faqs .accordion-button::after {
    position: absolute;
    content: '\F4FE';
    font-family: 'bootstrap-icons';
    background-image: none;
    color: var(--gecf-primaryDark-color);
}

.faqs .accordion-button:not(.collapsed)::after {
    content: '\F2EA';

}

.faq-feedback {
    margin: 3rem 0;
}

.faq-feedback .card {
    background-color: var(--gecf-primaryDark-color);
    border-radius: 1rem;
    padding: 0.5rem;
    text-align: center;

}

.faq-feedback .card p {
    color: var(--gecf-white-color);

    font-size: 1.2rem;
}

.faq-feedback-modal .modal-header,
.faq-feedback-modal .modal-footer {
    border: none;
}

.faq-feedback-modal .modal-header h1 {
    color: var(--gecf-black-color);
}

.faq-feedback-modal .modal-content {
    border-radius: 1rem;
}

.faq-feedback-modal .form-group {
    margin-bottom: 1rem;
}

.faq-feedback-modal .form-label,
.login-pages .card .form-label {
    color: var(--gecf-black-color);
    font-weight: 600;
}

.faq-feedback-modal .form-control,
.faq-feedback-modal .form-select,
.login-pages .card .form-control,
.member-profile .form-control,
.member-profile .form-select {
    border-radius: 1rem;
    min-height: 3rem;
    border: 1px solid var(--gecf-lightash-color);
    box-shadow: none !important;
}

.faq-feedback-modal ::placeholder ,
.member-profile ::placeholder {
    color: var(--gecf-transparent-black-25);
}

.org-chart {
    margin: 3rem auto;
    padding-bottom: 13rem;
    min-width: 991px;
    /*    overflow: auto;*/
    width: 100%;
}

.org-cahrt-responscive {
    overflow: unset;
}


.org-chart .org-head {
    width: 10rem;
    height: 10rem;
    min-width: 10rem;
    border-radius: 100%;
    background-color: var(--gecf-primary-color);
    color: var(--gecf-white-color);
    display: flex;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    padding: 0.5rem;
    position: relative;
}

.org-chart .org-head:after,
.org-row2 .org-node:after,
.org-col-line,
.org-row4 .org-node:after {
    content: '';
    position: absolute;
    height: 3rem;
    width: 2px;
    background-color: var(--gecf-primary-color);
    bottom: -3rem;
}


.org-row32 .org-node-32 {
    position: relative;
}

.org-row32 .org-node-32:after {
    content: '';
    position: absolute;
    height: 4rem;
    width: 2px;
    background-color: var(--gecf-primary-color);
    top: -5rem;
    left: 50%;
    transform: translateX(-50%);
}

.org-chart .org-col-3 .org-col-line {
    position: relative;
}

.org-chart .org-col-3 .org-col-line {
    top: -1.125rem;
    transform: translateX(-50%);
}

.org-chart .org-col-3 .org-col-line3 {
    top: -1.125rem;
}

.org-chart .org-row3 .org-col-3 {
    min-width: 9rem;
}

.org-chart .org-node {
    width: 9rem;
    height: 9rem;
    min-width: 9rem;
    border-radius: 100%;
    background-color: var(--gecf-primary-color);
    color: var(--gecf-white-color);
    display: flex;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    padding: 0.5rem;
    position: relative;
}

.org-chart .org-node:hover {
    background-color: var(--gecf-primaryDark-color);
}

.org-chart .org-node:before {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    left: 50%;
    transform: translateX(-50%);
}

.org-chart .org-node:before {
    /*        right: 0;*/
    /*    left: 0;*/
    top: -10px;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid var(--gecf-primary-color);
    background-color: var(--gecf-white-color);

}

.org-chart .org-row2 {
    margin-top: 3.5rem;
}

.org-chart .org-row3 hr {
    margin: 3rem auto 1rem auto;
    width: calc(100% - 9rem);

}

.org-chart hr {
    border-color: var(--gecf-primary-color);
    border-width: 2px;
    opacity: 1;
}

.org-chart .org-row4,
.org-row5 {
    margin-top: -0.45rem;
}

.org-row5 .org-sub-node {
    width: 9rem;
    height: 9rem;
    min-width: 9rem;
    position: relative;
}

.org-row5 .org-sub-node:after {
    content: '';
    position: absolute;
    height: 100%;
    width: 2px;
    background-color: var(--gecf-primary-color);
    left: 50%;
    transform: translateX(-50%);
    top: -13px;
}

.org-chart .org-row6 {
    margin-top: -0.8rem;
}

.org-chart .org-head h6,
.org-chart p {
    font-size: 1rem;
}

.country-map {
    margin: 2rem 0;
}

.country-map iframe {
    height: 100%;
    border-radius: 1rem;
}

.sub-heading {
    color: var(--gecf-black-color);
    font-size: 1.5rem;
}

.country-map .card {
    border-radius: 1.5rem;
    box-shadow: 0 2px 15px 0 rgba(0, 0, 142, 0.1);
    border: none;
    text-align: center;
    margin-bottom: 1.5rem;
}

.country-map .card img {
    max-height: 6rem;
}

.country-map .card .card-footer {
    background: transparent;
    border: none;
    padding-top: 0;
}

.country-map .card h4 {
    color: var(--gecf-black-color);
    margin-top: 1rem;
}

.country-map .card .read-more a {
    font-size: 1rem;
    border: none;
}

.org-col {
    position: relative;
    /*    z-index: 9;*/
}

.org-info-box {
    max-width: 20rem;
    min-width: 16rem;
    width: 100%;
    position: absolute;
    z-index: 10;
    margin-top: 20%;
    display: none;

}

.org-info-box .card {
    border: 1px solid var(--gecf-primaryDark-color);
    background-color: var(--gecf-verylightgray-color);
    text-align: center;
    position: relative;
    min-width: 15rem;
}

.org-info-box .card .img-wraper {
    width: 4rem;
    height: 4rem;
    border-radius: 100%;
    margin: 0 auto 1rem auto;

}

.org-info-box .card .read-more a {
    font-size: 1rem;
    border: none;
    font-weight: 600;
}

.org-info-box .card:before {
    content: '';
    position: absolute;
    height: 3rem;
    width: 2px;
    background-color: var(--gecf-primary-color);
    top: -3.3rem;
    left: 50%;
    transform: translateX(-50%);
}

.org-info-box .card:after {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    left: 50%;
    transform: translateX(-50%);
    top: -10px;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid var(--gecf-primary-color);
    background-color: var(--gecf-white-color);
}

.org-info-box .card .close-box {
    font-size: 1.5rem;
    position: absolute;
    top: 0;
    color: var(--gecf-body-color);
    z-index: 2;
    cursor: pointer;
}

.org-info-box .card h5 {
    font-size: 1rem;
    color: var(--gecf-black-color);
    margin-top: 0.5rem;
}

.country-details hr {
    border-width: 2px;
}

.country-details .sub-text {
    color: var(--gecf-blue-color);
    font-size: 1rem;
    font-weight: 600;
}

.country-details table tr:nth-child(even) {
    background-color: var(--gecf-transparent-black-5);
}

.country-details table tr:nth-child(odd) {
    background-color: var(--gecf-white-color);
}

.country-details table tr td,
.country-details table tr th {
    padding: 0.8rem;
    font-size: 0.875rem;
}

.country-details .countryHead-list .card-body {
    display: flex;
    align-items: center;
}

.country-details .countryHead-list .card {
    margin-bottom: 0;
}

.country-details .countryHead-list .user-img img {
    width: 4rem;
    height: 4rem;
    margin: 0 0.5rem;
}

.country-details .countryHead-list h6 {
    color: var(--gecf-secondary-color);
    font-size: 1rem;
    line-height: 1.5;
    letter-spacing: 1.6px;
}

.country-details .countryHead-list h5 {
    color: var(--gecf-black-color);
    font-size: 1.125rem;
}

.country-details .icon-wraper {
    background: var(--gecf-primary-color);
    color: var(--gecf-white-color);
    width: 3rem;
    height: 3rem;
    min-width: 3rem;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    font-size: 1.5rem;
}

.country-details .details-header {
    display: flex;
    margin-bottom: 1rem;
    align-items: center;
}

.global-gas-Outlook .upload-doc .card {
    margin: 0.875rem 0;
    background-color: var(--gecf-white-color);

}

.card-filter .filter-button {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;

}

.card-filter .filter-button .btn {
    color: var(--gecf-black-color);
    border: 1px solid var(--gecf-transparent-black-25);
    background-color: var(--gecf-white-color);
    border-radius: 0.875rem;
    padding: 0.5rem 1.5rem;
    margin: 0.5rem 0.3rem;
    font-weight: 600;
}

.card-filter .filter-button .btn.active,
.card-filter .filter-button .btn:hover {
    background-color: var(--gecf-primaryDark-color);
    color: var(--gecf-white-color);
}

.card-filter .filter-form .form-control,
.card-filter .filter-form .form-select {
    width: 100%;
    min-height: 3rem;
    border-radius: 1rem;
    border: 1px solid var(--gecf-lightash-color);
}

.card-filter .filter-form .reset-btn {
    min-height: 3rem;
    width: 100%;
    border-radius: 1rem;
    border: 1px solid var(--gecf-transparent-black-50);
    color: var(--gecf-transparent-black-65);
    font-weight: 600;
    background-color: var(--gecf-white-color);
}

.card-filter-wraper {
    border-radius: 20px;
    box-shadow: 0 2px 15px 0 rgba(0, 0, 142, 0.1);
    border: 1px solid var(--gecf-lightash-color);
    margin: 2rem 0;
    padding: 0.5rem 1rem;
}

.itemCard-listing .card {
    border: none;
    margin: 1rem 0;
}

.itemCard-listing .press-date {
    color: var(--gecf-secondary-color);
    margin-top: 0.5rem;
}

.itemCard-listing .card h4 {
    color: var(--gecf-black-color);
}

.itemCard-listing .card img {
    border-radius: 0.5rem;
}

.pagination-wraper {
    margin: 2rem 0;
}

.pagination-wraper .pagination {
    justify-content: center;
}

.pagination-wraper .page-item {
    margin: 0 0.5rem;
    z-index: 0;
}

.pagination-wraper .page-link {
    border: 1px solid var(--gecf-lightash-color);
    color: var(--gecf-body-color);
    border-radius: 0.3rem;
}

.pagination-wraper .page-item:last-child .page-link {
    border: 1px solid var(--gecf-primaryDark-color);
    color: var(--gecf-primaryDark-color);
}

.pagination-wraper .page-link.active,
.pagination-wraper .page-link:hover,
.pagination-wraper .page-item:last-child .page-link:hover {
    background-color: var(--gecf-primaryDark-color);
    color: var(--gecf-white-color);
    box-shadow: 0 2px 6px 0 rgba(29, 178, 255, 0.48);
}

.event-details-slider {
    margin-bottom: 1.5rem;
}

.event-details-slider .carousel-indicators {
    bottom: -3.5rem;
}

.event-details-slider .carousel-indicators button {
    width: 0.5rem;
    height: 0.5rem;
    background-color: var(--gecf-lightash-color);
    border-radius: 100%;
    opacity: 1;
}

.event-details-slider .carousel-indicators .active {
    background-color: var(--gecf-primaryDark-color);
}

.event-details-slider .press-date {
    color: var(--gecf-blue-color);
    background-color: var(--gecf-transparent-black-5);
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    width: fit-content;
    margin-top: 3rem;
}

.itemCard-listing.press-releases .press-date {
    color: var(--gecf-primary-color);
}

.video-gallery .img-wraper {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    margin-bottom: 1rem;

}

.video-gallery .overlay {
    background-color: var(--gecf-transparent-black-50);
    z-index: 1;

}

.video-gallery a.play-btn {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    font-size: 4rem;
    color: var(--gecf-white-color);
    z-index: 2;
}

.video-gallery h4 {
    font-size: 1.5rem;
}

.brand-guidelines .card {
    background-color: var(--gecf-lightashGray-color);
    border: 1px solid var(--gecf-lightash-color);
    border-radius: 0.7rem;
    margin: 1rem 0;
}

.brand-guidelines .card h6 {
    color: var(--gecf-black-color);
    font-size: 1.125rem;
    margin-bottom: 0.8rem;
}

.brand-guidelines .card button {
    padding: 0.45rem 1rem;
}

.contact-us {
    margin: 2rem 0;
}

.contact-us .sub-heading {
    font-size: 2.5rem;
}

.contact-us .contact-info p {
    font-size: 1.25rem;
}

.contact-us .contact-info .card {
    border-radius: 1rem;
    box-shadow: 0 2px 15px 0 rgba(0, 0, 142, 0.1);
    border: none;
    margin-bottom: 1rem;
}

.contact-us .contact-info .card p {
    margin-bottom: 0;
    color: var(--gecf-black-color);
    display: flex;
    align-items: center;
}

.contact-us .contact-info .card p i {
    font-size: 3rem;
    margin: 0 0.3rem;
    color: var(--gecf-primary-color);
}

.contact-us .contact-info iframe {
    border-radius: 1rem;
}

.contact-us .card {
    box-shadow: 0 2px 15px 0 rgba(0, 0, 142, 0.1);
    border-radius: 0;
    border: none;

}

.contact-us .card .form-group {
    margin-bottom: 1rem;
}

.contact-us .card .form-label {
    color: var(--gecf-black-color);
    font-weight: 600;
}

.contact-us .card .form-control,
.contact-us .card .form-select {
    min-height: 3rem;
    border: 1px solid var(--gecf-lightash-color);
    border-radius: 1rem;
}

.contact-us .card ::placeholder {
    color: var(--gecf-lightash-color);
}



.career-details .list-roman {
    list-style: lower-roman;
}

.career-details .sub-heading {
    font-size: 1.125rem;
}

.career-details .sub-heading .dot-heading {
    width: 0.3rem;
    height: 0.3rem;
    background-color: var(--gecf-black-color);
    border-radius: 100%;
    margin: 0 0.3rem;
    display: inline-block;
    margin-bottom: 0.2rem;
}

.career-details .info-card p {
    font-size: 0.875rem;
}

.career-details .info-card p strong {
    color: var(--gecf-black-color);
}

.active-tander .card {
    border-radius: 1rem;
    overflow: hidden;
}

.active-tander .card-header {
    background-color: var(--gecf-primary-color);
    text-align: center;
    padding: 0.8rem;
}

.active-tander .card-header h4 {
    color: var(--gecf-white-color);
    font-size: 1.5rem;
    margin-bottom: 0;

}

.active-tander table thead th {
    font-weight: normal;
    white-space: nowrap;
    background-color: var(--gecf-lightashGray-color);
    color: var(--gecf-black-color);
    font-size: 1rem;
}

.active-tander table tr:nth-child(even) {
    background-color: var(--gecf-lightashGray-color);

}

.active-tander table {
    vertical-align: middle;
}

.active-tander table p {
    font-size: 1rem;
    margin-bottom: 0;
    color: var(--gecf-body-color);
}

.active-tander table p strong {
    font-weight: 500;
    color: var(--gecf-black-color);
}

.active-tander table p a {
    font-weight: 600;
}

.login-pages {
    margin: 3rem 0;
}

.login-pages hr {
    border-width: 2px;
}

.login-pages .card {
    box-shadow: 0 2px 15px 0 rgba(0, 0, 142, 0.1);
    border: none;
    border-radius: 0;
}

.login-pages .card .form-group {
    margin-bottom: 1rem;

}

.login-pages .card .form-check-label {
    color: var(--gecf-black-color);
}

.login-pages .card .form-check-input:checked {
    background-color: var(--gecf-primaryDark-color);
    box-shadow: none !important;
    outline: none !important;

}

/*.login-pages .card a {
    color: var(--gecf-primaryDark-color);
}*/

.login-pages .card .btn-brand {
    padding: 0.7rem 3rem;
}

.sitemap-page {
    margin: 3rem 0;
}

.sitemap-page h6 a {
    color: var(--gecf-primaryDark-color);
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    display: inline-block;
}

.sitemap-page ul {
    list-style: none;
    padding: 0;
}

.sitemap-page ul a {
    margin-bottom: 0.5rem;
    display: inline-block;

}



.header.memeberLogin-header {
    box-shadow: 0 2px 15px 0 rgba(0, 0, 142, 0.1);
}

.sidebar {
    background-color: var(--gecf-primaryDark-color);
   
    height: 100%;

}

.sidebar ul {
    list-style: none;
    padding: 0;
}

.sidebar ul.sublinks {
    height: unset;
    overflow: unset;
    margin: 0rem 0.5rem;
}

.sidebar ul a {
    color: var(--gecf-ashgray-color);
        display: block;
    position: relative;
    font-weight: 500;
}
.sidebar ul a.active:before {
    content: '';
    position: absolute;
    background-image: url("../img/active-arrow.png");
    background-size: 1rem;
    background-repeat: no-repeat;
    background-position-y: center;
    width: 2rem;
    height: 2rem;
}
.sidebar ul a.active{
    color: var(--gecf-white-color);
}
.sidebar ul a.active img{
    filter: brightness(0) saturate(100%) invert(100%) sepia(100%) saturate(0%) hue-rotate(318deg) brightness(102%) contrast(101%);
}
.sidebar ul.sublinks a {
    font-weight: normal;
    font-size: 0.875rem;
}
.sidebar ul.sublinks a.active:before {
    display: none;
}

.sidebar .dropdown-toggle::after {
    content: '\f105';
    font-family: 'FontAwesome';
    border: none;
    position: absolute;
    font-size: 1.3rem;
}

.sidebar ul::-webkit-scrollbar {
    width: 0.5rem;
}

.sidebar ul::-webkit-scrollbar-track {
    background: transparent;
}

.sidebar ul::-webkit-scrollbar-thumb {
    background: var(--gecf-transparent-white-30);
}

.sidebar .dropdown-toggle[aria-expanded="true"]::after {
    content: '\f107';
}

.sidebar .list-unstyled {
    padding: 0;
}

.memberContant-wraper {
    padding: 1rem;
}

.memberContant-wraper .breadcrumb-wraper {
    background-color: transparent;
    padding: 0;
}

.member-profile .member-img {
    height: 9rem;
    width: 9rem;
    min-width: 9rem;
    border-radius: 100%;
    object-fit: cover;
    margin: auto;
    margin-bottom: 0.5rem;
}

.member-profile h6 {
    margin-top: 0.5rem;
    color: var(--gecf-black-color);
    font-size: 1.125rem;
}

.member-profile .card {
    margin-top: 2rem;
    background-color: var(--gecf-lightashGray-color);
    border: 1px solid var(--gecf-lightash-color);

}

.member-profile .card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.member-profile .card li {
    padding: 0.8rem 0;
    border-bottom: 1px solid var(--gecf-lightash-color);
}

.member-profile .card li:last-child {
    border-bottom: none;
}

.member-profile .card li a {
    color: var(--gecf-black-color);

}

.member-profile .card li:last-child a {
    color: var(--gecf-danger-color);
}
.member-profile .img-wraper{
position: relative;
    height: 9rem;
    width: 9rem;
    min-width: 9rem;
    margin: auto;
}
.member-profile .img-wraper a{ 
    position: absolute;
    width: 2rem;
    height: 2rem;
    border-radius: 100%;
    color: var(--gecf-white-color);
    background-color: var(--gecf-primaryDark-color);
    bottom: 0.3rem;
    text-align: center;
    padding-top: 0.2rem;
}
.member-profile .form-group{
    margin-bottom: 1rem;
}
.member-profile .form-label{
    color: var(--gecf-black-color);
    font-weight: 600;
}
.innerMember-page{
    margin-top:1rem ;
}


.innerMember-page hr{
    border-width: 2px;
}
.innerMember-page .files-card .card{
    background-color: var(--gecf-white-color);
    margin-bottom: 1.5rem;
}
 .innerMember-page .files-card .card.main-card{
    margin-top: 2rem;
    background-color: var(--gecf-lightashGray-color);
    border: 1px solid var(--gecf-lightash-color);
 }
.innerMember-page .files-card .sub-heading{
    font-size: 1.125rem;
    margin-bottom: 1rem ;
}

.search-files{
    position: relative;

}

.search-files .form-control{
    border-radius: 20px;
  border: solid 1px var(--gecf-lightash-color);
  background-color: var(--gecf-white-color);
  min-height: 3rem;
  box-shadow: none!important;
  outline: none!important;
  margin-bottom: 1.5rem ;
    
}

.search-files .btn-brand{
    position: absolute;
    border-radius: 100%;
    height: 2.3rem;
    width: 2.3rem;
    padding: 0;
    top: 0.4rem;    
}

.innerMember-page .video-wraper{
    position: relative;
}

.innerMember-page .video-wraper img{
    border-radius: 1rem;
    overflow: hidden;
}
.innerMember-page .video-wraper .overlay{
    background-color: var(--gecf-transparent-black-65);
    z-index: 1;
     border-radius: 1rem;
}
.innerMember-page .video-wraper .play-btn{ 
    position: absolute;
    display: flex;
    color: white;
    font-size: 5rem;
    z-index: 2;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.innerMember-page .video-wraper{
    position: relative;
}


.bage-light {
    background-color: var(--gecf-lightash-color);
    color: var(--gecf-body-color);
    border-radius: 0.5rem;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

.topbar-links a {
    color: var(--gecf-white-color);
    padding: 0.5rem 1rem;
    display: inline-block;
}

.header-search {
    width: 100%;
}

.header-emblem {
    max-height: 2.5rem;
    margin: 0 1rem;
}

.header-search .form-group {
    position: relative;
}

.header-search .form-group .form-control {
    background-color: var(--gecf-lightashGray-color);
    border: none;
    padding-right: 2.2rem;
    box-shadow: none;
    font-size: 0.875rem;
    min-height: 2.5rem;
}

.header-search .form-group a {
    position: absolute;
    right: 0rem;
    top: 0rem;
    padding: 0.5rem;
    color: var(--gecf-lightgray-color);
}

.search-modal .header-search-icon {
    display: block;
}

.search-modal .modal-dialog {
    max-width: 100%;
    margin: 0;
}

.search-modal .modal-dialog .modal-content {
    border-radius: 0;
}

.search-modal .form-group {
    position: relative;
}

.search-modal .form-control {
    padding-right: 2.5rem;
    box-shadow: none;
}

.search-modal .form-group a {
    position: absolute;
    padding: 0.5rem;
    right: 0;
    top: 0;
}

.event-banner {
    margin: 1rem 0 3rem 0;
}

.event-banner .main-heading {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.event-banner .event-info {
    border-top: 1px solid var(--gecf-lightash-color);
    padding: 1rem 0;
}

.event-banner .bage-wraper {
    margin-bottom: 1rem;
}

.event-banner h3 {
    color: var(--gecf-black-color);
}

.event-banner img {
    border-radius: 0.5rem;
    object-fit: cover;
}

.event-banner .event-list-card {
    background-color: var(--gecf-transparent-black-5);
    border: none;
}

.event-banner .event-list-card h3 {
    font-size: 1.125rem;
}

.event-banner .event-list-card h6 {
    color: var(--gecf-lightgray-color);
}

/* Press Releases Section */
.pressreleases-section {
    padding: 3rem 0;
}

.pressreleases-section .card {
    border-radius: 0.75rem;
    box-shadow: 0 25px 55px 0 rgba(126, 126, 126, 0.15);
    border: none;
    padding: 2rem;
}

.pressreleases-section .press-date {
    color: var(--gecf-primary-color);
    font-size: 1rem;
    font-weight: normal;
}

.pressreleases-section .card h4 {
    font-size: 1.225rem;
    font-weight: normal;
    color: black;
}

.pressreleases-section p {
    color: var(--gecf-gray-color);
}

.pressreleases-section .main-heading p {
    color: var(--gecf-secondary-color);
}

.pressreleases-section .read-more a {
    color: var(--gecf-primaryDark-color);
    border-bottom: 1px solid var(--gecf-primaryDark-color);
    padding-bottom: 0.3rem;
    font-size: 1rem;
    width: fit-content;
    display: inline-block;
}

.pressreleases-section .read-more a:hover {
    color: var(--gecf-secondary-color);
    border-bottom-color: var(--gecf-secondary-color);
}

.pressreleases-section .carousel-item {
    margin-top: 2rem;
}

.pressreleases-section .carousel-indicators button {
    width: 0.75rem;
    height: 0.75rem;
    border-radius: 100%;
    background-color: var(--gecf-transparent-black-25);
}

.pressreleases-section .carousel-indicators {
    bottom: -3rem;
}

.pressreleases-section .carousel-indicators .active {
    background-color: var(--gecf-primary-color);
}

.news-card {
    border-radius: 0.5rem;
    border: 1px solid var(--gecf-ashgray-color);
    margin-bottom: 2rem;
    margin-top: 2rem;
}

.news-card .nav-tabs {
    display: block;
    border: 0;
}

.news-card .nav-tabs .nav-link p {
    margin: 0;
}

.news-card .nav-tabs .nav-link {
    border: 1px solid var(--gecf-ashgray-color);
    border-radius: 0.5rem;
    margin: 0.75rem;
}

.news-card .nav-tabs .nav-link.active {
    background-color: var(--gecf-primary-color);
    border-color: var(--gecf-primary-color);
    position: relative;
}

.news-card .nav-link.active:before {
    top: 50%;
    border: solid transparent;
    content: "";
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none;
}

.news-card .nav-link.active:before {
    border-color: rgba(153, 0, 0, 0);
    border-width: 1rem !important;
    margin-top: -1rem;
}

.news-card .nav-tabs .nav-link h3 {
    font-size: 1.125rem;
    color: var(--gecf-body-color);
    font-weight: 600;
}

.news-card .nav-tabs .nav-link.active h3,
.news-card .nav-tabs .nav-link.active p,
.news-card .nav-tabs .nav-link.active a {
    color: var(--gecf-white-color);
}

.news-card .tabImg {
    height: 100%;
    object-fit: cover;
}

.news-card .nav-link.active:before {
    top: 50%;
    border: solid transparent;
    content: "";
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none;
}

.news-card .nav-tabs .nav-link p {
    color: var(--gecf-gray-color);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.news-card .nav-tabs .nav-link h3 {
    font-size: 1.125rem;
    color: var(--gecf-body-color);
    font-weight: 600;
}

.news-card .nav-tabs .nav-link p {
    color: var(--gecf-gray-color);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.news-card .nav-link.active:before {
    border-right-color: var(--gecf-primary-color);
}

#backToTop {
    display: inline-block;
    background-color: var(--gecf-primaryDark-color);
    width: 3rem;
    height: 3rem;
    text-align: center;
    border-radius: 4px;
    position: fixed;
    bottom: 2.5rem;
    right: 2.5rem;
    transition: background-color .3s, opacity .5s, visibility .5s;
    opacity: 0;
    visibility: hidden;
    z-index: 100;
    border-radius: 100%;
}

#backToTop::after {
    content: "\f077";
    font-family: FontAwesome;
    font-weight: normal;
    font-style: normal;
    font-size: 1.5rem;
    line-height: 2.5rem;
    color: var(--gecf-white-color);
}

#backToTop:hover {
    cursor: pointer;
    background-color: var(--gecf-secondary-color);
}

#backToTop:active {
    background-color: var(--gecf-secondary-color);
}

#backToTop.show {
    opacity: 1;
    visibility: visible;
}
/*..........*/



.sidebar-toggler{
    background-color: var(--gecf-primaryDark-color);
    padding: 1rem;
    display: none;
}
.sidebar-toggler a {
    color: var(--gecf-white-color);
    font-size: 1.5rem;
}
.sidebar.sidebar-show{
    display: block;
}

.sidebar-toggler .fa-times{
    display: none;

}
.sidebar-toggler.show .fa-times{
    display: block;
}
.sidebar-toggler.show .fa-bars{
    display: none;

}
/*...........*/

/* Media Queries */
@media all and (min-width: 576px) {}

@media all and (min-width: 768px) {}

@media all and (min-width: 992px) {
    .sidebar ul {
        height: 100vh;
        overflow: auto;
    }
}

@media all and (min-width: 1024px) {}

@media all and (min-width: 1200px) {
    .gecf-menu li a.with-dropdown:before,
    .gecf-menu .mobile-menu li.with-dropdown:before {
        content: "\f078";
        font-family: 'FontAwesome' !important;
        position: absolute;
        top: 0.3rem;
        color: var(--gecf-body-color);
        margin-top: 0.6rem;
        font-size: 0.6rem;
        right: -0.5rem;
    }

    .navbar-toggler {
        display: none;
    }

    
}

@media screen and (max-width: 1359px) and (min-width: 1199px) {}

@media all and (min-width: 1200px) {

    .container,
    .container-sm,
    .container-md,
    .container-lg,
    .container-xl {
        max-width: 1200px;
    }
    .desktopSub-menu .nav-dropdown a {
        padding: 0 !important;
        margin-top: 1.5rem;
        display: inline-block;
    }

    .desktopSub-menu {
        display: flex;
    }

    .mobile-menu {
        display: none;
    }

    .header-search {
        max-width: 20rem;
    }
}

@media all and (min-width: 1440px) {

    .container,
    .container-sm,
    .container-md,
    .container-lg,
    .container-xl {
        max-width: 1420px;
    }
}

@media all and (min-width: 1600px) {

    .container,
    .container-sm,
    .container-md,
    .container-lg,
    .container-xl {
        max-width: 1440px;
    }

    .gecf-menu .navbar-nav .nav-item {
        padding: 0 1.5rem;
    }
}

@media all and (min-width: 1920px) {
    html {
        font-size: 18px;
    }

    .container,
    .container-sm,
    .container-md,
    .container-lg,
    .container-xl {
        max-width: 1600px;
    }
}
@media all and (max-width: 1300px) {
    .header .navbar-brand span {
        display: block;
        margin-top: 0.5rem;
    }
}

@media all and (max-width: 1199px) and (min-width:557px) {
    .navbar-toggler {
        margin: 0 0.5rem 0 0 !important;
    }

    /*   .header-search {
        top: 5rem!important;
    }*/
}

@media all and (max-width: 1199px) {
    .desktopSub-menu {
        display: none;
    }
    .org-cahrt-responscive {
        overflow: auto;
    }

    .governing-specialised-bodies h5 {
        margin-top: 0.5rem;
    }

    .gecf-menu li>.nav-dropdown {
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    }

     .navbar-toggler {
        width: auto;
        border: none;
        color: var(--gecf-primary-color);
        background: var(--gecf-white-color);
        border-radius: 0.5rem;
        display: inline-block;
        margin: 0.25rem;
        margin: 1.2rem 0.6rem 0 0.3rem;
        padding: 0.5rem;
    }

    .overview-details p {
        font-size: 1rem;
    }

    .navbar-toggler:focus {
        box-shadow: none;
    }

    .navbar-toggler[aria-expanded="false"] .fa-times,
    .navbar-toggler[aria-expanded="true"] .fa-bars {
        display: none;
    }

    .navbar-toggler[aria-expanded="true"] .fa-times,
    .navbar-toggler[aria-expanded="false"] .fa-bars {
        display: inline-block;
    }

    .gecf-menu .navbar-nav .nav-item {
        margin-top: 1rem;
    }

    .gecf-menu .navbar-nav .nav-link {
        border-bottom: 0;
    }

    .with-dropdown:before {
        content: " + ";
        position: absolute;
        top: 0;
        width: 2rem;
        height: 2rem;
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: var(--gecf-white-color);
        color: var(--gecf-base-color);
        margin: 0.25rem;
        border: 1px solid var(--gecf-ash-color);
    }

    .with-dropdown[aria-expanded="true"]:before {
        content: " - ";
    }

    .gecf-menu li>.nav-dropdown {
        position: relative;
        display: none;
    }


    .gecf-menu .nav-link.active,
    .gecf-menu .nav-item:hover .nav-link,
    .gecf-menu .nav-item:focus-within .nav-link {
        border: 0;
    }

    .gecf-menu .nav-dropdown.showSubMenu {
        display: block;
        visibility: visible;
        opacity: 1;
        -webkit-transform: rotateX(0deg);
        -moz-transform: rotateX(0deg);
        -ms-transform: rotateX(0deg);
        transform: rotateX(0deg);
    }

    .gecf-menu li>.nav-dropdown li:before {
        background: none;
    }


    .logo img {
        height: 4rem;
    }

    .gecf-menu .navbar {
        padding: 0;
    }

    .navbar-collapse.show {
        padding-bottom: 1rem;
    }

    /*.header-search {
        position: absolute;
        top: 4.8rem;
    }*/

    .home-banner .carousel-item .carousel-caption {
        padding: 1rem;
        position: relative;
        width: 100%;
        height: 100%;
        background: var(--gecf-primaryDark-color);
        text-align: center;
        color: var(--gecf-white-color);
    }

    .home-banner .carousel-item .carousel-caption .caption-card {
        padding: 0;
        padding-bottom: 3rem;
    }

    .home-banner .carousel-indicators {
        left: 0;
        right: 0;
        bottom: 0;
    }

    .home-banner .carousel-caption h2 {
        font-size: 1.5rem;
    }

    .brand-guidelines .card h6 {
        margin-top: 1rem;
    }

    .contact-us .card {
        margin-top: 2rem;
    }
    /* .header-search{
        display: none;
    }*/
    .header-search-icon {
        display: block;
    }

    .header .nav-link.active:after,
    .header .nav-link:hover:after,
    .header .nav-item:hover .nav-link:after {
        width: calc(100% - 3rem);
    }

}

@media all and (max-width: 1023px) {
    h1 {
        font-size: 2.22rem;
    }

    h2 {
        font-size: 1.22rem;
    }

    h3 {
        font-size: 1.44rem;
    }

    h4 {
        font-size: 1.11rem;
    }

}

@media all and (max-width: 991px) {
    .faqs .accordion-button {
        font-size: 1.2rem;
    }

/*    ........*/
    .sidebar{
        border-radius: 0!important;
        display: none;
    }

    .sidebar-toggler{
        display: block;
    }
    .sidebar ul {
    margin: 0.5rem 0.5rem 0.5rem 0rem!important;
}
.sidebar.show{
       
        display: block;
    }
/*    .........*/
}

@media all and (max-width:767px) {
    .header .navbar-brand img {
        max-height: 4.5rem;
        margin: 0.5rem 0;
    }

    header.header {

        box-shadow: 0 -6px 9px 6px rgb(0 0 0 / 6%);
    }

    .home-banner .ratio-21x9 {
        --bs-aspect-ratio: 75%;
    }

    .country-details .details-header {
        flex-wrap: wrap;
    }

}

@media all and (max-width: 575px) {
    .footer-bottom ul a {
        font-size: 0.85rem;
        padding: 0rem 0.7rem;
    }

    .footer .col-lg-3:first-child {
        order: 4;
    }

    .header .navbar-brand span {
        display: none;
    }
}

@media screen and (max-width: 1250px) and (min-width: 1199px) {
    .header-search {
        max-width: 18rem;
    }
}

@media (min-width: 992px) {
    /*.desktopSub-menu .nav-dropdown .col-lg-3 {
        flex: 0 0 auto;
        width: 20%;
    }*/
}

/* Accessibility Styles */
#bright-off,
.active #bright-on {
    display: none !important;
    pointer-events: none;
}

#bright-on,
.active #bright-off {
    display: inline-block !important;
    pointer-events: auto;
    font-size: 1.2rem;
}

.accessOpen>a>i {
    font-weight: bold;
    font-size: 1.15rem;
}

.skipNav {
    position: absolute;
    top: 5px;
    z-index: -1;
    background: transparent !important;
}

.skipNav:focus-within {
    z-index: 999;
}

.skipNav .skipLink {
    opacity: 0;
    background: rgb(142 24 56 / 90%);
    height: 0;
    border: 0;
    color: var(--shura-white-color);
    padding: 5px 15px;
    height: auto;
}

.skipNav .skipLink:focus {
    opacity: 1;
}

html[dir="ltr"] .skipNav .skipLink.ar,
html[lang="en-US"] .skipNav .skipLink.ar {
    display: none;
}

html[dir="rtl"] .skipNav .skipLink.en,
html[lang="ar"] .skipNav .skipLink.en {
    display: none;
}

/*# sourceMappingURL=styles.css.map */