/* FONT WEIGHT
Light 300
Light 300 italic
Regular 400
Regular 400 italic
Medium 500
Medium 500 italic
Bold 700
Bold 700 italic
*/
@font-face {
    font-family: "Ubuntu";
    src: url("/.resources/ncs-templates/webresources/fonts/Ubuntu/Ubuntu-Regular.ttf");
    font-weight: 400;
}

@font-face {
    font-family: "Ubuntu";
    src: url("/.resources/ncs-templates/webresources/fonts/Ubuntu/Ubuntu-Italic.ttf");
    font-style: italic;
    font-weight: 400;
}

@font-face {
    font-family: "Ubuntu";
    src: url("/.resources/ncs-templates/webresources/fonts/Ubuntu/Ubuntu-Light.ttf");
    font-weight: 300;
}

@font-face {
    font-family: "Ubuntu";
    src: url("/.resources/ncs-templates/webresources/fonts/Ubuntu/Ubuntu-LightItalic.ttf");
    font-weight: 300;
    font-style: italic;
}

@font-face {
    font-family: "Ubuntu";
    src: url("/.resources/ncs-templates/webresources/fonts/Ubuntu/Ubuntu-Medium.ttf");
    font-weight: 500;
}

@font-face {
    font-family: "Ubuntu";
    src: url("/.resources/ncs-templates/webresources/fonts/Ubuntu/Ubuntu-MediumItalic.ttf");
    font-weight: 500;
    font-style: italic;
}

@font-face {
    font-family: "Ubuntu";
    src: url("/.resources/ncs-templates/webresources/fonts/Ubuntu/Ubuntu-Bold.ttf");
    font-weight: 700;
}

@font-face {
    font-family: "Ubuntu";
    src: url("/.resources/ncs-templates/webresources/fonts/Ubuntu/Ubuntu-BoldItalic.ttf");
    font-weight: 700;
    font-style: italic;
}

:root {
    --color-primary: #00A7E1;
    --color-dk-blue: #00205C;
    --color-blue: #00A7E1;
    --color-light-gray: #F4F4F4;
    --color-dark: #262626;
    --color-gray: #808080;
    --color-black: #000000;
    --color-white: #FFFFFF;
    --color-blue-deep: #4AA3DB;
    --color-blue-slate: #404FA2;
    --color-blue-light: #80C7D6;
    --color-blue-dodger: #00ACFF;
    --color-green-yellow: #CDDA50;
    --color-border-primary: #1C1C1C;
    --color-bordered-bg: #F2F2F2;
    --color-border-lt-grey: #CCCCCB;
    --color-border-dk-blue: var(--color-dk-blue);
    --color-orange: #FAA61A;
    --color-pink-dark: #ff397f;
    --color-dk-gray: #595959;
    --color-lt-cyan: #7EC8D6;
    --color-lt-violet: #F8F8FB;
    --color-violet: #EAECF5;

    --color-ncs-blue: var(--color-dk-blue);
    --color-unity-indigo: #404FA2;
    --color-passion-pink: #E82370;
    --color-link-global: var(--color-unity-indigo);
    --color-heading-global: var(--color-dark);
    --color-text-global: var(--color-dark);
    --color-badge-global: var(--color-unity-indigo);
    --color-pagination: var(--color-unity-indigo);

    --font-family: 'Ubuntu', sans-serif;
    --font-color-primary: #262626;
    --font-color-carousel: #CCCCCB;
    --section-vpadding-xxl: 100px;
    --section-vpadding-lg: 80px;
    --section-vpadding-md: 60px;
    --section-vpadding-sm: 60px;
    --background-cyan: #80C7D6;
    --background-dk-cyan: #4AA3DB;
    --background-dk-blue: #002158;
    --background-purple: var(--color-unity-indigo);
    --background-lt-grey: #F4F4F4;
    --background-green: #CBDB2A;
    --background-grey: #EDEDED;
    --background-modal: rgba(0, 0, 0, 0.8);
    --background-readmore: transparent linear-gradient(0deg, #ffffff 0%, #00000000 100%) 0% 0% no-repeat padding-box;
    --header-height-mobile: 60px;
    --header-height-laptop: 78px;
    --header-height-desktop: 78px;
    --shadow-grey: #00000029;
    --h4-size: 40px;
    --h4-size-lg: 35px;
    --h4-size-mobile: 25px;
    --h5-size: 35px;
    --h5-size-lg: 35px;
    --h5-size-mobile: 25px;
    --h6-size: 25px;
    --h6-size-lg: 22px;
    --h6-size-mobile: 20px;
    --h7-size: 24px;
    --h7-size-mobile: 18px;
}

@media (min-width: 1650px) {
    .container-xxl {
        max-width: 1640px;
    }
}

@media (min-width: 1920px) {
    .container-xxl {
        max-width: 1720px;
    }
}

.bg-unity-indigo {
    background-color: var(--color-unity-indigo);
}

* {
    outline: none;
}

/* Only display the outline when the element receives focus via the keyboard */
*:focus-visible {
    outline: 5px auto -webkit-focus-ring-color !important;
    outline-offset: 2px !important;
}

.top-20 {
    top: 20%;
}

.top-30 {
    top: 30%;
}

.top-40 {
    top: 40%;
}

.mh-40 {
    min-height: 40%;
}

.min-height-100 {
    min-height: 100%;
}

.mw-600 {
    max-width: 600px;
}

.sticky-lg-top {
    top: 130px;
}

@media (min-width: 992px) {
    .w-lg-45 {
        width: 45% !important;
    }
}

html,
body {
    width: 100%;
    min-height: 100vh;
    font-family: var(--font-family);
    color: var(--font-color-primary);
    font-weight: 300;
    font-size: 0.875em;
    overflow-x: hidden;
}

@media (min-width: 992px) {

    html,
    body {
        font-size: 1em;
    }
}

/* COMMON STYLES */

h1,
h2,
h3,
h4,
h5,
h6,
.h3,
.h7 {
    line-height: 1.25em;
    font-weight: 700;
    color: var(--color-heading-global);
}

.h7 {
    font-size: var(--h7-size-mobile);
}

h1 {
    font-size: 2.25em;
}

span.break-spacing {
    white-space: pre;
    letter-spacing: 5px;
}

span.uppercase {
    text-transform: uppercase;
}

span.capitalize {
    text-transform: capitalize;
}

h2 {
    font-size: 2em;
    text-transform: none;
}

@media (min-width: 768px) {

    h1 {
        font-size: 2.8125em;
    }

    h2 {
        font-size: 2.5em;
    }
}

@media (min-width: 992px) {
    h1 {
        font-size: 3.4375em;
    }

    h2 {
        font-size: 2.8125em;
    }

    .h7 {
        font-size: var(--h7-size);
    }
}

@media (min-width: 1600px) {

    h1 {
        font-size: 4.375em;
    }

    h2 {
        font-size: 3.4375em;
    }
}


h4 {
    font-size: var(--h4-size-mobile);
}

@media (min-width: 992px) {
    h4 {
        font-size: var(--h5-size);
    }
}

h4.small {
    font-size: var(--h5-size-mobile);
}

@media (min-width: 992px) {
    h4.small {
        font-size: var(--h5-size);
    }
}

h3,
.h3,
h5 {
    font-size: 1.5625em;
}

h2.small,
h3.small,
h6,
.sub-heading-n {
    font-size: var(--h6-size-mobile);
}

h3.normal {
    font-weight: normal;
    font-size: var(--h6-size-mobile);
}

.card-n-title {
    font-size: 1.125em;
}

.heading-n {
    font-size: 1.75em;
    margin-bottom: 12px;
}

@media (min-width: 992px) {

    h3,
    .h3,
    h5 {
        font-size: 1.875em;
    }

    h3.normal {
        font-size: var(--h5-size-mobile);
    }

    h2.small,
    h3.small,
    h6,
    .sub-heading-n {
        font-size: var(--h6-size-lg);
    }

    .card-n-title {
        font-size: 1.5em;
    }

    .heading-n {
        font-size: 2.5em;
    }
}

@media (min-width: 1600px) {

    h3,
    .h3,
    h5 {
        font-size: 2.1875em;
    }

    h3.normal {
        font-size: var(--h4-size);
    }

    h2.small,
    h3.small,
    h6,
    .sub-heading-n {
        font-size: var(--h6-size);
    }
}

.heading-inherit {
    font-size: inherit;
    font-weight: inherit;
    color: inherit;
    line-height: inherit;
    margin-bottom: inherit;
    margin-top: inherit;
}

.fs-30 {
    font-size: 1.5625em;
}

.fs-bigger {
    font-size: 8em;
}

@media (min-width: 992px) {
    .fs-30 {
        font-size: 1.875em;
    }
}

.white h1,
.white h2,
.white h3,
.white h4 {
    color: white;
}

.orange {
    color: var(--color-orange);
}

p~h1 {
    margin-bottom: 1rem;
}

.underline {
    text-decoration: underline;
}

a {
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

a:hover,
a:link,
a:visited {
    color: inherit;
}

u a {
    text-decoration: underline;
}

button {
    background: none;
    box-shadow: 0px 0px 0px transparent;
    border: 0px solid transparent;
    text-shadow: 0px 0px 0px transparent;
    padding: 0;
    /* outline: none; */
}

button:focus {
    outline: none;
}

b,
strong {
    font-weight: 700;
}

/* *:focus {
    outline: 0;
} */

input[type="text"],
input[type="email"],
input[type="number"] {
    font-family: var(--font-family);
    background: none;
    box-shadow: 0px 0px 0px transparent;
    border: 0px solid transparent;
    text-shadow: 0px 0px 0px transparent;
    padding: 0;
}

textarea.box {
    width: 100%;
    background: transparent;
    padding: 1rem;
    padding-bottom: 1em;
    font-weight: 300;
    border: 0;
    border-bottom: 1px solid #505050;
    letter-spacing: 0.2rem;
    text-decoration: none;
}

input.underline {
    width: 100%;
    background: transparent;
    padding: 0;
    padding-bottom: 1em;
    font-weight: 300;
    border: 0;
    border-bottom: 1px solid #505050;
    letter-spacing: 0.2rem;
    text-decoration: none;
}

.theme-dk-blue input.underline,
.ncs-form.atop input.underline {
    color: white;
    border-bottom: 1px solid white;
}

.theme-dk-blue input.underline::placeholder,
.ncs-form.atop textarea.box::placeholder,
.ncs-form.atop input.underline::placeholder {
    color: white;
}

.ncs-form.atop textarea.box {
    color: white;
    border: 1px solid white;
}

.checkbox-container {
    display: block;
    position: relative;
    padding-left: 45px;
    margin-bottom: 12px;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.checkbox-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkbox-container .checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 30px;
    width: 30px;
    border-bottom-left-radius: 10px;
    border-top-right-radius: 10px;
    border: 2px solid white;
}

.checkbox-container input:checked~.checkmark:after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    height: 30px;
    width: 30px;
    border-bottom-left-radius: 10px;
    border-top-right-radius: 10px;
    background: white;
    transform: scale(0.75);
}

.checkbox-container .checkmark .border {
    position: absolute;
    top: 0;
    left: 0;
    height: 30px;
    width: 30px;
    border-bottom-left-radius: 10px;
    border-top-right-radius: 10px;
    border: 2px solid var(--color-border-primary);
    /*box-shadow: 0 0 0 2px var(--color-border-primary);*/
}

.checkbox-container input:checked~.checkmark.border:after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    height: 30px;
    width: 30px;
    border-bottom-left-radius: 10px;
    border-top-right-radius: 10px;
    /*background: white;*/
    background: var(--color-border-primary);
    transform: scale(0.75);
}


a.arrow.hide::after {
    content: '';
}

a.bordered,
a.arrow,
span.arrow {
    font-size: 0.75em;
    font-weight: 500;
}

a.arrow,
span.arrow {
    text-transform: uppercase;
}

@media (min-width: 992px) {

    a.bordered,
    a.arrow,
    span.arrow {
        font-size: 1em;
    }
}

a.bordered,
button.bordered {
    position: relative;
    display: inline-block;
    /* border: 2px solid var(--color-border-primary); */
    box-shadow: 0 0 0 2px var(--color-dk-blue);
    border-radius: 0 20px 0 20px;
    padding: 0.85em 2.75em;
    margin-top: 1rem;
    line-height: 1.125em;
    align-self: flex-start;
    font-weight: 500;
    /* text-transform: capitalize; */
    overflow: hidden;
    transition: border 0.5s ease;
    z-index: 1;
}

.btn-bordered {
    overflow: hidden;
    transition: border 0.5s ease;
    z-index: 1;
}

a.bordered:not(.white),
button.bordered:not(.white) {
    transition: color 0.5s ease;
}


a.bordered:not(.white):hover,
button.bordered:not(.white):hover {
    color: white !important;
    box-shadow: 0 0 0 2px var(--color-dk-blue);
}

a.bordered:after,
button.bordered:after,
.btn-bordered::after {
    content: '';
    display: block;
    background: var(--color-dk-blue);
    position: absolute;
    width: 120%;
    height: 115%;
    top: -5%;
    left: calc(-10% - 2px);
    z-index: -1;
    transform-origin: center;
    transform: scaleX(0) skewX(45deg);
    transition: transform 0.5s ease;
}

.btn-bordered.hover-blue::after {
    background: var(--color-blue);
}

.btn-bordered::after {
    width: 155%;
    left: calc(-10% - 7px);
}

a.bordered:hover:after,
button.bordered:hover:after,
.btn-bordered:hover::after {
    transform: scaleX(1) skewX(45deg);
}

a.bordered.white,
button.bordered.white {
    /* border: 2px solid white; */
    box-shadow: 0 0 0 2px white;
}

a.bordered.white:after,
button.bordered.white:after {
    background: var(--background-dk-cyan);
}

a.bordered.white:hover,
button.bordered.white:hover {
    box-shadow: 0 0 0 2px var(--background-dk-cyan);
    /* border-color:var(--background-dk-cyan); */
}

a.bordered.dark-blue {
    /* border: 2px solid var(--color-dk-blue); */
    box-shadow: 0 0 0 2px var(--color-dk-blue);
}

a.bordered.primary.fill {
    box-shadow: none;
    border: none;
    background-color: var(--color-primary);
    color: white;
}

a.bordered.fill.lg {
    font-weight: 500;
    font-size: 1.25em;
}

@media (min-width: 992px) {
    a.bordered.fill.lg {
        font-size: 1.5625em;
    }
}

a.arrow,
span.arrow {
    color: var(--color-link-global);
    line-height: 1.125em;
    position: relative;
    display: inline-block;
    /* text-transform: uppercase; */
    padding-right: calc(22px + 0.5rem);
    letter-spacing: 0.2rem;
}

a.arrow::before,
span.arrow::before {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: -2px;
    background-color: var(--color-link-global);
    transition: 0.3s all ease-out;
}

a.arrow.no-underline::before,
span.arrow.no-underline::before {
    display: none;
}

a.arrow:after,
span.arrow:after {
    /* use !important to prevent issues with browser extensions that change fonts */
    font-family: 'icomoon' !important;
    speak: never;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;

    /* Better Font Rendering =========== */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    /* content: url(../images/ic-arrow-right-primary.svg); */
    /* display: block; */
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
    transition: transform 0.6s ease;
    content: "\e904";
}

a.arrow.no-arrow::after,
span.arrow.no-arrow::after {
    display: none;
}

a.arrow.no-arrow,
span.arrow.no-arrow {
    padding-right: 0;
}

a.arrow:hover::before,
span.arrow:hover::before {
    width: calc(100% - (22px + 0.5rem));
}

a.arrow:hover:after,
span.arrow:hover:after {
    transform: translateX(10px) translateY(-50%);
}

/* a.arrow.primary:after {
    content: url(../images/ic-arrow-right-primary.svg);
} */

a.arrow.white,
span.arrow.white {
    color: var(--color-white);
}

a.arrow.white::before,
span.arrow.white::before {
    background-color: var(--color-white);
}

a.arrow.white:after,
span.arrow.white:after {
    filter: brightness(0) saturate(0) invert(1);
}

a.arrow.reversed,
span.arrow.reversed {
    padding-left: calc(22px + 0.5rem);
    padding-right: 0;
}

a.arrow.reversed:after,
span.arrow.reversed:after {
    transform: translateY(-50%) scaleX(-1);
    right: auto;
    left: 0;
}

a.arrow.reversed:hover:after,
span.arrow.reversed:hover:after {
    transform: translateY(-50%) scaleX(-1) translateX(10px);
}

a.primary,
.primary {
    color: var(--color-link-global);
}

a.dark-blue,
.dark-blue {
    color: var(--color-dark) !important;
}

a.white,
.white {
    color: white;
}

p strong {
    font-weight: 700;
}

/***** BREADCRUMB *****/
/* use class `.breadcrumb-outter` for component stand alone */
.breadcrumb-outter {
    position: relative;
    height: 0;
    z-index: 1000;
    padding-left: 1em;
    padding-right: 1em;
}

.breadcrumb-outter .breadcrumb {
    transform: translateY(calc(var(--header-height-mobile) + 24px));
    -webkit-transform: translateY(calc(var(--header-height-mobile) + 24px));
    -moz-transform: translateY(calc(var(--header-height-mobile) + 24px));
    -ms-transform: translateY(calc(var(--header-height-mobile) + 24px));
    -o-transform: translateY(calc(var(--header-height-mobile) + 24px));
}

.breadcrumb-item {
    font-size: 0.75em;
}

.breadcrumb-item>a:hover {
    text-decoration: underline;
}

.breadcrumb-item+.breadcrumb-item::before {
    content: var(--bs-breadcrumb-divider, "\e90c");
    font-family: 'icomoon' !important;
    speak: never;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    height: 100%;
    line-height: 1.5;
    transform: matrix(-1, 0, 0, -1, 0, 0);
    -webkit-transform: matrix(-1, 0, 0, -1, 0, 0);
    -moz-transform: matrix(-1, 0, 0, -1, 0, 0);
    -ms-transform: matrix(-1, 0, 0, -1, 0, 0);
    -o-transform: matrix(-1, 0, 0, -1, 0, 0);
    padding-left: 0.5rem;
    padding-right: 0.5rem;
    color: inherit;
}

.breadcrumb-item+.breadcrumb-item {
    padding-left: 0;
}

.breadcrumb-item.active {
    font-weight: normal;
    color: inherit;
}

/* Utilities */
.bg-light-grey {
    background-color: var(--background-lt-grey) !important;
}

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

.bg-cyan {
    background-color: var(--color-blue) !important;
}

.bg-dk-blue {
    background-color: var(--color-dk-blue) !important;
}

.text-gray {
    color: #808080 !important;
}

.text-cyan {
    color: var(--color-blue) !important;
}

.text-gray-bold {
    color: var(--color-gray);
    text-transform: uppercase;
    letter-spacing: 2.8px;
    font-weight: 500;
}

.subMenuActive {
    color: var(--color-unity-indigo) !important;
    font-weight: 500 !important;
}

.child-link-dropdown-bg-dk-blue .subMenuActive {
    color: var(--color-primary) !important;
    font-weight: 500 !important;
}

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

.text-dk-blue {
    color: var(--color-dk-blue) !important;
}

.fw-500 {
    font-weight: 500 !important;
}

.fw-400 {
    font-weight: 400 !important;
}

.w-0 {
    width: 0 !important;
}

