@charset "UTF-8";/* ==========================================================================
Color Variables
========================================================================== */

:root {
    --color-primary-50: #e8ecec;
    --color-primary-75: #a0b1b1;
    --color-primary-100: #789190;
    --color-primary-200: #3e6160;
    --color-primary-300: #174140;
    --color-primary-400: #102e2d;
    --color-primary-500: #0e2827;
    --color-secondary-50: #f3edea;
    --color-secondary-75: #cfb6aa;
    --color-secondary-100: #bc9887;
    --color-secondary-200: #9f6b53;
    --color-secondary-300: #8b4d30;
    --color-secondary-400: #613622;
    --color-secondary-500: #552f1d;
    --color-secondary-soft-ivory-white: #F6F1EE;
    --color-secondary-warm-sand-beige: #EEE4C2;
    --color-primary-pale-green: #235451;
    --color-neutral-50: #E8E9EA;
    --color-neutral-100: #B9BABD;
    --color-neutral-300: #676B70;
    --color-neutral-400: #494E54;
    --color-neutral-500: #1C2229;
}


/* ==========================================================================
Global Settings
========================================================================== */


/*
* Remove text-shadow in selection highlight.
*/

::-moz-selection {
    background: #b3d4fc;
    text-shadow: none;
}

::selection {
    background: #b3d4fc;
    text-shadow: none;
}


/*
* Body settings, change it as required
*/

body {
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-neutral-500);
    font-family: "Cairo", "Inter 24pt", Arial, "Helvetica Neue", Helvetica, sans-serif;
    text-rendering: optimizeLegibility;
    overflow-x: clip;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
    margin-top: 0px;
}


/*
* Links
*/

a {
    color: inherit;
}

a,
a:hover {
    text-decoration: none;
    transition: all 1s cubic-bezier(0.19, 1, 0.22, 1) 0s;
}


/*
* A better looking default horizontal rule
*/

hr {
    display: block;
    height: 1px;
    border: 0;
    border-top: 1px solid #ccc;
    margin: 1em 0;
    padding: 0;
}


/*
* Remove the gap between images and the bottom of their containers.
*/

img {
    vertical-align: middle;
    max-width: 100%;
    height: auto;
    -ms-interpolation-mode: bicubic;
}


/*
* Allow only vertical resizing of textareas.
*/

textarea {
    resize: none;
}

address {
    margin-bottom: 0;
}


/*
* Other
*/

*:focus {
    outline: none !important;
}


/* ==========================================================================
Helper classes
========================================================================== */

img.alignleft {
    float: left;
    margin: 0 10px 10px 0;
    display: block;
}

img.alignright {
    float: right;
    margin: 0 0px 10px 10px;
    display: block;
}

img.aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 10px;
}

.hidden {
    display: none !important;
    visibility: hidden;
}

.clear {
    clear: both;
    height: 1px;
    line-height: 1px;
}


/*
* Other
*/


/* ==========================================================================
Layout
========================================================================== */


/* ==========================================================================
Common Functionalities & UI Elements
========================================================================== */


/*
* Typography
*/

h1,
.h1 {
    font-size: 56px;
    font-weight: 500;
    margin-bottom: 16px;
    line-height: 1.5178571429;
}

@media (max-width: 767px) {
    h1,
    .h1 {
        font-size: 30px;
        line-height: 1.5;
    }
}

h2,
.h2 {
    font-size: 36px;
    font-weight: 500;
    margin-bottom: 8px;
    line-height: 1.8611111111;
}

@media (max-width: 767px) {
    h2,
    .h2 {
        font-size: 24px;
        line-height: 1.75;
    }
}

h3,
.h3 {
    font-size: 29px;
    font-weight: 500;
    line-height: 1.8620689655;
}

@media (max-width: 767px) {
    h3,
    .h3 {
        font-size: 20px;
        line-height: 1.5;
    }
}

h4,
.h4 {
    font-size: 23px;
    font-weight: 500;
    margin-bottom: 16px;
    line-height: 1.6086956522;
}

h5,
.h5 {
    font-size: 18px;
    font-weight: 500;
    line-height: 1.8888888889;
    margin-bottom: 16px;
}

h6,
.h6 {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.875;
    margin-bottom: 8px;
}

p {
    line-height: 1.6;
    margin-bottom: 16px;
}

p.lead {
    font-size: 20px;
    font-weight: normal;
    line-height: 1.6;
}


/* Lists ---------------------- */

ul,
ol {
    margin-bottom: 16px;
    list-style-position: outside;
}

ul li ul,
ul li ol {
    margin-left: 20px;
    margin-bottom: 0;
}

ol {
    margin-left: 20px;
}

ol li ul,
ol li ol {
    margin-left: 20px;
    margin-bottom: 0;
}


/* container */

#container {
    min-width: 320px;
}

@media (min-width: 768px) {
    body #container {
        min-height: 100vh;
        display: flex;
        flex-direction: column;
    }
    body #content {
        flex: 1 0 auto;
        display: flex;
        flex-direction: column;
    }
}

@media (min-width: 1200px) {
    .container {
        max-width: 1296px;
    }
}


/* utilities */

.logo,
.icon {
    display: inline-block;
}

.section {
    padding: 96px 0;
}

.section:has(.fit-screen) {
    overflow-x: clip;
}

.section.section2 {
    padding: 72px 0;
}

.section.bg-overlay1 {
    color: #fff;
}

@media (max-width: 767px) {
    .section,
    .section.section2 {
        padding: 45px 0;
    }
}

.figure1 {
    margin: 0;
}

.rounded-12 {
    border-radius: 12px;
}

.mb-32 {
    margin-bottom: 32px;
}

.mb-56 {
    margin-bottom: 56px;
}

.mb-64 {
    margin-bottom: 64px;
}

.py-64 {
    padding: 64px 0 !important;
}

.w-40 {
    width: 40% !important;
}

.w-20 {
    width: 20% !important;
}

.h-60 {
    height: 60% !important;
}

.bg-primary-50 {
    background-color: var(--color-primary-50) !important;
}

.bg-primary {
    background-color: var(--color-primary-300) !important;
    color: #fff !important;
}

.bg-primary-300 {
    background-color: var(--color-primary-300) !important;
    color: #fff !important;
}

.bg-primary-400 {
    background-color: var(--color-primary-400) !important;
}

.bg-secondary-50 {
    background-color: var(--color-secondary-50) !important;
}

.bg-secondary {
    background-color: var(--color-secondary-300) !important;
    color: #fff !important;
}

.bg-secondary-500 {
    background-color: var(--color-secondary-500) !important;
    color: #fff !important;
}

.bg-color1 {
    background-color: var(--color-secondary-soft-ivory-white) !important;
}

.bg-color2 {
    background-color: var(--color-secondary-warm-sand-beige) !important;
}

.bg-color3 {
    background-color: var(--color-primary-pale-green) !important;
    color: #fff !important;
}

.bg-color5 {
    background-color: rgba(85, 47, 29, 0.7) !important;
    color: #fff !important;
}

.bg-color6 {
    background-color: rgb(144, 122, 111) !important;
    color: #fff !important;
}

.bg-gradient1 {
    background: linear-gradient(90deg, rgb(104, 61, 45) 0%, rgb(139, 77, 48) 100%) !important;
}

.text-primary {
    color: var(--color-primary-300) !important;
}

.text-primary-50 {
    color: var(--color-primary-50) !important;
}

.text-secondary {
    color: var(--color-secondary-300) !important;
}

.text-dark {
    color: var(--color-neutral-500) !important;
}

.text-color1 {
    color: var(--color-neutral-300) !important;
}

.text-color2 {
    color: var(--color-primary-pale-green) !important;
}

.text-color3 {
    color: #219592 !important;
}

.bg-full-pattern {
    display: flex;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.bg-full-pattern img {
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.bg-half-pattern {
    display: flex;
    width: 100%;
    height: 50%;
    position: absolute;
    bottom: 0;
    left: 0;
}

.bg-half-pattern img {
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.bg-full-pattern~*:not(.bg-full-pattern):not(.bg-half-pattern),
.bg-half-pattern~*:not(.bg-full-pattern):not(.bg-half-pattern) {
    position: relative;
    z-index: 1;
}

.bg-pattern,
.bg-pattern2,
.bg-pattern3,
.bg-pattern4,
.bg-pattern5,
.bg-pattern6,
.bg-pattern7,
.bg-pattern8,
.bg-pattern9,
.bg-pattern10,
.bg-pattern11,
.bg-pattern12,
.bg-pattern13,
.bg-pattern14,
.icon-bg,
.icon-bg2 {
    position: relative;
}

.bg-pattern>*,
.bg-pattern2>*,
.bg-pattern3>*,
.bg-pattern4>*,
.bg-pattern5>*,
.bg-pattern6>*,
.bg-pattern7>*,
.bg-pattern8>*,
.bg-pattern9>*,
.bg-pattern10>*,
.bg-pattern11>*,
.bg-pattern12>*,
.bg-pattern13>*,
.bg-pattern14>*,
.icon-bg>*,
.icon-bg2>* {
    position: relative;
    z-index: 2;
}

.bg-pattern::before,
.bg-pattern2::before,
.bg-pattern3::before,
.bg-pattern4::before,
.bg-pattern5::before,
.bg-pattern6::before,
.bg-pattern7::before,
.bg-pattern8::before,
.bg-pattern9::before,
.bg-pattern10::after,
.bg-pattern11::before,
.bg-pattern12::before,
.bg-pattern13::before,
.bg-pattern14::before {
    content: "";
    background: url("../images/pattern2.png");
    display: block;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.bg-pattern2::before {
    background: url("../images/pattern3.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.bg-pattern3::before {
    background: url("../images/pattern4.png");
    background-repeat: no-repeat;
    background-position: bottom right;
    background-size: contain;
    width: 100%;
    height: 70%;
    bottom: 0;
    top: unset;
}

.bg-pattern4::before {
    background: url("../images/pattern5.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.bg-pattern5::before {
    background: url("../images/pattern7.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.bg-pattern6::before {
    background: url("../images/pattern8.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.bg-pattern7::before {
    background: url("../images/pattern9.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.bg-pattern8::before {
    background: url("../images/pattern10.png");
    background-repeat: no-repeat;
    background-position: top right;
    background-size: contain;
    height: 42%;
    top: 0;
}

.bg-pattern11::before {
    background: url("../images/pattern13.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.bg-pattern12::before {
    background: url("../images/pattern14.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.bg-pattern13::before {
    background: url("../images/pattern15.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    height: 50%;
}

.bg-pattern14::before {
    background: url("../images/pattern16.png");
    background-repeat: no-repeat;
    background-position: top right;
    background-size: contain;
    height: 30%;
    top: 0;
}

@media (max-width: 991px) {
    .bg-pattern3::before {
        height: 40%;
    }
}

@media (max-width: 767px) {
    .bg-pattern8::before {
        height: 30%;
    }
}

.bg-pattern9::before {
    background: url("../images/pattern11.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    width: 100%;
    height: 65%;
    z-index: 2;
}

.bg-pattern10::after {
    background: url("../images/pattern12.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    width: 60%;
    height: 50%;
    left: unset;
    right: 20px;
}

.bg-overlay1 {
    position: relative;
}

.bg-overlay1::before {
    content: "";
    background: rgba(14, 40, 39, 0.5);
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

.bg-primary .super-title,
.bg-primary-400 .super-title,
.bg-color3 .super-title,
.bg-overlay1 .super-title {
    color: var(--color-neutral-100) !important;
}

.title-accent {
    color: var(--color-secondary-300);
    display: block;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.875;
    margin-bottom: 12px;
}

.link1 {
    color: var(--color-primary-300);
    font-size: 16px;
    font-weight: 500;
    line-height: 1.875;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.link1 span {
    text-decoration: underline;
}

.link1:hover span {
    text-decoration: none;
}

.link1:not(:has(span)):hover {
    text-decoration: underline;
}

.value {
    font-size: 29px;
    font-weight: 500;
    line-height: 1.8620689655;
}

.value-lg {
    font-size: 36px;
    font-weight: 500;
    line-height: 1.8611111111;
}

.value .unit {
    font-size: 16px;
    line-height: 1.875;
}

.label {
    display: inline-block;
    font-size: 14px;
    line-height: 1.8571428571;
}

.title {
    font-size: 16px;
    line-height: 1.875;
}

.date {
    font-size: 14px;
    font-weight: 500;
    line-height: 1.8571428571;
    position: relative;
    display: inline-flex;
    gap: 8px;
    align-items: center;
}

.date .icon {
    line-height: 0;
}

.date.has-dot::before {
    content: "";
    background-color: var(--color-secondary-300);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    width: 8px;
    height: 8px;
    border-radius: 100%;
}

.border1 {
    border: 0.25px solid var(--color-secondary-300);
}

.border-top-secondary {
    border-top: 1px solid var(--color-secondary-75);
}

.box-header {
    display: flex;
    align-items: center;
    gap: 8px;
}

.shadow1 {
    box-shadow: 0px 15px 20px 0 rgba(14, 40, 39, 0.25);
}

.icon-bg,
.icon-bg2 {
    width: 144px;
    height: 144px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.icon-bg2 {
    width: 76px;
    height: 76px;
}

.icon-bg img,
.icon-bg svg,
.icon-bg2 img,
.icon-bg2 svg {
    z-index: 2;
}

.icon-bg::before,
.icon-bg2::before {
    content: "";
    display: inline-block;
    background: url("../images/icon23.svg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.icon-bg2::before {
    background: url("../images/icon33.svg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

@media (max-width: 767px) {
    .icon-bg {
        width: 100px;
        height: 100px;
    }
}

.news-content h2,
.news-content h3,
.news-content h4,
.news-content h5,
.news-content h6,
.news-content p {
    margin-bottom: 24px;
}


/* header */

#header {
    position: relative;
    background-color: var(--color-primary-300);
    box-shadow: 0px 2px 24px 0 rgba(0, 0, 0, 0.18);
    padding: 24px 0;
    z-index: 999;
}

@media (max-width: 991px) {
    #header {
        padding: 16px 0;
    }
    #header .logo img {
        height: 37px;
    }
}

#navigation .menu {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    align-items: center;
    gap: 0 32px;
    margin-right: 8px;
}

#navigation .menu li {
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.875;
}

#navigation .menu li a {
    color: inherit;
}

@media (max-width: 1199px) {
    #navigation .menu {
        gap: 0 16px;
        margin-right: 0;
    }
    #navigation .menu li {
        font-size: 14px;
        line-height: 1.625;
    }
}


/* menu btn */

.open-menu-btn {
    width: 18px;
    height: 14px;
    display: none;
    justify-content: space-between;
    flex-direction: column;
    padding: 0;
    border: 0;
    background: transparent;
}

.open-menu-btn span {
    height: 2px;
    width: 100%;
    background: var(--color-primary-50);
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.open-menu-btn.active span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

.open-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.open-menu-btn.active span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

@media (max-width: 991px) {
    .open-menu-btn {
        display: flex;
    }
}


/* mobile-navigation */

.mobile-navigation {
    background-color: var(--color-primary-500);
    position: fixed;
    top: 69px;
    right: -100%;
    width: 100%;
    height: calc(100vh - 69px);
    padding: 16px;
    z-index: 99;
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.mobile-navigation.show {
    right: 0;
}

.mobile-navigation .list1 {
    width: -moz-fit-content;
    width: fit-content;
    margin-left: auto;
    margin-bottom: 12px;
}

.mobile-menu {
    margin: 0;
    padding: 0;
    list-style: none;
}

.mobile-menu li {
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 32px;
}

.mobile-menu li a {
    color: inherit;
}

.mobile-menu li.has-submenu>a {
    display: flex;
    align-items: center;
    gap: 8px;
}

.mobile-menu li.has-submenu>a .icon {
    display: inline-flex;
    transition: transform 0.4s ease;
}

.mobile-menu li.has-submenu.open>a .icon {
    transform: rotate(180deg);
}

.mobile-menu li.has-submenu .submenu {
    margin: 0;
    padding: 0;
    list-style: none;
    display: none;
}

.mobile-menu li.has-submenu .submenu li {
    color: var(--color-primary-75);
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 32px;
}

.mobile-menu li.has-submenu .submenu li:first-child {
    padding-top: 24px;
}

.mobile-menu li.has-submenu .submenu li:last-child {
    margin-bottom: 0;
}

.mobile-menu li:last-child {
    margin-bottom: 0;
}


/* banner */

#banner {
    background-color: var(--color-primary-pale-green);
    padding: 83px 0 108px;
    color: #fff;
    position: relative;
}

#banner::before {
    content: "";
    display: block;
    background: url("../images/pattern5.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

#banner::after {
    content: "";
    display: block;
    background: url("../images/pattern21.png");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: top right;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

#banner>* {
    position: relative;
    z-index: 2;
}

#banner .super-title {
    color: var(--color-neutral-100);
}

#banner p:last-child {
    margin-bottom: 0;
}

.home #banner {
    background-color: var(--color-primary-500);
    padding: 122px 0;
    min-height: 600px;
}

.home #banner h1 {
    margin-bottom: 30px;
}

.home #banner::before {
    background: url("../images/pattern17.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 100%;
}

.home #banner::after {
    content: "";
    display: block;
    background: url("../images/pattern18.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 30%;
    position: absolute;
    top: unset;
    left: unset;
    bottom: 0;
    right: 0;
}

@media (max-width: 767px) {
    #banner {
        padding: 50px 0;
    }
    #banner h1 {
        margin-bottom: 20px;
    }
    #banner p {
        font-size: 16px;
    }
}


/* footer */

#footer {
    background-color: var(--color-primary-300);
    color: var(--color-primary-75);
    position: relative;
    overflow: hidden;
}

#footer::before {
    content: "";
    display: block;
    background: url(../images/pattern1.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    width: 60%;
    height: 178%;
    position: absolute;
    top: -30%;
    left: 50%;
    transform: translateX(-50%);
    margin-left: 19%;
    z-index: 1;
}

#footer .footer-dashboard {
    padding: 96px 0 90px;
    position: relative;
    z-index: 5;
}

#footer .footer-dashboard h3 {
    color: #fff;
    font-size: 16px;
    line-height: 1.875;
    margin-bottom: 24px;
}

#footer .footer-dashboard .logo {
    margin-bottom: 32px;
}

#footer .footer-bottom {
    color: var(--color-primary-50);
    padding: 24px 0;
    border-top: 1px solid #D6D6D6;
    position: relative;
    z-index: 5;
}

#footer .footer-bottom p:last-child {
    margin-bottom: 0;
}

.footer-links {
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-links li {
    line-height: 24px;
    margin-bottom: 12px;
}

.footer-links li:last-child {
    margin-bottom: 0;
}

.footer-links li a {
    color: inherit;
}

.footer-links li a:hover {
    color: var(--color-primary-50);
}

@media (max-width: 991px) {
    #footer::before {
        display: none;
    }
}

@media (max-width: 767px) {
    #footer .footer-dashboard {
        padding: 56px 0 50px;
    }
    #footer .sociables,
    #footer .list2 {
        justify-content: center;
    }
}


/* lists */

.sociables {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.sociables li {
    background-color: var(--color-primary-50);
    border-radius: 50%;
}

.sociables li a {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 32px;
    width: 32px;
}

.list1 {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    padding: 4px;
    border: 0.35px solid var(--color-primary-50);
    border-radius: 8px;
}

.list1 li {
    color: var(--color-primary-50);
    border-radius: 4px;
    font-weight: 500;
    line-height: 30px;
    margin-right: 2px;
}

.list1 li a {
    color: inherit;
    display: inline-block;
    padding: 0 10px;
}

.list1 li.active, .list1 li:hover {
    background-color: var(--color-primary-50);
    color: var(--color-primary-300);
}

@media (max-width: 991px) {
    .list1 li {
        font-size: 14px;
        line-height: 26px;
    }
}

.list2 {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    align-items: center;
    gap: 24px;
}

.list2.alt {
    display: block;
}

.list2.alt li::before {
    display: none;
}

.list2 li {
    position: relative;
    line-height: 1.6;
}

.list2.dot li::before {
    content: "";
    display: block;
    background-color: #fff;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    position: absolute;
    left: -14px;
    top: 11px;
}

.list2.dot li:first-child:before {
    display: none;
}

.list2 li a {
    color: inherit;
}

.list2 li a:hover {
    text-decoration: underline;
}

.list3 {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.list3 li {
    color: rgba(255, 255, 255, 0.45);
    font-size: 14px;
    font-weight: 500;
    line-height: 1.8571428571;
}

.list3 li .box2 {
    background-color: rgba(255, 255, 255, 0.09);
    border: 1px solid rgba(255, 255, 255, 0.12);
    padding: 16px;
    display: flex;
    flex-direction: column;
}

.list3 li .value {
    color: #fff;
}

.list3 li .unit {
    color: rgba(255, 255, 255, 0.45);
}

@media (max-width: 767px) {
    .list3 {
        grid-template-columns: repeat(1, 1fr);
    }
}

.list4 {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.list4 li {
    font-size: 14px;
    line-height: 1.8571428571;
    display: flex;
    align-items: center;
    gap: 8px;
}

.list4 li .icon {
    line-height: 0;
}


/* Quarter list disabled until a specific year is selected */

.list4.is-disabled {
    opacity: 0.45;
    pointer-events: none;
}

.list4.idc-map-filter li.active .pill {
    background-color: var(--color-primary-300);
    color: var(--color-primary-50);
}

.list4.idc-map-filter li .pill {
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    transition: all 1s cubic-bezier(0.19, 1, 0.22, 1) 0s;
}

.list4.idc-map-filter li .pill:hover {
    background-color: var(--color-primary-300);
    color: var(--color-primary-50);
}


/* Vertical divider + spacing between the Year and Quarter filter columns.
   Only on lg+ where the columns sit side by side; they stack on mobile. */

@media (min-width: 992px) {
    .col-divider {
        border-left: 0.25px solid var(--color-primary-100);
        margin-left: 44px;
        padding-left: 56px;
    }
}

.list5 {
    margin: 0;
    padding: 0;
    list-style: none;
    border: 1px solid #D6EAE0;
    border-radius: 8px;
}

.list5 li {
    color: var(--color-neutral-300);
    font-size: 16px;
    font-weight: 500;
    line-height: 1.875;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 15px;
    border-bottom: 1px solid #D6EAE0;
}

.list5 li span {
    color: var(--color-neutral-500);
}

.list5 li:last-child {
    border-bottom: 0;
}

.list5.alt {
    border: 0;
}

.list5.alt li {
    color: var(--color-neutral-100);
    font-weight: normal;
    padding: 0;
    border: 0;
    margin-bottom: 16px;
}

.list5.alt li:last-child {
    margin-bottom: 0;
}

.list5.alt li span {
    color: #fff;
    font-weight: 500;
}

@media (max-width: 767px) {
    .list5 li {
        gap: 10px;
    }
}

.list6 {
    margin: 0;
    padding: 0;
    list-style: none;
}

.list6 li {
    font-size: 16px;
    line-height: 1.6;
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 32px;
    border-top: 1px solid var(--color-secondary-75);
}

.list6 li span {
    font-size: 23px;
    font-weight: 500;
    line-height: 1.6;
    width: 260px;
}

.list6.bg-color2 li:nth-child(even) {
    background-color: var(--color-secondary-50);
}

@media (max-width: 767px) {
    .list6 li {
        padding: 16px;
        flex-direction: column;
        align-items: start;
        gap: 10px;
    }
}

.list7 {
    margin: 0;
    padding: 0;
    list-style: none;
}

.list7 li {
    font-size: 16px;
    line-height: 1.6;
    position: relative;
    padding-left: 32px;
    display: flex;
    flex-direction: column;
    padding-bottom: 48px;
}

.list7 li .date {
    color: var(--color-secondary-300);
    margin-bottom: 6px;
}

.list7 li .title {
    font-weight: 500;
}

.list7 li:last-child {
    padding-bottom: 0;
}

.list7 li p {
    color: var(--color-neutral-300);
}

.list7 li p:last-child {
    margin-bottom: 0;
}

.list7 li::before {
    content: "";
    display: block;
    background-color: transparent;
    width: 16px;
    height: 16px;
    border: 4px solid var(--color-secondary-300);
    border-radius: 100%;
    position: absolute;
    top: 6px;
    left: 0;
}

.list7 li::after {
    content: "";
    display: block;
    background-color: transparent;
    width: 1px;
    height: calc(100% - 16px);
    border-left: 1px dashed var(--color-secondary-300);
    position: absolute;
    top: 22px;
    left: 8px;
}

.list7 li:last-child::after {
    display: none;
}

.nav-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.nav-list li {
    padding: 24px 0;
    display: flex;
    gap: 24px;
    border-top: 1px solid var(--color-secondary-warm-sand-beige);
    cursor: pointer;
}

.nav-list li .box {
    font-size: 14px;
    font-weight: 500;
    line-height: 1.8571428571;
}

.nav-list li.active .box {
    color: var(--color-secondary-soft-ivory-white);
    background-color: var(--color-secondary-300) !important;
    border: 1px solid var(--color-secondary-100);
    box-shadow: 0 10px 20px -3px rgba(139, 77, 48, 0.2);
}

.nav-list li p {
    color: var(--color-neutral-300);
}

.nav-list li p:last-child {
    margin-bottom: 0;
}

@media (max-width: 767px) {
    .nav-list li {
        padding: 16px 0;
        gap: 16px;
    }
}

.filter-list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px 4px;
}

.filter-list li {
    color: var(--color-neutral-500);
    font-size: 14px;
    font-weight: 500;
    line-height: 1.8571428571;
    padding: 4px 12px;
    border-radius: 4px;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1) 0s;
}

.filter-list li.active,
.filter-list li:hover {
    background-color: var(--color-secondary-warm-sand-beige);
}

.filter-list2 {
    margin: 0;
    padding: 0;
    list-style: none;
}

.filter-list2 li {
    color: var(--color-neutral-300);
    font-size: 16px;
    font-weight: 500;
    line-height: 1.875;
    padding: 12px 16px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 12px;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1) 0s;
}