.button-row {
    margin-top: 30px;
    row-gap: 30px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.ls-sm {
    letter-spacing: 2.8px;
}

.fs-14 {
    font-size: 0.875em;
}

.fs-20 {
    font-size: 1.25em;
}

.mt-60 {
    margin-top: 60px !important;
}

.mt-nav {
    margin-top: var(--header-height-mobile);
}

.mb-60 {
    margin-bottom: 60px !important;
}

.my-60 {
    margin-top: 60px !important;
    margin-bottom: 60px !important;
}

@media (max-width: 991.99px) {
    .px-max-lg-0 {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
}

@media (max-width: 1199.99px) {
    .p-max-xl-0 {
        padding: 0 !important;
    }
}

@media (min-width: 992px) {
    .button-row {
        flex-direction: row;
        justify-content: space-between;
        row-gap: 0;
        column-gap: 30px;
        align-items: center;
    }

    .mh-lg-600 {
        min-height: 600px;
    }

    .mh-lg-450 {
        min-height: 450px;
    }

    .fs-lg-20 {
        font-size: 1.25em;
    }

    .mt-nav {
        margin-top: var(--header-height-laptop);
    }
}


/* responsive */
@media screen and (min-width: 992px) {
    .breadcrumb-outter {
        padding-left: 3em;
        padding-right: 3em;
    }

    .breadcrumb-outter .breadcrumb {
        transform: translateY(calc(var(--header-height-desktop) + 32px));
        -webkit-transform: translateY(calc(var(--header-height-desktop) + 32px));
        -moz-transform: translateY(calc(var(--header-height-desktop) + 32px));
        -ms-transform: translateY(calc(var(--header-height-desktop) + 32px));
        -o-transform: translateY(calc(var(--header-height-desktop) + 32px));
    }

    .breadcrumb-item {
        font-size: 0.875em;
    }

    .breadcrumb-item.active {
        font-weight: 500;
    }
}

/* light */
.breadcrumb.white .breadcrumb-item.active,
.breadcrumb-outter.white .breadcrumb-item.active {
    color: inherit;
}

/***** END BREADCRUMB *****/

/*DROPDOWN*/
.dropdown-menu-container {
    position: relative;
    z-index: 5;
}

.dropdown {
    margin-bottom: .5rem;
}

.dropdown .dropdown-toggle {
    width: 100%;
    display: flex;
    justify-content: space-between;
    color: inherit;
    padding: 0;
    border: none;
    border-radius: 0;
    border-bottom: 1px solid #505050;
    line-height: 1.1;
    padding-bottom: 1rem;
    box-shadow: none;
}

.dropdown .dropdown-toggle::after {
    width: 10px;
    height: 10px;
    border: 0;
    border-left: 1px solid #505050;
    border-bottom: 1px solid #505050;
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
}

.dropdown .dropdown-toggle.show::after,
.dropdown .dropdown-toggle[area-expanded="true"]::after {
    transform-origin: middle center;
    transform: rotate(135deg) translate(5px, -5px);
    -webkit-transform: rotate(135deg) translate(5px, -5px);
    -moz-transform: rotate(135deg) translate(5px, -5px);
    -ms-transform: rotate(135deg) translate(5px, -5px);
    -o-transform: rotate(135deg) translate(5px, -5px);
}

.dropdown .dropdown-menu {
    width: calc(100% - 1.5rem);
}

.dropdown.select {
    margin-bottom: 0;
}

.dropdown.select .dropdown-toggle {
    border-color: white;
    font-size: inherit;
    font-weight: inherit;
    padding-bottom: 1em;
    line-height: inherit;
    letter-spacing: 0.2rem;
}

.dropdown.select .dropdown-toggle::after {
    width: 10px;
    height: 10px;
    border: 0;
    border-left: 1px solid white;
    border-bottom: 1px solid white;
    transform: rotate(-45deg);
    margin-left: 1em;
}

.dropdown.select .dropdown-menu {
    max-height: 30vh;
    overflow-y: auto;
}

.dropdown-rounded-corner .dropdown-toggle {
    border-color: var(--color-border-lt-grey);
}

.dropdown-rounded-corner .dropdown-toggle[data-value="NONE"] {
    color: #b2b2b2;
}

.dropdown-rounded-corner .dropdown-menu {
    border: none;
    border-radius: 0 20px 0 20px;
    -webkit-border-radius: 0 20px 0 20px;
    -moz-border-radius: 0 20px 0 20px;
    -ms-border-radius: 0 20px 0 20px;
    -o-border-radius: 0 20px 0 20px;
    box-shadow: 0px 3px 6px var(--shadow-grey);
    z-index: 1000;
    width: 100%;
}

.dropdown-rounded-corner .dropdown-item {
    padding: 0.5rem 1.5rem;
}

.dropdown-rounded-corner .dropdown-item.select {
    font-weight: bold;
}

/* INFINITY SLIDER */
.infinity-slider {
    display: flex;
    align-items: center;
    overflow: hidden;
    transform: translate3d(0, 0, 0);
    margin: 1rem 0;
}

.infinity-slider ul.infinity-track {
    display: grid;
    grid-auto-flow: column;
    transform-origin: center left;
    padding: 0;
    margin: 0;
    list-style-type: none;
}

.infinity-slider ul.infinity-track img {
    width: 200px;
    height: 150px;
    object-fit: contain;
    margin: 0 1rem;
}

@media (min-width: 768px) {
    .infinity-slider ul.infinity-track img {
        width: 250px;
        height: 100px;
        margin: initial;
    }
}


.social-bar a {
    display: inline-flex;
    width: 48px;
    height: 48px;
    border: 1px solid white;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
}

.input-search {
    border: 1px solid white;
    overflow: hidden;
    border-top-right-radius: 30px;
    border-bottom-left-radius: 30px;
    display: grid;
    grid-template-columns: 1fr auto;
}

.input-search.light,
.input-search.light input {
    color: white;
}

.input-search.light input[type="text"]::placeholder {
    color: #CCCCCB;
}

.input-search input[type="text"] {
    padding: 1rem;
}

.input-search button {
    background: white;
    border-bottom-left-radius: 30px;
    height: 77px;
    width: 77px;
    padding: 1rem;
    justify-content: center;
    align-items: center;
}

.input-select.light .form-select {
    background: transparent;
    color: white;
    padding: 0;
    padding-bottom: 1em;
    font-weight: 300;
    border: 0;
    border-bottom: 1px solid white;
    border-radius: 0;
    letter-spacing: 0.2rem;
}

.input-select.light {
    position: relative;
}

.input-select.light:after {
    content: '';
    position: absolute;
    display: block;
    height: 7px;
    width: 15px;
    right: 0;
    top: 7px;
    background: url(../images/ic-arrow-simple-down.svg) center no-repeat;
    background-size: contain;
}

a.back:before {
    content: "back";
    display: flex;
    position: absolute;
    top: 40px;
    left: 2.5rem;
    height: 32px;
    padding-left: 47px;
    margin: 0 auto;
    color: white;
    background: url(../images/ic-back.svg) no-repeat;
    background-size: 32px 32px;
    background-size: contain;
    background-position: left center;
    justify-content: center;
    align-items: center;
}

.video-js .vjs-big-play-button {
    border-radius: 50%;
    width: 120px;
    height: 120px;
    border-width: 8px;
    border-color: white;
    font-size: 7em;
}

.vjs-big-play-centered .vjs-big-play-button {
    transform: translate(-50%, -50%);
    margin: 0;
}

.video-js .vjs-big-play-button,
.video-js:hover .vjs-big-play-button {

    background-color: transparent;
}

.video-embed-wrapper {
    position: relative;
    /* 16:9 */
    padding-top: 56.25%;
    width: 100%;
}

.video-embed-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

@media (min-width: 992px) {
    .video-embed-wrapper {
        width: 65%;
        padding-right: 35%;
        /* padding-top: 36%; */
        padding-top: 36.6%;
    }
}

.swiper-container-horizontal>.swiper-pagination-bullets {
    bottom: 1rem;
}

.swiper-container-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet {
    background: white;
    opacity: 1;
}

.swiper-container-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet-active {
    background: var(--color-primary);
}

@media (min-width: 768px) {
    .swiper-container-horizontal>.swiper-pagination-bullets {
        bottom: 2rem;
    }

    .swiper-container-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet {
        width: 10px;
        height: 10px;
        margin: 0 0.5rem;
    }
}

@media (min-width: 1600px) {
    .swiper-container-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet {
        width: 15px;
        height: 15px;
        margin: 0 0.5rem;
    }
}

.carousel-control .swiper-pagination-layout {
    display: grid;
    grid-auto-flow: column;
    grid-template-columns: auto minmax(auto, 1fr) auto;
    justify-content: center;
    align-items: flex-start;
}

.carousel-control button[class*="control-"] {
    transition: transform 0.8s ease;
}

.carousel-control .swiper-pagination-layout .control-prev:hover {
    transform: translateX(-10px);
}

.carousel-control .swiper-pagination-layout .control-next {
    transform: translateX(10px);
}

.carousel-control .swiper-pagination-layout .control-prev,
.carousel-control .swiper-pagination-layout .control-next {
    display: inline-block;
    height: 30px;
    line-height: 30px;
}

.carousel-control .swiper-pagination-layout .carousel-pagination {
    display: grid;
    grid-auto-flow: row;
    grid-template-columns: repeat(auto-fit, 30px);
    justify-content: center;
    column-gap: 0.3rem;
}

.carousel-control .carousel-pagination {
    margin-left: 24px;
    margin-right: 24px;
}

@media screen and (min-width:992px) {
    .carousel-control .carousel-pagination {
        margin-left: 60px;
        margin-right: 60px;
    }
}

@media screen and (min-width:1650px) {
    .carousel-control .carousel-pagination {
        margin-left: 117px;
        margin-right: 117px;
    }
}

@media screen and (max-width: 991.99px) {
    .carousel-control .arrow {
        font-size: 1em;
    }

    .carousel-control .arrow::after {
        font-size: 1.875em;
    }

    .carousel-control .control-prev.arrow::after {
        left: -10px;
    }

    .carousel-control .control-next.arrow::after {
        right: -10px;
    }
}

/* HEADER NAV */
header.top {
    top: 0;
    background: white;
    padding: 20px 1rem;
    transition: height 0.8s ease;
    height: 60px;
    width: 100%;
    box-shadow: 0px 3px 6px var(--shadow-grey);
    z-index: 100000;
    -webkit-transition: height 0.8s ease;
    -moz-transition: height 0.8s ease;
    -ms-transition: height 0.8s ease;
    -o-transition: height 0.8s ease;
}


@media (min-width: 992px) {
    header.top {
        padding: 0 1rem;
        height: 78px;
        box-shadow: 0px 3px 6px var(--shadow-grey);
    }
}

@media (min-width: 1200px) {
    header.top {
        padding: 0 3rem;
    }
}

@media (min-width: 1600px) {
    /* header.top {
        padding: 0 68px 0 84px;
        height: auto;
    } */

    /* header.top[aria-expanded=""] {
        height: auto;
    } */
}

header.top .inner {
    display: grid;
    grid-template-columns: auto 1fr auto;
    column-gap: 12px;
}

@media (min-width: 992px) {
    header.top .inner {
        align-items: center;
    }
}

@media (min-width: 992px) {
    header.top .inner {
        display: grid;
        grid-template-columns: auto 1fr auto;
        column-gap: 12px;
    }
}

@media (min-width: 1200px) {
    header.top .inner {
        column-gap: 25px;
    }
}

@media (min-width: 1600px) {
    header.top .inner {
        column-gap: 30px;
    }
}

header.top .logo {
    justify-self: center;
    transition: opacity 0.3s ease;
}

header.top .logo img {
    height: 20px;
    width: auto;
}

header.top[search-expanded=""] .logo {
    opacity: 0;
}

@media (min-width: 992px) {
    header.top .logo {
        margin-top: 26.5px;
        margin-bottom: 26.5px;
        height: 25px;
        justify-self: auto;
    }

    header.top .logo img {
        height: 20px;
    }
}

@media (min-width: 992px) {
    header.top .logo img {
        height: 25px;
    }
}

@media (min-width: 1600px) {
    header.top .logo {
        margin: 0;
        justify-self: auto;
        transform: none;
        height: 78px;
        display: flex;
        align-items: center;
    }

    header.top .logo img {
        height: 30px;
    }
}

header.top .child-links-container {
    display: grid;
    align-items: flex-start;
    row-gap: 1em;
    grid-row: 2 / 2;
    grid-column: 1 / -1;
    grid-auto-rows: min-content;
    transition: opacity 0.3s ease, height 0.3s ease, padding 0.3s ease;
    height: 0;
    overflow: hidden;
    background: var(--background-dk-blue);
    margin: 1.4em -1.75rem 0 -1.75rem;
    padding: 0 1.75rem;
    opacity: 0;
    color: white;
}

header.top .nav-item-wrapper.active .nav-item button {
    font-weight: bold;
    color: var(--color-link-global);
}

@media (max-width: 991.98px) {
    header.top[aria-expanded] .child-links-container {
        height: calc(100vh - 60px);
        overflow-y: visible;
        padding: 1.25rem 1.75rem 2rem 1.25rem;
        opacity: 1;
    }
}

header.top .child-links-container>div {
    border-bottom: 1px solid white;
}

@media (min-width: 992px) {
    header.top .child-links-container {
        transition: opacity 0.3s ease;
        align-items: center;
        grid-row: auto;
        grid-column: auto;
        height: 100%;
        background: transparent;
        opacity: 1;
        color: var(--color-dark);
        grid-auto-columns: min-content;
        grid-auto-rows: initial;
        grid-auto-flow: column;
        column-gap: 2rem;
        margin: 0;
        padding: 0;
        display: block;
    }

    header.top .child-links-container>div {
        margin-right: 10px;
    }

    header.top .child-links-container>div.child-links-right {
        float: right;
        margin-left: 10px;
        margin-right: 0 !important;
    }

    header.top .child-links-container>div.child-links-right .nav-item button {
        color: var(--color-gray);
    }
}

@media (min-width: 1200px) {
    header.top .child-links-container>div {
        margin-right: 20px;
    }

    header.top .child-links-container>div.child-links-right {
        margin-left: 20px;
    }
}

@media (min-width: 1600px) {
    header.top .child-links-container>div {
        margin-right: 30px;
    }

    header.top .child-links-container>div.child-links-right {
        margin-left: 30px;
        margin-right: 0;
    }
}

header.top .child-link-dropdown ul {
    width: 100%;
    list-style: none;
    padding-left: 0;
    display: grid;
    grid-template-columns: 1fr;
    column-gap: 3.75rem;
    row-gap: 1.5rem;
    margin: 0;
    padding-bottom: 1rem;
}

@media (min-width: 992px) {
    header.top .child-link-dropdown ul {
        width: 70%;
        grid-template-columns: repeat(2, 1fr);
    }

    header.top .child-link-dropdown.services ul {
        width: 100%;
        grid-template-columns: 1fr;
    }

    header.top .child-link-dropdown a {
        color: var(--color-dk-blue);
        transition: color 0.3s ease;
    }

    header.top .child-link-dropdown.child-link-dropdown-bg-dk-blue a {
        color: var(--color-white);
    }

    header.top .child-link-dropdown.child-link-dropdown-bg-dk-blue a:hover {
        color: var(--color-primary);
    }

    header.top .child-link-dropdown a:hover {
        color: var(--color-link-global);
    }
}

@media (min-width: 1200px) {
    header.top .child-link-dropdown ul {
        row-gap: 1.875rem;
        grid-template-columns: repeat(3, 1fr);
    }

    header.top .child-link-dropdown.services ul {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1600px) {
    header.top .child-link-dropdown.services ul {
        width: 90%;
        grid-template-columns: repeat(3, 1fr);
    }
}

header.top .child-link-dropdown .services-sub {
    background-color: #F4F4F4;
}

header.top .child-link-dropdown .services-sub>div {
    width: 100%;
}

header.top .child-link-dropdown a.overview {
    font-size: inherit;
    font-weight: 700;
    text-transform: none;
    margin-bottom: 2.5rem;
    letter-spacing: normal;
}

header.top .services-main a.overview {
    color: var(--color-white);
    width: min-content;
}

header.top .child-link-dropdown a.overview::after {
    /* font-size: 1.25em; */
    font-size: 0.875em;
    font-weight: bold;
}

header.top .child-links-container .nav-item button {
    white-space: nowrap;
    pointer-events: none;
}

header.top .child-links-container .nav-item-wrapper-no-child a {
    display: flex;
}

header.top .child-links-container .nav-item-wrapper-no-child {
    position: relative;
}

header.top .child-links-container .nav-item-wrapper-no-child a::before {
    position: absolute;
    content: '';
    height: 100%;
    width: 100%;
    background: transparent;
    left: 0;
    top: 0;
}

@media (max-width:991px) {
    header.top .child-links-container .nav-item button {
        color: white;
        position: relative;
        white-space: normal;
        display: flex;
        justify-content: space-between;
        width: 100%;
        pointer-events: all;
        align-items: center;
    }

    header.top .child-links-container .nav-item.active button,
    header.top .child-link-dropdown .services-sub div[data-section].active button {
        color: var(--color-primary);
        font-weight: bold;
    }

    header.top .nav-item-wrapper.active .nav-item button {
        font-weight: bold;
        color: var(--color-primary);
    }

    header.top .child-links-container .nav-item button:after,
    header.top .child-link-dropdown .services-sub button:after {
        content: '';
        display: block;
        width: 10px;
        height: 10px;
        /*border-left: 1px solid white;*/
        padding: 1rem 1.5rem 1rem 1.8rem;
        background-image: url(../images/acc-arrow-down.svg);
        background-position: center;
        background-repeat: no-repeat;
    }

    header.top .child-links-container .nav-item.active button:after,
    header.top .child-link-dropdown .services-sub div[data-section].active button:after {
        transform: rotate(180deg);
        background-image: url(../images/acc-arrow-down-primary.svg);
        /*border-right: 1px solid white;
        border-left: none;*/
    }

    header.top .child-links-container .nav-item-wrapper-no-child button::after {
        display: none;
    }

    header.top .child-links-container .nav-item-wrapper-no-child a {
        display: block;
        padding-bottom: 14px;
    }

    header.top .child-link-dropdown {
        padding-top: 1rem;
        height: 0;
        overflow: hidden;
        transition: height 0.3s ease;
    }

    header.top .child-link-dropdown.services {
        margin: 0 -2rem;
    }

    header.top .child-link-dropdown:not([class*="services"]) a {
        color: white !important;
    }

    header.top .child-link-dropdown a {
        color: var(--color-dk-blue);
    }

    @media (max-width: 991.98px) {
        header.top .child-link-dropdown .services-sub .ser-overview {
            color: var(--color-white);
            margin: 0 2rem 0.5rem;
        }
    }

    header.top .child-link-dropdown .services-sub {
        background-color: transparent;
    }

    /* header.top .child-link-dropdown a.overview:after {
        content: none;
    } */


    header.top .child-link-dropdown .services-sub button {
        color: white;
    }

    header.top .child-link-dropdown .services-sub div[data-section]>div {
        background-color: #F4F4F4;
        height: 0;
        overflow: hidden;
        transition: height 0.3s ease, padding 0.3s ease;
    }

    header.top .child-link-dropdown .services-sub div[data-section]>div>div {
        padding: 2rem;
    }

    header.top .child-link-dropdown .services-sub div[data-section] {
        display: flex;
        flex-direction: column;
    }

    header.top .child-link-dropdown .services-sub div[data-section]>button {
        flex: 1;
        margin: 0.5rem 2rem;
        display: grid;
        grid-template-columns: 1fr min-content;
        text-align: left;
        align-items: center;
    }

    header.top .child-link-dropdown.services img {
        max-height: 20px;
    }

    header.top .child-link-dropdown a.overview {
        margin-bottom: 1rem;
        font-size: var(--h6-size-mobile);
        display: flex;
        align-items: center;
        width: fit-content;
    }
}

header.top .child-link-dropdown.services .services-main {
    display: none;
    white-space: nowrap;
}

@media (min-width: 992px) {
    header.top .child-link-dropdown {
        max-width: 1640px;
        max-height: 0;
        background: #F4F4F4;
        position: absolute;
        top: 100%;
        left: 8vw;
        right: 8vw;
        opacity: 0;
        padding: 0 3rem;
        overflow: hidden;
    }

    header.top .child-link-dropdown.child-link-dropdown-bg-dk-blue {
        background-color: var(--color-dk-blue);
        color: var(--color-white);
    }

    header.top .child-link-dropdown.services {
        padding: 0 !important;
        display: grid;
        grid-template-columns: 300px auto;
    }

    header.top .child-link-dropdown.is-show {
        display: block;
        opacity: 1;
        max-height: 90vh;
        padding: 2rem 3rem;
    }

    header.top .child-link-dropdown.services.is-show {
        display: grid;
    }

    header.top .child-link-dropdown.is-hide {
        opacity: 0;
        max-height: 0;
        padding: 0 3rem;
    }

    header.top .child-link-dropdown:not(.services) {
        transition: opacity 0.8s ease 0.2s, max-height 0.8s ease-in 0.2s, padding 0.8s ease 0.2s;
    }

    header.top .child-links-container>div:hover .child-link-dropdown:not(.services) {
        transition: opacity 0.8s ease, max-height 0.8s ease-in, padding 0.8s ease;
    }

    header.top .child-link-dropdown.services {
        transition: opacity 0.8s ease 0.2s, max-height 0.8s ease-in 0.2s;
    }

    header.top .child-links-container>div:hover .child-link-dropdown.services {
        transition: opacity 0.8s ease, max-height 0.8s ease-in;
        z-index: 10;
    }

    header.top .child-link-dropdown a.overview {
        font-size: var(--h6-size);
    }

    header.top .child-link-dropdown a.overview img {
        height: 30px;
        width: auto;
    }

    header.top .child-link-dropdown.services>* {
        padding: 3.75rem;
    }

    header.top .child-link-dropdown.services .services-main {
        background: var(--background-dk-blue);
        display: grid;
        grid-auto-rows: min-content;
        row-gap: 1rem;
        padding: 3rem 6rem 3rem 4.5rem;
    }

    header.top .child-link-dropdown.services .services-main button {
        color: white;
        text-align: left;
        white-space: normal;
    }

    /* header.top .child-link-dropdown.services .services-main button:focus {
        outline: none !important;
    } */

    header.top .child-link-dropdown.services .services-main button:after {
        display: block;
        content: attr(data-title);
        font-weight: 500;
        height: 0;
        overflow: hidden;
        visibility: hidden;
    }

    header.top .child-link-dropdown.services .services-main button.active {
        color: var(--color-primary);
        font-weight: 500;
    }

    header.top .child-link-dropdown.services .services-sub>div {
        display: none;
    }

    header.top .child-link-dropdown.services .services-sub>div.active {
        display: block;
    }

    header.top .child-links-container .nav-item button {
        transition: all 0.3s ease;
        color: var(--font-color-primary);
        font-weight: 400;
        font-size: 0.875em;
        text-align: center;
    }

    header.top .child-links-container>div:hover .nav-item button {
        font-weight: bold;
        color: var(--color-link-global);
    }

    header.top .child-links-container>div:hover .child-link-dropdown {
        opacity: 1;
        top: 100%;
        max-height: 90vh;
        pointer-events: initial;
    }

    header.top .child-links-container>div:hover .child-link-dropdown:not(.services) {
        padding: 2rem 3rem;
        z-index: 10;
    }

    header.top .child-links-container .nav-item button:after {
        display: block;
        content: attr(data-title);
        font-weight: bold;
        height: 0;
        overflow: hidden;
        visibility: hidden;
    }
}

@media (min-width: 1200px) {
    /* header.top .child-links-container .nav-item button {
        font-size: 1em;
    } */
}

@media (min-width: 1600px) {

    header.top .child-link-dropdown button,
    header.top .child-link-dropdown a {
        font-size: 1.125em;
    }

    header.top .child-link-dropdown.services {
        grid-template-columns: 400px auto;
    }

    header.top .child-link-dropdown.services .services-main {
        padding: 3rem 4.5rem;
    }

    header.top .child-links-container .nav-item button {
        font-size: 1em;
    }
}

header.top .child-links-container>div {
    display: inline-flex;
    flex-direction: column;
    /* padding-bottom: 1rem; */
}

@media (min-width: 992px) {
    header.top .child-links-container>div {
        height: 100%;
        flex-direction: row;
        align-items: center;
        padding-bottom: 0;
    }
}

@media (max-width: 991.98px) {
    header.top #search-container {
        position: absolute;
        right: 15px;
        height: 60px;
        top: 0;
    }
}

@media (min-width: 992px) {
    header.top #search-container {
        height: 78px;
    }
}

header.top #search-container .button-search {
    position: relative;
    width: 40px;
    height: 100%;
    color: var(--color-black);
    font-size: 1.125em;
}

@media (min-width: 992px) {
    header.top #search-container .button-search {
        font-size: 1.5em;
        color: var(--color-gray);
    }
}

@media (min-width: 1600px) {
    header.top #search-container .button-search {
        width: 60px;
        height: 100%;
    }

    header.top #search-container .button-search img {
        transform: none;
    }
}

header.top #search-container .button-search * {
    transition: opacity 0.3s ease;
}

header.top #search-container .button-search .btn-close {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
}

header.top #search-container .search-input {
    position: absolute;
    top: 50%;
    right: calc(100% + 1em);
    transform: translateY(-50%);
    overflow: hidden;
    background: white;
    transition: width 0.3s ease;
    width: 0;
}

header.top #search-container .search-input input[type="text"] {
    padding: 0.5em 0;
    border-bottom: 1px solid var(--color-primary);
    width: 100%;
}

header.top[search-expanded=""] #search-container .button-search {
    background: var(--color-primary);
}

header.top[search-expanded=""] #search-container .button-search .btn-close {
    opacity: 1;
}

header.top[search-expanded=""] #search-container .button-search img.search {
    opacity: 0;
}

header.top[search-expanded=""] #search-container .search-input {
    width: 60vw;
}

@media (max-width: 991px) {

    header.top[aria-expanded=""] #search-container .search-input,
    header.top[aria-expanded=""] #search-container .button-search {
        display: none;
    }
}

@media (min-width: 768px) {
    header.top[search-expanded=""] #search-container .search-input {
        width: 60vw;
    }
}

@media (min-width: 992px) {
    header.top[search-expanded=""] #search-container .search-input {
        width: 300px;
    }
}

header.top[search-expanded=""] .child-links-container {
    opacity: 0;
}

@media (min-width: 1600px) {
    header.top[search-expanded=""] .child-links-container {
        opacity: 1;
    }
}

header.top .country-selector {
    height: 100%;
    align-items: center;
    margin: 0 0.5rem;
    position: relative;
    display: none;
}

header.top[aria-expanded] .country-selector {
    display: inline-flex;
    padding: 0 0.5rem;
}

@media (min-width: 992px) {
    header.top .country-selector {
        display: inline-flex;
        margin: 0 0.5rem 0 0;
    }
}


header.top .country-selector img {
    width: 48px;
    height: auto;
}


header.top .country-selector ul {
    display: none;
    position: absolute;
    list-style: none;
    padding: 0 1rem 1rem 1rem;
    left: 50%;
    transform: translateX(-50%);
    top: -1000%;
    background: #F2F2F2;
    opacity: 0;
    transition: opacity 0.3s ease;
    margin-bottom: 0;
}

header.top .country-selector.active ul {
    display: block;
    top: 100%;
    opacity: 1;
}

header.top .country-selector.active ul:after {
    content: "";
    position: absolute;
    top: -5px;
    left: 0;
    width: 100%;
    height: 5px;
    background-color: var(--background-dk-blue);
}

header.top .country-selector ul li button {
    white-space: nowrap;
    color: #707070;
    text-align: center;
    width: 100%;
}

header.top .country-selector ul li {
    margin-top: 1rem;
    width: 100%;
}

header.top .country-selector ul li button>* {
    pointer-events: none;
}

header.top .country-selector ul li.active {
    position: absolute;
    height: 0;
    visibility: hidden;
}

header.top .button-country {
    /*padding-right: 1.5rem;*/
    color: var(--color-primary);
    display: flex;
    align-items: center;
    font-weight: bold;
    height: inherit;
}

header.top .button-country i {
    color: var(--color-black);
    font-size: 1.125em;
}

header.top .button-country:after {
    content: none;
    display: block;
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid black;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);

}

header.top .button-country span {
    margin-left: 5px;
}

@media (min-width: 992px) {
    header.top .button-country {
        color: var(--color-gray);
    }

    header.top .button-country i {
        font-size: 1.5rem;
        color: var(--color-gray);
    }
}

header.top .button-country img {
    width: 25px;
    height: auto;
    margin-right: 0.5rem;
}

@media (min-width: 1600px) {
    header.top .button-country img {
        width: 30px;
    }
}

/* FOOTER */
footer {
    position: relative;
    background: rgb(28, 28, 28);
    color: white;
    padding: 40px 1rem;
    font-size: 0.75em;
    font-weight: 400;
}

@media (min-width: 992px) {
    footer {
        padding: 60px 1rem;
        font-size: inherit;
    }
}

footer nav {
    display: grid;
}

@media (min-width: 768px) {
    footer nav {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 3em;
    }
}

@media (min-width: 992px) {
    footer nav {
        grid-template-columns: repeat(5, 1fr);
        gap: 4em;
        font-size: inherit;
    }
}

footer nav .accordion-item {
    border-bottom: 1px solid #BCBCBC;
}

footer nav .accordion-item:not(:first-child) {
    padding-top: 1.5em;
}

@media (min-width: 768px) {
    footer nav .accordion-item {
        border-bottom: none;
    }

    footer nav .accordion-item:not(:first-child) {
        padding-top: 0;
    }
}

footer nav .parent-header {
    display: flex;
    color: var(--color-primary);
    font-weight: 700;
    font-size: inherit;
    padding-bottom: 1.5em;
}

@media (min-width: 992px) {
    footer nav .parent-header {
        font-size: 1.125em;
    }
}

footer nav .parent-header::after {
    flex-shrink: 0;
    width: 1.25rem;
    height: 1.25rem;
    margin-left: auto;
    content: "";
    background-image: url("../images/acc-arrow-down.svg");
    background-position: right center;
    background-repeat: no-repeat;
    background-size: 1.25rem;
}

footer nav .parent-header[aria-expanded="true"]::after {
    transform: rotate(-180deg);
}


@media (min-width: 768px) {
    footer nav .parent-header:after {
        content: none;
    }
}

footer nav .child-links {
    display: grid;
    row-gap: 0.4em;
    padding-bottom: 1.5em;
}

@media (min-width: 768px) {
    footer nav .child-links {
        padding-bottom: 0;
    }
}

footer a {
    transition: all 0.3s ease;
}