.filter-list2 li.active,
.filter-list2 li:hover {
    background-color: var(--color-secondary-warm-sand-beige);
    color: var(--color-neutral-500);
}

.filter-list2 li:last-child {
    margin-bottom: 0;
}

.breadcrumb {
    margin: 0;
    align-items: center;
    gap: 32px;
}

.breadcrumb li {
    color: var(--color-neutral-100);
    font-size: 16px;
    line-height: 1.875;
    position: relative;
}

.breadcrumb li a {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    color: var(--color-primary-50);
}

.breadcrumb li::before {
    content: "";
    display: block;
    background: url("../images/icon27.svg");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    height: 10px;
    width: 5px;
    position: absolute;
    top: 10px;
    left: -13.5px;
}

.breadcrumb li:first-child:before {
    display: none;
}

.custom-pagination {
    display: flex;
}

.custom-pagination .pagination {
    gap: 8px;
}

.custom-pagination .page-item .page-link {
    background-color: transparent;
    color: #404848;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.8571428571;
    padding: 6px 15px;
    border-radius: 4px;
    border-color: rgba(0, 43, 42, 0.1);
}

.custom-pagination .page-item.active .page-link,
.custom-pagination .page-item .page-link:hover {
    background-color: var(--color-primary-300);
    color: var(--color-secondary-soft-ivory-white);
}


/* fancy-box */

.gallery-item {
    margin: 0;
    transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1) 0s;
}

.gallery-item:hover {
    transform: scale(1.05);
}

.gallery-item.gallery-video {
    position: relative;
}

.gallery-item.gallery-video>a::before {
    content: "";
    background: url("https://intdc.ourdemo.online/wp-content/uploads/2026/07/icon51.svg");
    background-repeat: no-repeat;
    background-size: 96px;
    background-position: center;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.gallery-item .description {
    display: none;
}

.gallery-item.card3 img {
    height: auto;
}

.gallery-item img {
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: 8px;
    height: 279px;
}

.fancybox__carousel {
    margin-bottom: 24px;
}

.fancybox__carousel {
    justify-content: center;
    --fb-ar-w: 824;
    --fb-ar-h: 498;
    --fb-chrome: 250px;
    --fb-arrow-gap: 120px;
    --fb-toolbar-h: calc(var(--f-button-height, 46px) + 24px);
    --fb-frame-w: min(824px, calc(100vw - 32px), calc((100svh - var(--fb-chrome)) * var(--fb-ar-w) / var(--fb-ar-h)));
}

.fancybox__carousel .f-carousel__toolbar {
    max-width: 1148px;
    margin: 0 auto;
    width: 100%;
    padding: 12px;
}

.fancybox__carousel .f-panzoom__content {
    -o-object-fit: cover;
    object-fit: cover;
}

.fancybox__carousel {
    --f-arrow-pos: max(8px, calc(50% - var(--fb-frame-w) / 2 - var(--fb-arrow-gap) - var(--f-arrow-width, 46px)));
}

.fancybox__carousel.is-horizontal .f-button.is-arrow.is-prev,
.fancybox__carousel.is-horizontal .f-button.is-arrow.is-next {
    top: calc(50% + var(--fb-toolbar-h) / 2);
}

.fancybox__carousel .fancybox__viewport {
    width: var(--fb-frame-w);
    height: auto;
    aspect-ratio: var(--fb-ar-w)/var(--fb-ar-h);
    margin: 0 auto;
    overflow: hidden;
}

.fancybox__carousel .fancybox__viewport .fancybox__slide {
    width: 100%;
    height: 100%;
    padding: 0;
}

.fancybox__carousel .fancybox__viewport .f-panzoom__wrapper {
    position: absolute !important;
    inset: 0 !important;
    margin: 0 !important;
    width: auto !important;
    height: auto !important;
    max-width: none !important;
    max-height: none !important;
    aspect-ratio: auto !important;
}

.fancybox__carousel .fancybox__viewport .f-panzoom__wrapper .f-panzoom__viewport {
    width: 100% !important;
    height: 100% !important;
    transform: none !important;
}

.fancybox__container,
.fancybox__carousel {
    justify-content: center;
}

.fancybox__carousel,
.fancybox__viewport {
    flex: none;
}

.fancybox__viewport .f-caption {
    padding: 0;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    max-height: 100%;
    height: auto;
    max-width: 828px;
    width: 100%;
    text-wrap: auto;
}

.f-caption .description {
    padding: 32px;
}

.f-caption .description h3 {
    margin-bottom: 4px;
}

.f-panzoom__viewport {
    overflow: hidden;
    border-radius: 24px;
}

.fancybox__slide .f-html {
    overflow: hidden;
    border-radius: 24px;
}

.f-html5video,
.fancybox__slide .f-iframe {
    border-radius: 24px;
    -o-object-fit: cover;
    object-fit: cover;
}

.f-panzoom__viewport::before {
    content: "";
    display: block;
    background: linear-gradient(0deg, rgb(18, 7, 1) -20%, rgba(85, 47, 29, 0) 100%);
    width: 100%;
    height: 50%;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 1;
}

.fancybox__backdrop {
    backdrop-filter: blur(11px);
}

.fancybox__thumbs {
    display: flex;
    justify-content: center;
    --f-thumbs-padding-y: 12px;
    --f-thumbs-padding-x: 12px;
    flex: none;
}

.f-thumbs__viewport {
    max-width: 828px;
    flex: 1;
    overflow: hidden;
}

@media (min-width: 1200px) {
    .fancybox__carousel .f-carousel__toolbar {
        max-width: 1148px;
    }
}

@media (max-width: 767px) {
    .fancybox__carousel {
        --fb-ar-w: 4;
        --fb-ar-h: 3;
        --fb-chrome: 200px;
        --fb-arrow-gap: 0px;
    }
    .fancybox__carousel .fancybox__viewport {
        min-height: min(400px, 100svh - var(--fb-chrome));
    }
    .f-caption .description {
        padding: 16px;
    }
    .f-caption .description h3 {
        font-size: 18px;
        line-height: 1.3;
    }
    .f-caption .description p {
        font-size: 13px;
        line-height: 1.4;
    }
    .fancybox__thumbs {
        --f-thumb-width: 72px;
        --f-thumb-height: 72px;
        --f-thumbs-gap: 8px;
        --f-thumb-border-radius: 8px;
    }
}

@media (max-height: 600px) {
    .fancybox__carousel {
        --fb-chrome: 100px;
    }
    .fancybox__thumbs {
        display: none;
    }
    .f-caption .description {
        padding: 16px;
    }
    .f-caption .description h3 {
        font-size: 18px;
        line-height: 1.3;
    }
    .f-caption .description p {
        font-size: 13px;
        line-height: 1.4;
    }
}


/* search */

.search-btn,
.search-close-btn {
    background: transparent;
    padding: 0;
    border: 0;
    line-height: 0;
}

.search-box {
    background-color: var(--color-primary-400);
    width: 100%;
  	height: 0;
  	overflow: hidden;
    position: absolute;
    top: 104px;
    left: 0;
    z-index: 998;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.search-box-inner {
    display: flex;
    align-items: center;
    gap: 32px;
  	opacity: 0;
  	transition: opacity 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.search-box.show {
  	padding: 32px 0;
    height: 88px;
}

.search-box.show .search-box-inner  {
  	opacity: 1;
}

.search-box-inner .icon {
    line-height: 0;
}

.search-input {
    display: flex;
    align-items: center;
    gap: 22px;
    flex: 1;
}

.search-input .form-control {
    color: var(--color-primary-100);
    background-color: transparent;
    border: 0;
    border-radius: 0;
    padding: 0;
}

.search-input .form-control:focus {
    box-shadow: none;
}

.search-input .form-control::-webkit-input-placeholder {
    color: var(--color-primary-100);
}


/* Firefox 19+ */

.search-input .form-control::-moz-placeholder {
    color: var(--color-primary-100);
    opacity: 1;
}


/* Internet Explorer 10-11 */

.search-input .form-control:-ms-input-placeholder {
    color: var(--color-primary-100);
}

@media (max-width: 991px) {
  	.search-box {
        top: 69px;
    }
  
    .search-box-inner {
        gap: 18px;
    }
  
    .search-box-inner .icon img {
        width: 16px;
        height: 16px;
        max-width: none;
    }
  
    .search-input {
        gap: 10px;
    }
  
    .search-input .form-control {
        font-size: 14px;
        line-height: 26px;
    }
  
    .search-box.show {
      	height: 58px;
      	padding: 16px 0;
    }
}


/* button */

.btn {
    font-size: 16px;
    font-weight: 600;
    line-height: 1.875;
    padding: 5px 6px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.btn.btn2 {
    padding: 9px 18px;
}

.btn.btn3 {
    padding: 8px;
    border-radius: 4px;
}

.btn.btn3 .icon {
    width: 24px;
    height: 24px;
    box-shadow: none;
    background-color: inherit;
}

.btn-color1 {
    background-color: var(--color-secondary-warm-sand-beige) !important;
    border-color: var(--color-secondary-warm-sand-beige);
    color: var(--color-secondary-300) !important;
}

.btn-color1:hover {
    border-color: var(--color-secondary-300);
}

.btn>span {
    padding: 4px 18px;
}

.btn .icon {
    background-color: var(--color-primary-300);
    width: 38px;
    height: 38px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border-radius: 6px;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.btn .icon {
    position: relative;
    overflow: hidden;
}

.btn .icon span {
    width: 100%;
    height: 100%;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

.btn .icon .arrow1,
.btn .icon .arrow2 {
    position: absolute;
    top: 0;
    left: 0;
    transition: transform 0.25s ease-in-out;
}

.btn .icon .arrow1 {
    transform: translateX(0);
}

.btn .icon .arrow2 {
    transform: translateX(-100%);
}

.btn:hover .icon .arrow1,
.btn:focus-visible .icon .arrow1 {
    transform: translateX(100%);
}

.btn:hover .icon .arrow2,
.btn:focus-visible .icon .arrow2 {
    transform: translateX(0);
}

@media (prefers-reduced-motion: reduce) {
    .btn .icon .arrow1,
    .btn .icon .arrow2 {
        transition: none;
    }
}

.btn.btn-lg {
    font-size: 18px;
}

.btn.btn-lg>span {
    padding: 8px 12px;
}

.btn.btn-lg .icon {
    width: 50px;
    height: 50px;
}

.btn-primary,
.btn-primary:hover,
.btn-primary:active,
.btn-primary:focus-visible {
    background-color: var(--color-primary-50) !important;
    border-color: var(--color-primary-50) !important;
    color: var(--color-primary-500) !important;
    box-shadow: none;
}

.btn-primary .icon {
 box-shadow: 0 6px 24px 0 rgba(23, 65, 64, 0.35);
}

.btn-primary:hover .icon {
    background-color: var(--color-primary-pale-green);
}

.btn-primary-300,
.btn-primary-300:hover,
.btn-primary-300:active,
.btn-primary-300:focus-visible {
    background-color: var(--color-primary-300) !important;
    border-color: var(--color-primary-300) !important;
    color: var(--color-primary-50) !important;
    box-shadow: none;
}

.btn-primary-300 .icon {
    background-color: var(--color-primary-50);
}

.btn-primary-300:hover .icon {
    background-color: var(--color-primary-75);
}

.btn-secondary,
.btn-secondary:hover,
.btn-secondary:active,
.btn-secondary:focus-visible {
    background-color: var(--color-secondary-50) !important;
    border-color: var(--color-secondary-50) !important;
    color: var(--color-secondary-500) !important;
    box-shadow: none;
}

.btn-color2 {
    background-color: var(--color-secondary-warm-sand-beige) !important;
    border-color: var(--color-secondary-warm-sand-beige) !important;
    color: var(--color-secondary-500) !important;
}

.btn-outline-secondary {
    background-color: transparent !important;
    border-color: var(--color-secondary-300) !important;
    color: var(--color-secondary-300) !important;
}

.btn-outline-secondary:hover {
    background-color: var(--color-secondary-300) !important;
    border-color: var(--color-secondary-300) !important;
    color: #fff !important;
}

.btn-secondary .icon,
.btn-color2 .icon {
    background-color: var(--color-secondary-300);
}

.btn-secondary:hover .icon,
.btn-color2:hover .icon {
    background-color: var(--color-secondary-200);
}

.btn-secondary:hover .icon{
 	box-shadow: 0 6px 24px 0 rgba(139, 77, 48, 0.35);
}

.btn-secondary.btn2 {
    background-color: var(--color-secondary-soft-ivory-white) !important;
    border-color: var(--color-secondary-soft-ivory-white) !important;
    color: var(--color-secondary-300) !important;
}

.btn-secondary-300.btn2 {
    background-color: var(--color-secondary-300) !important;
    border-color: var(--color-secondary-300) !important;
    color: var(--color-secondary-warm-sand-beige) !important;
}


/* stat */

.stat {
    color: var(--color-neutral-500);
    display: flex;
    align-items: center;
    gap: 16px;
}

.stat .content {
    display: flex;
    flex-direction: column;
}

.stat .box {
    background-color: var(--color-secondary-warm-sand-beige);
    width: 80px;
    height: 80px;
    border-radius: 6px;
    box-shadow: 0 10px 40px rgba(139, 77, 48, 0.35);
}

.stat.box2 .box {
    box-shadow: none;
}

.stat .icon {
    flex-shrink: 0;
}

.stat .value {
    font-size: 26px;
    line-height: 1.8846153846;
}

.stat.alt .value {
    font-size: 18px;
    line-height: 1.8888888889;
}

.stat.box2 .value {
    font-size: 23px;
    line-height: 1.6086956522;
}

.box-wrapper {
    background-color: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 12px;
    overflow: hidden;
}

.box-wrapper .box-header {
    background-color: rgba(0, 0, 0, 0.2);
    padding: 16px 22px;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.live {
    color: #5DE8A0;
    font-size: 14px;
    line-height: 1.8571428571;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
}

.live::before {
    content: "";
    background-color: #5DE8A0;
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    margin-right: 6px;
}

.box-wrapper .badge {
    font-family: "Outfit", "Cairo", "Inter 24pt", Arial, "Helvetica Neue", Helvetica, sans-serif;
}

@media (max-width: 991px) {
    .box-wrapper .box-header {
        padding: 16px;
    }
}


/* badge */

.badge,
.badge2 {
    color: #7DE8B5;
    background-color: rgba(93, 232, 160, 0.2);
    padding: 1px 6px;
    font-size: 10px;
    font-weight: 700;
    line-height: 1.6;
    border-radius: 4px !important;
    width: -moz-fit-content;
    width: fit-content;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.badge2 {
    color: var(--color-neutral-500);
    background-color: var(--color-secondary-warm-sand-beige);
    font-size: 14px;
    font-weight: 500;
    line-height: 1.8571428571;
    padding: 4px 12px;
}


/* section-header */

.section-header .super-title {
    color: var(--color-neutral-400);
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin-bottom: 24px;
}

.section-header .super-title .icon {
    line-height: 0;
}

.section-header .super-title:last-child {
    margin-bottom: 0;
}

.section-header h2:last-child {
    margin-bottom: 0;
}

@media (max-width: 767px) {
    .section-header .super-title {
        margin-bottom: 16px;
    }
}


/* post */

.post,
.card1 {
    background-color: #fff;
    border-radius: 12px;
    width: 100%;
    height: 100%;
}

.post,
.card1,
.post>a {
    display: flex;
    gap: 12px;
    padding: 16px;
    width: 100%;
    height: 100%;
}

.post:has(>a) {
    padding: 0;
}

.post .figure1 {
    height: -moz-fit-content;
    height: fit-content;
}

.post .figure1 img {
    width: 128px;
    height: 128px;
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: 8px;
}

.post .content,
.card1 .content {
    flex: 1;
    display: flex;
    flex-direction: column;
    color: var(--color-neutral-500);
}

.post .content p {
    color: var(--color-primary-75);
}

.post .content p:last-child {
    margin-bottom: 0;
}

.post .content .link1 {
    margin-top: auto;
    color: var(--color-primary-300);
    font-size: 14px;
    font-weight: 500;
    line-height: 1.8571428571;
    gap: 6px;
}

.post .content .badge2 {
    color: #8B4D30;
    background-color: var(--color-secondary-warm-sand-beige);
    margin-bottom: 8px;
}

.post.alt {
    background-color: rgba(14, 40, 39, 0.75);
    backdrop-filter: blur(30px);
    flex-direction: column;
    padding: 24px;
    border-radius: 8px;
}

.post.alt .content {
    margin-bottom: 24px;
    color: #fff;
}

.post.alt .content .badge2 {
    color: #fff;
    background-color: var(--color-primary-400);
    margin-bottom: 24px;
}

.post.alt .date {
    color: var(--color-primary-75);
}

.post.alt footer {
    display: flex;
    justify-content: space-between;
    align-items: end;
}

@media (max-width: 991px) {
    .post.alt {
        padding: 16px;
    }
}


/* feature-block */
.feature-block {
    position: relative;
    padding: 24% 24px 24px;
    border-radius: 12px;
}

.feature-block .post,
.feature-block .box2 {
    position: relative;
    z-index: 1;
}

.feature-block .figure1 {
    width: 100%;
    height: 100%;
    display: flex;
    position: absolute;
    top: 0;
    left: 0;
}

.feature-block.alt {
    padding: 395px 16px 16px;
}

.feature-block.alt2 {
    padding: 0;
}

.feature-block.alt2 .post {
    background: linear-gradient(90deg, rgb(15, 36, 35) 0%, rgba(14, 40, 39, 0.5) 100%);
    padding: 72px;
    border-radius: 12px;
    padding-right: 45.59%;
    backdrop-filter: blur(0);
}

.feature-block.alt2 .post .badge2 {
    background-color: var(--color-primary-pale-green);
}

@media (max-width: 1199px) {
    .feature-block,
    .feature-block.alt {
        padding: 22% 16px 16px;
    }
    .feature-block.alt2 .post {
        padding: 48px;
    }
}

@media (max-width: 991px) {
    .feature-block.alt2 .post {
        padding: 16px;
    }
}

.feature-block2 {
    position: relative;
    margin-bottom: 106px;
}

.feature-block2 .figure1 img {
    min-height: 500px;
}

.feature-block2 .box2 {
    width: 354px;
    position: absolute;
    bottom: -106px;
    right: -149px;
    z-index: 1;
}

@media (max-width: 1199px) {
    .feature-block2 .box2 {
        width: calc(100% - 32px);
        position: absolute;
        right: unset;
        left: 50%;
        transform: translateX(-50%);
    }
}


/* card1 */

.card1 {
    padding: 24px 24px 32px;
    gap: 32px;
}

.card1.bg-patter3 .box,
.card1.bg-patter3 .content {
    position: relative;
    z-index: 1;
}

.card1.bg-color1 .box,
.card1.bg-color1 .badge2 {
    background-color: var(--color-secondary-warm-sand-beige);
}

.card1.bg-primary .box,
.card1.bg-primary .badge2 {
    background-color: var(--color-primary-50);
}

.card1.bg-gradient1 .box,
.card1.bg-gradient1 .badge2 {
    background-color: var(--color-secondary-50);
}

.card1.bg-primary .content,
.card1.bg-primary .value,
.card1.bg-gradient1 .content,
.card1.bg-gradient1 .value {
    color: #fff;
}

.card1.bg-primary-50 .value {
    color: var(--color-primary-300);
}

.card1 .content p:last-child {
    margin-bottom: 0;
}

.card1 .title {
    margin-bottom: 8px;
}

.card1 .badge2 {
    padding: 8px 12px;
    margin-top: 24px;
}

.card1 .value {
    color: var(--color-secondary-300);
    font-size: 29px;
    font-weight: 500;
    line-height: 1.8620689655;
}

.card1 .value .unit {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.875;
}

.card1.alt {
    padding: 14px 16px;
    gap: 12px;
}

.card1.alt.bg-color1 .box {
    background-color: #8B4D30;
}

.card1.alt .title {
    font-size: 14px;
    line-height: 1.8571428571;
    margin-bottom: 0;
}

.card1.alt .label {
    color: var(--color-neutral-300);
}

.card1.alt .link1 {
    font-size: 14px;
    line-height: 1.8571428571;
    color: var(--color-secondary-300);
    width: -moz-fit-content;
    width: fit-content;
    text-decoration: none;
}

.card1.alt .link1:hover {
    text-decoration: underline;
}

@media (max-width: 991px) {
    .card1 {
        padding: 16px 16px 20px;
        gap: 16px;
    }
}

.card2 {
    width: 100%;
    height: 100%;
    padding: 32px;
    border-radius: 12px;
}

.card2 .pill {
    background-color: var(--color-secondary-soft-ivory-white);
}

.card2 .icon.icon-bg {
    margin-bottom: 40px;
}

.card2.bg-primary-50 .content .link1 {
    color: var(--color-primary-pale-green);
}

.card2.bg-primary-50 .content p {
    color: var(--color-neutral-300);
}

.card2.bg-primary-50 .content p {
    color: var(--color-neutral-300);
}

.card2.bg-primary .content p {
    color: var(--color-primary-75);
}

.card2 .content .link1 {
    font-size: 14px;
    line-height: 1.8571428571;
}

.card2.bg-primary .content .link1 {
    color: var(--color-primary-50);
}

.card2 .content p:last-child {
    margin-bottom: 0;
}

@media (max-width: 991px) {
    .card2 {
        padding: 16px;
    }
    .card2 .icon.icon-bg {
        margin-bottom: 24px;
    }
}

.card3,
.card3>a {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    min-height: 388px;
}

.card3 .figure1 {
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    width: 100%;
    height: 100%;
}

.card3 .figure1::before {
    content: "";
    display: block;
    background: linear-gradient(0deg, rgb(18, 7, 1) -20%, rgba(85, 47, 29, 0) 100%);
    width: 100%;
    height: 50%;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 1;
}

.card3 .content {
    margin-top: auto;
    position: relative;
    z-index: 2;
    padding: 32px;
    color: #fff;
}

.card3 .content p:last-child {
    margin-bottom: 0;
}

.card3 .content .badge2 {
    margin-bottom: 8px;
}

.card3 .content .label {
    opacity: 0.8;
}

@media (max-width: 767px) {
    .card3 .content {
        padding: 16px;
    }
}

.card4 {
    padding: 16px;
    border-radius: 8px;
}

.card4 .figure1 img {
    border-radius: 4px;
    width: 100%;
    height: 208px;
    -o-object-fit: cover;
    object-fit: cover;
}

.card4.alt .figure1 img {
    height: 136px;
}

.card4 .content {
    padding: 8px;
    margin-bottom: 24px;
}

.card4 .content .h5 {
    margin-bottom: 0;
}

.card4.bg-color2 .content .h5 {
    color: var(--color-secondary-300);
}

.card4 .content p {
    color: var(--color-neutral-300);
}

.card4.bg-color3 .content p {
    color: var(--color-primary-75);
}

.card4 .content p:last-child {
    margin-bottom: 0;
}

.card5 {
    position: relative;
    border-radius: 12px;
    height: 675px;
    overflow: hidden;
}

.card5 .figure1 {
    position: absolute;
    display: flex;
    height: 100%;
    width: 100%;
}

.card5 .figure1::before {
    content: "";
    display: block;
    background: linear-gradient(0deg, rgba(85, 47, 29, 0) 0, rgb(18, 7, 1) 230%);
    width: 100%;
    height: 20%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.card5 .content {
    position: relative;
    z-index: 2;
    padding: 70px 24px 24px;
}

@media (max-width: 767px) {
    .card5 {
        height: 500px;
    }
    .card5 .content {
        position: relative;
        z-index: 2;
        padding: 70px 16px 16px;
    }
}

.post2 {
    background-color: #fff;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1) 0s;
    width: 100%;
    height: 100%;
}

.post2:hover {
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.post2>a {
    display: flex;
    flex-direction: column;
    color: inherit;
    width: 100%;
    height: 100%;
}

.post2 .content {
    flex: 1;
    padding: 24px;
    display: flex;
    flex-direction: column;
}

.post2 .content p {
    color: var(--color-neutral-300);
}

.post2 .content p:last-child {
    margin-bottom: 0;
}

.post2 .content .meta {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
}

.post2 .content .link1 {
    margin-top: auto;
    color: var(--color-secondary-300);
}

.post2 .figure1 img {
    height: 264px;
    -o-object-fit: cover;
    object-fit: cover;
}

.post2 .figure1.img-pattern {
    display: flex;
    justify-content: center;
    padding-top: 52px;
    margin-bottom: 28px;
}

.post2 .figure1.img-pattern img {
    box-shadow: 0 30px 70px 5px rgba(0, 0, 0, 0.5);
    height: 268px;
}

.post2.alt {
    border-radius: 0;
}

.post2.alt:hover {
    box-shadow: none;
}

.post2.alt:hover .h6,
.post2.alt:hover .link1 {
    text-decoration: underline;
}

.post2.alt .content {
    padding: 0;
}

@media (max-width: 767px) {
    .post2 .content {
        padding: 16px;
    }
}

.img-pattern {
    position: relative;
}

.img-pattern img {
    z-index: 2;
}

.img-pattern::before {
    content: "";
    display: block;
    background: url("../images/pattern7.svg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    width: 294px;
    height: 286px;
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
}


/* pill */

.pill {
    background-color: #fff;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 12px 24px;
    border: 1px solid var(--color-secondary-warm-sand-beige);
    border-radius: 50px;
}

.pill .icon img {
    width: 24px;
    height: 24px;
    border-radius: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.pill {
    color: var(--color-neutral-500);
    font-size: 18px;
    line-height: 1.8888888889;
    font-weight: 500;
    white-space: nowrap;
}

.pill.alt {
    padding: 7px 15px;
    border-color: var(--color-primary-75);
    font-size: 16px;
    line-height: 1.625;
}

@media (max-width: 991px) {
    .pill {
        padding: 12px;
    }
    .pill {
        font-size: 16px;
        line-height: 1.875;
    }
}


/* box */

.box {
    width: 128px;
    height: 128px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
    flex-shrink: 0;
}

.box.size2 {
    width: 48px;
    height: 48px;
    border-radius: 4px;
}

.box.size3 {
    width: 80px;
    height: 80px;
    border-radius: 4px;
}

.box.size4 {
    width: 148px;
    height: 160px;
    border-radius: 16px;
}

.box.size5 {
    width: 36px;
    height: 36px;
    border-radius: 4px;
}

.box.size6 {
    width: 32px;
    height: 32px;
}

.box2 {
    padding: 24px;
    border-radius: 8px;
}

.box2.size2 {
    padding: 56px;
    border-radius: 12px;
}

.box2.size3 {
    padding: 32px;
    border-radius: 12px;
}

.box2.size4 {
    padding: 40px;
    border-radius: 12px;
}

.box2.size5 {
    padding: 20px;
}

.box2.bg-primary p {
    color: var(--color-primary-50);
}

.box2 p:last-child {
    margin-bottom: 0;
}

.box2.bg-color3.bg-pattern4 {
    overflow: hidden;
}

.box2.bg-color3.bg-pattern4>* {
    position: relative;
    z-index: 2;
}

@media (max-width: 991px) {
    .box2,
    .box2.size3,
    .box2.size4,
    .box2.size5 {
        padding: 16px;
    }
    .box2.size2 {
        padding: 20px;
    }
}

.box3 {
    width: 100%;
    height: 100%;
    padding: 72px 56px 42px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.newsletter-form {
    position: relative;
}

.newsletter-form .form-group {
    margin-bottom: 24px;
}

.newsletter-form .form-control {
    color: rgba(246, 241, 238, 0.4);
    background-color: rgba(246, 241, 238, 0.1);
    border-color: rgba(246, 241, 238, 0.2);
    font-size: 14px;
    line-height: 1.8571428571;
    padding: 8px 12px;
}

.newsletter-form .form-control:focus {
    box-shadow: none;
}

.newsletter-form .form-control::-moz-placeholder {
    color: rgba(246, 241, 238, 0.4);
}

.newsletter-form .form-control::placeholder {
    color: rgba(246, 241, 238, 0.4);
}


/* Microsoft Edge (Legacy) */

.newsletter-form .form-control::-ms-input-placeholder {
    color: rgba(246, 241, 238, 0.4);
}


/* Internet Explorer 10-11 */

.newsletter-form .form-control:-ms-input-placeholder {
    color: rgba(246, 241, 238, 0.4);
}

.newsletter-form .btn {
    color: var(--color-primary-300);
    background-color: var(--color-primary-50);
    padding: 11px;
    width: 100%;
    justify-content: center;
}

.newsletter-form p {
    color: var(--color-primary-75);
    margin-bottom: 24px;
}


/* custom-table */

.custom-table {
    border-radius: 12px;
    border: 1px solid rgba(0, 43, 42, 0.1);
}

.custom-table .table {
    margin: 0;
}

.custom-table header {
    padding: 24px 32px;
}

.custom-table th,
.custom-table td {
    padding: 22px 24px !important;
    background-color: inherit;
    vertical-align: middle;
}

.custom-table thead th {
    color: #002B2A;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.8571428571;
    padding: 16px 24px !important;
}

.custom-table.bg-color2 thead th {
    background-color: var(--color-secondary-soft-ivory-white);
}

.custom-table tbody th,
.custom-table tbody td {
    color: #002B2A;
    font-size: 16px;
    font-weight: normal;
    line-height: 1.6;
}

.custom-table> :not(caption)>*>* {
    border-color: rgba(0, 43, 42, 0.05);
}

.custom-table tr th:first-child {
    padding-left: 38px !important;
}

.custom-table tr th:last-child,
.custom-table tr td:last-child {
    padding-right: 38px !important;
}

.custom-table thead th,
.custom-table tbody tr:last-child th,
.custom-table tbody tr:last-child td {
    border: 0;
}

@media (max-width: 766px) {
    .custom-table {
        overflow-x: auto;
    }
    .custom-table header {
        padding: 16px 20px;
    }
    .custom-table th,
    .custom-table td {
        padding: 16px 20px !important;
    }
    .custom-table tr th:first-child {
        padding-left: 24px !important;
    }
    .custom-table tr th:last-child,
    .custom-table tr td:last-child {
        padding-right: 24px !important;
    }
}


/* form */

.form.box2 {
    border: 1px solid var(--color-neutral-50);
}

.form .form-group {
    margin-bottom: 24px;
}

.form .form-label {
    font-size: 14px;
    font-weight: 500;
    line-height: 1.8571428571;
}

.form .form-control,
.form .form-select {
    background-color: var(--color-secondary-soft-ivory-white);
    font-size: 16px;
    line-height: 1.6;
    padding: 12px 16px;
    border: 0;
    border-radius: 0;
    border-bottom: 1px solid rgba(0, 43, 42, 0.2);
}

.form .form-control:focus,
.form .form-select:focus {
    box-shadow: none;
}

.form .form-control::-webkit-input-placeholder {
    color: #6B7280;
}


/* Firefox 19+ */

.form .form-control::-moz-placeholder {
    color: #6B7280;
    opacity: 1;
}


/* Internet Explorer 10-11 */

.form .form-control:-ms-input-placeholder {
    color: #6B7280;
}

textarea {
    height: 123px;
}

/* chart-container */
.chart-container .label {
  display: inline-block;
  margin-bottom: 24px;
  color: var(--color-primary-500);
}

.chart-container:has(#productionChart) .label {
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 10px;
}

.chart-container #exportChart {
  width: 100% !important;
  height: 370px !important;
  max-height: 370px !important;
}

.chart-container #productionChart {
  width: 100% !important;
  height: 52px !important;
  max-height: 52px !important;
}

/* slider */

.slider1 {
    display: flex;
    align-items: center;
    padding: 40px 0;
    position: relative;
    margin-bottom: 56px;
    margin-left: -8px;
    margin-right: -8px;
}

.slider1::before,
.slider1::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 120px;
    z-index: 2;
    pointer-events: none;
}

.slider1::before {
    left: 50%;
    margin-left: -50vw;
    background: linear-gradient(to right, var(--color-secondary-soft-ivory-white) 0%, rgba(246, 241, 238, 0) 100%);
}

.slider1::after {
    right: 50%;
    margin-right: -50vw;
    background: linear-gradient(to left, var(--color-secondary-soft-ivory-white) 0%, rgba(246, 241, 238, 0) 100%);
}

.slider1:not(.slick-slider) .item:nth-child(-n+8) {
    display: block;
}

.slider1:not(.slick-slider) .item {
    display: none;
}

.slider1 .item {
    padding: 0 8px;
}

.fit-screen .slick-list {
    overflow: visible;
}

@media (max-width: 991px) {
    .slider1 {
        padding: 20px;
        margin-bottom: 20px;
    }
}

.slider2 {
    display: flex;
    align-items: center;
    margin-left: -12px;
    margin-right: -12px;
}

.slider2 .item {
    padding: 0 12px;
}

.slider2 .item .card4 {
    width: 310px;
}

.slider2 .item .card4.alt {
    width: 366px;
}

.slider2 .slick-list {
    overflow: visible;
}

.slider2 .slick-track {
    display: flex;
    align-items: center;
}

.section:has(.slider2) {
    overflow-x: clip;
}

.slider3 .slick-dots {
    position: absolute;
    top: 32px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    display: flex;
    align-items: center;
    gap: 12px;
    list-style: none;
    margin: 0;
    padding: 0 24px;
}

.slider3 .slick-dots li {
    flex: 1;
}

.slider3 .slick-dots li button {
    background-color: #fff;
    font-size: 0;
    border: 0;
    width: 100%;
    height: 6px;
    border-radius: 200px;
    min-width: 20px;
}

.slider3 .slick-dots li.slick-active button {
    background-color: var(--color-secondary-100);
}

@media (max-width: 767px) {
    .slider3 .slick-dots {
        gap: 10px;
        padding: 0 16px;
    }
}

.slider4 {
    display: flex;
    align-items: center;
    padding: 40px 0 72px;
    position: relative;
    margin-left: -24px;
    margin-right: -24px;
}

.slider4 .item {
    padding: 0 24px;
    display: flex;
    justify-content: center;
}

.slider4 .slick-track {
    display: flex;
    align-items: center;
}

.slider4 .slick-list {
    width: 100%;
}

.progress-bar-item .progress {
    background-color: #fff;
    margin-bottom: 8px;
}

.progress-bar-item .progress,
.progress-bar-item .progress .progress-bar {
    height: 8px;
}

.progress-bar-item .content {
    color: #404848;
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.8571428571;
}


/* Map band breaks out of the .container to span the full viewport width.
   (body has overflow-x: clip, so 100vw causes no horizontal scrollbar.)
   The col-lg-7 / col-lg-5 columns then split it responsively and stack on mobile. */

.full-width-row {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    /* Stretch columns to equal height so the dark map fills the band — otherwise
   the (taller) details column leaves white gaps above/below the map. */
    align-items: stretch;
}


/* ---- Legend ---- */

.map-legend {
    display: flex;
    gap: 16px;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.8571428571;
}

.map-legend span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
    white-space: nowrap;
}

.map-legend i {
    width: 12px;
    height: 12px;
    border-radius: 3px;
    display: inline-block;
}

.swatch1 {
    background: var(--color-primary-pale-green);
    border: 1px solid rgb(26, 174, 90);
}

.swatch2 {
    background: var(--color-secondary-300);
    border: 1px solid var(--color-secondary-warm-sand-beige);
}

.swatch3 {
    background: var(--color-secondary-warm-sand-beige);
    border: 1px solid rgba(0, 0, 0, 0.12);
}

.swatch-selected {
    background: #1FAE78;
    box-shadow: 0 0 7px 0 rgba(31, 174, 120, 0.55);
}

.swatch-active {
    background: var(--color-primary-pale-green);
    border: 1px solid rgba(26, 174, 90, 0.6);
}

.swatch-inactive {
    background: rgba(200, 240, 215, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.12);
}


/* ==========================================================================
   Observatory interactive map
   ========================================================================== */


/* Map palette — declared on :root so the body-level tooltip (appended
   outside .idc-map-vars by the JS) can also resolve these variables. */

:root {
    --map-bg: #0b211c;
    --map-bg-2: #0e2820;
    --idc-inactive: #173a31;
    --idc-active: #2b7a64;
    /* Resting fill of an activated country — the colour the nine original
       member shapes carry as a presentation attribute in the SVG. */
    --idc-member: #235451;
    --idc-active-hover: #3ec79f;
    --idc-selected: #34d399;
    --idc-card: #11302a;
    --idc-line: rgba(255, 255, 255, .06);
    --idc-text: #eaf4f0;
    --idc-muted: #8aa39b;
    --idc-accent: #34d399;
}

.idc-map-vars {
    width: 100%;
    height: 100%;
    direction: ltr;
}


/* ---- Map stage ---- */

.idc-map-stage {
    position: relative;
    background: #0e2827;
    padding: 0;
    overflow: hidden;
    /* Fill the stretched column height and center the map within it */
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.idc-map-vars .map-legend {
    position: absolute;
    bottom: 64px;
    left: 50%;
    transform: translateX(-50%);
    gap: 32px;
    flex-wrap: nowrap;
    justify-content: center;
    white-space: nowrap;
    background: var(--color-primary-50);
    border: 1px solid #D6EAE0;
    padding: 12px 32px;
    border-radius: 8px;
    color: #365040;
    box-shadow: 0 2px 16px 0 rgba(13, 74, 46, 0.7);
}


/* SVG scales to its column width at any size, keeping aspect ratio (crisp
   vector — no cropping, no pixelation). */

#idc-map-svg {
    width: 100%;
    height: auto;
    display: block;
}


/* Active (clickable member) countries */

.idc-active {
    cursor: pointer;
    transition: fill 0.2s ease, stroke 0.2s ease;
}

.idc-active:hover {
    fill: var(--idc-active-hover);
    stroke: var(--idc-active-hover);
}

.idc-active.is-selected {
    fill: var(--idc-selected);
    stroke: var(--idc-selected);
}


/* ---- Mapped countries ---------------------------------------------------
   Every shape carrying data-country is a country the map knows about. Which
   ones are live is decided by the CMS (or ACTIVE_COUNTRIES / the data-active
   attribute on #idc-map-svg); the JS adds .idc-active to those.
   The active declarations repeat the values the original member shapes carry
   as presentation attributes, because a shape switched on from config still
   has the inactive fill inline and CSS has to win over it. */
#idc-map-svg [data-country] {
    transition: fill 0.2s ease, stroke 0.2s ease, fill-opacity 0.2s ease, stroke-opacity 0.2s ease;
}

/* Mapped but not switched on: drawn, but inert — no pointer, no hover, no
   tooltip. This is the legend's "Inactive — no data yet" state. */
#idc-map-svg [data-country]:not(.idc-active) {
    cursor: default;
    pointer-events: none;
}

#idc-map-svg [data-country].idc-active {
    cursor: pointer;
    fill: var(--idc-member);
    fill-opacity: 1;
    stroke: #1AAE5A;
    stroke-opacity: 0.6;
    stroke-width: 0.992872;
}

#idc-map-svg [data-country].idc-active:hover {
    fill: var(--idc-active-hover);
    stroke: var(--idc-active-hover);
}

#idc-map-svg [data-country].idc-active.is-selected {
    fill: var(--idc-selected);
    stroke: var(--idc-selected);
}

#idc-map-svg [data-country].idc-active:focus-visible {
    outline: none;
    stroke: var(--idc-selected);
    stroke-opacity: 1;
    stroke-width: 1.6;
}


/* Debug: number labels on active countries (toggle DEBUG in JS) */

.idc-debug-label {
    fill: #fff;
    font: 700 11px "Outfit", sans-serif;
    text-anchor: middle;
    dominant-baseline: middle;
    pointer-events: none;
}


/* ---- Top instruction pill ---- */

.idc-map-pill {
    position: absolute;
    top: 22px;
    left: 50%;
    transform: translateX(-50%);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--color-primary-50);
    border: 1px solid var(--idc-line);
    color: var(--color-primary-300);
    font-size: 16px;
    line-height: 1.875;
    font-weight: 500;
    padding: 12px 16px;
    border-radius: 8px;
    white-space: nowrap;
}

.idc-map-pill svg {
    width: 18px;
    height: 18px;
    color: var(--idc-accent);
}


/* ---- Tooltip card ---- */

.idc-tooltip {
    position: fixed;
    z-index: 50;
    pointer-events: none;
    opacity: 0;
    transform: translateY(4px);
    transition: opacity 0.12s ease, transform 0.12s ease;
    background-color: rgba(232, 236, 236, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(26, 174, 90, 0.6);
    border-radius: 14px;
    padding: 11px 19px;
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(52, 211, 153, 0.04);
    font-family: "Outfit", sans-serif;
    min-width: 192px;
}

.idc-tooltip.show {
    opacity: 1;
    transform: translateY(0);
}

.map-tip-head {
    display: flex;
    align-items: baseline;
    gap: 7px;
}

.map-tip-code {
    color: var(--color-primary-50);
    font-size: 14px;
    line-height: 1.8571428571;
}

.map-tip-name {
    color: var(--color-primary-50);
    font-size: 16px;
    line-height: 1.875;
    font-weight: 500;
}

.map-tip-prod {
    color: #1AAE5A;
    font-size: 16px;
    line-height: 1.875;
    font-weight: 500;
}

.map-tip-cta {
    color: var(--color-primary-75);
    font-size: 13px;
}


/* ---- Detail panel (updates on click) ---- */

.idc-map-detail {
    margin-top: 18px;
    background: var(--idc-card);
    border: 1px solid var(--idc-line);
    border-radius: 18px;
    padding: 26px;
    min-height: 150px;
    display: flex;
    align-items: center;
    font-family: "Outfit", sans-serif;
}

.idc-detail-empty {
    color: var(--idc-muted);
    font-size: 15px;
}

.idc-detail-body {
    width: 100%;
    display: none;
}

.idc-detail-head {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.idc-detail-flag {
    font-size: 34px;
    line-height: 1;
}

.idc-detail-name {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
}

.idc-detail-region {
    color: var(--idc-muted);
    font-size: 14px;
}

.idc-detail-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.idc-stat {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--idc-line);
    border-radius: 12px;
    padding: 16px;
}

.idc-stat .val {
    font-size: 22px;
    font-weight: 700;
    color: var(--idc-accent);
}

.idc-stat .lbl {
    font-size: 13px;
    color: var(--idc-muted);
    margin-top: 4px;
}


/* ---- Map responsiveness ---- */


/* Tablet & down: the band's columns stack (Bootstrap col-lg-*), so the map
   becomes full-width; pull the legend in a little. */

@media (max-width: 991px) {
    .box3 {
        padding: 45px 12px;
    }
    .idc-map-legend {
        bottom: 24px;
    }
}

@media (max-width: 767px) {
    .idc-map-stage {
        padding: 50px 0 130px;
    }
    .idc-map-stage .map-legend {
        flex-direction: column;
        gap: 10px;
        bottom: 40px;
        font-size: 12px;
    }
}


/* Phones: shrink the overlays and let the legend wrap so they always fit
   inside the (now shorter) map. */

@media (max-width: 575px) {
    .idc-map-pill {
        top: 12px;
        gap: 6px;
        font-size: 12px;
        line-height: 1.3;
        padding: 8px 12px;
        white-space: normal;
        text-align: center;
        max-width: 92%;
    }
    .idc-map-pill svg {
        width: 14px;
        height: 14px;
    }
    .idc-map-legend {
        bottom: 12px;
        flex-wrap: wrap;
        gap: 6px 14px;
        padding: 8px 14px;
        font-size: 11px;
        max-width: 92%;
        box-shadow: none;
    }
    .idc-map-legend i {
        width: 10px;
        height: 10px;
    }
    /* Contact Form 7 spinner: hide (no reserved gap) until the form is submitting.
   CF7 adds .submitting to the form during its AJAX request, then removes it. */
    .newsletter-form .wpcf7-spinner {
        display: none;
    }
    .newsletter-form .wpcf7-form.submitting .wpcf7-spinner {
        display: inline-block;
    }
}


.wpcf7-not-valid { border-color:red !important; }
.newsletter-form .invalid .wpcf7-response-output { display:none !important; }
.slider3 .item { display:none; }
.slider3 .item:first-child { display:block; }
.slider3.slick-initialized .item { display:block; }
.p-12 {
  padding: 12px !important;
}

.bg-color7 {
  background-color: #F2F2F2 !important;
}

.bg-overlay2 {
  background-color: rgba(0, 0, 0, 0.15);
}

.search-result-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.search-result-list li {
    padding-bottom: 24px;
    margin-bottom: 24px;
    border-bottom: 1px solid #ccc
}

.search-result-list li:last-child {
    margin-bottom: 0;
}

.bg-video {
    position: absolute !important;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
   	z-index: -2 !important;
}

.bg-video video {
    width: 100%;
    object-fit: cover;
}

.home #banner .bg-video{
  	max-width: 994px;
  	max-height: 559px;
  	top: 50%;
  	left: 50%;
  	transform: translate(-50%, -50%);
  	mix-blend-mode: color-dodge;
  	z-index: 1 !important;
}

@media(max-width: 991px){
	.min-w-100{
		min-width: 100%;
	}
}

.icon-bg::before {
  animation: rotate360 40s linear infinite;
}

@keyframes rotate360 {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.post.alt .content .badge2 {
	background-color: var(--color-primary-300)
}

.post.alt {
	backdrop-filter: blur(20px);
}

.btn-primary:hover .icon {
    background-color: var(--color-secondary-300);
  	box-shadow: 0 6px 24px 0 rgba(139, 77, 48, 0.35);
}

#header{
	position: fixed;
  	top: 0;
  	left: 0;
  	width: 100%;
}

#header .logo img{
	height: 56px;
}

@media(max-width: 991px){
	#header .logo img{
		height: 37px;
  }
}