footer a:hover {
    color: var(--color-primary);
    border-color: var(--color-primary);
}


footer .social-bar {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: min-content;
    column-gap: 1em;
    grid-column: 1 / -1;
    align-items: center;
    justify-content: center;
    margin: 3rem 0 1rem 0;
}

@media (min-width: 768px) {
    footer .social-bar {
        column-gap: 2em;
    }
}

@media (min-width: 992px) {
    footer .social-bar {
        grid-column: 4 / -1;
        align-items: flex-end;
        justify-content: flex-end;
        margin: 0;
    }
}

footer .copyright-others {
    font-size: 0.75em;
}

footer .footer-list-link a {
    display: inline-block;
}

@media (min-width: 992px) {
    footer .copyright-others {
        margin-top: 4em;
    }
}

footer .copyright-others>div:nth-child(2) a:not(:first-child):before,
.campaign footer .copyright-others>div:nth-child(1) a:not(:first-child):before {
    content: "|";
    display: inline-block;
    margin: 0 1em;
    color: white;
}

@media (min-width: 992px) {

    footer .copyright-others>div:nth-child(2) a:not(:first-child):before,
    .campaign footer .copyright-others>div:nth-child(2) a:not(:first-child):before {
        margin: 0 1.5em;
    }
}

.box-content-white {
    display: flex;
    flex-direction: column;
    background: white;
    padding: 1.5em 0.6em 2em 0.6em;
    color: var(--font-color-primary);
}

/* BOOTSTRAP OVERWRITE TO FIX CSP HEADER CSS */
.btn-close {
    background: transparent url("../images/bootstrap/ic-bs-close.jpg") center/1em auto no-repeat;
}

/*MASTHEAD*/
.masthead {
    position: relative;
    display: block;
    margin-top: var(--header-height-mobile);
    background-color: black;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 400px;
    width: 100%;
    padding-left: 1em;
    padding-right: 1em;
    z-index: 2;
}

.masthead.full {
    min-height: calc(100dvh - var(--header-height-mobile));
}

.masthead.home {
    min-height: 0;
}

@media screen and (min-width: 992px) {
    .masthead {
        border-bottom: solid 1px var(--color-border-lt-grey);
    }
}

.masthead-img {
    padding: 0 !important;
    min-height: auto !important;
}

.masthead-img img {
    width: 100%;
}

.masthead-img.has-bg-tablet .img-desktop,
.masthead-img.has-bg-mobile .img-desktop {
    display: none;
}

.masthead-img.has-bg-mobile .img-tablet {
    display: none;
}

@media (min-width: 768px) {
    .masthead-img .img-mobile {
        display: none;
    }

    .masthead-img .img-tablet {
        display: block !important;
    }

    .masthead-img:not(.has-bg-tablet) .img-desktop {
        display: block !important;
    }
}

@media (min-width: 992px) {
    .masthead-img .img-tablet {
        display: none !important;
    }

    .masthead-img .img-desktop {
        display: block !important;
    }
}


.carousel-caption {
    position: absolute;
    left: 100px;
}

.carousel-caption[class^="container"] {
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
}

.carousel-caption h2 {
    text-align: left;
}

.carousel-caption h2 .unlink {
    text-decoration: none;
    color: inherit;
    cursor: auto;
}

.carousel-caption h1 .unlink {
    text-decoration: none;
    color: inherit;
    cursor: auto;
}

/* a.video-cta {
    position:absolute;
    bottom: 125px; 
}

a.video-cta.left {
    left: 100px;
    left: 125px;
}

a.video-cta.right {
    right: 125px;
} */
a.video-cta {
    bottom: 0 !important;
}

@media (max-width: 767px) {
    .carousel-caption {
        bottom: 150px;
        left: 2rem;
    }

    a.video-cta.left {
        left: 2rem;
    }
}

@media (min-width: 768px) {
    .carousel-caption {
        bottom: 200px;
    }

    a.video-cta {
        bottom: 175px;
        /* bottom: 225px; */
    }
}

@media (min-width: 992px) {
    .carousel-caption {
        top: 50%;
        transform: translateY(-50%);
        bottom: auto;
    }

    a.video-cta {
        bottom: 125px;
        /* bottom: 240px;  */
    }
}

.masthead.curtain {
    height: calc(100vh) !important;
}

@media screen and (max-width: 991.99px) {
    .masthead.full-mobile-80 {
        min-height: calc(80vh - var(--header-height-mobile)) !important;
    }
}

@media (min-width: 992px) and (max-height: 750px) {
    .masthead {
        /*min-height: calc(90vh - var(--header-height-laptop));*/
        margin-top: var(--header-height-laptop);
    }

    .masthead.full-laptop-80 {
        min-height: calc(80vh - var(--header-height-laptop)) !important;
    }
}

@media (min-width: 992px) {
    .masthead {
        padding-left: 3em;
        padding-right: 3em;
        margin-top: var(--header-height-laptop);
    }

    .masthead.full {
        height: calc(100vh - var(--header-height-laptop));
    }

    .masthead.curtain {
        height: calc(100vh) !important;
    }
}

@media (min-width: 1600px) {
    .masthead {
        min-height: 620px;
        margin-top: var(--header-height-desktop);
    }

    .masthead.full {
        height: calc(100vh - var(--header-height-desktop));
    }

    .masthead.curtain {
        height: calc(100vh) !important;
    }
}

@media (min-width: 767px) and (max-width: 920px) {
    .masthead.mastheadDetail--style.middle {
        min-height: 620px;
    }
}

.masthead.middle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: 2rem;
    padding-bottom: 2rem;
}

@media (max-width: 767px) {
    .masthead.middle.end {
        justify-content: end;
    }
}


/* .masthead.middle[data-overlay-color] {
    justify-content: flex-end;
    padding-bottom: 3em;
} */

@media (min-width: 768px) {
    .masthead.middle {
        padding-top: 3em;
        padding-bottom: 3em;
    }
}

@media (min-width: 992px) {

    .masthead.middle,
    .masthead.middle[data-overlay-color] {
        justify-content: center;
        /* padding-bottom: 0; */
    }

    .masthead.middle {
        padding-top: 6em;
    }
}

.masthead.middle.watermark {
    justify-content: center;
}

.masthead.watermark:before {
    content: '';
    position: absolute;
    display: block;
    left: 50%;
    top: 0;
    width: 100%;
    height: 100%;
    max-width: 1600px;
    transform: translateX(-50%);
    background-image: url(../images/ic-ncs-hash.svg);
    background-position: calc(100% - 5px - 2.5rem) center;
    background-repeat: no-repeat;
    background-size: 78px 46px;
}

@media (min-width: 756px) {
    .masthead.watermark:before {
        background-size: 25% auto;
    }
}

@media (min-width: 992px) {
    .masthead.watermark:before {
        background-position: calc(100% - 20px - 2.5rem) center;
    }
}

@media (min-width: 1600px) {
    .masthead.watermark:before {
        background-size: auto;
        background-position: calc(100% - 5px - 2.5rem) center;
    }
}

.masthead,
.masthead .ncs-carousel .swiper-slide {
    background-image: var(--masthead-image);
}

@media (min-width: 768px) {

    .masthead,
    .masthead .ncs-carousel .swiper-slide {
        background-image: var(--masthead-image-md);
    }
}

@media (min-width: 992px) {

    .masthead,
    .masthead .ncs-carousel .swiper-slide {
        background-image: var(--masthead-image-lg);
    }
}

.masthead[data-overlay-color],
.masthead *[data-overlay-color] {
    /* background-image: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0) 80%), var(--masthead-image) !important;  */
    background-image: linear-gradient(to top, rgba(0, 0, 0, 0.8) 20%, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.4)), var(--masthead-image) !important;
    color: white !important;
}

@media (min-width: 768px) {

    .masthead[data-overlay-color],
    .masthead *[data-overlay-color] {
        /* background-image: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0) 50%), var(--masthead-image-md) !important; */

        background-image: linear-gradient(to top, rgba(0, 0, 0, 0.8) 20%, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.4)), var(--masthead-image-md) !important;
    }
}

@media (min-width: 992px) {

    .masthead[data-overlay-color],
    .masthead *[data-overlay-color] {
        background-image: linear-gradient(to right, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0) 70%), var(--masthead-image-lg) !important;
    }

    .masthead.remove-text-desktop .masthead-heading {
        display: none;
    }

    .masthead.remove-text-desktop[data-overlay-color],
    .masthead.remove-text-desktop *[data-overlay-color] {
        background-image: var(--masthead-image-lg) !important;
    }

}

.masthead.carousel {
    padding: 0;
}

.masthead .ncs-carousel,
.masthead .ncs-carousel .swiper,
.masthead .ncs-carousel .swiper-wrapper,
.masthead .ncs-carousel .swiper-slide {
    position: relative;
    width: 100%;
    height: 100%;
}

.masthead.home .ncs-carousel,
.masthead.home .ncs-carousel .swiper,
.masthead.home .ncs-carousel .swiper-wrapper,
.masthead.home .ncs-carousel .swiper-slide {
    height: 620px;
    max-height: 620px;
}

.masthead.home .ncs-carousel.full,
.masthead.home .ncs-carousel.full .swiper,
.masthead.home .ncs-carousel.full .swiper-wrapper,
.masthead.home .ncs-carousel.full .swiper-slide {
    height: calc(100vh - var(--header-height-mobile));
    max-height: none;
}

.masthead.home .ncs-carousel.small,
.masthead.home .ncs-carousel.small .swiper,
.masthead.home .ncs-carousel.small .swiper-wrapper,
.masthead.home .ncs-carousel.small .swiper-slide {
    height: 480px;
    max-height: 480px;
}

.masthead .ncs-carousel .carousel-caption {
    left: 0;
}

.masthead .ncs-carousel .video-cta {
    left: 0;
}

@media (min-width: 992px) {

    .masthead.home .ncs-carousel,
    .masthead.home .ncs-carousel .swiper,
    .masthead.home .ncs-carousel .swiper-wrapper,
    .masthead.home .ncs-carousel .swiper-slide {
        height: calc(((100vh - 20px) / 3) * 2);
        max-height: 620px;
        min-height: 480px;
    }

    .masthead.home .ncs-carousel.small,
    .masthead.home .ncs-carousel.small .swiper,
    .masthead.home .ncs-carousel.small .swiper-wrapper,
    .masthead.home .ncs-carousel.small .swiper-slide {
        height: calc(((100vh - 20px) / 5) * 3);
        max-height: 460px;
        min-height: 380px;
    }

    .masthead.home .ncs-carousel.full,
    .masthead.home .ncs-carousel.full .swiper,
    .masthead.home .ncs-carousel.full .swiper-wrapper,
    .masthead.home .ncs-carousel.full .swiper-slide {
        height: calc(100vh - var(--header-height-desktop));
        max-height: 450px;
    }
}

@media (min-width: 1600px) {

    .masthead.home .ncs-carousel.full,
    .masthead.home .ncs-carousel.full .swiper,
    .masthead.home .ncs-carousel.full .swiper-wrapper,
    .masthead.home .ncs-carousel.full .swiper-slide {
        max-height: 600px;
    }
}

.masthead .ncs-carousel .swiper {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
}