#container {
  	padding-top: 104px;
}

@media(max-width: 991px){
	#container {
  		padding-top: 69px;
	}
}

/*=========================
    Base Animation
=========================*/
[data-animate] {
  opacity: 0;
  transition: transform 0.8s cubic-bezier(0.2, 0.65, 0.3, 1), opacity 0.8s ease;
  will-change: transform, opacity;
}

[data-animate].show {
  opacity: 1;
  transform: none;
}

/*=========================
      Fade
=========================*/
[data-animate=fade-up] {
  transform: translateY(70px);
}

[data-animate=fade-down] {
  transform: translateY(-70px);
}

[data-animate=fade-left] {
  transform: translateX(70px);
}

[data-animate=fade-right] {
  transform: translateX(-70px);
}

/*=========================
      Zoom
=========================*/
[data-animate=zoom-in] {
  transform: scale(0.75);
}

[data-animate=zoom-out] {
  transform: scale(1.2);
}

/*=========================
      Rotate
=========================*/
[data-animate=rotate] {
  transform: rotate(-15deg) scale(0.8);
}

/*=========================
      Flip
=========================*/
[data-animate=flip] {
  transform: perspective(900px) rotateX(-70deg);
  transform-origin: top;
}

/*=========================
      Delay
=========================*/
[data-delay="100"] {
  transition-delay: 0.1s;
}

[data-delay="200"] {
  transition-delay: 0.2s;
}

[data-delay="300"] {
  transition-delay: 0.3s;
}

[data-delay="400"] {
  transition-delay: 0.4s;
}

[data-delay="500"] {
  transition-delay: 0.5s;
}

.feature-block {
  display: flex;
  flex-direction: column;
}

.feature-block .post{
  max-height: max-content;
  margin-top: auto;
}

#contact {
    scroll-margin-top: 180px;
}

#news-categories {
    scroll-margin-top: 200px;
}


.scroll-margin-top {
   scroll-margin-top: 96px;
}

@media(max-width: 767px){
	.scroll-margin-top {
  		scroll-margin-top: 45px;
	}
}

.scroll-margin-top2 {
   scroll-margin-top: 144px;
}

@media(max-width: 991px){
	.scroll-margin-top2 {
  		scroll-margin-top: 76px;
	}
}

@media(max-width: 767px){
	.scroll-margin-top2 {
  		scroll-margin-top: 84px;
	}
}

.box-wrapper {
	backdrop-filter: blur(16px);
}

.wpcf7 form.sent .wpcf7-response-output, .wpcf7 form.unaccepted .wpcf7-response-output, .wpcf7 form.payment-required .wpcf7-response-output {
    color: #97c459;
    line-height: 1.5;
    background: rgba(151, 196, 89, 0.14);
    border: 1px solid #97c459;
    border-radius: 8px;
    padding: 10px 14px;
  	margin: 14px 0 0;
    display: flex;
    gap: 8px;
    align-items: flex-start;
}