.masthead .ncs-carousel .swiper-slide {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.masthead .ncs-carousel .swiper-slide[data-type="video"] {
    padding: 0;
}

.masthead .ncs-carousel .carousel-control {
    position: absolute;
    margin: 0 auto;
    left: 50%;
    bottom: 20px;
    padding: 2rem 2rem;
    z-index: 1;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
}

.masthead.full .ncs-carousel .carousel-control {
    padding-bottom: 2rem;
}

@media (min-width: 768px) {
    .masthead .ncs-carousel .carousel-control {
        padding: 0 2rem;
        padding: 3.5rem 2rem;
        bottom: 60px;
    }
}

@media (min-width: 992px) {
    .masthead .ncs-carousel .carousel-control {
        padding: 0 2rem;
    }
}

.masthead .video-container {
    position: relative;
    height: 100%;
    width: auto;
}

.masthead .video-container.desktop {
    display: none;
}

@media (min-width: 992px) {
    .masthead .video-container.desktop {
        display: block;
    }

    .masthead .video-container.mobile {
        display: none;
    }
}


.masthead .video-container video {
    object-fit: cover;
    position: absolute;
    height: 100%;
    width: 100%;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.more-content-below::before {
    /* use !important to prevent issues with browser extensions that change fonts */
    font-family: 'icomoon' !important;
    speak: never;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;

    /* Better Font Rendering =========== */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    content: "\e90b";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 12px;
}

.masthead .more-content-below {
    display: none;
}

.masthead.full .more-content-below {
    display: grid;
    justify-content: center;
    align-items: center;
    position: absolute;
    left: 50%;
    bottom: 20px;
    transform: translateX(-50%);
    z-index: 2;
    color: var(--color-white);
    /* opacity: 0.5; */
}

.masthead.full .more-content-below.is-dark::after,
.masthead.full .more-content-below.is-dark::before {
    color: var(--color-black);
}

@media (max-width:1599px) {
    .masthead.full .more-content-below:after {
        transform: scale(0.9);
        transform-origin: center bottom;
    }
}

@media (min-width: 768px) {
    .masthead.full .more-content-below {
        bottom: 40px;
    }
}

@media (min-width: 992px) {

    .masthead.full .more-content-below,
    .masthead .ncs-carousel .carousel-control {
        bottom: 30px;
    }

    .masthead.full .more-content-below {
        display: none !important;
    }
}

@media (min-width: 1600px) {

    .masthead.full .more-content-below,
    .masthead .ncs-carousel .carousel-control {
        bottom: 60px;
    }
}

.masthead.full .more-content-below:after {
    color: white;
    content: "swipe down";
    display: inline-block;
    width: 100px;
    height: 60px;
    text-align: center;
    font-weight: 400;
}

@media (min-width: 992px) {
    .masthead.full .more-content-below:after {
        content: "scroll down";
        width: 100px;
        height: 75px;
        background-image: url(../images/ic-scroll-down.svg);
        background-size: 28px 44px;
    }
}

.masthead p.small {
    font-weight: 500;
}

.masthead.masthead-update-2023 {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding-bottom: 120px;
    padding-top: 50px;
}

.masthead.masthead-update-2023.no-blurb {
    justify-content: center;
}

.masthead.masthead-update-2023 .kv {
    position: relative;
}

.masthead.masthead-update-2023 .kv img {
    display: block;
    width: 75%;
    max-width: 335px;
    height: auto;
    margin: 0 auto;
}

.masthead.masthead-update-2023.middle>[class^="container"] {
    flex: 1;
}

.masthead-heading.is-dark,
.masthead-heading.is-dark h1 {
    color: #002158;
}

.masthead-heading .masthead-heading-title {
    line-height: 1.1em;
    font-size: 2em;
}

.masthead-heading .masthead-heading-desc {
    min-height: 48px;
}

.masthead.masthead-update-2023 .kv span {
    display: grid;
    place-content: center;
    position: absolute;
    top: 0;
    height: 100%;
    width: 100%;
    font-weight: 700;
    font-size: 4em;
    filter: drop-shadow(0 0 0.75rem rgba(0, 0, 0, 0.5));
    letter-spacing: -0.2rem;
}

@media (max-width: 319px) {
    .masthead.masthead-update-2023 .kv span {
        font-size: 18vw;
    }
}

@media (min-width: 768px) {
    .masthead-heading {
        margin: 5rem 0;
    }

    .masthead-heading .masthead-heading-desc {
        font-size: 1em;
    }

    .masthead.masthead-update-2023 .kv img {
        max-width: 372px;
        width: 100%;
    }

    .masthead.masthead-update-2023 .kv span {
        font-size: 5.75em;
    }
}

@media (min-width: 992px) {
    .masthead-heading {
        margin: 0;
    }

    .masthead.masthead-update-2023 {
        justify-content: center;
        padding-bottom: 80px;
        padding-top: 80px;
    }

    .masthead.masthead-update-2023,
    .masthead.masthead-update-2023.full {
        min-height: 450px;
        height: 450px;
    }

    .masthead-heading .masthead-heading-title {
        font-size: 2.25em;
    }

    .masthead-heading .masthead-heading-desc {
        font-size: 1em;
    }

    .masthead-heading .masthead-heading-desc {
        min-height: auto;
    }
}

@media (min-width: 1200px) {
    .masthead.masthead-update-2023 .kv img {
        max-width: 500px;
        max-height: 380px;
    }

    .masthead.masthead-update-2023 .kv span {
        font-size: 9.25em;
    }
}

@media (min-width: 1600px) {

    .masthead.masthead-update-2023,
    .masthead.masthead-update-2023.full {
        min-height: 600px;
        height: 600px;
    }

    .masthead-heading .masthead-heading-title {
        font-size: 2.8125em;
    }

    .masthead-heading .masthead-heading-desc {
        font-size: 1.125em;
    }

    .masthead.masthead-update-2023 .kv img {
        max-height: initial;
    }
}

/* SECTION CONTROLLER */
.section {
    position: relative;
    padding: var(--section-vpadding-sm) 1rem;
    /*transition-property: opacity, transform;*/
}

.section-py {
    padding-top: var(--section-vpadding-sm);
    padding-bottom: var(--section-vpadding-sm);
}

.section-px {
    padding-left: 1rem;
    padding-right: 1rem;
}

.section-md {
    padding: var(--section-vpadding-md) 1rem;
}

.section-py-md {
    padding-top: var(--section-vpadding-md);
    padding-bottom: var(--section-vpadding-md);
}

.section-heading>img {
    height: 40px;
    margin-bottom: 12px;
}

.section-custom-spacing.reduce-spacing {
    margin-bottom: calc(var(--section-vpadding-sm) * (-1));
}

.section-custom-spacing.increase-spacing {
    margin-bottom: 60px;
}

.inner-section-padding>div {
    padding-top: var(--section-vpadding-sm);
    padding-bottom: var(--section-vpadding-sm);
    padding-left: 2.5rem;
    padding-right: 2.5rem;
}

.layout-medium {
    width: 100%;
}

@media (min-width: 768px) {
    .section {
        padding: var(--section-vpadding-md) 1rem;
    }

    .section-py {
        padding-top: var(--section-vpadding-md);
        padding-bottom: var(--section-vpadding-md);
    }

    .section-px {
        padding-left: 1rem !important;
        padding-right: 1rem !important;
    }

    .section-custom-spacing.reduce-spacing {
        margin-bottom: calc(var(--section-vpadding-md) * (-1));
    }
}

@media (min-width: 992px) {
    .section {
        padding: var(--section-vpadding-lg) 3rem;
    }

    .section-py {
        padding-top: var(--section-vpadding-lg);
        padding-bottom: var(--section-vpadding-lg);
    }

    .section-px {
        padding-left: 3rem !important;
        padding-right: 3rem !important;
    }

    .section-heading>img {
        height: 50px;
        margin-bottom: 16px;
    }

    .inner-section-padding>div {
        padding: var(--section-vpadding-lg) 3rem;
    }

    .layout-medium {
        width: 70vw;
        margin: 0 auto;
    }

    .section-custom-spacing.reduce-spacing {
        margin-bottom: calc(var(--section-vpadding-lg) * (-1));
    }
}

@media (min-width: 1600px) {
    .section {
        padding: var(--section-vpadding-xxl) 1rem;
    }

    .section-py {
        padding-top: var(--section-vpadding-xxl);
        padding-bottom: var(--section-vpadding-xxl);
    }

    .section.is-reduce-top {
        padding-top: 0;
    }

    .section.is-reduce-bottom {
        padding-bottom: 0;
    }

    .inner-section-padding>div {
        padding-top: var(--section-vpadding-xxl);
        padding-bottom: var(--section-vpadding-xxl);
    }

    .section-custom-spacing.reduce-spacing {
        margin-bottom: calc(var(--section-vpadding-xxl) * (-1));
    }
}

.section.no-padding {
    padding: 0;
}

.section.fixed-height,
.section.full {
    min-height: calc(100vh - var(--header-height-mobile));
}

.section.merge-below {
    padding-bottom: 0;
    margin-bottom: -42px;
    z-index: 1;
}

.section.merge-above {
    padding-top: 0;
}

@media (min-width: 768px) {
    .section.merge-below {
        margin-bottom: -70px;
    }
}

@media (min-width: 992px) {
    .section.full {
        min-height: calc(100vh - var(--header-height-laptop));
    }

    .section.fixed-height {
        height: calc(100vh - var(--header-height-laptop));
    }
}

@media (min-width: 1600px) {
    .section.full {
        min-height: calc(100vh - var(--header-height-desktop));
    }

    .section.fixed-height {
        height: calc(100vh - var(--header-height-desktop));
    }
}

@media (max-width: 991px) {
    .section.mobile-pt-0 {
        padding-top: 0;
    }

}

.section.center {
    text-align: center;
}

.section.theme-dk-blue,
div.theme-dk-blue,
.section.theme-purple,
.section.theme-focus,
.section.theme-blue-slate,
.section.theme-purple,
[class*="theme"]:not(.theme-cyan):not(.theme-grey) h1,
[class*="theme"]:not(.theme-cyan):not(.theme-grey) .heading-n,
[class*="theme"]:not(.theme-cyan):not(.theme-grey) .heading-n-rest {
    color: var(--color-white);
}

.section.theme-cyan .heading-n {
    color: var(--color-dk-blue) !important;
}

.section.theme-cyan {
    background-color: var(--background-cyan);
}

.section.theme-dk-cyan {
    background-color: var(--background-dk-cyan);
}

div.theme-dk-blue,
.section.theme-dk-blue {
    background-color: var(--background-dk-blue);
}

.section.theme-purple {
    background-color: var(--background-purple);
}

.section.theme-grey {
    background-color: var(--background-grey);
}

.section.theme-purple.watermark {
    background-image: url(../images/ic-ncs-hash-watermark-purple.svg), linear-gradient(var(--background-purple), var(--background-purple));
    background-repeat: no-repeat;
    background-size: auto 50%, 100% 100%;
    background-position: center;
}

.theme-blue-slate {
    background-color: var(--color-blue-slate);
}

.section.theme-cyan .watermark {
    background-image: url(../images/ic-ncs-hash-watermark-primary.svg);
    background-repeat: no-repeat;
    background-size: 60%;
    background-position: center;
}

@media (min-width: 992px) {
    .section.theme-cyan .watermark {
        background-size: auto;
    }
}

.section.theme-focus {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: calc (100vh - var(--header-height-mobile));
}

@media (min-width: 1600px) {
    .section.theme-focus {
        min-height: 300px;
    }
}

.section.theme-focus .background {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-position: center;
    background-size: cover;
    background-repeat: none;
    z-index: -1;
}

.section.columns-2 {
    padding: 0;
    display: grid;
    grid-template-rows: auto 1fr;
}

@media (min-width: 992px) {
    .section.columns-2 {
        grid-template-rows: none;
        grid-template-columns: repeat(2, 1fr);
    }
}

.header-n-wrapper+div {
    margin-top: 40px;
}

@media (min-width: 992px) {
    .header-n-wrapper+div {
        margin-top: 60px;
    }
}


/* BODY | IMAGE */
.section.columns-2 .section-body {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: var(--section-vpadding-sm) 2rem;
}

@media (max-width: 991.98px) {
    .section.columns-2 .section-body.reduce-spacing-mb {
        margin-top: -30px;
    }
}

@media (min-width: 992px) {
    .section.columns-2 .section-body {
        padding: var(--section-vpadding-lg) 3rem;
    }
}

@media (min-width: 1600px) {
    .section.columns-2 .section-body {
        padding: var(--section-vpadding-xxl) 2rem;
    }
}

.section.columns-2 .section-body>div {
    max-width: 560px;
}

.section.columns-2 .feature-image {
    display: flex;
    justify-content: center;
    align-items: center;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    overflow: hidden;
    height: 350px;
}

.section.columns-2 .feature-image.image-has-content {
    background-color: white;
    height: 400px;
}

.section.columns-2 .feature-image img {
    height: 100%;
    width: auto;
    max-height: 600px;
}

.section.columns-2 .ncs-hash {
    height: 82px;
    width: auto;
}

@media (min-width: 992px) {
    .section.columns-2 .ncs-hash {
        height: auto;
    }

    .section.columns-2 .feature-image {
        height: auto;
    }

    .section.columns-2 .feature-image.image-has-content {
        height: 100%;
    }

    .section.columns-2 .feature-image.image-has-content.height-short {
        height: 450px;
    }
}

.section.dark-blue-white {
    background-image: linear-gradient(var(--background-dk-blue), var(--background-dk-blue));
    background-color: white;
    background-repeat: no-repeat;
    background-size: 50% 100%;
    background-position: left center;
}

/* CAROUSEL */
.header+.ncs-carousel {
    margin-top: 1em;
}

@media (min-width: 1600px) {
    .header+.ncs-carousel {
        margin-top: 3em;
    }
}


.milestones .carousel-control,
.ncs-carousel .carousel-control {
    display: grid;
    gap: 1.5em;
    align-items: center;
    justify-items: center;
    justify-content: center;
    font-weight: 300;
    color: var(--font-color-carousel);
    grid-auto-flow: column;
    grid-template-columns: repeat(3, min-content);
    white-space: nowrap;
    margin-top: 60px;
}

.carousel-control.no-pagination {
    grid-template-columns: repeat(2, min-content) !important;
}

.ncs-carousel .carousel-control.custom {
    display: flex;
    color: inherit;
}

.ncs-carousel .carousel-control.hide {
    display: none;
}

.milestones .carousel-control button,
.ncs-carousel .carousel-control button {
    position: relative;
}

@media (max-width: 1599px) {

    .carousel-control button img,
    .carousel-pagination {
        transform: scale(0.9);
    }
}

.ncs-carousel.light .carousel-control button img {
    filter: saturate(0) brightness(0) invert(1);
}

.milestones .carousel-control .control-prev,
.ncs-carousel .carousel-control:not(.custom) .control-prev {
    transform: rotate(-90deg);
}

.milestones .carousel-control .control-prev:hover,
.ncs-carousel .carousel-control:not(.custom) .control-prev:hover {
    transform: translateX(-10px) rotate(-90deg);
}

.milestones .carousel-control .control-next,
.ncs-carousel .carousel-control:not(.custom) .control-next {
    transform: rotate(90deg);
}

.milestones .carousel-control .control-next:hover,
.ncs-carousel .carousel-control:not(.custom) .control-next:hover {
    transform: translateX(10px) rotate(90deg);
}

.milestones .carousel-control .swiper-button-disabled {
    opacity: 0.3;
}

.ncs-carousel .carousel-control.custom a {
    color: var(--color-pagination);
}

.ncs-carousel .carousel-control .page-jump {
    padding: 0 1rem;
    display: grid;
    grid-template-columns: min-content min-content;
    column-gap: 1rem;
    letter-spacing: 0.2rem;
}

.ncs-carousel .carousel-control .page-jump>div:last-child {
    width: 5ch;
    border-bottom: 1px solid var(--color-gray);
    overflow: hidden;
    position: relative;
}

.ncs-carousel .carousel-control .page-jump input {
    position: absolute;
    width: 5ch;
    letter-spacing: 0.2rem;
    text-align: center;
}

.ncs-carousel .carousel-control .swiper-button-disabled {
    opacity: 0.3;
}


/* custmm bullets style */
.ncs-carousel .carousel-control .swiper-pagination-bullet {
    display: inline-flex;
    width: 30px;
    height: 30px;
    line-height: 1rem;
    background-color: transparent;
    opacity: 1;
    justify-content: center;
    align-items: center;
    font-size: 0.875em;
}

.ncs-carousel .carousel-control .swiper-pagination-bullet-active {
    border-radius: 50%;
    border: 1px solid var(--color-pagination);
    color: var(--color-pagination);
    background-color: transparent;
    font-weight: 500;
}

.ncs-carousel .carousel-pagination span.swiper-pagination-current {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border: 1px solid var(--color-pagination);
    color: var(--color-pagination);
    font-weight: 700;
    margin-right: 0.5em;
}

.ncs-carousel.light .carousel-pagination span.swiper-pagination-current {
    border-color: white;
    color: white;
}

.ncs-carousel .carousel-pagination span.swiper-pagination-total {
    display: inline-block;
    margin-left: 0.5em;
}

.theme-cyan .ncs-carousel .carousel-control {
    color: var(--font-color-primary);
}

.theme-cyan .ncs-carousel .carousel-pagination span.swiper-pagination-current {
    color: var(--font-color-primary);
    border-color: var(--font-color-primary);
}

/* CAROUSEL AWARDS*/
.ncs-carousel[data-type="awards"] {
    margin-left: auto;
    margin-right: auto;
    max-width: 1088px;
    width: 100%;
}

/* CAROUSEL EVENT*/
.ncs-carousel[data-type="events"] {
    margin-left: auto;
    margin-right: auto;
    max-width: 900px;
    width: 100%;
    color: var(--font-color-primary);
}

@media (min-width: 1600px) {
    .ncs-carousel[data-type="events"] {
        max-width: 1088px;
    }
}

.ncs-carousel[data-type="events"] .slide-inner {
    border-radius: 30px 0 30px 0;
    background: var(--color-bordered-bg);
    overflow: hidden;
    display: grid;
    position: relative;
}

@media (min-width: 768px) {
    .ncs-carousel[data-type="events"] .slide-inner {
        border-radius: 30px 0 30px 0;
        grid-template-columns: 280px 1fr;
        min-height: 280px;
    }
}

@media (min-width: 992px) {
    .ncs-carousel[data-type="events"] .slide-inner {
        grid-template-columns: 300px 1fr;
        min-height: 300px;
    }
}

@media (min-width: 1600px) {
    .ncs-carousel[data-type="events"] .slide-inner {
        grid-template-columns: 380px 1fr;
        min-height: 380px;
    }
}


.ncs-carousel[data-type="events"] .slide-inner[data-type]:after {
    content: attr(data-type);
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    background: var(--background-dk-cyan);
    padding: 0.5rem 2rem;
    color: white;
    font-size: 0.875em;
    font-weight: 500;
    border-bottom-left-radius: 10px;
}

.ncs-carousel[data-type="events"] .slide-inner .thumbnail {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    height: 302px;
}

@media (min-width: 768px) {
    .ncs-carousel[data-type="events"] .slide-inner .thumbnail {
        height: initial;
    }
}

.ncs-carousel[data-type="events"] .slide-body {
    padding: 25px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

@media (min-width: 768px) {
    .ncs-carousel[data-type="events"] .slide-body {
        padding: 50px;
    }
}

.ncs-carousel[data-type="events"] h3 {
    margin-bottom: 1rem;
    font-size: var(--h4-size-mobile)
}

@media (min-width: 992px) {
    .ncs-carousel[data-type="events"] h3 {
        font-size: var(--h4-size-lg)
    }
}

@media (min-width: 1600px) {
    .ncs-carousel[data-type="events"] h3 {
        font-size: var(--h4-size)
    }
}


/* CAROUSEL CASE STUDY*/
.ncs-carousel[data-type="case-study"] .swiper-wrapper {
    flex: 1 !important;
}

.ncs-carousel[data-type="case-study"] .swiper-slide {
    height: auto;
}

.ncs-carousel[data-type="case-study"] .slide-inner {
    height: 100%;
    display: grid;
    grid-template-rows: 1fr 1fr;
}

@media (min-width: 768px) {
    .ncs-carousel[data-type="case-study"] .slide-inner {
        grid-template-rows: 1.5fr 1fr;
    }
}

@media (min-width: 992px) {
    .ncs-carousel[data-type="case-study"] .slide-inner {
        grid-auto-flow: row;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 1fr;
        height: 60vh;
    }
}

@media (min-width: 1650px) {
    .ncs-carousel[data-type="case-study"] .slide-inner {
        grid-auto-flow: row;
        grid-template-columns: 2fr 1fr;
        grid-template-rows: 1fr;
        height: 500px;
    }
}

.ncs-carousel[data-type="case-study"] .slide-body {
    padding: 25px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    background: var(--color-bordered-bg);
}

@media (min-width: 768px) {
    .ncs-carousel[data-type="case-study"] .slide-body {
        padding: 50px;
    }
}

.ncs-carousel[data-type="case-study"] .slide-inner img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ncs-carousel[data-type="case-study"] .slide-inner h3,
.ncs-carousel[data-type="case-study"] .slide-inner h5 {
    color: var(--color-heading-global);
    text-transform: lowercase;
}

@media (max-width: 767px) {
    .ncs-carousel[data-type="case-study"] .slide-inner h3 {
        font-size: 1.4375em;
    }
}

.ncs-carousel[data-type="case-study"] .slide-inner h3:before,
.ncs-carousel[data-type="case-study"] .slide-inner h5:before {
    content: '';
    display: block;
    width: 50%;
    max-width: 117px;
    height: 6px;
    background-color: var(--color-unity-indigo);
    margin-bottom: 1rem;
}

/* CAROUSEL PARTNERS */
.ncs-carousel[data-type="partners"] {
    margin-left: auto;
    margin-right: auto;
    max-width: 1088px;
    width: 100%;
}

.ncs-carousel[data-type="partners"] .swiper {
    background: white;
    padding: 10px;
}

@media (min-width: 1600px) {
    .ncs-carousel[data-type="partners"] .swiper {
        height: 700px;
    }

    .ncs-carousel[data-type="partners"] .swiper-wrapper {
        height: 100% !important;
    }
}

.ncs-carousel[data-type="partners"] .swiper-slide {
    height: 200px;
}

@media (min-width: 768px) {
    .ncs-carousel[data-type="partners"] .swiper-slide {
        height: 340px;
    }

    .ncs-carousel[data-type="partners"] .swiper-slide:not(:last-child) {
        border-right: 1px solid var(--color-border-lt-grey);
    }
}

@media (min-width: 1600px) {
    .ncs-carousel[data-type="partners"] .swiper-slide {
        border-bottom: 1px solid var(--color-border-lt-grey);
    }

    .ncs-carousel[data-type="partners"] div:last-child:nth-child(odd),
    .ncs-carousel[data-type="partners"] div:nth-last-child(2):nth-child(odd),
    .ncs-carousel[data-type="partners"] div:last-child:nth-child(even) {
        border-right: none;
    }

    .ncs-carousel[data-type="partners"] .swiper-slide:nth-child(even) {
        border-bottom: none;
    }

    .ncs-carousel[data-type="partners"] .swiper-slide:not(:first-child):nth-child(odd):after {
        content: '';
        position: absolute;
        display: block;
        width: 40px;
        height: 40px;
        background-repeat: no-repeat;
        background-position: center;
        background-image: url(../images/ic-dot-deco.svg);
        background-color: white;
        bottom: 0;
        left: 0;
        transform-origin: center center;
        transform: translate(-50%, 50%);
        z-index: 0;
    }

    .ncs-carousel[data-type="partners"] .swiper-slide:nth-child(2):before {
        content: none;
    }
}

.ncs-carousel[data-type="partners"] .partner-cell {
    display: block;
    position: relative;
    height: 100%;
    transition: background-color 0.3s ease;
    padding: 5px;
    z-index: 1;

}

.ncs-carousel[data-type="partners"] .partner-cell img {
    object-fit: scale-down;
    object-position: center;
    max-height: 100px;
    display: block;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    height: 40%;
    width: calc(100% - 0.5rem);
    background: white;
    margin: 0 auto;
    transition: height 0.3s ease, transform 0.3s ease, width 0.3s ease, top 0.3s ease;
}

@media (min-width: 992px) {

    .ncs-carousel[data-type="partners"] .partner-cell:hover img {
        max-width: 100%;
        position: relative;
        top: 0;
        transform: translateY(0);
        height: 80px;
        width: 100%;

    }

}

@media (max-width: 991px) {
    .ncs-carousel[data-type="partners"] .partner-cell>div {
        display: none;
    }
}

@media (min-width: 992px) {
    .ncs-carousel[data-type="partners"] .partner-cell:hover {
        background-color: var(--background-cyan);
    }

    .ncs-carousel[data-type="partners"] .partner-cell>div {
        position: absolute;
        opacity: 0;
        margin-top: 1rem;
        padding: 0 1rem;
        transition: all 0.3s ease 0.2s;
        font-size: 0.875em;
    }

    .ncs-carousel[data-type="partners"] .partner-cell:hover>div {
        opacity: 1;
        position: relative;
    }
}

.ncs-carousel[data-type="partners"] .partner-cell>* {
    pointer-events: none;
}

/*CAROUSEL CAREER STORIES */
.ncs-carousel[data-type="career-stories"] {
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 992px) {
    .ncs-carousel[data-type="career-stories"] {
        max-width: 80%;
    }
}

@media (min-width: 1600px) {
    .ncs-carousel[data-type="career-stories"] {
        max-width: 1252px;
    }
}

.ncs-carousel[data-type="career-stories"] .swiper-slide {
    width: 100%;
    display: grid;
    grid-auto-flow: row;
}

@media (min-width: 768px) {
    .ncs-carousel[data-type="career-stories"] .swiper-slide {
        grid-template-columns: repeat(2, 1fr);
    }
}

.ncs-carousel[data-type="career-stories"] .swiper-slide img {
    width: 100%;
    height: auto;
    object-fit: cover;
    object-position: center;
}

@media (min-width: 768px) {
    .ncs-carousel[data-type="career-stories"] .swiper-slide img {
        height: 100%;
    }
}

@media (min-width: 992px) {
    .ncs-carousel[data-type="career-stories"] .swiper-slide img {
        height: auto;
    }
}

.ncs-carousel[data-type="career-stories"] .slide-inner,
.ncs-carousel[data-type="career-stories"] .slide-inner h3 {
    color: white;
}

.ncs-carousel[data-type="career-stories"] .slide-inner {
    background-color: var(--background-dk-blue);
    display: flex;
    align-items: center;
    justify-content: center;
}

.ncs-carousel[data-type="career-stories"] .slide-body {
    max-width: 440px;
    margin: 4.5rem 2rem 1.5rem 2rem;
    padding: 1em 0;
    position: relative;
}

@media (min-width: 768px) {
    .ncs-carousel[data-type="career-stories"] .slide-body {
        padding: 1em 0;
    }
}

.ncs-carousel[data-type="career-stories"] .slide-body::before,
.ncs-carousel[data-type="career-stories"] .slide-body::after {
    content: "";
    position: absolute;
    display: inline-block;
    width: 65%;
    height: calc(64px + 20px);
    background-image: url(../images/ic-quote.svg);
    background-repeat: no-repeat;
    background-size: 28px 26px;
    background-position: right 1rem;
    border-top: 1px white solid;
}

@media (min-width: 768px) {

    .ncs-carousel[data-type="career-stories"] .slide-body::before,
    .ncs-carousel[data-type="career-stories"] .slide-body::after {
        background-size: 71px 64px;
        background-position: right bottom;
    }
}

.ncs-carousel[data-type="career-stories"] .slide-body::before {
    transform: scale(-1) translateY(100%);
    top: 0;

}

.ncs-carousel[data-type="career-stories"] .slide-body::after {
    right: 0;

}

.ncs-carousel[data-type="career-stories"] .slide-body a {
    margin-top: 1em;
}

@media (min-width: 992px) {
    .ncs-carousel[data-type="career-stories"] .slide-body a {
        position: absolute;
        margin-top: 1em;
    }
}

.ncs-carousel .bottom,
.ncs-carousel[data-type="career-stories"] .bottom {
    position: relative;
}

@media (min-width: 992px) {

    .ncs-carousel .bottom .carousel-control,
    .ncs-carousel[data-type="career-stories"] .bottom .carousel-control {
        position: absolute;
        right: 0;
        top: 0;
    }
}

.ncs-carousel[data-type="career-stories"] .quote>* {
    font-weight: 300 !important;
}


/* CAROUSEL CARDS */
.ncs-carousel[data-type="cards"] .swiper-slide {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.ncs-carousel[data-type="cards"] .swiper-slide .box-content-white {
    display: flex;
    flex-direction: column;
}

.ncs-carousel[data-type="cards"] .swiper-slide .box-content-white a {
    margin-top: auto;
    align-self: flex-start;
}

.ncs-carousel[data-type="auto-view"] .swiper {
    overflow: initial;
    position: relative;
    z-index: 1;
}

.ncs-carousel[data-type="auto-view"] .swiper-slide {
    width: auto;
    height: auto;
}

.ncs-carousel[data-type="auto-view"] .carousel-control {
    justify-content: center;
    color: currentColor;
    line-height: 1;
    transition: opacity 0.3s ease-out;
    -webkit-transition: opacity 0.3s ease-out;
    -moz-transition: opacity 0.3s ease-out;
    -ms-transition: opacity 0.3s ease-out;
    -o-transition: opacity 0.3s ease-out;
    gap: 0;
}

.ncs-carousel[data-type="auto-view"] .carousel-control .icon {
    font-size: 2em;
    line-height: 1;
    color: var(--color-dark);
}

.ncs-carousel[data-type="auto-view"] .carousel-control .control-prev {
    transform: rotate(0deg) !important;
    -webkit-transform: rotate(0deg) !important;
    -moz-transform: rotate(0deg) !important;
    -ms-transform: rotate(0deg) !important;
    -o-transform: rotate(0deg) !important;
}

.ncs-carousel[data-type="auto-view"] .carousel-control .control-next {
    transform: rotate(180deg) !important;
    -webkit-transform: rotate(180deg) !important;
    -moz-transform: rotate(180deg) !important;
    -ms-transform: rotate(180deg) !important;
    -o-transform: rotate(180deg) !important;
}

.ncs-carousel[data-type="auto-view"] .carousel-control>*:not(:last-child) {
    margin-right: 30px;
}

.ncs-carousel[data-type="auto-view"] .swiper-slide>[class^="card"] {
    height: 100%;
}

.ncs-carousel[data-type="auto-view"] .swiper-slide:last-child {
    margin-right: 0 !important;
}

.ncs-carousel[data-type="articles"] .carousel-pagination {
    width: auto;
}

@media (min-width: 768px) {
    .ncs-carousel[data-type="auto-view"] .carousel-control {
        justify-content: flex-end;
    }
}

@media (min-width: 1200px) {
    .ncs-carousel[data-type="auto-view"].inactive-desktop .swiper-slide:nth-last-child(-n+2) {
        margin-right: 0 !important;
    }

    .ncs-carousel[data-type="auto-view"].inactive-desktop {
        margin-left: 0;
        margin-right: 0;
    }
}

@media (min-width: 1650px) {
    .ncs-carousel[data-type="auto-view"].inactive-desktop .swiper-wrapper {
        justify-content: center;
    }

    .ncs-carousel[data-type="auto-view"].inactive-desktop {
        margin-left: 0;
        margin-right: 0;
    }
}

/* For special carousel */
@media (min-width: 1650px) {
    .ncs-carousel[data-type="auto-view"].inactive-desktop[data-per-view="4"] .swiper-slide {
        max-width: 337px;
    }
}

/* 
    .ncs-carousel[data-type="auto-view"]
    With class `.ncs-carousel-small`
        Count items:
        - mobile: 2  
        - tablet: 3 
        - laptop: 4 
        - desktop: >= 5
*/
.ncs-carousel.ncs-carousel-small .swiper-slide:not(:last-child) {
    position: relative;
}

.ncs-carousel.ncs-carousel-small .swiper-slide:not(:last-child)::after {
    content: '';
    position: absolute;
    border-right: solid 1px var(--color-border-lt-grey);
    height: calc(100% - 20px);
    top: 10px;
    right: 0;
}

.ncs-carousel.ncs-carousel-small .swiper-slide {
    padding: 10px 40px;
}

.ncs-carousel.ncs-carousel-small .swiper-slide>* {
    width: 240px;
}

@media (max-width: 767.99px) {
    .ncs-carousel.ncs-carousel-small {
        margin-left: 1rem;
        margin-right: 1rem;
    }

    .ncs-carousel.ncs-carousel-small .swiper-slide {
        padding: 10px 0;
    }

    .ncs-carousel.ncs-carousel-small .swiper-slide:not(:nth-last-child(-n+2))::after {
        right: -20px;
    }

    .ncs-carousel.ncs-carousel-small .swiper-slide.swiper-slide-active+.swiper-slide {
        transform: translateX(1px);
        -webkit-transform: translateX(1px);
        -moz-transform: translateX(1px);
        -ms-transform: translateX(1px);
        -o-transform: translateX(1px);
    }

    .ncs-carousel.ncs-carousel-small .swiper-slide>* {
        width: 100%;
    }
}

.theme-cyan .ncs-carousel[data-type="auto-view"] .carousel-control .icon,
.theme-dk-blue .ncs-carousel[data-type="auto-view"] .carousel-control .icon {
    color: var(--color-white);
}


/* MAKE HAPPEN */
/* DROPDOWN */
#make-happen .dropdown {
    display: inline-block;
    margin-bottom: .5rem;
    z-index: 1;
}

#make-happen .dropdown .dropdown-toggle {
    font-size: 2em;
    color: inherit;
    padding: 0;
    font-weight: 700;
    border: none;
    border-bottom: 1px solid var(--color-primary);
    line-height: 1.1;
}

#make-happen .dropdown .dropdown-toggle:after {
    border: none;
    display: inline-block;
    width: 35px;
    height: 12px;
    background-image: url(../images/acc-arrow-down.svg);
    background-repeat: no-repeat;
    background-position: center bottom;
    background-size: contain;
    transform: none;
    position: absolute;
    right: 0;
    bottom: 1rem;
}

@media (min-width: 992px) {
    #make-happen .dropdown .dropdown-toggle {
        font-size: 3.125em;
    }
}

@media (min-width: 1600px) {
    #make-happen .dropdown .dropdown-toggle {
        font-size: 4.375em;
    }

    #make-happen .dropdown .dropdown-toggle:after {
        width: 39px;
        height: 26px;
    }
}

#make-happen .dropdown .dropdown-toggle.wrap {
    white-space: normal;
    text-align: left;
    padding-right: 4rem;
    overflow: hidden;
}

#make-happen .dropdown .dropdown-menu {
    width: 100%;
}

@media (min-width: 768px) and (max-width:991px) {
    #make-happen img {
        max-width: 80%;
    }
}

#make-happen .feature-image {
    position: relative;
}

#make-happen .feature-image img {
    visibility: hidden;
    opacity: 0;
    height: 0;
    max-height: 50vh;
}

@media (min-width: 992px) {
    #make-happen .feature-image img {
        max-height: 73vh;
    }
}

#make-happen .feature-image img.active {
    visibility: visible;
    height: auto;
}

#make-happen .temp-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

#make-happen div[data-reveal-body],
#make-happen div[data-reveal-body] .drop-down-toggle {
    color: var(--color-dk-blue);
    transition: color .3s ease;
}

#make-happen div[data-reveal-body] .dropdown-toggle {
    border-color: white;
    transition: border-color .3s ease;
}

#make-happen div[data-reveal-body].light,
#make-happen div[data-reveal-body].light h2,
#make-happen div[data-reveal-body].light h3 {
    color: white
}

#make-happen div[data-reveal-body].light .dropdown .dropdown-toggle {
    color: var(--color-primary);
}

#make-happen h3 {
    font-size: var(--h6-size-mobile);
}

@media (min-width: 992px) {
    #make-happen h3 {
        font-size: var(--h6-size-lg);
    }
}

@media (min-width: 1600px) {
    #make-happen h3 {
        font-size: var(--h6-size);
    }
}

/* dropdown-complex */

.dropdown-complex {
    position: relative;
}

.dropdown-complex .dropdown-toggle {
    position: relative;
    color: var(--color-gray);
    padding: 16px 0;
    width: 100%;
    height: 50px;
    text-align: left;
    justify-content: flex-start;
    align-items: baseline;
    border-bottom: 1px solid var(--color-gray);
}

.dropdown.dropdown-complex .dropdown-toggle::after {
    position: absolute;
    right: 16px;
    top: 15px;
}

.dropdown-complex .badge {
    margin-left: 16px;
    padding: 6px 16px;
}

.dropdown-complex .dropdown-menu {
    border: none;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.08);
    padding: 30px 80px 27px 30px;
    left: 12px;
    border-radius: 0 0 0 20px;
    -webkit-border-radius: 0 0 0 20px;
    -moz-border-radius: 0 0 0 20px;
    -ms-border-radius: 0 0 0 20px;
    -o-border-radius: 0 0 0 20px;
}

.dropdown-complex .dropdown-menu a.close {
    display: flex;
    position: absolute;
    top: 0;
    right: 0;
    height: 54px;
    width: 56px;
    overflow: hidden;
}

.dropdown-complex .dropdown-menu a.close:before {
    content: "";
    display: block;
    position: absolute;
    background-color: var(--background-dk-blue);
    background-image: url(../images/ic-close.svg);
    background-repeat: no-repeat;
    background-position: calc(50% - 24px) calc(50% + 24px);
    background-size: 16px;
    width: 200%;
    height: 200%;
    border-radius: 50%;
    bottom: 0;
    left: 0;
}

.dropdown-complex .dropdown-menu li.active .tag {
    background: yellowgreen;
}

.dropdown-complex .dropdown-menu li.active .tag-remove {
    display: block;
}

@media screen and (min-width: 992px) {
    .dropdown-complex .dropdown-menu {
        width: 560px;
    }
}

@media screen and (min-width: 1650px) {
    .dropdown-complex .dropdown-menu {
        width: 720px;
    }
}

/* Tag */
.tag {
    font-size: 0.875em;
    padding: 3px 16px;
    border: solid 1px var(--color-border-lt-grey);
    display: inline-flex;
    align-items: center;
    border-radius: 10px;
    cursor: pointer;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}

.tag-remove {
    width: 12px;
    height: 12px;
    background-image: url(../images/ic-close.svg);
    background-size: cover;
    margin-left: 8px;
    display: none;
}

.tag.active {
    background: var(--color-unity-indigo);
    color: var(--color-white);
    border-color: var(--color-unity-indigo);
}

.tag.active .tag-remove {
    display: block;
}

/* End tag */

/* PARTNERS */
div[data-blur] {
    transition: filter 0.3s ease;
}

div[data-blur='true'] {

    filter: blur(0.5rem);
}

div[data-partner-count]:before {
    content: attr(data-partner-count);
    font-size: 31.25em;
    font-weight: 700;
    opacity: 0.3;
    color: var(--color-primary);
    position: absolute;
    left: 0;
    top: -83px;
    line-height: 1em;
    letter-spacing: -50px;
    z-index: -1;

}

div.section:nth-child(even) div[data-partner-count]:before {
    left: auto;
    right: 0;
}

.partners-box {
    margin-top: 5rem;
    margin-left: auto;
    margin-right: auto;
    background: white;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 3em;
    row-gap: 3em;
    max-width: 1088px;
    width: 100%;
}

@media (min-width: 768px) {
    .partners-box {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 992px) {
    .partners-box {
        grid-template-columns: repeat(4, 1fr);
    }
}

.partners-box img {
    max-height: 50px;
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    pointer-events: none;
}

/*SPECIALIST POPUP*/
.specialist-popup {
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    left: 100%;
    right: 0;
    bottom: 0;
    overflow: hidden;
    z-index: 150000;
}

.specialist-popup:before {
    content: '';
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
}

.specialist-popup.active {
    left: 0;
}

.specialist-popup>div {
    max-width: 860px;
    background: white;
    margin: 1.75rem;
    padding: 70px 2rem 0 2rem;
    border: 1px solid var(--color-white);
    position: relative;
    overflow-y: auto;
    max-height: 85vh;
}

.specialist-popup .inner {
    padding-bottom: 3rem;
}

.specialist-popup .inner .partner-badge-logo-wrapper>img {
    max-height: 80px;
}

@media (max-width: 767.99px) {
    .specialist-popup>div {
        margin: 0;
        align-self: flex-end;
        border: none;
        width: 100%;
    }

    .specialist-popup .inner {
        padding-bottom: 32px;
    }
}

@media (min-width: 992px) {
    .specialist-popup>div {
        padding: 35px 40px 0 40px;
        margin: 2em;
        min-width: 660px;
    }

    .specialist-popup .inner {
        padding-bottom: 40px;
    }
}

.specialist-popup .social-box {
    margin-top: 3em;
}

.specialist-popup .social-bar {
    display: inline-grid;
    grid-auto-flow: column;
    column-gap: 1.5em;
}

.specialist-popup .social-bar>* {
    border-color: var(--color-primary);
}

.specialist-popup a.close {
    display: flex;
    position: absolute;
    top: 0;
    right: 0;
    height: 50px;
    width: 50px;
    overflow: hidden;
}

.specialist-popup a.close:before {
    content: "";
    display: block;
    position: absolute;
    background-color: var(--background-dk-blue);
    background-image: url(../images/ic-close.svg);
    background-repeat: no-repeat;
    background-position: calc(50% - 20px) calc(50% + 20px);
    background-size: 14px;
    width: 200%;
    height: 200%;
    border-radius: 50%;
    top: -100%;
}

.specialist-popup .inner>img,
.specialist-popup .partner-badge-logo-wrapper img {
    margin-bottom: 20px;
}

.specialist-popup .badge {
    position: absolute;
    top: 0;
    left: 0;
}

@media (min-width: 992px) {

    .specialist-popup .inner>img,
    .specialist-popup .partner-badge-logo-wrapper img {
        margin-bottom: 2.5rem;
    }

    .specialist-popup a.close {
        height: 70px;
        width: 70px;
    }

    .specialist-popup a.close:before {
        background-position: calc(50% - 28px) calc(50% + 28px);
        background-size: 16px;
    }
}

/*PARTNER DETAILS */
.partner-title-logo {
    max-height: 150px;
}

@media (min-width: 768px) {
    .partner-title-logo {
        max-height: initial;
    }
}

/* CAREER*/
.section[data-category="career-teams"] button {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    text-align: left;
    font-weight: 300;
    transition: all 0.3s ease;
    outline: none;
}

.section[data-category="career-teams"] button:after {
    display: block;
    content: attr(data-title);
    font-weight: bold;
    height: 0;
    overflow: hidden;
    visibility: hidden;
}

.section[data-category="career-teams"] button:hover,
.section[data-category="career-teams"] button.active {
    font-weight: 700;
    color: var(--color-dk-blue);
}

@media (min-width: 992px) {
    .section[data-category="career-teams"] button {
        font-size: 1em;
    }
}

@media (min-width: 1600px) {
    .section[data-category="career-teams"] button {
        font-size: 1.125em;
    }
}

.section[data-category="career-teams"] .content {
    max-width: 300px;
    margin-top: 1.5rem;
}

.section[data-category="career-teams"] .content .title {
    font-size: var(--h6-size-mobile);
    font-weight: 700;
    color: var(--color-dk-blue);
}

@media (min-width: 992px) {
    .section[data-category="career-teams"] .content .title {
        font-size: var(--h6-size-lg);
    }
}

@media (min-width: 1600px) {
    .section[data-category="career-teams"] .content .title {
        font-size: var(--h6-size);
    }
}

div[data-type="career-opportunities"] {
    display: grid;
    justify-content: center;
    align-items: center;
    grid-template-rows: min-content min-content;
    row-gap: 2em;
    column-gap: 2em;
}

@media (min-width: 992px) {
    div[data-type="career-opportunities"] {
        grid-template-rows: 1fr;
        grid-template-columns: 0.7fr 1.5fr;
    }
}

@media (min-width: 1600px) {
    div[data-type="career-opportunities"] {
        grid-template-rows: 1fr;
        grid-template-columns: 1fr 1.5fr;
    }
}

.career-opportunities-item,
.career-opportunities-item a {
    position: relative;
    display: block;
    height: 100%;
}

@media (min-width: 992px) {

    .career-opportunities-item,
    .career-opportunities-item a {
        display: inline-block;
    }
}

.career-opportunities-item {
    width: 100%;
    height: 450px;
}

@media (min-width: 768px) {
    .career-opportunities-item {
        max-width: 307px;
    }

    div[data-type="career-opportunities"][data-layout="1"] .career-opportunities-item {
        max-width: 100%;
    }
}


@media (min-width: 992px) {
    .career-opportunities-item {
        height: 550px;
    }
}

@media (min-width: 992px) and (max-height:700px) {
    .career-opportunities-item {
        height: 450px;
    }
}

@media (min-width: 1600px) {
    .career-opportunities-item {
        height: 650px;
    }
}

.career-opportunities-item a {
    width: 100%;
}

.career-opportunities-item div.background {
    height: 100%;
    width: 100%;
}

.career-opportunities-item div.background {
    display: inline-block;
    height: 100%;
    width: 100%;
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
}

.career-opportunities-item div.background::after {
    content: "";
    display: block;
    position: absolute;
    width: 100%;
    height: 30%;
    bottom: 0;
    left: 0;
    background: linear-gradient(to top, #000, rgba(0, 0, 0, 0));
}

.career-opportunities-item a>*:nth-child(2) {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    color: white;
    padding: 1em 1em 2em 1em;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

@media (min-width: 768px) {
    div[data-type="career-opportunities"][data-layout="1"] .career-opportunities-item a>*:nth-child(2) {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    div[data-type="career-opportunities"][data-layout="1"] .career-opportunities-item a>*:nth-child(2) h3,
    div[data-type="career-opportunities"][data-layout="1"] .career-opportunities-item a>*:nth-child(2) span {
        margin: 0 !important;
    }
}

.career-opportunities-item h3 {
    font-size: var(--h6-size-mobile);
}

@media (min-width: 992px) {
    .career-opportunities-item h3 {
        font-size: var(--h6-size);
    }
}

/*CAREER JOB DETAILS*/
.section .job-details-holder .jobDisplay .jobdescription ul {
    margin-block-end: 0px;
}

/*CAREER DETAILS*/
.section[data-category="career-story"] h6 {
    margin-top: 2em;
}

/*CAREER NUCLEUS*/
.image-w-text-box>div:nth-child(2) {
    z-index: 2;
}

.image-w-text-box>div:nth-child(2)>div {
    background: white;
    padding-top: 2rem;
}

@media (min-width: 768px) {
    .image-w-text-box>div:nth-child(2)>div {
        padding-top: 2rem;
        padding-right: 6rem;
    }
}

@media (min-width: 992px) {
    .image-w-text-box>div:nth-child(2)>div {
        background: white;
        padding-top: 1rem;
        padding-right: 0;
    }
}

.image-w-text-box:not(:first-child) {
    margin-top: 3rem;
}

@media (min-width: 992px) and (max-width:1599px) {
    .image-w-text-box:last-child {
        margin-bottom: 3rem;
    }

    .image-w-text-box .heading-n {
        font-size: 2em;
    }
}

@media (min-width: 992px) {
    .image-w-text-box>div:nth-child(2)>div {
        padding: 2rem calc(3rem + 12px) 2rem 2rem;
    }

    .image-w-text-box>div:nth-child(2) {
        transform: translate(-14%, 4rem);
        -webkit-transform: translate(-14%, 4rem);
        -moz-transform: translate(-14%, 4rem);
        -ms-transform: translate(-14%, 4rem);
        -o-transform: translate(-14%, 4rem);
    }

    .image-w-text-box[reverse]>div:nth-child(2)>div {
        padding: 2rem 2rem 2rem calc(3rem + 12px);
    }

    .image-w-text-box[reverse]>div:nth-child(2),
    .image-w-text-box:nth-child(even)>div:nth-child(2) {
        transform: translate(14%, 4rem);
        -webkit-transform: translate(14%, 4rem);
        -moz-transform: translate(14%, 4rem);
        -ms-transform: translate(14%, 4rem);
        -o-transform: translate(14%, 4rem);
    }

    .image-w-text-box:not(:first-child) {
        margin-top: 150px;
    }
}

@media (min-width: 1600px) {
    .image-w-text-box>div:nth-child(2)>div {
        padding: 3rem;
    }

    .image-w-text-box[reverse]>div:nth-child(2)>div {
        padding: 3rem;
    }

    .image-w-text-box>div:nth-child(2) {
        transform: translate(-16%, 2rem);
        -webkit-transform: translate(-16%, 2rem);
        -moz-transform: translate(-16%, 2rem);
        -ms-transform: translate(-16%, 2rem);
        -o-transform: translate(-16%, 2rem);
    }

    .image-w-text-box[reverse]>div:nth-child(2),
    .image-w-text-box:nth-child(even)>div:nth-child(2) {
        transform: translate(16%, 2rem);
        -webkit-transform: translate(16%, 2rem);
        -moz-transform: translate(16%, 2rem);
        -ms-transform: translate(16%, 2rem);
        -o-transform: translate(16%, 2rem);
    }
}

/* MASONRY */
.masonry .container-xxl {
    max-width: 1400px;
}

.masonry .grid-item .card {
    display: block;
    position: relative;
    margin: 1.5rem auto;
    border: 1px solid var(--color-border-dk-blue);
}

.masonry .grid-item .card:before {
    content: '';
    display: block;
    width: 100%;
    height: 8px;
    background-color: var(--color-border-dk-blue);
}

.masonry .grid-item img.thumbnail {
    width: 100%;
    height: auto;
}

.masonry .grid-item .details {
    padding: 1.5rem;
}

.masonry .grid-item .details h3 {
    font-size: var(--h6-size-mobile);
}

@media (min-width: 992px) {
    .masonry .grid-item .details h3 {
        font-size: var(--h6-size);
    }
}

.masonry .grid-item .overlay {
    padding-top: 8px;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: #002158E6;
    color: white;
    transition: opacity 0.3s ease;
    opacity: 0;
    visibility: hidden;
}

.masonry .grid-item .overlay h3 {
    color: white;
}

.masonry .grid-item .card:hover .overlay,
.masonry .grid-item .overlay.active {
    opacity: 1;
    visibility: visible;
}

.masonry .grid-item .overlay:before {
    content: none;
    background-image: url(../images/ic-ncs-hash-watermark-primary.svg);
    background-repeat: no-repeat;
    background-size: 38% auto;
    background-position: center;
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
}

.masonry .grid-item .overlay .social,
.masonry .grid-item .overlay .title {
    font-size: var(--h5-size-mobile);
    padding: 1.5rem;
    line-height: 1.5em;
}

.masonry .grid-item .overlay .social {
    padding-bottom: 7rem;
    margin: auto;
    text-align: center;
}

.masonry .grid-item .overlay .title {
    padding-bottom: 2rem;
    margin: 0;
}

.masonry .grid-item .overlay .social a,
.masonry .grid-item .overlay .social a:before {
    background-color: transparent;
    border: none !important;
}

.masonry .grid-item .overlay .social i {
    display: inline-flex;
    width: 54px;
    height: 54px;
    border: 1px solid white;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
}

.masonry .grid-item .overlay img {
    max-width: 38%;
}

@media (min-width: 992px) {

    .masonry .grid-item .overlay .title,
    .masonry .grid-item .overlay .social {
        font-size: 1.3125em;
    }
}

@media (min-width: 992px) {
    .masonry .grid-item .overlay .title.masonry {
        font-size: 1.15em !important;
        overflow: auto;
    }
}

.masonry .grid-item .overlay .title.masonry {
    font-size: 1.25em;
    overflow: auto;
}

.masonry .grid-item .overlay .title.masonry::-webkit-scrollbar {
    width: 0.3em !important;
}

.masonry .grid-item .overlay .title.masonry::-webkit-scrollbar-thumb {
    background-color: white !important;
}

.masonry-show-more {
    text-decoration: underline;
    letter-spacing: 0.2em;
    font-weight: 300;
    text-transform: capitalize;
    color: var(--color-link-global)
}

.masonry .square {
    padding-bottom: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.masonry .leader,
.masonry .leader p {
    line-height: 1.1em;
    margin-bottom: 0;
}

.masonry .details {
    min-height: 151px;
}

/*ARTICLES*/
.article h3 {
    font-size: var(--h6-size-mobile);
    margin-top: 2rem;
}

.article .series-header {
    font-weight: 400;
}

.article a:not(.arrow) {
    color: var(--color-link-global);
}

.article ul {
    overflow: hidden;
}

.article a:not(.arrow):hover {
    text-decoration: underline;
}

table.table-border tbody,
table.table-border td,
table.table-border tfoot,
table.table-border th,
table.table-border thead,
table.table-border tr {
    border-width: inherit;
    border-color: var(--color-black);
}

table.table-border td {
    padding: 0.5em 1em;
}

@media (min-width: 992px) {
    .article h3 {
        font-size: var(--h6-size);
    }
}

.article-share {
    display: flex;
    flex-direction: column;
    padding-bottom: var(--section-vpadding-sm);
    padding-left: 2.5rem;
    padding-right: 2.5rem;
    align-items: center;
    opacity: 1;
    transition: opacity 0.3s ease;

}

@media (max-width: 991.98px) {
    .article-share {
        opacity: 1 !important;
    }
}

.article-link {
    display: flex;
    flex-direction: column;
    padding-bottom: var(--section-vpadding-sm);
    align-items: left;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.article-link .share-icons .share-icons-item {
    display: inline-flex;
    color: var(--color-dk-blue);
    height: 40px;
    width: 40px;
    border-radius: 50%;
    border: 1px solid var(--color-dk-blue);
    justify-content: center;
    align-items: center;
}

.linkedin-text {
    font-weight: bold;
    padding-top: 0.7rem;
    margin-left: -4%;
}

.linkedin-text a {
    color: var(--color-dk-blue);
    text-decoration: underline;
}

@media (max-width: 992px) {
    .linkedin-text {
        margin-left: 8px !important;
    }
}

@media (min-width: 992px) {
    .article-share.sticky {
        display: initial;
        position: fixed;
        right: 2.5rem;
        top: 50%;
        width: 22%;
        transform: translateY(-50%);
        padding: 60px 0;
        opacity: 0;
    }
}

@media (min-width: 1600px) {
    .article-share.sticky {
        width: 18%;
        right: calc((100% - 1600px) / 2);
    }
}

.article-share.sticky .share-icons {
    border-top: 1px solid #082155;
    border-bottom: 1px solid #082155;
    padding: 1rem 0;
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.article-share .share-icons .share-icons-item {
    display: inline-flex;
    color: var(--color-primary);
    height: 40px;
    width: 40px;
    border-radius: 50%;
    border: 1px solid var(--color-primary);
    justify-content: center;
    align-items: center;
}

.article-share.sticky .share-podcast-icons {
    border-top: 1px solid #082155;
    border-bottom: 1px solid #082155;
    padding: 1rem 0;
    display: flex;
}

.article-share .share-podcast-icons a {
    display: inline-flex;
    color: var(--color-primary);
    height: 40px;
    width: 40px;
}

.article-share .share-podcast-icons a+a {
    margin-left: 1rem;
}

@media (min-width: 992px) {
    .article-share .share-icons .share-icons-item+.share-icons-item {
        margin-left: 0;
    }
}

.article-share .article-listing {
    display: none;
    margin-top: 2rem;
    padding: 0;
    list-style: none;
    font-size: 0.875em;
    font-weight: 500;
}

.article-share .article-listing li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.article-share .article-listing li:hover {
    cursor: pointer;
}

.article-share .article-listing li::before {
    content: '';
    display: block;
    position: absolute;
    left: 0;
    top: 7px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 1px solid black;
    transition: all 0.3s ease;
}

.article-share .article-listing li.active {
    color: var(--color-primary);
}

.article-share .article-listing li.active::before {
    border-color: var(--color-primary);
    background-color: var(--color-primary);
}

@media (min-width: 992px) {

    .article-share .article-listing {
        display: block;
    }
}

.article-share .media-query a {
    font-weight: 500;
    font-size: 1.25em;
}

@media (min-width: 992px) {
    .article-share .media-query p {
        font-size: 1.25em;
    }

    .article-share .media-query a {
        font-size: 1.5625em;
    }
}

.image-layout {
    margin-bottom: 1rem;
}
@media (max-width: 991px) {
    .image-layout {
        width: 100% !important;
    }
}

@media (min-width: 992px) {
    .image-layout {
        padding-right: 2.5rem;
    }
}

/* KNOWLEDGE CENTRE ARTICLE LISTING*/
.article-card {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    color: white !important;
    padding: 1.5rem;
    height: 300px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}


@media (min-width: 1600px) {
    .article-card {
        height: 349px;
    }
}

.article-card.default {
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url(../images/bg-arrticle-card-default.jpg);
    background-size: cover, cover;
}

.article-card h3 {
    font-size: var(--h7-size-mobile);
    text-transform: lowercase;
}

@media (min-width: 992px) {
    .article-card h3 {
        font-size: var(--h7-size);
    }
}

.article-card[data-time]::after {
    content: attr(data-time);
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    background: var(--color-badge-global);
    padding: 0.25rem 1rem;
    color: white;
    font-size: 0.875em;
    font-weight: 500;
    border-bottom-left-radius: 10px;
    min-width: 116px;
    text-align: center;
}

.article-card.webinar[data-time]::after {
    content: attr(data-time);
}

.article-dropdown button:focus {
    box-shadow: none !important;
}

.article-dropdown:nth-child(1) {
    z-index: 3;
}

.article-dropdown:nth-child(2) {
    z-index: 2;
}

.article-dropdown:nth-child(3) {
    z-index: 1;
}

.ncs-carousel[data-type="articles"] .swiper-slide {
    display: grid;
    row-gap: 1rem;
    column-gap: 1rem;
}

@media (min-width: 768px) {
    .ncs-carousel[data-type="articles"] .swiper-slide {
        grid-template-columns: repeat(2, 1fr);
    }
}

/*INDUSTRIES*/
.section[data-category="industries"] h2 {
    transition: all 0.3s ease;
    text-transform: lowercase;
    font-size: var(--h6-size-mobile);
    font-weight: 400;
}

.section[data-category="industries"] h2:hover {
    cursor: pointer;
}


.section[data-category="industries"] h2.active {
    color: var(--color-primary);
    font-size: 2em;
    font-weight: 700;
}

.section[data-category="industry"] h2 {
    color: var(--color-primary) !important;
}

.section[data-category="industry"] h2::before,
.section[data-category="industries"] h2::before {
    content: '';
    display: block;
    height: 0;
    width: 0;
    background-color: var(--color-primary);
    margin: 0;
    transition: all 0.6s ease;
}

.section[data-category="industry"] h2::before,
.section[data-category="industries"] h2.active::before {
    height: 6px;
    width: 150px;
    margin: 1rem 0;
    transition: all 0.6s ease;
}

@media (min-width: 992px) {
    .section[data-category="industries"] h2 {
        font-size: var(--h6-size);
    }

    .section[data-category="industries"] h2.active {
        font-size: 2.8125em;
    }
}

@media (min-width: 1600px) {
    .section[data-category="industries"] h2.active {
        font-size: 3.4375em;
    }
}

.section[data-category="industry"] h3,
.section[data-category="industries"] h3 {
    font-size: var(--h6-size-mobile);
}

@media (min-width: 992px) {

    .section[data-category="industry"] h3,
    .section[data-category="industries"] h3 {
        font-size: var(--h6-size);
    }
}

.section[data-category="industries"] .description {
    position: relative;
    overflow: hidden;
    height: 0;
    transition: height 0.6s ease;
}

.section[data-category="industries"] .description>div {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}

.section[data-category="industries"] img {
    opacity: 0;
    transition: opacity 0.3s ease;
    margin: 0 auto;
    width: 100%;
    height: auto;
}

.section[data-category="industries"] img:not(:first-child) {
    position: absolute;
    top: 0;
    left: 0;
    max-width: 100%;
    height: auto;
    padding: 0 calc(1.5rem / 2);
}

.section[data-category="industries"] img.active {
    opacity: 1;
}

/* INDUSTRY DETAILS */
.section[data-category="thought-leaders"] {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.section[data-category="thought-leaders"] .leader-card {
    display: grid;
    position: relative;
    border: 1px solid var(--color-border-dk-blue);
    border-top-width: 8px;
    grid-template-columns: 1fr;
    grid-template-rows: 135px 300px;
    width: 300px;
    margin: 1.5rem auto 0 auto;
}

.section[data-category="thought-leaders"] .leader-card p {
    line-height: 1.1rem;
}

@media (min-width: 992px) {
    .section[data-category="thought-leaders"] .leader-card {
        grid-template-columns: 396px;
        grid-template-rows: 130px 396px;
        width: min-content;
    }

    .section[data-category="thought-leaders"][data-layout="2"] .leader-card {
        grid-template-columns: 396px;
        grid-template-rows: 130px 396px;
    }

    .section[data-category="thought-leaders"][data-layout="3"] .leader-card,
    .section[data-category="thought-leaders"][data-layout="4"] .leader-card,
    .section[data-category="thought-leaders"][data-layout="5"] .leader-card {
        grid-template-columns: 280px;
        grid-template-rows: 130px 280px;
    }

    .section[data-category="thought-leaders"] .masonry .details {
        min-height: 130px;
    }
}

@media (min-width: 992px) and (max-height:700px) {
    .section[data-category="thought-leaders"] .leader-card {
        grid-template-columns: 350px;
        grid-template-rows: 130px 350px;
    }

    .section[data-category="thought-leaders"][data-layout="2"] .leader-card {
        grid-template-columns: 350px;
        grid-template-rows: 130px 350px;
    }
}

@media (min-width: 1600px) {

    .section[data-category="thought-leaders"][data-layout="3"] .leader-card,
    .section[data-category="thought-leaders"][data-layout="4"] .leader-card,
    .section[data-category="thought-leaders"][data-layout="5"] .leader-card {
        grid-template-columns: 360px;
        grid-template-rows: 140px 360px;
    }
}

.section[data-category="thought-leaders"] .leader-card>*:first-child {
    margin-top: 0;
}

.section[data-category="thought-leaders"] .leader-card>*:first-child,
.section[data-category="thought-leaders"] .leader>a>.details {
    background-color: white;
}

.section[data-category="thought-leaders"] .leader-card>*:first-child,
.section[data-category="thought-leaders"] .leader .details {
    padding: 1rem;
}

.section[data-category="thought-leaders"] .leader-card>*:last-child {
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
}

.section[data-category="thought-leaders"] .leader-card h3 {
    font-size: var(--h6-size-mobile);
}

@media (min-width: 992px) {
    .section[data-category="thought-leaders"] .leader-card h3 {
        font-size: var(--h6-size-lg);
    }
}

@media (min-width: 1600px) {
    .section[data-category="thought-leaders"] .leader-card h3 {
        font-size: var(--h6-size);
    }
}

.section[data-category="thought-leaders"] .section-body {
    display: grid;
    align-items: center;
    justify-content: center;
}

@media (min-width: 992px) {
    .section[data-category="thought-leaders"] .section-body {
        display: grid;
        grid-template-columns: 0.6fr auto;
        grid-template-rows: 1fr;
        justify-content: center;
        align-items: center;
        column-gap: 2rem
    }

    .section[data-category="thought-leaders"][data-layout]:not([data-layout="1"]):not([data-layout="2"]) .section-body {
        display: flex;
        flex-direction: column;
    }
}

.section[data-category="thought-leaders"] .section-body>*:first-child {
    text-align: center;
}

@media (min-width: 768px) {
    .section[data-category="thought-leaders"] .section-body>*:first-child {
        margin-bottom: 1.5rem;
    }

    .section[data-category="thought-leaders"][data-layout]:not([data-layout="1"]):not([data-layout="2"]) .section-body>*:first-child {
        text-align: center;
    }

    .section[data-category="thought-leaders"][data-layout]:not([data-layout="1"]) .section-body>*:last-child .leader-card {
        margin: 0.5rem;
    }
}

@media (min-width: 768px) and (max-width:991px) {
    .section[data-category="thought-leaders"][data-layout]:not([data-layout="1"]) .section-body>*:last-child {
        display: grid !important;
        grid-auto-flow: row;
        grid-template-columns: repeat(2, 1fr);
        width: auto;
        margin: 0 auto;
    }
}

@media (min-width:992px) {
    .section[data-category="thought-leaders"][data-layout]:not([data-layout="1"]) .section-body>*:last-child {
        display: flex;
        flex-wrap: wrap;
    }

    .section[data-category="thought-leaders"][data-layout="4"] .section-body>*:last-child,
    .section[data-category="thought-leaders"][data-layout="5"] .section-body>*:last-child {
        width: 100%;
        display: grid !important;
        grid-template-columns: repeat(auto-fit, 280px);
        grid-auto-flow: row;
        gap: 1rem;
        justify-content: center;
    }

    .section[data-category="thought-leaders"][data-layout="4"] .section-body>*:last-child .leader-card,
    .section[data-category="thought-leaders"][data-layout="5"] .section-body>*:last-child .leader-card {
        margin: 0 !important;
    }
}

@media (min-width:1600px) {

    .section[data-category="thought-leaders"][data-layout="4"] .section-body>*:last-child,
    .section[data-category="thought-leaders"][data-layout="5"] .section-body>*:last-child {
        grid-template-columns: repeat(auto-fit, 360px);
    }
}

.section[data-category="thought-leaders"] .section-body>*:first-child h2 span {
    display: block;
}

@media (min-width: 768px) {
    .section[data-category="thought-leaders"] .section-body>*:first-child h2 span {
        display: inline;
    }

}

@media (min-width: 992px) {

    .section[data-category="thought-leaders"][data-layout="1"] .section-body>*:first-child h2 span,
    .section[data-category="thought-leaders"][data-layout="2"] .section-body>*:first-child h2 span {
        display: block;
    }

    .section[data-category="thought-leaders"][data-layout="1"] .section-body>*:first-child,
    .section[data-category="thought-leaders"][data-layout="2"] .section-body>*:first-child {
        text-align: left;
    }

    .section[data-category="thought-leaders"][data-layout="2"] .section-body {
        grid-template-columns: 0.7fr min-content;
    }

    .section[data-category="thought-leaders"][data-layout]:not([data-layout="1"]) .section-body>*:last-child .leader-card+.leader-card {
        margin-left: 0.5rem;
    }
}

/* STAY CONNECTED */
.section[data-category="stay-connected"] .card-n-title {
    font-size: 1.4375em;
    color: var(--color-primary);
}

@media (min-width: 768px) {
    .section[data-category="stay-connected"] .card-n-title {
        font-size: 1.875em;
    }
}

@media (min-width: 1600px) {
    .section[data-category="stay-connected"] .card-n-title {
        font-size: 2.1875em;
    }
}

/* MAP */
div[data-type="offices"] #map {
    height: 250px;
    border-top-left-radius: 50px;
}

@media (min-width: 768px) {
    div[data-type="offices"] #map {
        height: 400px;
    }
}

@media (min-width: 992px) {
    div[data-type="offices"] #map {
        height: 611px;
    }
}

.offices-container {
    background-color: var(--background-dk-blue);
    color: white;
    padding: 3rem 2rem;
    border-bottom-right-radius: 50px;
}

.offices-container #dd_country_display {
    font-size: var(--h5-size-mobile);
    font-weight: bold;
    color: var(--color-primary);
    letter-spacing: 0.05rem;
    border-bottom-color: white;
}

@media (min-width: 992px) {
    .offices-container #dd_country_display {
        font-size: var(--h5-size);
    }
}

.offices-container #dd_country_display:after {
    border-color: var(--color-primary);
    border-width: 2px;
    transform: translateX(-50%) translateY(100%) scale(1.5) rotate(-45deg);
}

@media (min-width: 992px) {
    .offices-container #dd_country_display:after {
        transform: translateX(-100%) translateY(130%) scale(1.8) rotate(-45deg);
    }
}

#dd_country .dropdown-menu {
    width: 100%;
}