.wpcf7 form.invalid .wpcf7-response-output, .wpcf7 form.unaccepted .wpcf7-response-output, .wpcf7 form.payment-required .wpcf7-response-output {
    color: #e2534a;
    line-height: 1.5;
    background: rgba(226, 83, 74, 0.12);
    border: 1px solid #e2534a;
    border-radius: 8px;
    padding: 10px 14px;
  	margin: 14px 0 0;
    display: flex;
    gap: 8px;
    align-items: flex-start;
}

.wpcf7-spinner{
	display: none !important;	
}

.close-btn {
  color: var(--color-primary-300);
  padding: 0;
  background-color: transparent;
  border: 0;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  line-height: calc(30/16);
}

.close-btn .icon {
  flex-shrink: 0;
  line-height: 0;
}

.close-btn span {
  text-decoration: underline;
}

.close-btn:hover span {
  text-decoration: none;
}

.box.size7 {
  width: 56px;
  height: 56px;
}

.box-modal {
  background-color: #fff;
  position: absolute;
  width: 100%;
  height: 100%;
  overflow-y: auto;
  top: 0;
  left: 0;
  z-index: 10;
  /* Opens only once a country is picked on the map. */
  display: none;
}

.box-modal.is-open {
  display: block;
}

.box-modal .box-header {
  border-bottom: 1px solid var(--color-neutral-100);
  border-radius: 0;
}

.box-modal .box-header.box2 .icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.box-modal .card1 .content .badge2 {
  margin-top: 16px;
}

.box-modal .card1 {
  gap: 16px;
}

.box-modal .box2:not(.box-header) .card1 .value {
  font-size: 23px;
  line-height: calc(37/23);
}

.box-modal .box2:not(.box-header) .card1 .icon img {
  max-height: 24px;
  max-width: 24px;
}

.list8 {
  margin: 0;
  padding: 0;
  list-style: none;
}

.list8 li {
  color: var(--color-neutral-500);
  font-size: 14px;
  line-height: calc(26/14);
  margin-bottom: 16px;
  padding-left: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
}

.list8 li a {
  color: inherit;

}

.list8 li a:hover {
  text-decoration: underline;
}

.list8 li::before {
  content: "";
  display: block;
  background-color: var(--color-secondary-300);
  width: 8px;
  height: 8px;
  position: absolute;
  top: 9px;
  left: 0;
}

.list8 li span {
  color: var(--color-neutral-300);
}

.list8 li:last-child {
  margin-bottom: 0;
}

.idc-pill-code .idc-map-pill-country .name,
.idc-map-pill-country .prod {
  font-size: 12px;
  line-height: calc(20 / 12);
}

.idc-map-topbar {
  position: absolute;
  top: 22px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  align-items: stretch;
  gap: 8px;
  max-width: calc(100% - 32px);
}

.idc-map-pill {
  position: static;
  transform: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--color-primary-50);
  border: 1px solid var(--idc-line);
  color: var(--color-primary-300);
  font-size: 16px;
  line-height: 1.875;
  font-weight: 500;
  padding: 12px 16px;
  border-radius: 8px;
  white-space: nowrap;
  min-width: 0;
  overflow: hidden;
}

.idc-map-pill svg {
  width: 18px;
  height: 18px;
  color: var(--idc-accent);
  flex-shrink: 0;
}

/* The pill swaps between the hint and the selected country. */
.idc-map-pill-country {
  display: none;
  align-items: baseline;
  gap: 8px;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
}

.idc-map-topbar.has-selection .idc-map-pill-icon,
.idc-map-topbar.has-selection .idc-map-pill-hint {
  display: none;
}

.idc-map-topbar.has-selection .idc-map-pill-country {
  display: inline-flex;
}

.idc-map-pill-country .code {
  color: var(--color-neutral-500);
  font-size: 14px;
  line-height: calc(26/14);
  flex-shrink: 0;
}

.idc-map-pill-country .name,
.idc-map-pill-country .prod {
  color: var(--color-primary-500);
  font-size: 16px;
  line-height: calc(30/16);
  font-weight: 500;
}

.idc-map-topbar.has-selection .idc-map-clear {
  display: inline-flex;
}

.idc-map-clear {
  display: none;
  align-items: center;
  justify-content: center;
  width: 54px;
  flex-shrink: 0;
  padding: 0;
  background: rgba(232, 236, 236, 0.35);
  border: 1px solid var(--idc-line);
  border-radius: 8px;
  color: var(--color-neutral-500);
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.idc-map-topbar.has-selection .idc-map-clear {
  display: inline-flex;
}

.idc-map-clear:hover {
  background: var(--color-neutral-100);
}

.chart-box {
    position: relative;
    width: 100%;
    height: 200px;
    margin-top: 16px;
}

.idc-map-vars{
	max-height: 850px;
}

#mega-menu-wrap-header-menu {
  clear: both;
}
#mega-menu-wrap-header-menu, #mega-menu-wrap-header-menu #mega-menu-header-menu {
  position: static;
}
#mega-menu-wrap-header-menu #mega-menu-header-menu {
  display: flex;
  align-items: center;
  gap: 14px;
}
#mega-menu-wrap-header-menu #mega-menu-header-menu li.mega-menu-item > ul.mega-sub-menu {
  top: 104px;
  visibility: visible !important;
  overflow: hidden;
  transition: height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 40px 0 48px;
}
#mega-menu-wrap-header-menu #mega-menu-header-menu li.mega-menu-item > ul.mega-sub-menu::before {
  content: "";
  display: block;
  background-color: #789190;
  width: 100%;
  height: 0.25px;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: all 0.2s ease;
}
#mega-menu-wrap-header-menu #mega-menu-header-menu li.mega-menu-item:not(.mega-toggle-on) > ul.mega-sub-menu {
  padding: 0 !important;
  height: 0 !important;
}
#mega-menu-wrap-header-menu #mega-menu-header-menu li.mega-menu-item.mega-toggle-on > ul.mega-sub-menu::before {
  opacity: 1;
}
#mega-menu-wrap-header-menu #mega-menu-header-menu li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row {
  float: none;
}
#mega-menu-wrap-header-menu #mega-menu-header-menu .container {
  width: 100% !important;
  padding-right: calc(var(--bs-gutter-x) * 0.5) !important;
  padding-left: calc(var(--bs-gutter-x) * 0.5) !important;
  margin-right: auto !important;
  margin-left: auto !important;
}
#mega-menu-wrap-header-menu #mega-menu-header-menu .left-col {
  padding-right: 122px !important;
}
#mega-menu-wrap-header-menu #mega-menu-header-menu .left-col .submenu-title {
  display: block;
  color: #E8ECEC;
  font-size: 23px !important;
  line-height: 1.6 !important;
  font-weight: 500 !important;
  margin-bottom: 16px !important;
  padding: 0 21px 0 0 !important;
  position: relative;
  width: fit-content;
}
#mega-menu-wrap-header-menu #mega-menu-header-menu .left-col .submenu-title::after {
  content: "";
  display: block;
  background: url("https://intdc.ourdemo.online/wp-content/uploads/2026/07/icon52.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: 8px;
  height: 15px;
  position: absolute;
  top: 11px;
  right: 0;
}
#mega-menu-wrap-header-menu #mega-menu-header-menu .left-col p {
  color: #789190;
  font-size: 16px !important;
  line-height: calc(30/16) !important;
}
#mega-menu-wrap-header-menu #mega-menu-header-menu .left-col .mega-menu-item {
  border-top: 0 !important;
  padding: 0 !important;
}
#mega-menu-wrap-header-menu #mega-menu-header-menu > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu > li.mega-menu-item {
  padding: 0 !important;
}
#mega-menu-wrap-header-menu #mega-menu-header-menu > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu > li.mega-menu-item > a.mega-menu-link {
  font-size: 16px !important;
  line-height: calc(30/16) !important;
  border-top: 1px solid #789190 !important;
  padding: 12px 0 !important;
}
#mega-menu-wrap-header-menu #mega-menu-header-menu .right-col .mega-sub-menu {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr);
  gap: 0 24px;
}
#mega-menu-wrap-header-menu #mega-menu-header-menu > li.mega-menu-item > a.mega-menu-link {
  display: inline-flex !important;
  align-items: center;
  padding: 2px 8px !important;
  border-radius: 4px !important;
  height: auto !important;
  position: relative;
}
#mega-menu-wrap-header-menu #mega-menu-header-menu > li.mega-menu-item > a.mega-menu-link::after {
  content: "";
  display: none;
  background-color: transparent;
  width: 100%;
  height: 30px;
  position: absolute;
  bottom: -30px;
  left: 0;
}
#mega-menu-wrap-header-menu #mega-menu-header-menu > li.mega-menu-item.mega-toggle-on > a.mega-menu-link::after {
  display: block;
}
#mega-menu-wrap-header-menu #mega-menu-header-menu li.mega-menu-item-has-children > a.mega-menu-link > span.mega-indicator {
  height: auto;
  line-height: 0;
}
#mega-menu-wrap-header-menu .mega-menu-toggle .mega-toggle-blocks-left, #mega-menu-wrap-header-menu .mega-menu-toggle .mega-toggle-blocks-center {
  display: none !important;
}
#mega-menu-wrap-header-menu .mega-menu-toggle .mega-toggle-blocks-right {
  padding: 0 !important;
}
#mega-menu-wrap-header-menu .mega-menu-toggle .mega-toggle-block-1 .mega-toggle-animated-box {
  width: 18px;
  height: 14px;
}
#mega-menu-wrap-header-menu .mega-menu-toggle .mega-toggle-block-1 .mega-toggle-animated-inner, #mega-menu-wrap-header-menu .mega-menu-toggle .mega-toggle-block-1 .mega-toggle-animated-inner::before, #mega-menu-wrap-header-menu .mega-menu-toggle .mega-toggle-block-1 .mega-toggle-animated-inner::after {
  width: 18px;
  height: 2px;
  top: 2px !important;
}
#mega-menu-wrap-header-menu .mega-menu-toggle.mega-menu-open .mega-toggle-block-1 .mega-toggle-animated-slider .mega-toggle-animated-inner {
  transform: translate3d(0, 7px, 0) rotate(45deg);
}
#mega-menu-wrap-header-menu .mega-menu-toggle.mega-menu-open .mega-toggle-block-1 .mega-toggle-animated-slider .mega-toggle-animated-inner::after {
  transform: translate3d(0, -12px, 0) rotate(-90deg);
}
#mega-menu-wrap-header-menu .mega-menu-toggle .mega-toggle-block-1 .mega-toggle-animated {
  transform: none;
}
#mega-menu-wrap-header-menu .mega-menu-toggle .mega-toggle-block-1 .mega-toggle-animated-inner::before {
  top: 6px !important;
}
#mega-menu-wrap-header-menu .mega-menu-toggle .mega-toggle-block-1 .mega-toggle-animated-inner::after {
  top: 12px !important;
}
@media (min-width: 992px) {
  #mega-menu-wrap-header-menu #mega-menu-header-menu .container {
    max-width: 960px !important;
  }
}
@media (min-width: 1200px) {
  #mega-menu-wrap-header-menu #mega-menu-header-menu .container {
    max-width: 1296px !important;
  }
}
@media (max-width: 1399px) {
  #mega-menu-wrap-header-menu #mega-menu-header-menu {
    gap: 8px;
  }
  #mega-menu-wrap-header-menu #mega-menu-header-menu .left-col {
    padding-right: 80px !important;
  }
  #mega-menu-wrap-header-menu #mega-menu-header-menu .right-col .mega-sub-menu {
    grid-template-columns: repeat(2, 1fr);
  }
  #mega-menu-wrap-header-menu #mega-menu-header-menu > li.mega-menu-item > a.mega-menu-link {
    font-size: 14px !important;
    line-height: calc(26/14) !important;
  }
}
@media (max-width: 1199px) {
  #mega-menu-wrap-header-menu #mega-menu-header-menu {
    gap: 4px;
  }
  #mega-menu-wrap-header-menu #mega-menu-header-menu > li.mega-menu-item > a.mega-menu-link {
    font-size: 11px !important;
    line-height: calc(20/11) !important;
  }
}
@media (max-width: 991px) {
  body:has(#mega-menu-wrap-header-menu .mega-menu-toggle.mega-menu-open) {
    overflow-y: hidden;
  }
  #mega-menu-wrap-header-menu #mega-menu-header-menu {
    position: fixed;
    height: calc(100vh - 69px);
    top: 69px;
    right: -100%;
    width: 100%;
    align-items: start;
    gap: 32px 0;
    overflow-y: auto;
    padding: 62px 16px 16px !important;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex !important;
    visibility: visible !important;
  }
  #mega-menu-wrap-header-menu:has(.mega-menu-toggle.mega-menu-open) #mega-menu-header-menu {
    right: 0;
  }
  #mega-menu-wrap-header-menu #mega-menu-header-menu > li.mega-menu-item > a.mega-menu-link {
    padding: 0 !important;
  }
  #mega-menu-wrap-header-menu #mega-menu-header-menu .right-col .mega-sub-menu {
    grid-template-columns: repeat(1, 1fr);
    gap: 16px 0;
  }
  #mega-menu-wrap-header-menu #mega-menu-header-menu > li.mega-menu-megamenu > ul.mega-sub-menu {
    background-color: transparent;
    height: auto !important;
  }
  #mega-menu-wrap-header-menu #mega-menu-header-menu li.mega-menu-item.mega-toggle-on > ul.mega-sub-menu {
    padding: 24px 0 0;
    border-top: 0;
  }
  #mega-menu-wrap-header-menu #mega-menu-header-menu li.mega-menu-item > ul.mega-sub-menu::before {
    display: none;
  }
  #mega-menu-wrap-header-menu #mega-menu-header-menu .left-col {
    display: none !important;
  }
  #mega-menu-wrap-header-menu #mega-menu-header-menu > li.mega-menu-item > a.mega-menu-link {
    font-size: 14px !important;
    line-height: calc(26/14) !important;
  }
  #mega-menu-wrap-header-menu #mega-menu-header-menu > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu > li.mega-menu-item > a.mega-menu-link {
    color: #A0B1B1 !important;
    font-size: 14px !important;
    line-height: calc(26/14) !important;
    border-top: 0 !important;
    padding: 0 !important;
    width: fit-content;
  }
  #mega-menu-wrap-header-menu #mega-menu-header-menu > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu > li.mega-menu-item > a.mega-menu-link::before {
    display: none;
  }
  #mega-menu-wrap-header-menu #mega-menu-header-menu .container {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
}

.wpcf7 form[data-status="submitting"] input[type="submit"],
.wpcf7 form[data-status="submitting"] button[type="submit"] {
    pointer-events: none;
    cursor: not-allowed;
}


.icon .rounded-circle {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card1 .figure1 img {
  object-fit: cover;
  border-radius: 8px;
}

.card1.alt2 .figure1 img {
  width: 171px;
  height: 171px;
}

.card1.alt2 .content .badge2 {
  padding: 4px 12px;
  margin-top: 0;
}

.card1.alt2 .content p {
  color: var(--color-neutral-300);
  line-height: calc(30 / 16);
}

.card1.alt2 .content .link1 {
  color: var(--color-secondary-300);
}

.card1.alt2 .content .link1:hover {
  text-decoration: underline;
}

.card1.alt2 .content footer {
  color: var(--color-neutral-300);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px 16px;
  flex-wrap: wrap;
}

@media (max-width: 767px) {
  .card1.alt2 {
    flex-direction: column;
  }

  .card1.alt2 .figure1 img {
    width: 100%;
  }
}

.card-list {
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.simple-pagination ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}

.simple-pagination li a,
.simple-pagination li span {
  background-color: transparent;
  color: #404848;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.8571428571;
  padding: 6px 15px;
  border-radius: 4px;
  border: 1px solid rgba(0, 43, 42, 0.1);
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.simple-pagination li.disabled span {
  color: #404848;
}

.simple-pagination .active .current,
.simple-pagination li a:hover {
  background-color: var(--color-primary-300);
  border-color: var(--color-primary-300);
  color: var(--color-secondary-soft-ivory-white);
  transform: scale(1) !important;
}

.simple-pagination .prev.current,
.simple-pagination .next.current {
  background-color: transparent;
}

.meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}


/* update */

.pill {
    padding: 11px 23px;
}

.list4 .pill {
    background-color: var(--color-secondary-soft-ivory-white);
}

.link1 {
    cursor: pointer;
}

.dt-container {
    background-color: #fff;
    border-radius: 12px;
}

.dt-container .dt-layout-table {
    margin: 0 !important;
}

.dt-container .dataTable {
    border-collapse: separate;
}

.dt-container .dataTable thead tr th,
.dt-container .dataTable tbody tr td {
    padding: 15px 24px !important;
    height: 62px;
}

.dt-container .dataTable thead tr th {
    background-color: var(--color-secondary-soft-ivory-white);
    color: var(--color-neutral-400);
    font-size: 13px;
    font-weight: 600;
    line-height: calc(24 / 13);
    text-transform: uppercase;
    border-top: 1px solid rgba(0, 43, 42, 0.06);
    border-bottom: 1px solid rgba(0, 43, 42, 0.06);
}

.dt-container .dataTable thead tr th:first-child {
    border-top-left-radius: 12px;
    border-left: 1px solid rgba(0, 43, 42, 0.06);
}

.dt-container .dataTable thead tr th:last-child {
    border-top-right-radius: 12px;
    border-right: 1px solid rgba(0, 43, 42, 0.06);
}

.dt-container .dataTable thead tr th:hover {
    background-color: var(--color-secondary-warm-sand-beige);
    outline: 0 !important;
}

.dt-container .dataTable .dt-ordering-desc,
.dt-container .dataTable .dt-ordering-asc {
    background-color: var(--color-secondary-warm-sand-beige);
}

.dt-container .dataTable tbody tr td:first-child {
    color: var(--color-neutral-500);
    border-left: 1px solid rgba(0, 43, 42, 0.06);
}

.dt-container .dataTable tbody tr td:last-child {
    color: var(--color-neutral-500);
    border-right: 1px solid rgba(0, 43, 42, 0.06);
}

.dt-container .dataTable tbody tr td {
    color: var(--color-neutral-300);
    font-size: 16px;
    font-weight: 600;
    line-height: calc(30 / 16);
    border-bottom: 1px solid rgba(0, 43, 42, 0.06) !important;
}

.dt-container .dt-layout-row:has(.dt-paging) {
    padding: 16px 24px !important;
    margin: 0 !important;
    justify-content: center !important;
    border: 1px solid rgba(0, 43, 42, 0.06);
    border-top: 0;
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
}

.dt-container .dt-layout-row .dt-layout-cell.dt-layout-end {
    margin-left: 0 !important;
}

.dt-container .dt-layout-row.dt-layout-table {
    padding: 0 !important;
}

.dt-container .dt-layout-row .dt-layout-cell.dt-layout-start,
.dt-container .dt-layout-row:first-child {
    display: none;
}

.dt-container .badge2 {
    background-color: var(--color-secondary-300);
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    line-height: calc(24 / 13);
    padding: 4px 10px;
    width: 100%;
  	min-width:60px;
}

.dt-container .dt-paging nav {
    display: flex;
    align-items: center;
    gap: 8px;
}

.dt-container .dt-paging nav .dt-paging-button,
.dt-container .dt-paging nav .dt-paging-button.disabled {
    background-color: transparent !important;
    color: #404848 !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    line-height: calc(26/14) !important;
    padding: 6px 15px !important;
    border-radius: 4px !important;
    border-color: rgba(0, 43, 42, 0.1) !important;
    margin: 0 !important;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.dt-container .dt-paging nav .dt-paging-button.current,
.dt-container .dt-paging nav .dt-paging-button.current:hover,
.dt-container .dt-paging nav .dt-paging-button:hover {
    background-color: var(--color-primary-300) !important;
    color: var(--color-secondary-soft-ivory-white) !important;
}

.dt-container .dt-paging nav .dt-paging-button.disabled:hover {
    background-color: transparent !important;
    color: #404848 !important;
}

.dt-container .dt-paging nav .dt-paging-button.previous,
.dt-container .dt-paging nav .dt-paging-button.next {
    font-size: 0 !important;
    padding: 0 !important;
}

.dt-container .dt-paging nav .dt-paging-button.previous:before,
.dt-container .dt-paging nav .dt-paging-button.next:before {
    content: "";
    display: inline-block;
    background-image: url("data:image/svg+xml,%3Csvg width='7' height='10' viewBox='0 0 7 10' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5 10L0 5L5 0L6.16667 1.16667L2.33333 5L6.16667 8.83333L5 10Z' fill='%23333333'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 7px 10px;
    height: 38px;
    width: 38px;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.dt-container .dt-paging nav .dt-paging-button.next:before {
    background-image: url("data:image/svg+xml,%3Csvg width='7' height='10' viewBox='0 0 7 10' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3.83333 5L0 1.16667L1.16667 0L6.16667 5L1.16667 10L0 8.83333L3.83333 5Z' fill='%23333333'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 7px 10px;
}

.dt-container .dt-paging nav .dt-paging-button:not(.disabled).previous:hover:before {
    background-image: url("data:image/svg+xml,%3Csvg width='7' height='10' viewBox='0 0 7 10' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5 10L0 5L5 0L6.16667 1.16667L2.33333 5L6.16667 8.83333L5 10Z' fill='%23F6F1EE'/%3E%3C/svg%3E");
}

.dt-container .dt-paging nav .dt-paging-button:not(.disabled).next:hover:before {
    background-image: url("data:image/svg+xml,%3Csvg width='7' height='10' viewBox='0 0 7 10' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3.83333 5L0 1.16667L1.16667 0L6.16667 5L1.16667 10L0 8.83333L3.83333 5Z' fill='%23F6F1EE'/%3E%3C/svg%3E");
}

.list4.bg-secondary {
    background-color: transparent !important;
}

.list4.bg-secondary li.active .pill {
    background-color: var(--color-secondary-300);
    border-color: var(--color-secondary-300);
    color: var(--color-primary-50)
}

.list4.bg-secondary .pill {
    border-color: var(--color-secondary-75);
}

.list4.filter li .pill {
    cursor: pointer;
    transition: all 1s cubic-bezier(0.19, 1, 0.22, 1) 0s;
}

.list4.filter.bg-secondary li .pill:hover {
    background-color: var(--color-secondary-300);
    border-color: var(--color-secondary-300);
    color: var(--color-primary-50)
}

.card1.alt.bg-color2 .box {
    background-color: #8B4D30;
}

/* ---- Tooltip line for a country with nothing to show ---- */
.map-tip-prod.muted {
    color: var(--color-primary-75);
}

/* ---- Detail modal: awaiting-data state ---- */
.idc-nodata-note {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 24px;
    padding: 12px 14px;
    border: 1px solid rgba(26, 174, 90, 0.35);
    border-radius: 8px;
    background: rgba(26, 174, 90, 0.08);
    color: var(--color-primary-300);
    font-size: 14px;
    line-height: 1.5;
}

.idc-nodata-note[hidden] {
    display: none;
}

.idc-nodata-note svg {
    flex-shrink: 0;
    margin-top: 2px;
    color: #1AAE5A;
}

/* Dim the figure cards and the chart while there is nothing to plot. */
.box-modal.is-nodata .card1.bg-color1 .value,
.box-modal.is-nodata .card1.bg-color1 .badge2 {
    opacity: 0.4;
}

.box-modal.is-nodata .chart-box {
    opacity: 0.3;
}

.box-modal.is-nodata #idc-modal-csv,
.box-modal.is-nodata #idc-modal-pdf {
    pointer-events: none;
    opacity: 0.45;
}


/* Member States — countries past the first 10 are hidden until "See more" is
   clicked (the button removes the class, see custom.js). */

.country-list .country-hidden {
  display: none;
}