.offices-container .office h3 {
    color: white;
    font-size: var(--h6-size-mobile);
    margin-bottom: 1.5rem;
}

@media (min-width: 992px) {
    .offices-container .office h3 {
        font-size: var(--h6-size);
    }
}

.offices-container .office {
    padding: 1.5rem 0;
}

.offices-container .office:not(:last-child) {
    border-bottom: 1px solid white;
}

@media (min-width: 768px) {
    .offices-container .office:first-child {
        padding-top: 0;
    }
}

@media (min-width: 992px) {
    .offices-container .office {
        padding: 1.5rem;
    }

    .offices-container .office:nth-child(odd) {
        padding-left: 0;
        border-right: 1px solid white;
    }

    .offices-container .office:nth-child(even) {
        padding-right: 0;
    }

    .offices-container .office:nth-child(-n + 2) {
        padding-top: 0;
    }

    .offices-container .office:last-child:nth-child(odd) {
        border-bottom: none;
        padding-bottom: 0;
    }

    .offices-container .office:nth-last-child(2):nth-child(odd),
    .offices-container .office:last-child:nth-child(even) {
        border-bottom: none;
        padding-bottom: 0;
    }
}

.offices-container .listing a {
    width: auto;
    margin-right: 1rem;
}

.offices-container .office .address,
.offices-container .office .phone,
.offices-container .office .fax,
.offices-container .office .email,
.offices-container .office .internet,
.offices-container .office .formLink {
    line-height: 1.1em;
}

@media (min-width: 768px) {

    .offices-container .office .address,
    .offices-container .office .phone,
    .offices-container .office .fax,
    .offices-container .office .email,
    .offices-container .office .internet,
    .offices-container .office .formLink {
        width: auto;
    }
}

.offices-container .office .address {
    display: flex;
}

.offices-container .office .phone,
.offices-container .office .fax,
.offices-container .office .email,
.offices-container .office .internet,
.offices-container .office .formLink {
    display: inline-flex;
}

.offices-container .office .address:before,
.offices-container .office .phone:before,
.offices-container .office .fax:before,
.offices-container .office .email:before,
.offices-container .office .internet::before,
.offices-container .office .formLink:before {
    filter: brightness(0) invert(1);
    margin-right: 0.5rem;
}

.offices-container .office .address.title h3 {
    font-size: 1.125em;
    margin-bottom: 0;
}

.offices-container .office .address.title::before {
    content: none !important;
}

.offices-container .office .address:before {
    content: url(../images/ic-location-marker.svg);
}

.offices-container .office .phone:before {
    content: url(../images/ic-phone.svg);
}

.offices-container .office .fax:before {
    content: url(../images/ic-fax.svg);
}

.offices-container .office .internet:before {
    content: url(../images/ic-internet.svg);
    filter: brightness(0) invert(1);
}

.offices-container .office .email:before {
    content: url(../images/ic-email.svg);
}

.offices-container .office .formLink:before {
    content: url(../images/ic-email.svg);
}

.offices-container .listing a,
.offices-container .office span+span,
.offices-container .office>*+* {
    margin-top: 0.5rem;
}

@media (min-width: 768px) {
    .offices-container .listing a {
        margin-top: 0;
    }

    .offices-container .office span+span {
        margin-top: 0;
        border-left: 1px solid white;
    }
}

.offices-container .listing {
    opacity: 0;
    position: absolute;
    pointer-events: none;
    height: 0;
    width: 0;
    transition: opacity 0.3s ease;
}

.offices-container .listing.active {
    position: relative;
    pointer-events: initial;
    opacity: 1;
    height: auto;
    width: auto;
}

/*EVENT*/
.section[data-category="event"] h2 {
    font-size: var(--h6-size-mobile);
    margin-top: 2rem;
}

@media (min-width: 992px) {
    .section[data-category="event"] h2 {
        font-size: var(--h6-size);
    }
}

/*MILESTONES*/
.milestones {
    margin-left: -1rem;
    margin-right: -1rem;
}

.milestones .year {
    color: var(--color-primary);
    opacity: 0.2 !important;
    font-size: 3.125em;
    font-weight: 700;
    line-height: 1em;
}

@media (min-width:768px) {
    .milestones .year {
        position: absolute;
        font-size: 21.875em;
        left: 0;
        bottom: 2rem;
    }
}

@media (min-width:768px) and (max-width:992px) {
    .milestones .year {
        text-align: center;
        font-size: 15.625em;
    }
}

.milestones .swiper-slide {
    width: 90vw;
}

.milestones .slide-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.milestones .image-container {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 250px;
    height: 250px;
}

@media (min-width:768px) {
    .milestones .image-container {
        width: 366px;
        height: 366px;
    }
}

@media (min-width:992px) {
    .milestones .image-container {
        width: 200px;
        height: 200px;
    }
}

@media (min-width:1600px) {
    .milestones .image-container {
        width: 366px;
        height: 366px;
    }
}

.milestones .image-container::after {
    content: '';
    display: block;
    position: absolute;
    width: 100%;
    height: 1px;
    border-top: 1px dashed #707070;
    z-index: -1;
}

.milestones .swiper-slide:first-child .image-container::after {
    width: 50%;
    right: 0;
}

.milestones .swiper-slide:last-child .image-container::after {
    width: 50%;
    left: 0;
}

.milestones .image-container img {
    width: 70%;
    height: 70%;
    object-fit: contain;
    object-position: center;
    border-radius: 50%;
}

.milestones .swiper-slide .circle {
    width: 100%;
    height: 100%;
    border: 15px solid #262626;
    border-radius: 50%;
    background: white;
    transform: scale(0.3);

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

    transition: all 0.6s ease;
}

@media (min-width:1600px) {
    .milestones .swiper-slide .circle {
        border-width: 20px;
    }
}

.milestones .swiper-slide-active .circle {
    border-color: var(--color-primary);
    transform: scale(1);
}

.milestones .details {
    text-align: center;
    margin-top: 2rem;
    opacity: 0;
    transition: opacity 0.6s ease;
}

.milestones .swiper-slide-active .details {
    opacity: 1;
    transition: opacity 0.6s ease 0.5s;
}

@media (max-width:767px) {
    .milestones .carousel-control {
        margin-top: -2rem;
        z-index: 3;
    }

    .milestones .swiper-slide {
        padding-bottom: 3rem;
    }
}

/*MILESTONES*/
.masthead.oops {
    background-image: url(../images/bg-error.jpg);
    overflow: hidden;
}

.masthead.oops .content {
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.masthead.oops .content:after {
    content: '';
    display: block;
    position: absolute;
    background: white;
    width: 140%;
    padding-bottom: 140%;
    border-radius: 50%;
    z-index: -10;
}

@media (min-width:768px) {
    .masthead.oops .content:after {
        width: 80%;
        padding-bottom: 80%;
    }
}

@media (min-width:992px) {
    .masthead.oops .content:after {
        width: 75%;
        padding-bottom: 75%;
    }
}

.masthead.oops .content {
    text-align: center;
}

.masthead.oops h1 {
    font-size: 5em;
}

@media (min-width:768px) {
    .masthead.oops h1 {
        font-size: 12.5em;
    }
}

@media (min-width:992px) {
    .masthead.curtain h1 {
        font-size: 10em !important;
    }
}

@media (min-width:1600px) {
    .masthead.oops h1 {
        font-size: 18.75em;
    }
}

.masthead.oops p.sub {
    display: inline-block;
    font-size: 1.25em;
    font-weight: 700;
    line-height: 2em;
    letter-spacing: 0.2rem;
    border-top: 1px solid var(--color-primary);
    border-bottom: 1px solid var(--color-primary);
    margin: 1rem 0;
}

@media (min-width:758px) {
    .masthead.oops p.sub {
        font-size: 1.5625em;
        letter-spacing: 0.5rem;
    }
}

@media (min-width:992px) {
    .masthead.oops p.sub {
        font-size: 2.5em;
    }
}

@media (min-width:768px) {
    .masthead.oops p.details {
        width: 50%;
    }
}

/*SERVICES*/
.service-card {
    background-color: var(--background-grey);
    padding: 2rem;
}

@media (min-width: 768px) {
    .service-card {
        height: 100%;
    }
}

/* .service-card h3 {
    color: var(--color-primary);
    font-size: var(--h6-size-mobile);
}

.service-card.main h3 {
    margin-bottom: 0;
    color: var(--color-dk-blue);
    font-weight: 500;
    font-size: 1.5625em;
}

@media (min-width: 992px) {
    .service-card h3 {
        font-size: var(--h6-size-lg);
    }

    .service-card.main h3 {
        font-size: 1.875em;
    }
}

@media (min-width: 1600px) {
    .service-card h3 {
        font-size: var(--h6-size);
    }
} */

@media (min-width: 992px) and (max-width:1599px) {
    .service-card img {
        max-height: 90px;
    }
}

.service-card .service-logo {
    height: 20px;
    width: auto;
    margin-bottom: 1rem;
}

@media (min-width: 992px) {
    .service-card .service-logo {
        height: 25px;
        margin-bottom: initial;
        margin-right: 1rem;
    }
}

@media (min-width: 1600px) {
    .service-card .service-logo {
        height: 33px;
    }
}

/*SERVICES DETAILS */
.section[data-category="services"] .service-block {
    max-width: 536px;
}

/* .section[data-category="services"] .service-block h3{
    text-transform: capitalize;
} */



/* ABOUT US*/
.about-purpose span[target^="purpose"] {
    font-size: clamp(var(--h5-size-mobile), 2.5vw, var(--h5-size));
    text-decoration: underline;
    /* cursor: pointer; */
}

.about-purpose span[target="purpose-1"] {
    background: linear-gradient(to right, var(--background-dk-cyan) 50%, transparent 50%);
    background-size: 200% 100%;
    background-position: 100%;
    transition: background-position 1s ease;
    text-decoration-color: var(--background-dk-cyan);
}

.about-purpose span[target="purpose-2"] {
    background-image: linear-gradient(to right, var(--background-green) 50%, transparent 50%);
    background-size: 200% 100%;
    background-position: 100%;
    transition: background-position 1s ease;
    text-decoration-color: var(--background-green);
}

.about-purpose span[target="purpose-3"] {
    background-image: linear-gradient(to right, var(--color-orange) 50%, transparent 50%);
    background-size: 200% 100%;
    background-position: 100%;
    transition: background-position 1s ease;
    text-decoration-color: var(--color-orange);
}

.about-purpose span[target="purpose-4"] {
    background-image: linear-gradient(to right, var(--background-cyan) 50%, transparent 50%);
    background-size: 200% 100%;
    background-position: 100%;
    transition: background-position 1s ease;
    text-decoration-color: var(--background-cyan);
}

.about-purpose span[target^="purpose"].active {
    background-position: 0;
}

.about-purpose div[ref^="purpose"] p.title {
    font-size: 1.125em;
    display: inline-block;
    font-weight: bold;
    padding: 0 0.5rem;
}

.about-purpose div[ref="purpose-1"] p.title {
    background: var(--background-dk-cyan);
}

.about-purpose div[ref="purpose-2"] p.title {
    background: var(--background-green);
}

.about-purpose div[ref="purpose-3"] p.title {
    background: var(--color-orange);
}

.about-purpose div[ref="purpose-4"] p.title {
    background: var(--background-cyan);
}

.about-purpose .content.blur {
    filter: grayscale(1);
    opacity: 0.2;
}

@media (min-width:992px) {
    .about-purpose .content.blur {
        filter: none;
        opacity: 1;
    }
}

.about-purpose .overlay {
    position: absolute;
    top: 0;
    left: 100vw;
    right: 0;
    bottom: 0;

    display: grid;
    align-items: center;
    justify-items: center;
    /* overflow: hidden; */
    opacity: 0;

    transition: opacity 0.3s ease, left 0s ease 0.3s;
}

.about-purpose .overlay.active {
    left: 0;
    opacity: 1;
    transition: opacity 0.3s ease;
}

@media (min-width:992px) {
    .about-purpose .overlay {
        position: relative;
        overflow: visible;
        opacity: 1;
    }

    .about-purpose span[target^="purpose"].has-content {
        cursor: pointer;
    }
}

.about-purpose div[ref^="purpose"] {
    height: 0;
    overflow: hidden;
    width: auto;
    padding: 1rem 2em;
    background: white;
    opacity: 0;
    position: absolute;
}

@media (min-width:768px) {
    .about-purpose div[ref^="purpose"] {
        width: 60vw;
    }
}

.about-purpose div[ref^="purpose"].active {
    height: auto;
    opacity: 1;
    position: relative;

}

@media (min-width:992px) {
    .about-purpose div[ref^="purpose"] {
        width: auto;
    }
}

.about-purpose button.close {
    display: block;
    height: 80px;
}

.about-purpose button.close:after {
    content: "";
    display: block;
    position: absolute;
    background-color: var(--background-dk-cyan);
    background-image: url(../images/ic-close.svg);
    background-repeat: no-repeat;
    background-position: 30% 75%;
    background-size: 16px;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    top: -75px;
    right: -75px;
}

@media (min-width:992px) {
    .about-purpose button.close {
        display: none;
    }
}

.about-beliefs {
    font-size: clamp(var(--h5-size-mobile), 2.5vw, var(--h5-size));
}

.about-beliefs p {
    font-size: var(--h4-size-mobile);
}

.about-beliefs .row>div p {
    margin-bottom: 0;
}

.about-beliefs .row>div {
    position: relative;
}

.about-beliefs .row>div>.f-letter {
    font-size: clamp(250px, 2.5vw, 350px);
    color: #404FA2;
    font-weight: 700;
    opacity: 0.4;
    line-height: 1;
}

@media (min-width:992px) {
    .about-beliefs .row>div>.f-letter {
        line-height: 1.1;
    }
}

.about-beliefs .flip-card {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 95%;
}

.about-beliefs .flip-card-front {
    display: none;
}

.about-beliefs .flip-card-front>p:first-child {
    text-decoration: underline;
}

.about-beliefs .flip-card-back>p:first-child {
    color: var(--color-orange);
}

@media (min-width:992px) {
    .about-beliefs .flip-card {
        cursor: pointer;
        height: 100%;
        width: 100%;
    }

    .about-beliefs .flip-card:hover .flip-card-inner {
        transform: rotateY(180deg);
    }

    .about-beliefs .flip-card-inner {
        position: relative;
        width: 100%;
        height: 100%;
        text-align: center;
        transition: transform 0.8s;
        transform-style: preserve-3d;
        transform-origin: center;
    }

    .about-beliefs .flip-card-front,
    .about-beliefs .flip-card-back {
        display: grid;
        place-content: center;
        position: absolute;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        transform-style: preserve-3d;
        -webkit-backface-visibility: hidden;
        /* Safari */
        backface-visibility: hidden;
    }

    .about-beliefs .flip-card-back {
        transform: rotateY(180deg);
    }
}

.about-beliefs .lottie.meet-the-team {
    height: 250px;
    max-height: 600px;
}

.about-service {
    height: 26px;
    width: auto;
    max-width: 100%;
}

@media (min-width:992px) {
    .about-service {
        height: clamp()
    }
}

@media (min-width:1600px) {
    .about-service {
        height: 39px;
    }
}

@media (min-width: 768px) {
    .lottie.meet-the-team {
        height: auto;
    }
}

@media (min-width: 992px) {
    .lottie.meet-the-team {
        height: 500px;
    }
}

@media (min-width: 1600px) {
    .lottie.meet-the-team {
        height: auto;
    }
}

.what-we-will-cover {
    margin-top: 2rem;
    display: inline-block;
    line-height: 3rem;
    border-top: 1px solid black;
    border-bottom: 1px solid black;
}

/* FORM */

.ncs-form.atop {
    z-index: 110000;
    position: fixed;
    top: -100vh;
    left: 0;
    height: 0;
    width: 100%;
    background-image: url(../images/bg-form.png);
    background-size: cover;
    background-position: center;
    padding: 3rem 0.75rem;
    color: white;
    overflow-y: auto;
    opacity: 0;
    transition: opacity 0.3s ease-out, top 0s ease 0.3s, height 0s ease 0.3s;
}

.ncs-form.atop.show {
    top: 0;
    height: 100%;
    opacity: 1;
    transition: opacity 0.3s ease-in;
}

@media (min-width: 992px) {
    .ncs-form.atop {
        padding: 3rem;
    }
}

@media (min-width: 992px) {
    .ncs-form.atop button.close img {
        width: 26px;
        height: auto;
    }
}

.ncs-form .contact,
.ncs-form .email {
    display: inline-flex;
    font-weight: 700;
    font-size: 1em;
    align-items: center;
}

@media (min-width: 768px) {

    .ncs-form .contact,
    .ncs-form .email {
        font-size: 1.25em;
    }
}

.ncs-form .contact:before,
.ncs-form .email:before {
    content: '';
    margin-right: 1rem;
    display: inline-block;
    width: 25px;
    height: 25px;
    background-size: contain;
}

@media (min-width: 768px) {

    .ncs-form .contact:before,
    .ncs-form .email:before {
        width: 40px;
        height: 40px;
    }
}

.ncs-form .contact:before {
    background-image: url(../images/ic-circle-contact.svg);
}

.ncs-form .email:before {
    background-image: url(../images/ic-circle-email.svg);
}

/* SEARCH CONTAINER */
#search-overlay {
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    opacity: 0;
    /* background-image: url(../images/bg-search-overlay.jpg); */
    background-size: cover;
    background-position: center;
    height: 0;
    z-index: 110000;
    transition: opacity 0.3s ease, height 0.1s ease 0.3s;
    pointer-events: none;
    overflow: hidden;
}

#search-overlay.active {
    opacity: 1;
    height: 100vh;
    transition: opacity 0.3s ease;
    pointer-events: initial;
}

#search-overlay>div {
    text-align: center;
    max-width: 1088px;
    width: 100%;
    padding: 0 2rem;
}

#search-overlay h2 {
    font-size: 2.5em;
}

@media (min-width: 768px) {

    #search-overlay h2 {
        font-size: 3.125em;
    }
}

@media (min-width: 992px) {
    #search-overlay h2 {
        font-size: 3.4375em;
    }
}

@media (min-width: 1600px) {

    #search-overlay h2 {
        font-size: 4.375em;
    }
}

#search-overlay button#close {
    position: absolute;
    display: block;
    background-size: contain;
    background-image: url(../images/ic-close.svg);
    width: 40px;
    height: 40px;
    right: 3rem;
    top: 3rem;
}

#search-overlay button#close img {
    position: absolute;
}

.search-result-item {
    position: relative;
}

.search-result-item:before {
    content: '';
    display: block;
    position: absolute;
    background: var(--background-dk-blue);
    left: 0;
    top: 0;
    bottom: 1rem;
    width: 5px;
}

.search-result-item:after {
    content: '';
    display: block;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center right;
    background-image: url(../images/ic-arrow-right-dark-blue.svg);
    width: 50px;
    height: 10px;

}

.search-result-item>div:first-child {
    padding: 1rem 0rem 1rem 2rem;
}

form .help-block.error {
    color: red;
    font-weight: 500;
    padding: 0.5rem 0;
}

@media (min-width:992px) and (max-width:1400px) {
    .career-stories-masonry {
        width: 90%;
    }
}

.swiper-container-fade .swiper-slide {
    transition-duration: 0.3s;
    transition-delay: 0s;
}

.swiper-container-fade .swiper-slide-active {
    transition-duration: 0.3s;
    transition-delay: 0s;
}

@media (min-width: 768px) {
    .w-md-75 {
        width: 75% !important;
    }

    .w-md-60 {
        width: 60% !important;
    }

    .w-md-50 {
        width: 50% !important;
    }
}

@media (min-width:992px) {
    .w-lg-50 {
        width: 50% !important;
    }
}

.career-form-message,
.contact-us-message {
    font-weight: bold;
    color: yellow;
    opacity: 0;
}

.career-form-message {
    color: blue;
}

.career-form-message.show,
.contact-us-message.show {
    opacity: 1;
}

#roadMap ul {
    padding-left: 1.2rem;
}

/* TABLE */
.circle {
    display: block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin: 0 auto;
    background: var(--color-lt-cyan);
}

.text-small {
    font-weight: normal;
    font-size: 0.75em;
}

.table-title-strong {
    font-weight: 900;
}

.table-title-head {
    font-size: 1em;
}

.table-compar-wrapper {
    margin-top: 30px;
}

.table-compar .table-child-wrapper {
    padding: 0 0 30px 0;
}

.table-compar .cell-null {
    display: none;
}

.table-compar>tbody>tr .table-title-head {
    margin-top: 10px;
}

.table-compar>tbody>tr:first-child .table-title-head {
    margin-top: -10px;
}


.table-compar-head th {
    padding-top: 10px;
    padding-left: 5px;
    vertical-align: top;
    /* background: #dfcbcb; */
}

.table-compar-head .table-compar-th {
    width: 25%;
}

.table-compar-head th:first-child {
    width: 50%;
    /* background: #c6d0e0; */
}

.table-compar-head .text-small {
    padding: 8px 25px 0px 12px;
    margin-bottom: 0;
}

.table-compar-head th:last-child .text-small {
    padding-right: 0;
}

.table-head-wrapper {
    display: flex;
    align-items: center;
}

.table-head-wrapper h3 {
    margin-bottom: 0;
    font-size: 1.25em;
}

.table-head-wrapper img {
    margin-right: 10px;
    height: auto;
    width: 37px;
}

.table-child {
    width: 100%;
}

.table-child th,
.table-compar .cell-null {
    width: 50%;
    color: var(--color-dk-gray);
    font-size: 1em;
    font-weight: 300;
    padding: 1px 20px;
}

.table-child thead th {
    background: #ffffff;
}

.table-child td {
    width: 25%;
}

.table-child tbody tr:nth-child(odd) th,
.table-child tr:nth-child(odd) td {
    background: var(--color-lt-violet);
}

.table-child tbody tr:nth-child(even) th,
.table-child tr:nth-child(even) td {
    background: var(--color-violet);
}

.table-child .title-ghost {
    display: none;
}

@media (max-width: 768px) {
    .table-head-wrapper img {
        width: 30px;
    }

    .table-head-wrapper h3 {
        font-size: 1em;
    }

    .table-compar-head .text-small {
        padding-left: 0;
        padding-right: 10px;
    }
}

@media (max-width: 576px) {
    .text-small {
        font-size: 0.625em;
    }

    .table-child .table-title-head {
        margin-top: 0;
    }

    .table-child .table-title-head,
    .table-child .title-ghost {
        font-size: 0.875em;
    }

    .table-child th,
    .table-compar .cell-null {
        font-size: 0.875em;
    }

    .table-compar-wrapper {
        overflow-x: auto;

    }

    .table-compar-wrapper::-webkit-scrollbar-track {
        -webkit-box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.3);
        background-color: #F5F5F5;
        border-radius: 3px;
    }

    .table-compar-wrapper::-webkit-scrollbar {
        background-color: #F5F5F5;
        height: 5px;
    }

    .table-compar-wrapper::-webkit-scrollbar-thumb {
        border-radius: 10px;
        background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0.44, rgb(122, 153, 217)), color-stop(0.72, rgb(73, 125, 189)), color-stop(0.86, rgb(28, 58, 148)));
    }

    .table-head-wrapper h3 {
        font-size: 1em;
    }

    .table-child td:not(.cell-null),
    .table-compar-head .table-compar-th {
        min-width: 160px;
        width: 160px;
    }

    .table-child th:not(.title-ghost),
    .table-compar-head th:first-child {
        width: 190px;
        min-width: 190px;
        position: absolute;
    }

    .table-compar .cell-null {
        display: table-cell;
        width: 190px;
        min-width: 190px;
        color: transparent;
    }

    .table-compar .table-child-wrapper {
        padding: 0 0 20px 0;
    }

    .table-child th,
    .table-child .title-ghost,
    .table-compar .cell-null {
        padding: 1px 12px;
    }

    .table-child .title-ghost {
        display: table-cell;
    }

    .table-child .title-ghost .table-title-head {
        color: transparent;
    }
}

/* share icons */
.share-icons.share-icons-cicle-small .share-icons-item {
    display: inline-flex;
    color: var(--color-dk-blue);
    height: 28px;
    width: 28px;
    border-radius: 50%;
    border: 1px solid var(--color-dk-blue);
    justify-content: center;
    align-items: center;
}

.share-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-around;
    width: calc(100% + 20px);
    margin-left: -10px;
    margin-right: -10px;
}

.share-wrapper .share-item-loading {
    position: relative;
    display: flex;
    background: var(--color-blue);
    color: var(--color-blue);
    border-radius: 2px;
    cursor: pointer;
    height: 20px;
    width: 67px;
}

.share-wrapper .share-item-loading::before {
    content: "";
    position: absolute;
    width: 16px;
    height: 16px;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    border: 2px solid transparent;
    border-top-color: #ffffff;
    border-radius: 50%;
    animation: button-loading-spinner 1s ease infinite;
}

@keyframes button-loading-spinner {
    from {
        transform: rotate(0turn);
    }

    to {
        transform: rotate(1turn);
    }
}

.share-wrapper .share-item,
.share-wrapper .twitter-share-button {
    margin: 10px;
}

.share-wrapper .share-linkedin {
    margin-top: 8px;
}

@media screen and (min-width: 992px) and (max-width: 1199.98px) {

    .share-wrapper .share-item,
    .share-wrapper .twitter-share-button {
        margin: 5px;
    }

    .share-wrapper .share-linkedin {
        margin-top: 2px;
    }
}

@media screen and (min-width: 1200px) {
    .share-wrapper .share-linkedin {
        margin-top: 5px;
    }
}

/* card */
.card-icon-dot {
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    z-index: 1;
}

.card-icon-dot .col {
    display: flex;
    flex-direction: column;
}

.card-icon-dot .card-img {
    margin-bottom: 16px;
}

.card-icon-dot .card-img.is-border {
    width: 106px;
    height: 106px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid var(--color-border-lt-grey);
    border-radius: 50%;
}

.card-icon-dot .card-img img {
    width: auto;
    height: 80px;
}

.card-icon-dot .card-img.is-border img {
    width: 86px;
    height: auto;
}

.card-icon-dot .card-desc {
    margin-bottom: 24px;
}

.card-icon-dot .card-link {
    margin-top: auto;
    width: fit-content;
}

.card-icon-dot-small {
    display: flex;
    flex-direction: row;
}

.card-icon-dot-small .card-img {
    width: 80px;
    margin-right: 20px;
    margin-bottom: 0;
}

.card-icon-dot-small .card-img img {
    width: 80px;
    height: auto;
}

.card-icon-dot-small .card-title {
    min-height: 48px;
    display: flex;
    align-items: center;
}

.card-icon-dot-small .card-link {
    margin-top: 12px;
}

@media screen and (min-width: 768px) {
    .card-icon-dot-small .card-title {
        min-height: 56px;
    }

    .card-icon-dot-small .card-link {
        margin-top: auto;
    }

    .card-icon-dot-small .card-desc {
        margin-bottom: 12px;
    }
}

@media screen and (min-width: 992px) {
    .card-icon-dot-small .card-img {
        width: 100px;
        flex: 0 0 100px;
    }

    .card-icon-dot-small .card-img img {
        width: 100px;
    }
}

.card-box-shadow {
    display: flex;
    flex-direction: column;
    border-top-right-radius: 30px;
    border-bottom-left-radius: 30px;
    box-shadow: 0px 3px 6px var(--shadow-grey);
    background-color: var(--color-white) !important;
}

.card-box-shadow .card-header {
    border-top-right-radius: 30px;
    background-color: var(--color-light-gray);
    padding: 30px 26px;
    border-bottom: none;
}

.card-box-shadow .card-image {
    border-top-right-radius: 30px;
}

.card-box-shadow .card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-box-shadow .card-header .card-n-title,
.card-box-shadow .card-body {
    color: var(--color-heading-global) !important;
}

.card-box-shadow .card-body {
    display: flex;
    flex-direction: column;
    background-color: var(--color-white);
    padding: 30px 26px;
    border-bottom-left-radius: 30px;
}

.card-box-shadow a.arrow {
    margin-top: 20px;
}

.card-box-shadow.card-box-shadow-has-img .card-image img {
    border-top-right-radius: 30px;
}

.card-box-shadow.card-box-shadow-has-img .card-header {
    border-top-right-radius: 0;
    background-color: inherit;
    padding-bottom: 0;
}

/* ===============================
    CARD DEFAULT
==================================
Structure for `.card-default`
- Add <a> if need for card-img-top
.card-default(data-width="")
    .card-header 
        a
            img.card-img-top
        .card-header-left
        .card-header-right
    .card-body
        a
            h3.card-n-title
        p.card-text
        a.arrow
==================================
dataset for `data-width`
- lg: 674px
- md: 418px
================================== */
.card-img-ratio {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.card-img-ratio::before {
    margin-top: 55%;
    content: '';
    display: block;
}

.card-img-ratio img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    height: 100%;
    width: auto;
    z-index: 0;
}

.card-img-ratio.card-img-ratio-2::before {
    margin-top: 100%;
}

.card-img-ratio.card-img-ratio-16-9::before {
    margin-top: calc(9 / 16 * 100%);
}

.card-img-ratio.card-img-ratio-16-9 img {
    height: auto;
    width: 100%;
}

.card-img-ratio.card-img-ratio-normal::before {
    margin-top: 75%;
}

.card-default {
    --padding: 20px;
    --padding-x: 40px;
    --padding-y: 40px;
    --corner-x: 20px;
    --corner-y: 20px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

/* .card-default[data-width="lg"] .card-img-top {
    height: 300px;
}
.card-default[data-width="md"] .card-img-top {
    height: 165px;
} */
.card-default .card-header {
    position: relative;
    padding: 0;
    color: var(--color-white);
    border-bottom: none;
}

.card-default .card-header::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: transparent linear-gradient(180deg, #1717176b 0%, #00000000 100%) 0% 0% no-repeat padding-box;
    z-index: 1;
}

/* .card-default .card-img-ratio-normal {
    height: 185px;
} */

.card-default .has-img-desktop .card-img-top.desktop {
    display: none;
}

.card-default .card-img-ratio-big {
    height: 300px;
}

@media screen and (min-width: 768px) and (max-width: 991.98px) {
    .card-default .card-img-ratio-bigger {
        height: 500px;
    }
}

.card-default .card-img-ratio-big-2 {
    height: 329px;
}

.card-default .badge {
    width: fit-content;
    margin-bottom: 8px;
}

.card-default .badge {
    white-space: inherit;
    max-width: 200px;
}

.card-default .badge-outline {
    overflow: hidden;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-right: 4px;
    margin-bottom: 2px;
}

@media screen and (min-width: 768px) {
    .card-default .card-header-left+.card-header-right .badge {
        white-space: initial;
        max-width: 140px;
    }
}

@media screen and (min-width: 992px) {
    .card-default .card-img-ratio-bigger {
        min-height: 480px;
    }

    /* .card-default .card-img-ratio-normal {
        height: 380px;
    } */

    .card-default .card-img-ratio-normal::before {
        margin-top: 120%;
    }

    .card-default .has-img-desktop .card-img-top {
        display: none;
    }

    .card-default .has-img-desktop .card-img-top.desktop {
        display: block;
    }

    .card-default .card-img-ratio-big-2 {
        height: 349px;
    }
}

@media screen and (min-width: 1600px) {
    /* .card-default .card-img-ratio-normal {
        height: 445px;
    } */

    .card-default .card-img-ratio-normal::before {
        margin-top: 105%;
    }

    .card-default .card-img-ratio-big {
        height: 380px;
    }
}

.card-default .card-img-top {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-default .card-header .card-header-left {
    position: absolute;
    top: 25px;
    left: var(--corner-x);
    z-index: 2;
    line-height: 1;
    font-size: 0.75em;
}

@media screen and (min-width: 1200px) {
    .card-default .card-header .card-header-left {
        font-size: 0.875em;
    }
}

.card-default .card-header .card-header-right {
    position: absolute;
    top: var(--corner-y);
    right: var(--corner-x);
    z-index: 3;
    line-height: 1;
    display: flex;
    flex-direction: column;
    align-items: end;
}

.card-default .card-body {
    padding: var(--padding);
    color: currentColor;
    background-color: var(--color-white);
    display: flex;
    flex-direction: column;
}

.card-default .card-body a.arrow {
    margin-top: 20px;
    width: fit-content;
}

.card-default .card-body .card-title {
    color: var(--color-heading-global) !important;
    font-size: 1em;
}

@media screen and (min-width: 992px) {
    .card-default .card-body .card-title {
        font-size: 1.125em;
    }
}

.card-default .card-text {
    text-overflow: ellipsis;
    -webkit-line-clamp: 4;
    overflow: hidden;
    -webkit-box-orient: vertical;
    display: -webkit-box;
}

.theme-dk-blue .card-default .card-text {
    color: var(--color-dark);
}

/* @media screen and (min-width: 768px) {
    .card-default[data-width="lg"] {
        width: calc(50vw - 3rem);
    }
    .card-default[data-width="md"] {
        width: calc(40vw - 3rem);
    }
} */
/* @media screen and (min-width: 992px) {
    .card-default[data-width="lg"] {
        width: calc(40vw - 3rem);
        max-width: 674px;
    }
    .card-default[data-width="md"] {
        width: calc(35vw - 3rem);
        max-width: 418px;
    }
    .card-default[data-width="md"] .card-img-top {
        height: 320px;
    }
    .card-default .card-body {
        padding: var(--padding-y) var(--padding-x);
    }
    .card-default .card-body .card-title {
        font-size: 1.5em;
    }
    .card-default .card-text {
        -webkit-line-clamp: 2;
    }
} */
@media screen and (min-width: 1200px) {
    .card-default[data-width="md"] .card-img-top {
        height: 445px;
    }
}

@media screen and (min-width: 1600px) {
    .card-default[data-width="lg"] .card-img-top {
        height: 380px;
    }
}

.tooltip-hover {
    display: inline-block;
    position: relative;
}

.tooltip-btn-custom:hover+.tooltip-hover-custom {
    display: block;
}

.tooltip-hover-custom:hover,
.tooltip-hover-custom.active {
    display: block;
}

.tooltip-hover-custom {
    display: none;
    position: absolute;
    padding-top: 0.8rem;
    top: 1.4rem;
    left: 50%;
    transform: translateX(-50%);
    transition: 0.3s all ease-in-out;
    z-index: 1;
}

.tooltip-hover-custom .tooltip-arrow {
    position: absolute;
    width: 0.8rem;
    height: 0.8rem;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
}

.tooltip-hover-custom .tooltip-arrow::before {
    position: absolute;
    content: "";
    border-color: transparent;
    border-style: solid;
    bottom: -1px;
    border-width: 0 0.4rem 0.4rem;
}

.tooltip .tooltip-inner,
.tooltip-hover-custom .tooltip-inner {
    background-color: #002461e6;
    text-align: left;
    font-size: 0.875em;
    font-family: "Ubuntu";
    padding: 15px;
    max-width: 300px;
    box-shadow: 0px 3px 6px var(--shadow-grey);
}

.tooltip .tooltip-inner ul,
.tooltip-hover-custom .tooltip-inner ul {
    margin-bottom: 0;
    padding-left: 20px;
    list-style: none;
}

.tooltip .tooltip-inner ul li,
.tooltip-hover-custom .tooltip-inner ul li {
    padding-bottom: 7px;
    position: relative;
}

.tooltip .tooltip-inner ul li::before,
.tooltip-hover-custom .tooltip-inner ul li::before {
    position: absolute;
    content: '';
    width: 0.25rem;
    height: 0.25rem;
    background: var(--color-white);
    border-radius: 50%;
    top: 50%;
    left: -15px;
    transform: translateY(calc(-50% - 0.125rem));
}

.tooltip .tooltip-inner ul li a,
.tooltip-hover-custom .tooltip-inner ul li a {
    position: relative;
    display: block;
    width: 100%;
    padding-right: 10px;
}

.tooltip .tooltip-inner ul li a::before,
.tooltip-hover-custom .tooltip-inner ul li a::before {
    position: absolute;
    content: '\203A';
    right: 0;
    top: 50%;
    transition: 0.2s all ease-in;
    transform: translateY(-50%);
    opacity: 0.5;
}

.tooltip .tooltip-inner ul li a:hover::before,
.tooltip-hover-custom .tooltip-inner ul li a:hover::before {
    opacity: 1;
    font-weight: 500;
}

.tooltip .tooltip-inner a:hover,
.tooltip-hover-custom .tooltip-inner a:hover {
    text-decoration: underline;
}

.tooltip .tooltip-arrow::before,
.tooltip-hover-custom .tooltip-arrow::before {
    border-top-color: #002158E6;
    border-bottom-color: #002158E6;
}



@media screen and (min-width: 992px) {
    .tooltip .tooltip-inner {
        max-width: 400px;
    }

    .tooltip-hover-custom .tooltip-inner {
        min-width: 250px;
        max-width: 250px;
    }
}

/* end card */

/* Card default wider 
    - Required use with `.card-default`
*/
.card-default-wider .card-header::before {
    display: none;
}

@media (min-width: 992px) and (max-width: 1439.99px) {
    .card-default.card-default-wider .card-body {
        padding-left: 4rem;
    }
}

@media (min-width: 992px) {
    .card-default.card-default-wider {
        flex-direction: row;
    }

    .card-default.card-default-wider>* {
        flex: 0 0 50%;
        max-width: 50%;
    }

    .card-default-wider .card-img-ratio {
        width: 50vw;
    }

    .card-default-wider .card-body a.arrow {
        margin-top: 0;
    }

    .card-default-wider .card-body {
        justify-content: center;
        padding-right: 10%;
    }
}

.future-trend-content.layout-grey .tab-content-item,
.future-trend-content.layout-grey .card-body {
    background-color: var(--background-lt-grey);
}

@media (min-width: 992px) {
    .future-trend-content.layout-grey .card-header {
        order: 1;
    }
}

/* End card default wider */

/* Card portrait */
.card-portrait {
    overflow: hidden;
    position: relative;
    display: block;
}

.card-portrait .card-img {
    width: 100%;
    height: 0;
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    margin-top: auto;
    overflow: hidden;
    position: relative;
    padding-top: 100%;
}

.card-portrait .card-img>img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    object-fit: cover;
    -o-object-fit: cover;
}

.card-portrait .card-body {
    border: 1px solid var(--color-border-dk-blue);
    background: var(--color-white);
    padding: 0;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.card-portrait .card-body .card-body-content {
    border: none;
    border-top: 8px solid var(--color-border-dk-blue);
    padding: 1.5rem;
}

.card-portrait .card-title {
    font-size: var(--h6-size-mobile);
}

.card-portrait .card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    opacity: 0;
    visibility: hidden;
    color: white;
    background-color: #002158E6;
    width: 100%;
    height: 100%;
    overflow: hidden;
    padding: 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease-out;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
}

.card-portrait:hover .card-overlay,
.card-portrait .card-overlay.active {
    opacity: 1;
    visibility: visible;
}

.card-portrait .card-overlay .card-title {
    color: var(--color-white);
    /* margin-bottom: 1.4rem; */
}

.card-portrait .card-overlay .card-devider {
    width: 100%;
    border-top: solid 1px var(--color-white);
    margin: 25px 0 15px;
}

.card-portrait .card-text-wrapper {
    position: relative;
    height: 100%;
}

.card-portrait .card-text-wrapper::after {
    position: absolute;
    content: '';
    background: linear-gradient(to top, #00215887, rgba(0, 0, 0, 0) 80%);
    width: calc(100% - 10px);
    height: 8px;
    bottom: -1px;
    left: 0;
    right: 0;
    z-index: 1;
}

.card-portrait .card-text-wrapper .card-text {
    position: absolute;
    height: 100%;
    overflow-y: auto;
    padding-bottom: 10px;
    padding-right: 5px;
    font-size: 0.875em;
}

@media screen and (min-width: 992px) {
    .card-portrait .card-text-long {
        overflow: hidden;
        display: -webkit-box;
        -webkit-line-clamp: 4;
        line-clamp: 4;
        -webkit-box-orient: vertical;
    }
}

@media screen and (min-width: 1200px) {
    .card-portrait .card-text-long {
        -webkit-line-clamp: 6;
        line-clamp: 6;
    }
}

.card-portrait .card-overlay .card-link {
    margin-top: auto;
}

.card-portrait .card-icon-display {
    display: inline-flex;
    width: 48px;
    height: 48px;
    border: 1px solid white;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
}

@media (min-width: 992px) {
    .card-portrait .card-title {
        font-size: var(--h6-size);
    }
}

/* card brand */
.card-brand {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    background-color: var(--color-white);
    padding: 1rem;
    border-radius: 0 20px 0 20px;
    -webkit-border-radius: 0 20px 0 20px;
    -moz-border-radius: 0 20px 0 20px;
    -ms-border-radius: 0 20px 0 20px;
    -o-border-radius: 0 20px 0 20px;
    transition: 0.2s box-shadow ease-out;
    -webkit-transition: 0.2s box-shadow ease-out;
    -moz-transition: 0.2s box-shadow ease-out;
    -ms-transition: 0.2s box-shadow ease-out;
    -o-transition: 0.2s box-shadow ease-out;
}

.card-brand:hover {
    box-shadow: 0px 3px 6px var(--shadow-grey);
}

.card-brand img {
    max-width: 100px;
    max-height: 100px;
    height: auto;
    width: auto;
}

@media (min-width: 768px) {
    .card-brand {
        padding: 1.5rem;
    }

    .card-brand img {
        max-width: 120px;
    }
}

/* end card brand */

/* card icon arrow */
.card-icon-arrow {
    display: flex;
    align-items: center;
    column-gap: 20px;
    row-gap: 16px;
    background-color: var(--color-white);
    padding: 20px;
    border-radius: 0 20px 0 20px;
    transition: 0.2s all ease-out;
    -webkit-border-radius: 0 20px 0 20px;
    -moz-border-radius: 0 20px 0 20px;
    -ms-border-radius: 0 20px 0 20px;
    -o-border-radius: 0 20px 0 20px;
}

a.card-icon-arrow:hover {
    box-shadow: 0px 3px 6px var(--shadow-grey);
}

.card-icon-arrow .card-img {
    height: 40px;
    width: auto;
}

.card-icon-arrow .card-title {
    font-size: 1.125em;
    margin-bottom: 0;
}

.card-icon-arrow .card-body {
    display: flex;
    padding: 0;
    column-gap: 16px;
    align-items: center;
    justify-content: space-between;
    flex-basis: auto;
}

.card-icon-arrow .card-body i {
    font-size: 1.5em;
    font-weight: bold;
}

@media (min-width: 992px) {
    .card-icon-arrow {
        flex-direction: column;
        align-items: flex-start;
    }

    .card-icon-arrow .card-img {
        height: 60px;
    }

    .card-icon-arrow .card-title {
        font-size: 1.5em;
    }

    .card-icon-arrow .card-body {
        width: 100%;
    }
}

/* end card icon arrow */

/* card rounded corner 
    - required: use with class `.card-default`
*/
.quote-small {
    font-size: 0.875em;
    position: relative;
    font-weight: 400;
    z-index: 1;
}

.quote-small::before {
    content: '';
    position: absolute;
    top: 4px;
    left: 0;
    width: 28px;
    height: 25px;
    background-image: url('../images/ic-quote-filled.svg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    z-index: -1;
}

@media (min-width: 992px) {
    .quote-small {
        font-size: 1em;
    }

    .quote-small::before {
        width: 40px;
        height: 36px;
    }
}

.card-default.card-rounded-corner {
    border-radius: 0 20px 0 20px;
    -webkit-border-radius: 0 20px 0 20px;
    -moz-border-radius: 0 20px 0 20px;
    -ms-border-radius: 0 20px 0 20px;
    -o-border-radius: 0 20px 0 20px;
    overflow: hidden;
    transition: 0.2s all ease-out;
}

a.card-default.card-rounded-corner:hover {
    box-shadow: 0px 6px 15px var(--shadow-grey);
}

.card-default.card-rounded-corner .card-header::before {
    display: none;
}

.card-rounded-corner {
    --padding-top-quote: 10px;
}

.card-rounded-corner .card-body {
    background-color: var(--background-lt-grey);
    padding-top: 1.5rem;
}

/* .card-rounded-corner .card-img-top {
    height: 184px;
} */

.card-rounded-corner .quote-small-container {
    position: relative;
    margin-bottom: 20px;
    padding-right: 5px;
    margin-top: -10px;
}

.card-rounded-corner .quote-small-container::after {
    position: absolute;
    content: '';
    background: linear-gradient(to top, #f4f4f4, rgba(0, 0, 0, 0) 80%);
    width: calc(100% - 10px);
    height: 20px;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1;
    background-attachment: scroll;
}

.card-rounded-corner .quote-small {
    overflow-y: scroll;
    max-height: 150px;
    padding-bottom: 20px;
    padding-top: var(--padding-top-quote);
}

@media (min-width: 992px) {
    .card-rounded-corner {
        flex-direction: row;
        min-height: 200px;
    }

    .card-rounded-corner .card-body {
        padding: 30px;
    }

    .card-rounded-corner .card-header {
        flex: 0 0 33.4%;
        max-width: 33.4%;
    }

    .card-rounded-corner .card-img-top {
        height: 100%;
    }

    .card-rounded-corner .quote-small {
        max-height: 200px;
    }

    .card-rounded-corner .quote-small-container::after {
        height: 30px;
    }
}

.theme-dk-blue.card-rounded-corner .card-body {
    background: var(--background-dk-blue);
    color: var(--color-white);
}

.theme-dk-blue.card-rounded-corner .card-title,
.theme-dk-blue.card-rounded-corner .card-text {
    color: var(--color-white) !important;
}

.theme-dk-blue.card-rounded-corner .quote-small {
    opacity: 0.5;
}

.theme-dk-blue.card-rounded-corner .quote-small-container::after {
    background: linear-gradient(to top, var(--background-dk-blue), rgba(0, 0, 0, 0) 80%);
}

/* end card rounded corner */

/* Card default overlay */
.card-default.card-default-overlay {
    position: relative;
}

.card-default.card-default-overlay .card-header::before {
    background: rgba(38, 38, 38, 0.7);
}

.card-default.card-default-overlay .card-body {
    position: absolute;
    width: 100%;
    bottom: 0;
    left: 0;
    background: transparent;
    z-index: 2;
    color: white;
}

.card-default.card-default-overlay .card-title {
    color: white !important;
}

/* Card Jumbo */
.card-jumbo .card-header {
    padding: 0;
    border-bottom: none;
    background: transparent;
}

.card-jumbo .card-body {
    padding: 0;
    margin-top: 24px;
}

.card-jumbo a.bordered {
    padding: 0.8rem 1.5rem;
}

.card-jumbo .card-text {
    color: var(--color-text-global);
}

@media screen and (min-width: 992px) {
    .card-jumbo {
        display: flex;
    }

    .card-jumbo .card-header {
        flex: 0 0 50%;
        max-width: 50%;
    }

    .card-jumbo .card-body {
        flex: 0 0 50%;
        max-width: 50%;
        padding: 30px 0 30px 30px;
        margin-top: 0;
        margin-bottom: 0;
        display: flex;
        align-items: center;
    }

    .card-jumbo .card-body h2 {
        font-size: 1.5em;
    }
}

/* End card jumbo */

.badge {
    padding: 6px 10px;
    border-radius: 0px 10px 0 10px;
    -webkit-border-radius: 0px 10px 0 10px;
    -moz-border-radius: 0px 10px 0 10px;
    -ms-border-radius: 0px 10px 0 10px;
    -o-border-radius: 0px 10px 0 10px;
    font-weight: 500;
    line-height: 1;
    font-size: 0.75em;
}

@media screen and (min-width: 1200px) {
    .badge {
        font-size: 0.875em;
        padding: 6px 16px;
    }
}

.badge.badge-cyan {
    background-color: var(--background-dk-cyan);
    color: var(--color-white)
}

.badge.badge-blue-slate {
    background-color: var(--color-unity-indigo);
    color: var(--color-white);
}

.badge.badge-outline {
    /* background-color: var(--background-dk-cyan); */
    color: var(--color-unity-indigo);
    border: 1px solid var(--color-unity-indigo);
}

a.badge.badge-outline {
    transition: 0.3s all ease-in-out;
}

a.badge.badge-outline:hover {
    color: var(--color-white);
    background: var(--color-unity-indigo);
}

/* GRID KNOT POINT */
.grid-knot-point {
    --gap-size: 5rem;
    --dot-size: 0.5rem;
    display: grid;
    grid-template-columns: 1fr;
    column-gap: var(--gap-size);
    row-gap: var(--gap-size);
    overflow: hidden;
    padding-bottom: 5px;
}

.grid-knot-point .grid-knot-point-item {
    position: relative;
}

.grid-knot-point .grid-knot-point-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: calc(100% + var(--gap-size) / 2);
    height: calc(100% + var(--gap-size) / 2);
    background-image:
        linear-gradient(to right, #cccccb 0%, #cccccb calc(100% - var(--gap-size) / 2)),
        linear-gradient(to bottom, #cccccb 0%, #cccccb calc(100% - var(--gap-size) / 2));
    background-position: bottom left, top right;
    background-repeat: no-repeat, no-repeat, no-repeat;
    background-size: calc(100% - var(--gap-size) / 2) 1px, 1px calc(100% - var(--gap-size) / 2);
    z-index: 0;
}

.grid-knot-point .grid-knot-point-item::after {
    content: '';
    position: absolute;
    width: var(--dot-size);
    height: var(--dot-size);
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    background: #cccccb;
    /* bottom: -2.5rem;
    right: -2.5rem; */
    top: calc(100% - var(--dot-size) / 2 + var(--gap-size) / 2);
    left: calc(100% - var(--dot-size) / 2 + var(--gap-size) / 2);
}

@media screen and (min-width: 768px) {
    .grid-knot-point {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (min-width: 1200px) {
    .grid-knot-point {
        grid-template-columns: repeat(3, 1fr);
    }

    .grid-knot-point.grid-knot-point-2 {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* END - GRID KNOT POINT */

/* ANCHOR TAB */
.tab {
    position: relative;
}

.tab-wrapper {
    width: 100%;
}

.tab-wrapper.is-fixed {
    position: fixed;
}

.tab-wrapper.is-fixed+div {
    margin-top: calc(60px * 2) !important;
}

@media screen and (min-width: 992px) {
    .tab-wrapper.is-fixed+div {
        margin-top: calc(78px * 2) !important;
    }
}

.tab-wrapper.sticky {
    position: fixed;
    top: var(--header-height-mobile);
    margin-top: 0 !important;
}

.tab-button {
    background: rgb(0 167 225 / 10%);
    /* color blue 10% */
    border: none;
    border-bottom: solid 1px var(--color-unity-indigo);
    font-size: 1.125em;
    font-weight: bold;
    padding: 16px 24px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--color-unity-indigo)
}

.tab-button>.icon {
    color: initial;
    font-size: 0.5625em;
    line-height: 1;
    transition: transform 200ms ease-out;
    -webkit-transition: transform 200ms ease-out;
    -moz-transition: transform 200ms ease-out;
    -ms-transition: transform 200ms ease-out;
    -o-transition: transform 200ms ease-out;
}

.tab-list {
    list-style: none;
    padding-left: 0;
    display: inline-flex;
    box-shadow: inset 0 -1px 0 0 var(--color-border-lt-grey);

    animation-fill-mode: both;
    animation-duration: 300ms;
    animation-timing-function: ease-in-out;
}

.tab-list.tab-list-transparent>li>a::before {
    display: none;
}

.tab-anchor .tab-list-wrapper {
    display: none;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(-10px);
        -webkit-transform: translateY(-10px);
        -moz-transform: translateY(-10px);
        -ms-transform: translateY(-10px);
        -o-transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
        -webkit-transform: translateY(0);
        -moz-transform: translateY(0);
        -ms-transform: translateY(0);
        -o-transform: translateY(0);
    }
}

@keyframes fadeOutDown {
    from {
        opacity: 1;
        transform: translateY(0);
        -webkit-transform: translateY(0);
        -moz-transform: translateY(0);
        -ms-transform: translateY(0);
        -o-transform: translateY(0);
    }

    to {
        opacity: 0;
        transform: translateY(-10px);
        -webkit-transform: translateY(-10px);
        -moz-transform: translateY(-10px);
        -ms-transform: translateY(-10px);
        -o-transform: translateY(-10px);
    }
}

@keyframes transformIn {
    0% {
        opacity: 0;
        max-height: 0;
    }

    100% {
        opacity: 1;
        max-height: 3000px;
    }
}

@keyframes transformOut {
    0% {
        opacity: 1;
        max-height: 3000px;
    }

    100% {
        opacity: 0;
        max-height: 0;
    }
}

.tab-anchor .tab-list-wrapper.active,
.tab-anchor.tab[data-expanded="true"] .tab-list-wrapper {
    display: block;
}

.tab-anchor.tab[data-expanded="true"] .tab-button>.icon {
    transform: rotateX(180deg);
    -webkit-transform: rotateX(180deg);
    -moz-transform: rotateX(180deg);
    -ms-transform: rotateX(180deg);
    -o-transform: rotateX(180deg);
}

.tab-anchor.tab[data-expanded="true"].animating .tab-list {
    animation-name: fadeInUp;
}

.tab-anchor.tab[data-expanded="false"].animating .tab-list {
    animation-name: fadeOutDown;
}

.tab-list .anchor-label {
    position: absolute;
    width: 100%;
    height: 100%;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px 0 20px 0;
    text-align: center;
    pointer-events: none;
    transition: all .3s ease-out;
}

.tab-list .anchor-label-hide {
    font-weight: bold;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

@media (max-width: 991.98px) {
    .tab-list .anchor-label-hide {
        opacity: 1;
        visibility: initial;
        font-weight: 300;
        text-align: center;
    }

    .tab-list .anchor-label {
        display: none;
    }
}

.tab-list>li>a.active .anchor-label {
    font-weight: bold;
    color: var(--color-link-global);
    background: rgba(0, 167, 225, 0.1);
}

.tab-list>li>a {
    font-weight: bold;
    color: var(--color-blue);
    padding: 30px 0 20px 0;
    z-index: 1;
    transform: all .3s ease-out;
}

.tab-list>li>a:not(.active):hover::after {
    width: 100%;
}

.tab-list>li>a.active {
    font-weight: bold;
    color: var(--color-link-global);
}

.tab-list>li>a.active::after {
    width: 100%;
}

.tab-content-item {
    display: none;
    max-height: 0;
    opacity: 0;
    animation-fill-mode: both;
    animation-duration: 1000ms;
    animation-timing-function: ease-in-out;
    overflow: hidden;
}

.tab-content-item.active {
    display: block;
    animation-name: transformIn;
}

.tab-content-item[data-expanded="true"].animating {
    animation-name: transformIn;
}

.tab-content-item[data-expanded="false"].animating {
    animation-name: transformOut;
}

.tab-list {
    column-gap: 16px;
}

.tab-list>li>a {
    padding: 30px 20px 20px 20px;
    font-size: 1rem;
    color: var(--color-gray-dark);
    font-weight: 300;
    display: inline-block;
    position: relative;
    white-space: nowrap;
    z-index: 1;
    transition: background .2s ease-out;
    -webkit-transition: background .2s ease-out;
    -moz-transition: background .2s ease-out;
    -ms-transition: background .2s ease-out;
    -o-transition: background .2s ease-out;
}

.tab-list>li>a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0px;
    left: 50%;
    background: var(--color-link-global);
    transition: width .2s ease-out;
    -webkit-transition: width .2s ease-out;
    -moz-transition: width .2s ease-out;
    -ms-transition: width .2s ease-out;
    -o-transition: width .2s ease-out;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
}

@media screen and (max-width: 991.99px) {
    [class^="container"] .tab-list-wrapper {
        margin-left: -1.75rem;
        margin-right: -1.75rem;
    }

    [class^="container"] .tab-list {
        padding-left: 0;
    }

    [class^="container"] .tab-list>li:first-child>a {
        padding-left: 24px;
    }

    [class^="container"] .tab-list::-webkit-scrollbar {
        width: 0;
        height: 0;
    }

    [class^="container"] .tab-list.tab-list-mobile {
        column-gap: 0;
        justify-content: flex-start !important;
    }
}

[id*='anchor-'] {
    scroll-margin-top: 170px;
}

[id*='ANCHOR'] {
    scroll-margin-top: 170px;
}

[name*='ANCHOR'] {
    scroll-margin-top: 170px;
    pointer-events: none;
    color: inherit !important;
}

.footnote-number {
    pointer-events: none;
    color: inherit !important;
}

.anchor-wrapper {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -10;
}

.anchor-wrapper:focus-visible {
    outline: none !important;
}

/* Custom scrollbar */
.tab-list {
    overflow-x: auto;
}

.scrollbar-custom::-webkit-scrollbar {
    height: 6px;
    border-radius: 10px;
}

.scrollbar-custom::-webkit-scrollbar-track {
    background-color: var(--color-light-gray);
    border-radius: 10px;
}

.scrollbar-custom::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background-color: var(--color-border-lt-grey);
}

.scrollbar-custom::-webkit-scrollbar-button {
    display: none;
}

.scrollbar-custom-small::-webkit-scrollbar {
    width: 5px;
}

.scrollbar-custom-small::-webkit-scrollbar-track {
    background-color: #f6f6f636;
}

@media screen and (min-width: 992px) {
    .scrollbar-custom::-webkit-scrollbar {
        height: 10px;
    }
}

@media screen and (max-width: 991.98px) {
    .tab-list {
        width: 100%;
        /* justify-content: center; */
        padding-left: 1.75rem;
        padding-right: 1.75rem;
        /* display: flex;
        justify-content: center; */
    }

    .tab-list-wrapper {
        position: relative;
    }

    .tab-anchor.tab[data-expanded="false"].animating .tab-list-wrapper {
        display: block;
    }

    .tab-anchor .tab-list {
        position: absolute;
        top: 0.5rem;
        left: 24px;
        width: calc(100% - 48px);
        background: var(--color-white);
        border-radius: 0 20px 0 20px;
        -webkit-border-radius: 0 20px 0 20px;
        -moz-border-radius: 0 20px 0 20px;
        -ms-border-radius: 0 20px 0 20px;
        -o-border-radius: 0 20px 0 20px;
        box-shadow: 0px 3px 6px var(--shadow-grey);
        z-index: 1000;

        display: flex;
        flex-direction: column;
        column-gap: 8px;
        padding: 10px 0;
        max-height: 500px;
        overflow-y: auto;
    }

    .tab-anchor .tab-list>li>a {
        color: currentColor;
    }

    .tab-anchor .tab-list>li>a::before,
    .tab-anchor .tab-list>li>a::after {
        display: none;
    }

    .tab-list>li>a {
        padding: 16px 20px;
        display: block;
        white-space: normal;
        text-align: center;
    }

    .tab-list>li>a.active {
        font-weight: bold;
    }
}

@media screen and (min-width: 992px) {
    .tab-wrapper.sticky {
        top: var(--header-height-desktop);
    }

    .tab-anchor .tab-list-wrapper {
        display: block;
    }

    .tab-anchor .tab-list {
        display: flex;
    }

    .tab-list-wrapper>[class^="container"] {
        position: relative;
    }

    .tab-list {
        column-gap: 30px;
    }

    /* .tab-list::before {
        content: '';
        position: absolute;
        width: calc(100% - 32px);
        height: 1px;
        background: var(--color-border-lt-grey);
        bottom: 0px;
        left: 16px;
        z-index: 1;
    } */
}

/* Item Add */

.theme-add {
    position: relative;
}

.theme-add-background {
    max-height: 500px;
    object-fit: cover;
    width: -webkit-fill-available;
}

.item-add-wrapper {
    position: relative;
    background-color: var(--color-black);
    color: var(--color-white);
    padding: 30px 1rem 50px;
}

.theme-add .item-add-wrapper::before {
    position: absolute;
    content: '';
    width: 100%;
    height: 40px;
    top: -40px;
    left: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 10%, rgba(0, 0, 0, 0) 100%);
}

.item-add-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 16px;
    row-gap: 32px;
}

.item-add {
    display: flex;
    align-items: center;
}

.item-add-icon {
    position: relative;
    width: 32px;
    height: 28px;
    border: 2px solid #ffffff;
    border-radius: 0 10px 0 10px;
    cursor: pointer;
}

.item-add-icon::before {
    content: '+';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-weight: bold;
    font-size: 1em;
    padding-bottom: 1px;
}

.item-add .item-add-icon {
    margin-right: 16px;
}

.item-add-title {
    font-size: 1em;
    font-weight: bold;
    max-width: calc(100% - 32px - 16px);
}

@media screen and (min-width: 992px) {
    .item-add-layout {
        grid-template-columns: 1fr 1fr 1fr 1fr;
    }

    .item-add {
        flex-direction: column-reverse;
    }

    .item-add-icon {
        width: 54px;
        height: 45px;
        border-radius: 0 15px 0 15px;
    }

    .item-add-icon::before {
        font-size: 1.5em;
    }

    .item-add .item-add-icon {
        margin-right: 0;
        margin-top: 30px;
    }

    .item-add-title {
        font-size: 1.5em;
        text-align: center;
    }
}

@media screen and (min-width: 1600px) {
    .item-add-title {
        font-size: 2.25em;
        text-align: center;
    }
}

/* modal-in-component */

.modal-in-component {
    display: none;
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    color: var(--color-white);
    z-index: 100;
    padding: 30px 1rem;
    transition: 0.4s all ease-in-out;
    overflow: hidden;
    opacity: 0;
    z-index: -1;
}

.modal-in-component.is-show {
    display: flex;
    opacity: 1;
    z-index: 1;
}

.modal-close {
    position: absolute;
    content: '';
    width: 100px;
    height: 100px;
    background-color: #ffffff;
    border-radius: 50%;
    top: -50px;
    right: -50px;
    cursor: pointer;
    z-index: 1;
}

.modal-close::before,
.modal-close::after {
    position: absolute;
    content: '';
    width: 15px;
    height: 15px;
    border-bottom: 1px solid var(--color-dk-blue);
    bottom: 25px;
}

.modal-close::before {
    transform: rotate(45deg);
    left: 27px;
}

.modal-close::after {
    left: 17px;
    transform: rotate(-45deg);
}

.modal-close.modal-close-dark {
    background-color: var(--color-dk-blue);
}

.modal-close.modal-close-dark::before,
.modal-close.modal-close-dark::after {
    border-bottom: 1px solid var(--color-white);
}

@media screen and (min-width: 992px) {
    .modal-in-component {
        padding: var(--section-vpadding-lg) 3rem;
        display: flex;
        align-items: center;
    }

    .modal-close {
        width: 160px;
        height: 160px;
        top: -80px;
        right: -80px;
    }

    .modal-close::before,
    .modal-close::after {
        width: 20px;
        height: 20px;
        bottom: 44px;
    }

    .modal-close::before {
        left: 45px;
    }

    .modal-close::after {
        left: 32px;
    }
}


.modal-add-title-wrapper {
    display: flex;
    align-items: baseline;
    margin-bottom: 10px;
}

.modal-add-img {
    height: 24px;
    margin-right: 10px;
}

.modal-add-title {
    font-size: 1.625em;
    font-weight: bold;
}

.modal-add-description-wrapper {
    margin-bottom: 10px;
    position: relative;
}

.modal-add-description-wrapper::before {
    position: absolute;
    content: '';
    background: red;
    width: calc(100% - 10px);
    height: 20px;
    bottom: 0;
    left: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0) 80%);
}

.modal-add-description {
    overflow-y: auto;
    max-height: 110px;
    padding-bottom: 10px;
    padding-right: 5px;
}

@media screen and (min-width: 576px) {
    .modal-add-description {
        max-height: 185px;
    }
}

@media screen and (min-width: 768px) {
    .modal-add-description {
        max-height: 145px;
    }
}

@media screen and (min-width: 992px) {
    .modal-add-img {
        height: 30px;
    }

    .modal-add-title {
        font-size: 2em;
    }

    .modal-add-description-wrapper {
        margin-bottom: 30px;
    }
}

@media screen and (min-width: 1200px) {
    .modal-add-description {
        max-height: 260px;
    }
}

@media screen and (min-width: 1600px) {
    .modal-add-description {
        max-height: 360px;
    }
}

/* modal */
.modal-primary {
    z-index: 150000;
    background-color: var(--background-modal);
    padding-right: 0 !important;
}

.modal-primary .modal-dialog {
    min-width: 660px;
    max-width: 860px;
    pointer-events: all;
}

.modal-primary .modal-dialog-wrapper {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

.modal-primary .modal-content {
    border-radius: 0;
    border: none;
    max-height: 85vh;
    overflow: hidden;
    padding: 30px 30px 20px;
}

.modal-primary .modal-image {
    height: 80px;
    width: auto;
    margin-bottom: 20px;
}

.modal-primary .modal-description-wrapper {
    position: relative;
}

.modal-primary .modal-description-wrapper::after {
    position: absolute;
    content: '';
    height: 30px;
    width: 100%;
    bottom: 0;
    background: var(--background-readmore);
}

.modal-primary .modal-description {
    max-height: 500px;
    overflow-y: auto;
}

body.modal-open[data-bs-padding-right] {
    padding-right: 0 !important;
}

@media screen and (max-width: 767.99px) {
    .modal-primary .modal-dialog {
        margin: 0;
        position: absolute;
        bottom: 0;
        max-width: 100%;
        min-width: 100%;
        width: 100%;
    }

    .modal-primary .modal-dialog.is-center-mobile {
        bottom: auto;
    }
}

/* CARD STEP */
.card-step {
    position: relative;
    max-width: 170px;
}

.card-step-background {
    position: absolute;
    font-size: 11.25em;
    font-weight: 900;
    line-height: 1.1;
    text-align: center;
    width: 80%;
    background: -webkit-linear-gradient(left, var(--color-blue-slate) 20%, var(--color-pink-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    z-index: 0;
}

.card-step-header {
    position: relative;
    display: flex;
    flex-direction: column;
    z-index: 1;
}

.card-step-header .card-header-1 {
    color: var(--color-blue);
    font-weight: 700;
    font-size: 1.875em;
}

.card-step-header .card-header-1+.card-header-2 {
    margin-top: -20px;
}

.card-step-header .card-header-2 {
    font-weight: 700;
    font-size: 2.625em;
}

.card-step-body {
    position: relative;
    z-index: 1;
}

@media screen and (min-width: 992px) {
    .card-step {
        max-width: 190px;
    }

    .card-step-background {
        font-size: 17.5em;
        line-height: 1;
    }

    .card-step-header .card-header-1 {
        font-size: 2.125em;
    }

    .card-step-header .card-header-1+.card-header-2 {
        margin-top: -24px;
    }

    .card-step-header .card-header-2 {
        font-size: 3.375em;
    }

    .card-step-body {
        padding-right: 40px;
        font-weight: 400;
    }
}

/* button back */
.button-back {
    display: flex;
    width: fit-content;
}

.button-back i {
    font-size: 1.5rem;
    margin-right: 1rem;
}

.button-back span {
    position: relative;
}

.button-back span::before {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: -2px;
    background-color: var(--font-color-primary);
    transition: 0.3s all ease-out;
}

.button-back:hover span::before {
    width: 100%;
}

/* CSP css */

.otpField--button {
    padding: 0.7em 1.3em;
    margin-top: 1.7rem;
}

.articles--row {
    position: relative;
    z-index: 6;
}

.crossindustry--description {
    color: #002158;
}

.industries--zindex10 {
    z-index: 10;
}

.industries--opacity1 {
    opacity: 1;
}

.ourPurpose--span {
    font-size: clamp(var(--h5-size-mobile), 2.5vw, var(--h5-size));
}

.descVideo--container-lg {
    max-width: 1088px;
    margin: 0 auto;
}

.navigation--img {
    max-height: none;
    height: 40px;
}

.color--a-00ACFF {
    color: #00ACFF;
}

.color--bg-cbe1f0 {
    background-color: #cbe1f0;
}

.tabAnchor--mb-4rem {
    margin-bottom: 4rem;
}

.leader--mason-bg {
    height: 5px;
    background-color: #8aabe5
}

.leader--mason-p {
    padding: 8px;
}

.newsEvents--style {
    column-gap: 2rem;
    row-gap: 0.5rem;
}

.yearActive {
    font-weight: bold;
    color: var(--color-unity-indigo) !important;
}

/* focus  */
.focus-form .have-read:focus-visible~.checkmark {
    border-color: var(--color-primary);
}

.focus-form input:focus,
.focus-form textarea:focus,
.focus-form select:focus {
    outline: none !important;
}

.focus-form input:focus-visible,
.focus-form textarea:focus-visible,
.focus-form select:focus-visible {
    outline: none !important;
}

.focus-form input.form-element-outline:focus,
.focus-form textarea.form-element-outline:focus,
.focus-form select.form-element-outline:focus {
    outline: -webkit-focus-ring-color auto 2px !important;
}

/* skip tab  */
.skip-tab {
    position: absolute;
    /* top: 0; */
    z-index: 9999999;
    background-color: var(--color-blue-slate);
    padding: 0.625rem 1.25rem;
    color: var(--color-white) !important;
    border-radius: 0px 0px 10px 0px;
    font-size: 1rem;
    font-weight: 500;
    /* left: -100000px; */
    left: 0;
    transform: translateY(-100%);
    transition: transform 0.3s;
}

.skip-tab:focus {
    transform: translateY(0%);
}

.skip-tab-show {
    left: 0;
}

.main-content-focus {
    outline: none !important;
}

.anchor-focus {
    outline: none !important;
}

.badge.badge-dark-blue {
    background-color: var(--background-dk-blue);
    color: var(--color-white)
}

.card-header-left.read-time {
    top: 20px !important;
}

.subtitle {
    font-size: 1.4em !important;
}

.article-link-social .icons-item {
    display: inline-flex;
    color: var(--color-dk-blue);
    height: 40px;
    width: 40px;
    border-radius: 50%;
    border: 1px solid var(--color-dk-blue);
    justify-content: center;
    align-items: center;
}

.article-link-social .link-text {
    font-weight: bold;
    padding-top: 0.7rem;
    margin-left: 10px;
    text-decoration: underline;
}

.text-heading {
    color: var(--color-heading-global) !important;
}

a.primary.readmore {
    color: var(--color-primary);
}

.text-unity-indigo {
    color: var(--color-unity-indigo);
}

.text-global {
    color: var(--color-text-global);
}

#modalAccolades a:link {
    color: var(--color-link-global);
}