/* =========================ROOT========================== */

:root {
    --white: #ffffff;
    --gradient-light-blue-to-blue: linear-gradient(90deg, #00ADD7 0%, #005E98 100%);
    --gradient-light-blue: linear-gradient(90deg, rgba(230, 239, 245, 0) 0%, rgba(230, 239, 245, 0.25) 100%);
    --gradient-gray: linear-gradient(90deg, rgba(239, 239, 245, 0.5) 0%, rgba(230, 239, 245, 0.75) 100%);
    --gradient-green-to-blue: linear-gradient(90deg, #00B49E 0%, #008AAF 100%);
    --gradient-green: linear-gradient(90deg, #00A490 0%, rgba(0, 164, 144, 0.75) 100%);
    --gradient-blue: linear-gradient(90deg, #00ADD7 0%, rgba(0, 173, 215, 0.75) 100%);
    --gradient-dark-blue: linear-gradient(90deg, #00ADD7 0%, #005E98 100%);
    --gradient-dark-blue-to-blue: linear-gradient(90deg, #005E98 0%, #002F4C 100%);
    --gradient-red: linear-gradient(90deg, #FF4040 0%, rgba(255, 64, 64, 0.75) 100%);
    --blue: #4086B2;
    --black: #000000;
    --ultra-dark-blue: #002F4C;
    --dark-blue: #005E98;
    --light-blue: #BFEAF5;
    --teal: #00A490;
}

body {
    overflow-x: hidden;
    font-size: 16px;
}


/* =========================ROOT ENDS========================== */

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* =========================HELPERS========================== */

.h-uppercase {
    text-transform: uppercase;
}

/* =========================ATOMS========================== */

.a-btn {
    position: relative;
    display: inline-block;
    padding: 16px 32px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 50px;
    z-index: 1;
    width: max-content;
    line-height: 1.5;
    transition: color 0.3s ease;
}

.a-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(to right, #002F4C 0%, #00A490 100%);
    z-index: -1;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

@media(hover: hover) {
    .a-btn:hover {
        color: var(--white);
        text-decoration: unset;
    }

    .a-btn:hover::before {
        opacity: 1;
        visibility: visible;
    }
}

.a-btn--icon--bg {
    color: var(--ultra-dark-blue);
    background: var(--gradient-light-blue);
    position: relative;
}

@media(hover: hover) {
    .a-btn--icon--bg:hover .a-icon--bg::after {
        opacity: 1;
        visibility: visible;
    }
}

.a-btn--icon--bg::before {
    display: none;
}

.a-btn--icon--bg .a-icon--bg {
    position: absolute;
    left: 0;
    top: 0;
    cursor: pointer;
}

.a-btn--icon--bg span {
    padding-left: 40px;
}

.a-btn--grey {
    background: linear-gradient(90deg, #BFE8E3 0%, #BFEAF5 100%);
    color: var(--dark-blue);
}

.a-btn--grey::before {
    background: var(--white);
}

.a-btn--grey:hover {
    color: var(--dark-blue);
}

.a-btn--primary {
    color: var(--white);
    position: relative;
    background: var(--dark-blue);
    overflow: hidden;
}

.a-btn--primary::before {
    background: var(--ultra-dark-blue);
}

.a-btn--primary--gradient {
    color: var(--white);
    position: relative;
    background: var(--gradient-green-to-blue);
    overflow: hidden;
}

.a-btn--primary--gradient::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(-90deg, #00A490 0%, #002F4C 100%);
    opacity: 0 !important;
    visibility: visible !important;
    transition: opacity 0.75s ease;
    border-radius: 50px;
    overflow: hidden;
}

.a-btn--primary--gradient:hover::before {
    opacity: 1 !important;
}

.a-btn--secondary--blue {
    color: var(--dark-blue);
    background-color: var(--white);
    border: 1px solid transparent;
    background-image: linear-gradient(white, white),
        linear-gradient(-90deg, #00A490 0%, #002F4C 100%);
    background-origin: border-box;
    background-clip: padding-box, border-box;
}

.a-btn--secondary--transparent {
    color: var(--white);
    background-color: transparent;
    border: 2px solid var(--white);
}

.a-btn--secondary--transparent::before {
    background: white;
}

@media(hover: hover) {
    .a-btn--secondary--transparent:hover {
        color: var(--ultra-dark-blue);
        background: white;
    }
}

.a-btn--reset {
    text-decoration: none;
    margin: 8px 0;
    padding: 0;
    color: var(--ultra-dark-blue);
    opacity: 0.5;
    transition: opacity 0.3s ease;
}

.a-btn--reset-active {
    opacity: 1;
}

.a-btn--reset:hover {
    opacity: 1;
    color: var(--ultra-dark-blue);
}

.a-btn--reset:before {
    display: none;
}


.a-btn--small {
    padding: 8px 16px;
    min-height: 34px;
    border-radius: 24px;
    font-size: 12px;
}

.a-btn--clear {
    background: #E6EFF5;
    color: var(--ultra-dark-blue);
    padding: 8px 16px;
    font-size: 14px;
    display: none;
}

.a-btn--disabled {
    background: #80AECB;
    cursor: not-allowed;
}

.a-btn--inactive {
    opacity: 0.5;
}

.a-btn--center {
    display: flex;
    margin: 0 auto;
    width: max-content;
}

.a-btn--filter {
    overflow: visible;

}

.a-btn--filter .m-filter-count {
    top: 8px;
    right: -6px;
}

.a-img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
    object-position: center center;
}

.a-img--mobile {
    display: block;
    object-position: center center;
}

.a-img--desktop {
    display: none;
}

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

    .a-img--desktop {
        display: block;
    }
}

.a-heading {
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 24px;
}

h1,
.a-heading--h1 {
    font-size: clamp(32px, 6vw, 48px) !important;
}

h2,
.a-heading--h2 {
    font-size: clamp(28px, 4.5vw, 36px) !important;
}

h3,
.a-heading--h3 {
    font-size: clamp(20px, 3.5vw, 30px) !important;
}

h4,
.a-heading--h4 {
    font-size: clamp(18px, 3vw, 24px) !important;
}

.a-text {
    font-weight: 400;
    line-height: 1.5;
    margin-bottom: 24px;
}

.a-text--m {
    font-size: 16px;
}

.a-text--sm {
    font-size: 12px;
}

.a-text--s {
    font-size: 14px;
}

.a-icon--bg {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50px;
    border: none;
    aspect-ratio: 1/1;
    font-size: 20px;
    position: relative;
}

.a-icon--bg::before {
    position: relative;
    z-index: 2;
}

.a-icon--bg::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    z-index: 1;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
}

.a-icon--bg--m {
    width: 55px;
    height: 55px;
}

.a-icon--xs {
    font-size: 18px;
}

.a-icon--s {
    font-size: 20px;
}

.a-icon--m {
    font-size: 30px;
}

.a-icon--l {
    font-size: 40px;
}

.a-icon--bg-grey {
    background: var(--gradient-gray);
}

.a-icon--bg-green {
    background: var(--gradient-green-to-blue);
    color: white;
}

.a-icon--bg-green::after {
    background: linear-gradient(180deg, #00B49E 0%, #008AAF 100%);
}

.a-icon--bg-dark-blue {
    background: var(--gradient-dark-blue);
    color: white;
}

.a-icon--bg-dark-blue::after {
    background: linear-gradient(180deg, #00ADD7 0%, #005E98 100%);
}

.a-icon--bg-dark-blue:hover::after {
    opacity: 1;
    visibility: visible;
}

.a-icon--close {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 24px;
    height: 24px;
    background: linear-gradient(90deg, #005E98 0%, #002F4C 100%);
    border-radius: 99px;
    color: white;
    font-size: 22px;
    font-style: normal;
    font-family: fangsong;
    font-weight: 700;
    line-height: 1.5;
    cursor: pointer;
    padding-bottom: 1px;
}

.a-separator {
    position: relative;
    background: var(--gradient-light-blue-to-blue);
    z-index: 4;
    height: 1px;
    display: block;
    opacity: 0.25;
}

.a-separator--light {
    background: linear-gradient(90deg, rgba(191, 234, 245, 0.5) 0%, rgba(191, 232, 227, 0.75) 100%);
}


.a-badge {
    padding: 8px;
    border-radius: 8px;
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 8px;
}

.a-badge span {
    position: relative;
    top: 2px;
}

.a-badge .a-text--sm {
    margin-bottom: 0;
    font-weight: 600;
}


.a-badge--green {
    background: var(--gradient-green);
}

.a-badge--blue {
    background: var(--gradient-blue);
}

.a-badge--red {
    background: var(--gradient-red);
}



.a-tag:has(i) {
    display: flex;
    align-items: center;
    gap: 8px;
}

.a-tag .a-text {
    margin-bottom: 0;
}

.a-tag {
    font-size: 12px;
    padding: 8px;
    border-radius: 4px;
    position: relative;
    z-index: 1;
    background-color: #fff;
    line-height: 1;
    text-decoration: none;
    transition: all 0.3s ease;
    color: var(--ultra-dark-blue);
}

.a-tag i {
    font-size: 14px;
    position: relative;
    top: -1px;
}

.a-tag::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(90deg, #BFD7E5 0%, rgba(191, 215, 229, 0) 100%);
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    z-index: -1;
    transition: all 0.3s ease;
}

/* .a-tag:hover {
    text-decoration: none;
    color: var(--white);
    background: linear-gradient(90deg, rgba(0, 94, 152, 1) 0%, rgba(0, 94, 152, 0.5) 75%, rgba(0, 94, 152, 0) 100%);
}

.a-tag:hover::before {
    background: linear-gradient(90deg, rgba(0, 94, 152, 1) 0%, rgba(0, 94, 152, 0.5) 75%, rgba(191, 215, 229, 0) 100%);
} */

.a-tag--transparent {
    background-color: transparent;
    color: var(--white);
}

.a-tag--blue {
    position: relative;
    color: var(--white);
    background: var(--dark-blue);
    border-radius: 4px;
    z-index: 1;
}

.a-tag--red {
    position: relative;
    color: var(--white);
    background: linear-gradient(90deg, rgba(255, 64, 64, 0.5) 0%, rgba(255, 159, 159, 0) 100%);
    border-radius: 4px;
    z-index: 1;
    font-size: 16px;
}

.a-tag--red::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(90deg, #FF4040 0%, rgba(255, 64, 64, 0) 100%);
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    z-index: -1;
}



.a-dropdown {
    border: 1px solid rgba(230, 239, 245, 1);
    padding: 8px 16px;
    border-radius: 8px;
    color: var(--ultra-dark-blue);
    font-size: 12px;
    width: auto;
    min-width: fit-content;
}


.a-content--vertical {
    display: block;
}

.a-content--horizontal {
    display: flex;
    gap: 0 16px;
    margin-bottom: 0;
}

input[type=text].a-input {
    border: 1px solid rgba(230, 239, 245, 1);
    padding: 8px 16px;
    border-radius: 46px;
    color: var(--ultra-dark-blue);
    font-size: 14px;
    background-color: white;
    height: 36px;
}

input[type=text].a-input.a-input--xs {
    font-size: 12px;
}

img.a-icon {
    width: auto;
    height: 96px;
}


.a-select {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 8px 32px 8px 16px;
    gap: 8px;
    min-height: 34px;
    background: #FFFFFF;
    border: 1px solid #E6EFF5;
    border-radius: 8px;
    width: fit-content;
    cursor: pointer;
    position: relative;
}


.a-select .a-icon {
    font-size: 5px;
    position: absolute;
    top: 50%;
    right: 16px;
    transform: translateY(-50%);
}

.a-select .a-text {
    margin-bottom: 0;
}

.a-count {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2px 4px;
    width: 14px;
    height: 14px;
    background: #00A490;
    border-radius: 99px;
    font-size: 10px;
    line-height: 1.5;
    color: var(--white);
}

.a-option[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    width: 16px;
    height: 16px;
    border: 1px solid #80AECB;
    border-radius: 2px;
    background: #fff;
    cursor: pointer;
    position: relative;
    transition: border-color 0.2s;
    vertical-align: middle;
}

.a-option[type="checkbox"]:checked {
    border-color: #1CB9A6;
    background: #1CB9A6;
}

.a-option[type="checkbox"]:checked::after {
    content: '';
    position: absolute;
    left: 4px;
    top: 1px;
    width: 6px;
    height: 10px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
    pointer-events: none;
}

.a-option[type="checkbox"]:checked+label {
    color: var(--ultra-dark-blue);
}

.m-option:has(.a-option[type="checkbox"]:checked) {
    border: 1px solid transparent;
    background-image: linear-gradient(white, white), linear-gradient(90deg, #00B49E 0%, #008AAF 100%);
    background-origin: border-box;
    background-clip: padding-box, border-box;
}

select.a-sort {
    all: unset;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    width: 100%;
    box-sizing: border-box;
    font-size: 14px;
    position: relative;
    top: 1px;
}

.m-results {
    display: flex;
    align-items: center;
    gap: 5px;
}


/* =========================ATOMS ENDS========================== */










/* =========================MOLECULES========================== */

.m-shape {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    clip-path: polygon(0 13.042vw, 100% 0, 100% 100%, 0 70%);
    background: linear-gradient(90deg, #00ADD7 0%, #005E98 100%);
}

.m-shape-slide {
    padding: 150px 0;
    background: linear-gradient(90deg, #00ADD7 0%, #005E98 100%);
    clip-path: polygon(0 13.042vw, 100% 0, 100% 100%, 0 70%);
    margin-bottom: 21px;
}

@media (max-width:768px) {
    .m-shape-slide {
        background: linear-gradient(90deg, #005E98 0%, #005E98 100%);
    }
}


.m-shape--green-blue {
    background: linear-gradient(90deg, #00A490 0%, #008AAF 100%);
}

.m-shape--blue-dark-blue {
    background: linear-gradient(90deg, #005E98 0%, #002F4C 100%);
}

.m-shape--dark-blue {
    background: var(--ultra-dark-blue);
}

@media (max-width:768px) {
    .m-shape {
        clip-path: polygon(0 13.042vw, 100% 0, 100% 100%, 0 93%);
    }

    .m-shape-slide {
        padding: 0 0 45px;
        clip-path: polygon(0 13.042vw, 100% 0, 100% 100%, 0 90%);
    }
}

.m-separator {
    position: relative;
    z-index: 5;
    padding: 48px 0;
    z-index: 0;
}

@media (max-width:768px) {
    .m-separator {
        padding: 32px 0;
    }
}

.m-tabs {
    margin: 0 auto;
}

.m-tab-list {
    display: flex;
    justify-content: center;
}

.m-tab-list--wrapper {
    background: linear-gradient(90deg, rgba(239, 239, 245, 0.5) 0%, rgba(230, 239, 245, 0.75) 100%);
    border-radius: 50px;
    padding: 12px 16px;
    display: flex;
    gap: 15px;
    justify-content: center;
}

@media (max-width: 630px) {
    .m-tab-list--wrapper {
        overflow-x: auto;
        justify-content: start;
    }

    .tab span {
        white-space: nowrap;
    }
}


.tab {
    padding: 16px 32px;
    cursor: pointer;
    background-color: var(--white);
    border-radius: 50px;
    outline: none;
    border: transparent;
    font-size: 14px;
    border: 1px solid #E6EFF5;
    color: var(--blue);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    position: relative;
}

.tab::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-light-blue-to-blue);
    opacity: 0;
    pointer-events: none;
    transition: .3s;
    z-index: 1;
    border-radius: 30px;
}

.tab span {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 5px;
}

.tab i {
    font-size: 20px;
}

.tab span {
    font-weight: 600;
}

.tab.active {
    background: var(--gradient-light-blue-to-blue);
    color: var(--white);
    border: none;
}

.tab:hover {
    color: var(--white);
    background: var(--gradient-light-blue-to-blue);
}

.tab:hover::after {
    opacity: 1;
}

.m-tab-content {
    opacity: 0;
    pointer-events: none;
    position: absolute;
    left: 0;
    top: 105px;
    width: 100%;
    min-height: 200px;
    transition: opacity 0.5s ease;
    z-index: 0;
    display: flex;
    gap: 20px;
}

.m-tab-content.active {
    opacity: 1;
    pointer-events: auto;
    position: relative;
    z-index: 1;
    top: 0;
    transition: opacity 0.9s ease;
}

.m-card {
    border: 1px solid var(--light-blue);
    transition: all var(--transition-timing) var(--cubic-bezier);
    border-radius: 16px;
    overflow: hidden;
    background-color: var(--white);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.m-card:not(.m-card--row) {
    min-height: 560px;
}

@media(min-width: 992px) {
    .m-card:not(.m-card--row) {
        min-height: 640px;
    }
}

.m-card--upcoming {
    aspect-ratio: unset;
}

.m-card:not(:has(.m-card__top)) {
    align-self: center;
    height: fit-content;
}

.m-card .m-card__bottom .m-tags {
    margin-bottom: 12px;
}

.m-card--row {
    border: 0;
    position: relative;
    aspect-ratio: unset;
}

.m-card--row .m-card__top {
    margin-bottom: 24px;
    border-radius: 8px;
    overflow: hidden;
}

@media (max-width: 768px) {
    .m-card--row .m-card__top {
        display: none;
    }
}

.m-card--row::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 24px;
    width: calc(100% - 48px);
    height: 1px;
    background: linear-gradient(90deg, rgb(191, 234, 245, 0.05), rgb(191, 232, 227, 0.75));
}

@media (min-width: 576px) {
    .m-card--row {
        display: flex;
        flex-direction: row;
        gap: 24px;
    }
}

.m-card__top {
    position: relative;
    width: 100%;
    margin-bottom: 24px;
    min-height: 280px;
}

@media(min-width: 992px) {
    .m-card__top {
        min-height: 320px;
    }
}

.m-card__top img.a-img {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
    height: 100%;
    width: 100%;
    clip-path: polygon(0 0, 100% 0, 100% 80%, 0 100%);
    object-fit: cover;
    object-position: bottom;
}

.m-card--row .m-card__top img.a-img {
    object-position: right center;
}

.m-card__top::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 8px;
    clip-path: polygon(0 0, 100% 0, 100% 80%, 0 100%);
    background: linear-gradient(189.96deg, rgba(0, 94, 152, 0) 63.8%, rgba(0, 94, 152, 0.5) 92.53%);
    z-index: 1;
    pointer-events: none;
}

.m-card--live .m-card__top::after {
    background: linear-gradient(189.91deg, rgba(255, 255, 255, 0) 56.84%, rgba(0, 180, 158, 0.75) 92.56%);
}


.m-card--row .m-card__top::after,
.m-card--row .m-card__top img.a-img {
    clip-path: unset;
}

.m-card--no-image .m-card__top::after {
    position: absolute;
    width: 387.85px;
    min-width: 100%;
    height: 80.07px;
    left: -10px;
    top: -30px;
    background: linear-gradient(90deg, #BFE8E3 0%, #FFFFFF 100%);
    transform: rotate(-8deg);
}

.m-card--no-image .m-card__top {
    min-height: unset;
    height: 80px;
}

.m-card--no-image .m-card__top .m-card__info {
    bottom: 0;
}

.m-card--no-image .m-card__bottom {
    height: calc(100% - 104px) !important;
}

.m-badges {
    position: absolute;
    top: 0;
    left: 0;
    padding: 20px;
}

.m-tags {
    display: flex;
    gap: 15px 8px;
    align-items: center;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .m-tags .m-tag--no-border {
        width: 100%;
    }
}

.m-tags p {
    font-size: 16px;
    margin-bottom: 0 !important;
    color: var(--ultra-dark-blue);
}

.m-tags--space {
    margin-bottom: 30px;
}

@media (min-width: 576px) {
    .m-card--row .m-card__top {
        height: auto;
        min-height: 0;
        margin-bottom: 0;
        max-width: 19%;
        aspect-ratio: 1/1;
    }
}

.m-card__bottom {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
}


.m-card:not(.m-card--row) .m-card__bottom {
    height: calc(100% - 320px);
}

.m-card--padding {
    padding: 0 24px 24px 24px;
}

.m-card--row .m-card__bottom {
    justify-content: start;
}

.m-card__bottom .m-buttons {
    display: flex;
    margin-top: 16px;
}

.m-card__bottom .a-heading {
    margin-bottom: 24px;
}

.m-card--row .m-card__bottom .a-heading {
    margin-bottom: 8px;
}

.m-card__bottom .a-text {
    margin-bottom: 24px;
    font-size: 16px;
}

.m-card--podcast .m-card__top {
    min-height: 470px;
}

.m-card--podcast:not(.m-card--row) .m-card__bottom {
    height: calc(100% - 320px);
}

.m-btns {
    display: flex;
    gap: 20px;
    align-items: center;
}

.m-btns a {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}

.m-btns .a-text--sm {
    margin-top: 10px;
    text-decoration: none;
}

.m-btns .a-text--sm,
.m-btns .a-text--sm i {
    font-weight: 600;
}

@media (min-width: 576px) {
    .m-card--row .m-card__bottom {
        width: calc(100% - 138px);
        height: auto;
        padding: 0;
        min-height: unset;
    }

    .m-card--row .m-card__bottom .a-text {
        display: flex;
        gap: 0 16px;
        margin-bottom: 0;
    }
}

.m-card__link {
    display: block;
    position: absolute;
    z-index: 1;
    width: 100%;
    height: 100%;
}

.m-card__info {
    position: absolute;
    bottom: -5px;
    left: 0;
    z-index: 3;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    pointer-events: none;
    padding: 0 20px;
}

.m-card__info .a-tag {
    pointer-events: auto;
}

.m-card-img {
    margin-top: 24px;
}

.m-card-btn.a-btn {
    margin-bottom: 0;
}

.m-swiper {
    width: 100%;
    height: 100%;
}

.m-slider {
    overflow: hidden;
}

.m-swiper {
    width: 100%;
    height: 100%;
}

.m-swiper--slide {
    position: relative;
    height: auto;
    color: white;
}

.m-swiper--slide .m-swiper--slide__inner {
    padding: 45px 30px;
}

@media(min-width: 992px) {
    .m-swiper--slide .m-swiper--slide__inner {
        padding: 45px 0 45px 45px;
    }

    .o-slider {
        transition: transform .4s linear;
    }
}

.o-slider .swiper {
    overflow: visible;
}

@media (max-width:768px) {
    .o-slider--podcasts .m-swiper--slide .m-swiper--slide__inner {
        padding: 24px 24px 0;
    }

    .o-slider:not(.o-slider--podcasts) .m-swiper--slide__inner,
    .o-slider--podcasts .m-swiper--slide {
        display: flex;
        flex-direction: column-reverse;
        gap: 48px;
    }

    .o-slider--podcasts .m-swiper--slide {
        background: linear-gradient(180deg, rgba(0, 47, 76, 0) 15%, #002F4C 100%), linear-gradient(0deg, #00A490, #00A490), #002F4C !important;
    }

    .o-slider--podcasts .m-swiper--slide .m-swiper--slide__inner {
        padding: 0 24px 48px
    }


    .o-slider:not(.o-slider--podcasts) .m-swiper--slide__inner::after {
        background: linear-gradient(180deg, rgba(0, 47, 76, 0) 15%, rgba(0, 47, 76, 1) 100%);
    }

    .o-slider:not(.o-slider--podcasts) .m-swiper--slide__inner .a-icon {
        margin-top: 0;
    }
}

.o-slider:not(.o-slider--podcasts) .m-swiper--slide {
    width: calc(100% - 30px);
}

@media (min-width: 1200px) {
    .o-slider:not(.o-slider--podcasts) .m-swiper--slide {
        width: 1290px !important;
    }

    .o-slider:not(.o-slider--podcasts) .m-swiper--slide .m-swiper--slide__inner {
        padding: 84px 96px 84px 96px;
    }

    .o-slider:not(.o-slider--podcasts).o-slider--padding-bottom .m-swiper--slide .m-swiper--slide__inner {
        padding: 84px 96px 42px 96px;
    }
}

@media (min-width: 1580px) {
    .o-slider:not(.o-slider--podcasts) .m-swiper--slide {
        width: 1400px !important;
    }
}

.m-hero--swiper--slide .a-text--veeva {
    text-align: right;
    margin-bottom: 0;
    margin-top: 48px;
    margin-bottom: 24px;
}

@media(min-width: 768px) {
    .m-hero--swiper--slide .a-text--veeva {
        margin-bottom: 0;
    }
}

.m-swiper--slide__inner {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 16px;
}

.o-slider .m-swiper--slide__inner::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(270deg, rgba(0, 47, 76, 0) 15%, rgba(0, 47, 76, 1) 100%);
    pointer-events: none;
    z-index: -1;
    border-radius: 16px;
}

.m-swiper--slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
    position: absolute;
    top: 0;
    left: 0;
    object-fit: cover;
    z-index: -1;
}

.m-swiper--slide .a-img--desktop {
    display: none;
}

.m-swiper--slide .a-img--mobile {
    display: block;
}

@media(min-width: 992px) {
    .m-swiper--slide .a-img--desktop {
        display: block;
    }

    .m-swiper--slide .a-img--mobile {
        display: none;
    }
}

.o-slider--podcasts .m-swiper--slide {
    background: linear-gradient(270deg, rgba(0, 47, 76, 0) 15%, #002F4C 100%), linear-gradient(0deg, #00A490, #00A490), #002F4C;
    border-radius: 16px;
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    align-items: center;
    height: auto;
}

.o-slider--podcasts .m-swiper--slide .m-swiper--slide__inner {
    height: auto;
}

.o-slider--podcasts .m-swiper--slide .m-swiper--slide__inner::after {
    display: none;
}

.o-slider--podcasts .m-swiper--slide img {
    position: relative;
    rotate: 8deg;
    height: auto;
    object-fit: contain;
    width: 70%;
    margin: 48px auto;
}

.o-slider--podcasts .m-swiper--slide .m-swiper--slide__inner .m-tags {
    margin-bottom: 24px;
}

.o-slider--podcasts .m-swiper--slide .m-swiper--slide__inner {
    width: 100%;
}



.o-slider .m-swiper--slide img {
    object-position: 20% center;
}



@media (min-width: 768px) {
    .o-slider--podcasts .m-swiper--slide .m-swiper--slide__inner {
        width: calc(55% - 8px);
    }

    .o-slider--podcasts .m-swiper--slide img {
        width: calc(45% - 68px);
        margin: 45px 45px 45px 0;
    }

    .o-slider--img img {
        width: 50%;
        right: 0;
        left: auto;
    }
}

.m-swiper--slide__inner--content .m-tags {
    margin-bottom: 24px;
}

.m-swiper--slide__inner--content .a-text--veeva {
    margin-bottom: 0;
    margin-top: 24px;
}

.m-swiper--slide__inner>.icon-play-video-icon {
    font-size: 100px;
    color: white;
    z-index: 137;
    cursor: pointer;
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

@media (min-width: 768px) {
    .m-swiper--slide__inner>.icon-play-video-icon {
        position: absolute;
        top: 38%;
        right: 25%;
        margin-top: 0;
    }
}

.o-podcast-slider .m-swiper--slide {
    height: 410px;
}

@media (min-width: 768px) and (max-width: 1024px) {
    .m-swiper--slide__inner--content {
        max-width: 60%;
    }
}

@media (min-width: 1025px) {
    .m-swiper--slide__inner--content {
        max-width: 41%;
    }
}

.m-hero--swiper--slide {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.m-hero--swiper--slide .m-img,
.m-hero--swiper--slide .a-img:not(.m-img .a-img) {
    margin-bottom: 24px;
}

@media (min-width: 768px) {
    .m-hero--swiper--slide__inner {
        width: 55%;
    }

    .m-hero--swiper--slide>.a-img {
        transform: translateX(20px) rotate(-8deg);
        transition: transform 1.75s ease;
        will-change: transform;
    }

    .m-hero--swiper--slide>.a-img.active {
        transform: translateX(20px) rotate(0deg);
    }

    .m-hero--swiper--slide>.a-img,
    .m-hero--swiper--slide>.m-img {
        width: 45%;
    }
}

@media (min-width: 992px) {
    .m-hero--swiper--slide>.a-img {
        position: relative;
        left: -70px;
    }

    .m-hero--swiper--slide__inner p,
    .m-hero--swiper--slide__inner h3 {
        max-width: 80%;
    }
}


.m-hero--slider {
    width: 100%;
    height: 100%;
    overflow: visible;
}


.m-tag--no-border {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--white);
    border: none;
    font-size: 14px;
    min-height: 35px;
    margin-right: 20px;
}


.m-events--section__content--past--cards {
    display: flex;
    flex-direction: column;
    gap: 20px;

}

.m-events--section__content--past--cards .grid--span-3-mobile:not(:last-child) {
    border-bottom: 1px solid transparent;
    border-image: linear-gradient(90deg,
            rgba(191, 234, 245, 0.05) 0%,
            rgba(191, 232, 227, 0.75) 100%) 1;
    padding-bottom: 20px;
}


.m-events--section__content--past--cards .grid--span-3-mobile .m-tags,
.m-events--section__content--past--cards .m-card__text .a-text--m {
    margin-bottom: 15px;
}

.m-events--section__content--past .m-tags,
.m-events--section__content--past .m-card__text>.a-text {
    margin-bottom: 13px;
}

.m-events--section__content--past .m-card__text>.a-heading {
    margin-bottom: 0;
}

@media(min-width: 1300px) {
    .m-events--section__content--past .o-cards--grid {
        width: 100%;
    }
}

.m-card__text {
    width: 90%;
}

.m-events--section__wrapper {
    position: relative;
    overflow: hidden;
    height: 100%;
    min-height: 860px;
    border-radius: 16px;
    padding: 48px 24px;
}

.m-events--section__content>.a-btn {
    margin-top: 24px;
}

@media (min-width: 768px) {
    .m-events--section__wrapper {
        padding: 48px;
    }
}

@media (min-width: 1200px) {
    .m-events--section__wrapper {
        padding: 48px 120px;
    }
}

.m-events--section__wrapper img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.m-events--section__wrapper::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    background: linear-gradient(180deg, #06304B 0%, #00B49E 100%);
    border-radius: 16px;
    z-index: -1;


}

.m-events--section__content {
    position: sticky;
    z-index: 3;
    width: 100%;
}

.m-events--section__header {
    margin-bottom: 48px;
}

.m-events--section__content--upcoming {
    width: 100%;
    position: relative;
}


@media (max-width: 1400px) {
    .m-events--section__content--upcoming.grid--span-2-mobile {
        grid-column: span 2;
    }
}

.m-events--section__content--upcoming::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 1px;
    height: 100%;
    background: linear-gradient(90deg, rgba(191, 234, 245, 0.05) 0%, rgba(191, 232, 227, 0.75) 100%);
    opacity: 0.5;
}

@media (max-width: 1200px) {
    .m-events--section__content--upcoming::after {
        display: none;
    }
}

@media (min-width: 1200px) {
    .m-events--section__content--upcoming {
        padding-right: 20px;
    }
}

.m-events--section__content .a-heading--h3 {
    margin-bottom: 24px;
    font-weight: 600;
}

.m-events--section__content--upcoming .o-cards--grid {
    width: 100%;
}


.m-controls {
    display: flex;
    align-items: center;
    gap: 24px;
}

.m-controls .swiper-button-prev,
.m-controls .swiper-button-next,
.m-controls .swiper-pagination {
    position: relative;
    top: unset;
    transform: unset;
    left: unset;
    right: unset;
    border: none;
    color: var(--white);
}

.m-controls .swiper-pagination {
    transform: translateY(-100%);
}

.m-controls .swiper-pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    aspect-ratio: 1/1;
    background-color: #E6EFF5;
    margin: 0 2px;
}

.m-controls .swiper-pagination .swiper-pagination-bullet-active {
    background: linear-gradient(90deg, #008AAF 0%, #005E98 100%);
}

.m-img {
    position: relative;
    z-index: 1;
}

.m-img img {
    position: relative;
    z-index: 2;
}

.m-img--linear::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 4;
    background: linear-gradient(180deg, rgba(0, 173, 215, 0) 55.4%, #00ADD7 100%);
}

.m-img--linear-green::before {
    background: linear-gradient(189.91deg, rgba(255, 255, 255, 0) 21.11%, rgba(0, 180, 158, 0.75) 67.55%);
}

.app-footer--bento-box {
    background: linear-gradient(180deg, #005E98 55%, #001F32 95.89%)
}


.o-footer::before {
    content: '';
    position: absolute;
    left: 0%;
    width: 116%;
    height: 370px;
    clip-path: polygon(0 0, 100% 0, 100% 80%, 0 100%);
    z-index: 1;
    top: -194px;
    background: linear-gradient(24deg, #005E98 72.87%, #00B49E 96.59%);
    transform: rotate(-6deg);
    pointer-events: none;
}

@media (max-width:767px) {
    .o-footer::before {
        top: -120px;
        clip-path: polygon(0 15%, 100% 0, 100% 100%, 0% 100%);
        width: 100%;
        transform: none;
    }
}

.o-filters__inner {
    display: flex;
    align-items: center;
    width: 100%;
    gap: 16px;
    flex-wrap: wrap;
    backdrop-filter: blur(10px);
}

.m-filters .a-text .a-icon {
    position: relative;
    top: -2px;
}

.m-filters {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    background: linear-gradient(90deg, rgba(239, 239, 245, 0.5) 0%, rgba(230, 239, 245, 0.75) 100%);
    border-radius: 46px;
    padding: 12px 24px;
}

.m-filters .a-text {
    margin-bottom: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.m-filters .a-text .a-icon {
    position: relative;
    top: -2px;
}

.m-filter-form {
    background: linear-gradient(90deg, rgba(239, 239, 245, 0.5) 0%, rgba(230, 239, 245, 0.75) 100%);
    border-radius: 46px;
    padding: 12px;
    position: relative;
    display: flex;
    align-items: center;
    flex: 1;
    flex-grow: 1;
}

.m-filter-form .a-input {
    width: 100%;
}

.m-filter-form .a-icon {
    position: absolute;
    right: 25px;
    font-size: 16px;
    color: var(--ultra-dark-blue);
    pointer-events: none;
}


.m-dropdown {
    position: relative;
    display: inline-flex;
    min-width: 100px;
}

.m-dropdown select.a-dropdown {
    width: 100%;
    min-width: max-content;
    background: var(--white);
    height: 34px;
    padding: 0 24px 0 12px;
    border: 1px solid rgba(230, 239, 245, 1);
    border-radius: 8px;
    font-size: 12px;
    color: var(--ultra-dark-blue);
    appearance: none;
}

.m-dropdown:after {
    content: "\e901";
    font-family: 'icomoon4';
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--ultra-dark-blue);
    pointer-events: none;
    font-size: 7px;
}

@media (max-width: 1200px) {
    .m-filters {
        justify-content: flex-start;
    }

    .m-dropdown {
        flex: 1 1 auto;
    }
}


.m-input {
    border-radius: 46px;
    background: linear-gradient(90deg, rgba(239, 239, 245, 0.5) 0%, rgba(230, 239, 245, 0.75) 100%);
    border-radius: 46px;
    padding: 12px;
    position: relative;
    display: flex;
    align-items: center;
    flex: 1;
    min-width: 224px;
}

.m-input .a-input {
    padding-left: 36px;
    width: 100%;
    border: 1px solid rgba(230, 239, 245, 1);
    border-radius: 8px;
    height: 48px;
    font-size: 12px;
    color: var(--ultra-dark-blue);
}

.m-input .a-icon {
    position: absolute;
    right: 25px;
    font-size: 16px;
    color: var(--ultra-dark-blue);
    pointer-events: none;
}

@media(min-width: 1200px) and (max-width: 1580px) {

    .o-filters__inner .a-text--s,
    .o-filters__inner .input[type=text].a-input {
        font-size: 12px;
    }

    .m-filter-form {
        min-width: 180px;
    }
}

.m-info--banner {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
}

.m-info--banner .a-text {
    margin-bottom: 0;
}

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

.m-card-icon {
    display: inline-flex;
    padding: 48px;
    border-radius: 16px;
    background: linear-gradient(90deg, rgba(191, 234, 245, 0.05) 0%, rgba(191, 232, 227, 0.75) 100%);
    gap: 48px;
    width: 100%;
}

.m-card-icon .a-heading {
    margin-bottom: 0;
}

.m-card-icon .a-heading {
    width: 100%;
}



.m-card-icon--reverse {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 48px;
    border-radius: 16px;
    border: 1px solid transparent;
    background: linear-gradient(#fff, #fff) padding-box,
        linear-gradient(90deg, rgba(230, 239, 245, 0.5) 0%, #E6EFF5 100%) border-box;
    background-origin: border-box;
    background-clip: padding-box, border-box;
}

.m-card-icon--reverse img {
    margin-bottom: 24px;
}

.m-card-icon--reverse .a-heading {
    margin-bottom: 0 !important;
}

.m-card-icon--bg {
    background: linear-gradient(rgba(230, 246, 244, 1), rgba(230, 246, 244, 1)) padding-box,
        linear-gradient(90deg, rgba(230, 239, 245, 0.5) 0%, #E6EFF5 100%) border-box;
    background-origin: border-box;
    background-clip: padding-box, border-box;
}

.m-card-past {
    position: relative;
}

.m-card-past:last-child:after {
    display: none;
}

.m-card-past::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -12px;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, rgba(191, 234, 245, 0.05) 0%, rgba(191, 232, 227, 0.75) 100%);
    opacity: 0.5;
}

@media (max-width: 768px) {
    .m-card-icon {
        flex-direction: column-reverse;
        align-items: center;
        padding: 21px;
    }

    .m-card-icon--reverse {
        padding: 21px;
    }
}

.m-breadcrumb {
    margin: 0 0 24px 0;
}

.m-breadcrumb .breadcrumbs>span {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px 0;
}

.m-breadcrumb .breadcrumbs span {
    font-size: 12px;
    line-height: 1.5;
    color: rgba(230, 239, 245, 1);
}

.m-breadcrumb .breadcrumbs span a {
    position: relative;
}

.m-breadcrumb .breadcrumbs span a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 100%;
    height: 1px;
    background: var(--white);
    transform: scaleX(0);
    transform-origin: right center;
    transition: transform 0.3s ease;
}

.m-breadcrumb .breadcrumbs span a:hover::after {
    transform: scaleX(1);
    transform-origin: left center;
}

.m-breadcrumb .breadcrumbs span.breadcrumb_last,
.m-breadcrumb .breadcrumbs span.current {
    color: rgba(230, 239, 245, 1);
    font-size: 16px;
}

.m-breadcrumb .breadcrumbs span.separator {
    display: inline-block;
    transform: rotate(-90deg) translateX(1px);
    font-size: 5px;
    position: relative;
    margin: 0 8px;
}

.m-select {
    position: relative;

}

.m-select.active .a-select,
.m-select .a-select:has(.m-filter-count) {
    background-color: #E6F6F4;
}

.m-select.active .a-select .a-text {
    font-weight: 600;
}

.m-select__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 8px;
    margin-bottom: 8px;
    border-bottom: 1px solid #E6EFF5;
    width: 100%;
}

.m-select__dropdown {
    position: absolute;
    top: 45px;
    left: 0;
    z-index: 99;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    min-width: 240px;
    background: #FFFFFF;
    border-radius: 16px;
    max-height: 0px;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 24px;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
}

.m-select.active .m-select__dropdown {
    max-height: 436px;
    padding: 16px 24px;
}

.m-select__body {
    max-height: 320px;
    overflow-y: auto;
    width: 100%;
}

.m-select__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 8px;
    border-top: 1px solid #E6EFF5;
    width: 100%;
}

.m-select__footer .a-btn--transparent {
    color: #80AECB;
}

.m-option {
    display: flex;
    align-items: center;
    padding: 8px;
    gap: 8px;
    min-height: 32px;
    border: 1px solid #E6EFF5;
    border-radius: 4px;
    cursor: pointer;
    margin-bottom: 8px;
    width: max-content;
}

.m-option label {
    cursor: pointer;
}

.m-option .a-text {
    position: relative;
    top: 1px;
}

.m-option--single {
    margin-bottom: 0;
    background-color: var(--white);
}

@media (hover: hover) {
    .m-breadcrumb .breadcrumbs span:hover:not(.separator) {
        color: rgba(230, 239, 245, 1);
    }
}

.m-hero-inner {
    width: 100%;
}

.m-hero-inner:not(.m-hero-inner--post) .a-heading {
    max-width: 600px;
}

@media (min-width: 768px) {
    .m-hero-inner {
        width: calc(50% - 20px);
    }

    .m-hero-inner--post {
        width: 100%;
        max-width: 1114px;
        margin: 0 auto;
        position: relative;
        z-index: 2;
        margin-bottom: 60px;
    }
}

.m-filter-count {
    width: 18px;
    height: 18px;
    background-color: #00A490;
    color: var(--white);
    border-radius: 50px;
    font-size: 10px;
    font-weight: 400;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-weight: 600;
    position: absolute;
    top: 50%;
    right: 8px;
    transform: translateY(-50%);
}

.m-sort--dropdown {
    display: flex;
    align-items: center;
    gap: 10px;
}


@media (max-width: 768px) {
    .m-search-banner__inner {
        flex-direction: column-reverse !important;
    }
}

@media (max-width: 992px) {
    .m-not-found {
        margin-bottom: 120px;
    }
}

.m-search-banner__img {
    height: auto;
}

/* =========================MOLECULES ENDS========================== */



/* =========================ORGANISMS========================== */

.o-hero-section {
    position: relative;
    overflow: hidden;
    padding-top: 100px;
    background: linear-gradient(269.97deg, #005E98 3.72%, #002F4C 60%);
}

.o-hero--green {
    background: linear-gradient(90deg, #00A490 0%, #008AAF 100%);
}

.o-hero--banner {
    padding-top: 148px;
}

.o-hero--banner .a-heading {
    margin-bottom: 8px;
}

.o-hero-section .container {
    display: flex;
    flex-direction: column-reverse;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 60px;
    position: relative;
    z-index: 1;
    gap: 8.813vw;
}

@media (max-width: 768px) {
    .o-hero-section .container {
        padding-bottom: 125px;
    }
}

@media(min-width: 992px) {
    .o-hero--banner {
        min-height: 500px;
    }
}

.o-hero-section .container>.m-img {
    position: relative;
}

.o-hero-section>.a-img {
    position: absolute;
    left: 0;
    top: 0;
    z-index: 0;
    max-width: 100%;
    width: auto;
    height: auto;
    min-height: 100vh;
    opacity: 0.5;
}

.o-hero-section>.a-img.a-img--right {
    right: 0;
    left: unset;
    object-position: left bottom;
    min-height: unset;
    height: 100%;
    width: 100%;
}

.o-hero-section>.a-img.a-img--top {
    object-position: center top;
}

.o-hero-section>.a-img.a-img--bottom {
    object-position: center bottom;
}

.o-hero-section>.a-img.a-img--center {
    object-position: center center;
}

.o-hero--cropped {
    clip-path: polygon(0 0, 100% 0, 100% 80%, 0 100%);
}

@media (min-width: 768px) {
    .o-hero-section>.a-img.a-img--right {
        width: 60%;
    }

    .o-hero-section .container {
        flex-direction: row;
        gap: unset;
        padding-bottom: 8.813vw;
    }

    .o-hero-section .container>.m-img {
        width: calc(50% - 45px);
    }

    .o-hero--cropped {
        clip-path: polygon(0 0, 100% 0, 100% 60%, 0 100%);
    }
}

.o-carousel {
    position: relative;
    padding-top: 10.042vw;
    padding-bottom: 2.042vw;
    margin-top: -13.042vw;
    z-index: 1;
}

.o-carousel .swiper-button-next,
.o-carousel .swiper-button-prev {
    width: 56px !important;
    height: 56px !important;
}

.o-carousel .swiper-button-next::before,
.o-carousel .swiper-button-prev::before {
    font-size: 24px;
}

.o-carousel--banner {
    padding-top: 0;
    padding-bottom: 0;
}

.o-carousel--banner a.a-text {
    margin: 0;
}

.o-carousel--banner .m-img .a-img {
    height: calc(100% + 100px);
    position: absolute;
    top: -60px;
    object-position: center;
    transform: scale(1.3);
}

.o-carousel--banner .m-img .a-img.active {
    transform: scale(1);
    transition: transform 0.9s ease-in-out;
    will-change: transform;
}

.o-carousel--banner .m-img {
    height: 35vw;
    clip-path: polygon(0 -15%, 100% -15%, 84% 115%, 0% 100%)
}

@media(min-width:768px) and (max-width:1200px) {
    .o-carousel--banner .m-img {
        top: -3vw;
        height: 50vw;
    }
}

@media (max-width: 768px) {
    .o-carousel--banner .m-hero--swiper--slide__inner {
        margin-bottom: 45px;
    }
}

.o-carousel--banner .m-hero--swiper--slide__inner {
    max-inline-size: 700px;
}

.o-carousel--banner .m-hero--swiper--slide__inner {
    padding: 20px;
}

@media (min-width: 768px) {
    .o-carousel--banner .m-hero--swiper--slide__inner {
        padding: 0;
    }
}

.o-carousel .m-tags {
    margin-bottom: 21px;
}

.o-carousel--banner--content .swiper-slide {
    padding: 100px 0 60px;
}

@media (min-width: 768px) {
    .o-carousel--banner--content .swiper-slide {
        padding: 120px 0;
    }
}


@media (min-width: 1600px) {
    .o-carousel--banner .m-hero--swiper--slide__inner {
        max-inline-size: 800px;
    }
}

@media (max-width: 768px) {
    .o-carousel--banner .m-img {
        width: 100%;
        clip-path: unset;
        margin-bottom: 24px;
        height: auto;
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 90%);
    }

    .o-carousel--banner .m-img .a-img {
        height: 100%;
        top: 0;
        position: relative;
        min-height: 350px;
    }
}

.o-carousel .m-controls {
    margin-top: 20px;
    position: relative;
    top: 50px;
}

@media (max-width: 992px) {
    .o-carousel .m-controls {
        justify-content: center;
    }
}

.o-carousel--banner .m-controls {
    margin: -16% 0 56px;
    padding: 0;
}

.o-carousel--banner--content .m-controls {
    margin: -14% 0 56px;
}

.o-carousel--podcasts .m-shape-slide {
    padding: 125px 0;
}

.o-carousel--podcasts .m-img--linear {
    background: linear-gradient(270deg, rgba(0, 47, 76, 0) 15%, #002F4C 100%), linear-gradient(0deg, #00A490, #00A490), #002F4C;
}

.o-carousel--podcasts .m-img--linear .a-img {
    width: 40%;
    height: auto;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(1) !important;
    border-radius: 12px;
}

.o-carousel--podcasts .m-img--linear::before {
    display: none;
}

@media(max-width: 768px) {
    .o-carousel--podcasts .m-img--linear {
        min-height: 420px;
    }

    .o-carousel--podcasts .m-img--linear .a-img {
        width: 60%;
        min-height: auto;
        position: absolute;
    }

    .o-carousel--podcasts .m-shape-slide {
        padding-top: 0;
    }
}

.o-cards {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 12px;
}


.o-tabs,
.o-posts--section .o-cards--grid {
    width: 100%;
    position: relative;
}

.o-posts--section .a-btn--center {
    margin-top: 48px;
}

.o-filters {
    margin-bottom: 30px;
}

.o-info--section {
    position: relative;
    z-index: 1;
}

.o-info--section__inner {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 20px;
}

.o-info--section__inner--full {
    grid-template-columns: 1fr;
    border: 1px solid;
    border-image-source: linear-gradient(90deg, rgba(230, 239, 245, 0.5) 0%, #E6EFF5 100%);


}

.o-info--section__inner--full .o-info--section__connect .a-img {
    height: 100%;
    width: fit-content;
}

.o-cards {
    position: relative;
    z-index: 3;
}

.o-cards--grid {
    /* padding: 32px 15px; */
    width: 100%;
}

.o-posts--section--grid .o-cards--grid .m-card:nth-last-of-type(1) {
    display: none;
}

@media (max-width: 768px) {
    .o-cards--grid>.m-card {
        order: -1;
    }

    .o-cards--grid .a-heading {
        order: -2;
    }

    .o-cards--grid .a-btn {
        grid-column: span 2;
    }
}

@media (min-width: 768px) and (max-width: 1200px) {
    .o-cards--grid {
        gap: 32px 0;
    }
}

@media (min-width: 1300px) {
    .o-cards--grid {
        width: calc(100% + 80px);
    }
}

.o-cards__inner {
    border-radius: 16px;
    border: 1px solid var(--light-blue);
    padding: 12px 0;
}

.o-cards__inner.row--1 {
    gap: 0;
}

.o-cards__inner .m-card--row {
    height: auto;
    padding: 18px 24px;
}

.o-cards__inner .m-card--row:last-child::after {
    display: none;
}

.o-info--section__connect {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 1px solid rgba(230, 239, 245, 0.5);
    border-radius: 16px;
    padding: 24px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.5) 0%, rgba(255, 255, 255, 0.8) 100%);
}

.o-info--section__connect .m-img {
    position: relative;
}


@media (min-width: 768px) {
    .o-info--section__connect .m-img {
        position: absolute;
        top: -15px;
        left: 0;
        width: 47.5%;
        height: 100%;
        place-content: center;
    }

    .o-info--section__connect .o-info--section__connect--content {
        padding: 180px 96px 180px 50%;
        flex-direction: row;
    }
}

.o-info--section__subscribe {
    display: flex;
    flex-direction: column;
    background: linear-gradient(320.26deg, #00B49E 5.03%, #005E98 12.03%, #21295E 19.02%);
    border-radius: 16px;
    position: relative;
    align-items: center;
    padding: 74px 48px 48px 48px;
    min-height: 640px;
}

@media(min-width: 768px) {
    .o-info--section__subscribe {
        padding: 74px 48px 48px 48px;
    }
}

.o-title--section {
    margin-bottom: 30px;
}

.o-title--section .o-sorting {
    margin-top: 24px;
}

/* .o-cards--grid .o-info--section__subscribe {
    min-height: calc(100% + 40px);
    margin-top: -20px;
    margin-bottom: -20px;
} */

.o-info--section__subscribe .newsletter-form {
    position: absolute;
    top: 30px;
}

.o-info--section__subscribe .newsletter-form .a-text {
    margin-bottom: 5px;
}

.o-info--section__subscribe .newsletter-form .gform_fields,
.o-info--section__subscribe .newsletter-form form {
    display: flex !important;
    flex-direction: column !important;
    width: 100% !important;
}

.o-info--section__subscribe .newsletter-form,
.o-info--section__subscribe .subscribe-content.active {
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    width: 100%;
}

.o-info--section__subscribe .newsletter-form .gform_body {
    width: 100%;
    margin-right: 0 !important;
    margin-bottom: 45px;
}

.o-info--section__subscribe .subscribe-content {
    margin-top: 80px;
}

.o-info--section__subscribe .newsletter-form.active {
    margin-top: 25px;
}

.o-info--section__subscribe .newsletter-form input {
    height: 50px;
    background: #FFFFFF;
    border: 1px solid #80AECB;
    border-radius: 8px;
    padding: 0 24px;
    font-size: 12px;
}

.o-info--section__subscribe .newsletter-form input::placeholder {
    font-size: 12px;
    color: #80AECB
}

.o-info--section__subscribe .subscribe-content,
.o-info--section__subscribe .newsletter-form.active {
    opacity: 1;
    visibility: visible;
}

.o-info--section__subscribe #field_1_2,
.o-info--section__subscribe #field_1_3 {
    width: 100% !important;
    margin-left: 0 !important;
}

.o-info--section__subscribe .a-img {
    display: block;
    position: absolute;
    top: 0;
    left: 20px;
    width: 100%;
    height: auto;
}

.o-info--section__subscribe i {
    position: absolute;
    top: 20%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 78px;
    color: white;
    z-index: 2;
}

.o-info--section__subscribe .subscribe-content .a-btn {
    cursor: pointer;
}

.o-info--section__subscribe--content {
    padding: 30px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    width: 100%;
}

.o-info--section__subscribe--content .has-heading-3-font-size {
    font-weight: 600;
}

.o-info--section__subscribe--content .a-text--m {
    margin-bottom: 80px;
}

.o-info--section__subscribe {
    min-height: unset;
    height: 100%;
}

.o-info--section__subscribe i {
    position: relative;
    top: unset;
    left: unset;
    transform: unset;
}

.o-events--section {
    position: relative;
    min-height: 860px;
}

.o-events--section .container {
    transition: max-width 2s cubic-bezier(0.75, 0, 0.25, 1);
}

@media (max-width: 768px) {
    .o-events--section {
        margin: 0;
    }
}

@media(min-width: 1200px) {
    .o-events--section .container {
        padding: 0;
    }
}

.o-podcast-slider .m-swiper--slide {
    background:
        linear-gradient(270deg, rgba(0, 47, 76, 0) 15%, #002F4C 100%),
        linear-gradient(0deg, #00A490, #00A490);
}

.o-podcast-slider .m-swiper--slide__inner {
    display: flex;
    align-items: center;
    gap: 32px;
    flex-wrap: wrap;
}

.o-podcast-slider .m-swiper--slide__inner--content--wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.o-podcast-slider .m-swiper--slide__inner--content {
    flex: 1 1 400px;
}

.o-podcast-slider .a-img {
    flex: 0 0 auto;
    max-width: 384px;
    transform: rotate(8deg);
    border-radius: 12px;
    padding-top: 15px;
}

.o-search-banner {
    z-index: 1;
    position: relative;
}

.o-footer {
    z-index: 0;
    position: relative;
}

@media(min-width: 768px) {
    .o-footer {
        overflow-x: clip;
    }
}

.o-footer--margin {
    margin-top: 300px;
}

@media (max-width: 768px) {
    .o-footer--margin {
        margin-top: 90px;
    }

    .o-podcast-slider .m-swiper--slide__inner,
    .o-podcast-slider .m-swiper--slide__inner--content--wrapper {
        flex-direction: column;
        align-items: flex-start;
    }
}

.o-about-text .m-text {
    margin-bottom: 20px;
}

.o-about-text {
    padding: 0 20px;
}

.o-about-text .h-gradient {
    padding: 20px;
}

.o-shape {
    position: absolute;
    width: 2484px;
    height: 1200px;
    left: 0px;
    top: 333px;
    background: #E6EFF5;
    opacity: 0.5;
    z-index: -2;
    clip-path: polygon(0 0, 100% 25%, 100% 75%, 0% 100%);
}

.o-shape--home {
    clip-path: polygon(0 20%, 100% 0, 100% 100%, 0 80%);
    height: 1300px;
}

@media (max-width:768px) {
    .o-shape {
        clip-path: polygon(0 0, 100% 6%, 100% 94%, 0% 100%) !important;
    }

    .o-shape--home {
        clip-path: polygon(0 5%, 100% 0, 100% 100%, 0 95%) !important;
    }
}

.triangle-shape {
    position: absolute;
    background: linear-gradient(90deg, rgba(191, 234, 245, 0.05) 0%, rgba(191, 232, 227, 0.75) 100%);
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    pointer-events: none;
}

.triangle-shape--xl {
    width: 201px;
    height: 175px;
}

.triangle-shape--l {
    width: 111px;
    height: 97px;
}

.triangle-shape--m {
    width: 73px;
    height: 63px;
}

.triangle-shape--s {
    width: 50px;
    height: 44px;
}

.triangle-shape--xs {
    width: 37px;
    height: 32px;
}

@media (max-width: 768px) {
    .triangle-shape--xl {
        width: 120px;
        height: 105px;
    }

    .triangle-shape--l {
        width: 70px;
        height: 60px;
    }

    .triangle-shape--m {
        width: 45px;
        height: 39px;
    }

    .triangle-shape--s {
        width: 32px;
        height: 28px;
    }

    .triangle-shape--xs {
        width: 24px;
        height: 21px;
    }
}

.triangle-shape--rotate {
    clip-path: polygon(50% 100%, 0 0, 100% 0);
    background: linear-gradient(to left, rgba(191, 234, 245, 0.05) 0%, rgba(191, 232, 227, 0.75) 100%);
}

.triangle-shape--semitransparent {
    background: linear-gradient(90deg, rgba(0, 138, 175, 0.05) 0%, rgba(0, 164, 144, 0.75) 100%) !important;
    opacity: 0.45;
}

.triangle-shape--blue {
    background: linear-gradient(270deg, #00A490 0%, rgba(0, 138, 175, 0) 100%);
    opacity: 0.6;
}

.triangle-shape--blue.triangle-shape--rotate {
    background: linear-gradient(135deg, #00A490 0%, rgba(0, 138, 175, 0) 100%);
}


.o-shape {
    position: absolute;
    width: 100%;
    height: 1200px;
    left: 0px;
    top: 333px;
    background: #E6EFF5;
    opacity: 0.5;
    z-index: -2;
    clip-path: polygon(0 0, 100% 25%, 100% 75%, 0% 100%);
}

.o-shape--home {
    clip-path: polygon(0 20%, 100% 0, 100% 100%, 0 80%);
    height: 1300px;
}



.o-sorting {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.o-sorting--single {
    margin-top: 24px;
    justify-content: flex-end;
}

/* =========================ORGANISMS ENDS========================== */

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

    .container--large {
        max-width: 1700px;
    }
}

@media (min-width: 1580px) {
    .container--large {
        max-width: 1680px;
    }

    .container--large.active {
        max-width: 1900px;
    }
}

.flexible-columns {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
}

@media (min-width: 576px) {
    .flexible-columns {
        max-width: 100%;
    }
}

@media (min-width: 768px) {
    .flexible-columns {
        max-width: 100%;
    }
}

@media (min-width: 992px) {
    .flexible-columns {
        max-width: 100%;
        padding: 0;
    }
}

@media (min-width: 1200px) {
    .flexible-columns {
        max-width: 1320px;
    }
}

@media (min-width: 1500px) {
    .flexible-columns {
        max-width: 1440px;
    }
}

/* ROW FLEX 1 */
.row--1 {
    display: flex;
    flex-direction: column;
    gap: 24px 0;
    justify-content: center;
}

@media (min-width: 768px) {
    .row--1 {
        display: flex;
        flex-direction: column;
        gap: 24px;
        justify-content: center;
    }
}

/* ROW GRID 1-2 */
.row--1-2 {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 32px 0;
    align-items: stretch;
}

@media (min-width: 768px) {
    .row--1-2 {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px 24px;
        align-items: stretch;
    }
}

/* ROW GRID 1-3 */
.row--1-3 {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 24px;
}

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

@media (min-width: 1200px) {
    .row--1-3 {
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
    }
}

@media (max-width: 1200px) {
    .m-events--section__content--past {
        grid-column: span 2;
    }

    .m-events--section__content--upcoming {
        border-bottom: 1px solid transparent;
        border-right: none;
        padding-bottom: 20px;
    }
}



@media (max-width: 768px) {
    .grid--span-2-mobile {
        grid-column: span 2;
    }
}

@media (min-width: 768px) {
    .grid--span-2 {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .grid--span-3-mobile {
        grid-column: span 2;
    }
}

@media (max-width: 1200px) {
    .grid--span-3-mobile {
        grid-column: span 3;
    }
}


@media (min-width: 768px) {
    .grid--span-3 {
        grid-column: span 2;
    }
}

@media (min-width: 1200px) {
    .grid--span-3 {
        grid-column: span 3;
    }
}

.row--center {
    align-items: center;
}

@media (min-width: 768px) {
    .row--center {
        align-items: center;
    }
}













/*================================================================SPACING*/



@media(max-width: 991px) {
    .s-m-t-xs {
        padding-top: 12px;
    }

    .s-m-t-s {
        padding-top: 24px;
    }

    .s-m-t-m {
        padding-top: 32px;
    }

    .s-m-t-l {
        padding-top: 48px;
    }

    .s-m-t-xl {
        padding-top: 60px;
    }

    .s-m-t-2xl {
        padding-top: 72px;
    }

    .s-m-t-3xl {
        padding-top: 90px;
    }

    .s-m-t-4xl {
        padding-top: 110px;
    }

    .s-m-t-5xl {
        padding-top: 130px;
    }

    .s-m-t-6xl {
        padding-top: 150px;
    }

    .s-m-b-xs {
        padding-bottom: 12px;
    }

    .s-m-b-s {
        padding-bottom: 24px;
    }

    .s-m-b-m {
        padding-bottom: 32px;
    }

    .s-m-b-l {
        padding-bottom: 48px;
    }

    .s-m-b-xl {
        padding-bottom: 60px;
    }

    .s-m-b-2xl {
        padding-bottom: 72px;
    }

    .s-m-b-3xl {
        padding-bottom: 90px;
    }

    .s-m-b-4xl {
        padding-bottom: 110px;
    }

    .s-m-b-5xl {
        padding-bottom: 130px;
    }

    .s-m-b-6xl {
        padding-bottom: 150px;
    }
}

@media(min-width: 992px) {
    .s-d-t-xs {
        padding-top: 12px;
    }

    .s-d-t-s {
        padding-top: 24px;
    }

    .s-d-t-m {
        padding-top: 32px;
    }

    .s-d-t-l {
        padding-top: 48px;
    }

    .s-d-t-xl {
        padding-top: 60px;
    }

    .s-d-t-2xl {
        padding-top: 72px;
    }

    .s-d-t-3xl {
        padding-top: 90px;
    }

    .s-d-t-4xl {
        padding-top: 110px;
    }

    .s-d-t-5xl {
        padding-top: 130px;
    }

    .s-d-t-6xl {
        padding-top: 150px;
    }

    .s-d-b-xs {
        padding-bottom: 12px;
    }

    .s-d-b-s {
        padding-bottom: 24px;
    }

    .s-d-b-m {
        padding-bottom: 32px;
    }

    .s-d-b-l {
        padding-bottom: 48px;
    }

    .s-d-b-xl {
        padding-bottom: 60px;
    }

    .s-d-b-2xl {
        padding-bottom: 72px;
    }

    .s-d-b-3xl {
        padding-bottom: 90px;
    }

    .s-d-b-4xl {
        padding-bottom: 110px;
    }

    .s-d-b-5xl {
        padding-bottom: 130px;
    }

    .s-d-b-6xl {
        padding-bottom: 150px;
    }

    .s-d-b-7xl {
        padding-bottom: 270px;
    }
}



/* =================================================helpers */


.h-white {
    color: var(--white);
}

.h-light-blue,
.has-blue-gradient-color {
    background-color: transparent;
    background-image: var(--gradient-light-blue-to-blue);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.h-blue {
    color: var(--blue);
}

.h-ultra-dark-blue {
    color: var(--ultra-dark-blue);
}

.h-dark-blue {
    color: var(--dark-blue);
}

.h-gradient {
    background: var(--gradient-green-to-blue);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.h-gradient-dark-blue-to-blue {
    background: linear-gradient(90deg, #00ADD7 0%, #005E98 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.h-gradient-blue-to-blue {
    background: linear-gradient(90deg, #005E98 0%, #002F4C 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.h-text-ellipsis {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    max-height: calc(1.5em * 4);
}

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

.m-card--row .h-text-ellipsis {
    -webkit-line-clamp: 2;
}

.h-text-nowrap {
    text-wrap: nowrap;
}

.h-bg-green {
    color: var(--white);
    background-color: #34786c;
}

.h-bg-blue {
    color: var(--white);
    background-color: #38809e;
}

.h-teal {
    color: var(--teal);
}

.t-data--space {
    padding-left: 30px;
}

.h-w-medium {
    font-weight: 600;
}

.h-object-position-top-center {
    object-position: top center !important;
}

.h-object-position-center {
    object-position: center !important;
}

.h-object-position-right {
    object-position: right !important;
}

.h-full {
    width: 100% !important;
}

@media(max-width: 1024px) {
    .h-m-hide {
        display: none;
    }
}



#circles,
#circles2 {
    position: absolute;
    top: 300px;
    left: 0;
    width: 15%;
    z-index: -2;
    height: 100vh;
    pointer-events: none;
}

#circles2 {
    left: unset;
    right: 0;
}

a {
    text-decoration: none;
}


.o-footer {
    position: relative;
}

.o-footer .container {
    position: relative;
    z-index: 2;
}

.o-footer .footer-middle p {
    letter-spacing: 0;
}

.o-footer .footer-middle p:last-of-type {
    line-height: 1.5;
    font-weight: 400;
    font-size: 16px;
}

.o-footer .footer-middle .btn {
    min-height: 55px;
    padding: 20px 32px;
    background: transparent;
    border: 1px solid var(--white);
    border-radius: 100px;
    font-weight: 600;
    letter-spacing: 0;
}


.o-footer .footer-middle>div:nth-child(2) {
    background: #002F4C;
    border-radius: 16px;
    padding: 24px;
}

.o-footer .footer-middle>div:nth-child(2) .btn {
    background: linear-gradient(90deg, #00A490 0%, #008AAF 100%);
    border: 0;
}

.o-footer .footer-middle>div:nth-child(2) .has-heading-3-font-size,
.o-footer .footer-middle>div:nth-child(2) .a-heading {
    line-height: 1.2;
    background: linear-gradient(90deg, #00A490 0%, #008AAF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

.o-footer .footer-middle>div:nth-child(3),
.o-footer .footer-middle>div:nth-child(1) {
    padding-left: 0;
    padding-right: 0;
}

.o-footer .footer-middle a {
    text-decoration: none;
}

.o-footer .footer-menu>ul {
    gap: 24px;
}

.o-footer .footer-menu>ul>li {
    text-decoration: unset;
    font-size: 14px;
    font-weight: 400;
}

.o-footer .footer-middle {
    align-items: center;
}

.o-footer .footer-social .social-menu>ul {
    gap: 24px;
}

.o-footer .footer-social .social-menu>ul>li>a {
    font-size: 25px;
}

.o-footer .footer-bottom p,
.o-footer .footer-top p {
    font-size: 12px;
    line-height: 1.5;
    font-weight: 400;
}

.o-footer .footer-top p {
    color: #E6EFF5;
}



.o-filters {
    transition: all .5s ease;
    top: -30px;
    position: sticky;
    z-index: 5;
}

.o-filters__inner--desktop {
    display: none;
}

.o-filters__inner--mobile {
    background: linear-gradient(180deg, #F2F7F8 0%, #FFFFFF 100%);
    box-shadow: 0px 4px 24px rgba(0, 90, 105, 0.15);
    border-radius: 74px;
    position: relative;
    display: flex;
    justify-content: space-between;
    padding: 10px 15px;
}

.o-filters__inner--mobile>.a-btn:first-child {
    background-color: #F2F7F8;
}

.o-filters__inner--mobile .a-btn {
    border: none !important;
}

.o-filters__inner--mobile .a-btn .a-icon {
    margin-left: 6px;
    pointer-events: none;
}

.o-filters__inner--mobile .a-input {
    max-width: unset;
}


@media (min-width: 1200px) {
    .o-filters__inner--mobile {
        display: none;
    }

    .o-filters__inner--desktop {
        display: flex;
    }
}



.m-filters--mobile {
    position: absolute;
    top: 0;
    width: 100%;
    left: 0;
    max-height: 0;
    background: linear-gradient(180deg, #F2F7F8 0%, #FFFFFF 100%);
    box-shadow: 0px 4px 24px rgba(0, 90, 105, 0.15);
    transition: all 0.6s cubic-bezier(0.8, 0, 0.2, 1);
    overflow: hidden;
    border-radius: 24px;
    z-index: 5;
    overflow-y: auto;
    padding: 0;
}

.m-filters--mobile.open {
    max-height: 500px;
}

.m-filters--mobile>div {
    padding: 24px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
}

.m-filters--mobile .a-btn {
    margin: 0 auto;
    border: none;
}

.m-filters--mobile .a-btn.a-btn--close-icon {
    position: absolute;
    top: 18px;
    right: 24px;
    width: 35px;
    height: 35px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-right: 5px;
}

.m-search-bar--filter {
    position: absolute;
    width: 100%;
    left: 0;
    opacity: 0;
    pointer-events: none;
    transition: all .5s ease;
    min-width: unset;
    z-index: 2;
    background: linear-gradient(180deg, #F2F7F8 0%, #FFFFFF 100%);
    gap: 15px;
}

.m-search-bar--filter input {
    width: calc(100% - 81px) !important;
}

.m-search-bar--filter.open {
    opacity: 1;
    pointer-events: all;
}

.m-search-bar--filter:focus {
    box-shadow: none;
}

.o-filters--sticky {
    top: 73px;
    position: sticky;
    z-index: 6;
}

@media(min-width: 1200px) {
    .o-filters--sticky {
        top: 90px;
    }
}

.o-filters--sticky .container {
    width: 100%;
}


@media(min-width: 992px) {
    .o-footer .footer-middle {
        grid-template-columns: minmax(0, 1fr) 580px minmax(0, 1fr);
        grid-gap: 24px;
    }
}




.has-heading-1-font-size .fw-600,
.has-heading-2-font-size .fw-600,
.has-heading-3-font-size .fw-600,
.has-heading-4-font-size .fw-600,
.has-heading-5-font-size .fw-600,
.has-heading-6-font-size .fw-600,
.has-heading-1-font-size strong,
.has-heading-2-font-size strong,
.has-heading-3-font-size strong,
.has-heading-4-font-size strong,
.has-heading-5-font-size strong,
.has-heading-6-font-size strong {
    font-weight: normal !important;
}

.has-heading-1-font-size,
.has-heading-2-font-size,
.has-heading-3-font-size,
.has-heading-4-font-size,
.has-heading-5-font-size,
.has-heading-6-font-size {
    font-weight: normal !important;
}

.wp-block-heading {
    font-weight: normal !important;
}

.wp-block-heading .fw-600 {
    font-weight: normal !important;
}

.wp-block-heading strong {
    font-weight: normal !important;
}

.main-post .has-heading-4-font-size {
    font-size: clamp(18px, 3vw, 24px) !important;
    line-height: 1.2;
}

.msl-block__wrapper {
    position: relative;
    z-index: 2
}

.msl-results {
    margin-bottom: 350px;
}

@media (max-width: 992px) {
    .msl-results {
        margin-bottom: 130px;
    }
}

.onetrust-policy-text {
    font-weight: 400;
    line-height: 1.5;
    margin-bottom: 24px;
    font-size: 16px;
}

#onetrust-banner-sdk {
    border-radius: 10px;
}

#onetrust-consent-sdk #onetrust-accept-btn-handler,
#onetrust-banner-sdk #onetrust-reject-all-handler {
    color: var(--white) !important;
    background: var(--gradient-green-to-blue) !important;
    overflow: hidden;
    position: relative;
    display: inline-block;
    font-weight: 600;
    border-radius: 50px !important;
    z-index: 1;
    width: max-content !important;
    line-height: 1.5 !important;
    transition: color 0.3s ease;
}

#onetrust-banner-sdk #onetrust-reject-all-handler {
    color: var(--dark-blue) !important;
    background: linear-gradient(90deg, rgb(191, 232, 227) 0%, rgb(191, 234, 245) 100%) !important;
    border: unset !important;
}

.rkd-news-list {
    display: grid !important;
    grid-template-columns: repeat(1, 1fr);
}

@media (min-width: 768px) {
    .rkd-news-list {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .rkd-news-list {
        grid-template-columns: repeat(3, 1fr);
    }
}

.swiper-pagination-progressbar {
    position: relative;
    margin: 48px 0 24px 0;
}


.publication-related-grid .m-card {
    aspect-ratio: unset;
}

.app-header.app-header--scrolled:before,
.error404 .app-header:before {
    background: linear-gradient(90deg, #005E98 0%, #002F4C 100%);
}

.app-header.app-header--scrolled.mobile-nav-active:before {
    background: #fff;
}

.error-404-wrapper {
    margin-bottom: 120px;
}

#gform_submit_button_1 {
    position: relative;
    display: inline-block;
    padding: 16px 32px !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    border-radius: 50px !important;
    z-index: 1;
    width: max-content;
    line-height: 1.5;
    transition: color 0.3s ease;
    background: var(--gradient-green-to-blue) !important;
}

.app-header--scrolled+.mobile-nav {
    top: 57px;
}

.feature-block {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 24px;
}

@media(min-width:768px) {
    .feature-block {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(min-width:992px) {
    .feature-block {
        grid-template-columns: repeat(3, 1fr);
    }
}

.carousel-posts .m-card--no-image {
    min-height: unset !important;
}

.carousel-posts .m-card--no-image .m-card__bottom {
    height: 534px !important;
}

.a-heading a {
    text-decoration: unset;
}

.section-container-clip {
    clip-path: polygon(0 0, 100% 0, 100% 80%, 0 100%);
}

.section-container-clip+svg {
    display: none;
}

@media(max-width: 767px) {
    .main-spacer {
        height: 150px !important;
    }
}

#h-summary {
    font-size: 2.25rem !important;
}

@media(min-width: 1280px) {
    #h-summary {
        font-size: calc(1.35rem + 1.125vw) !important;
    }
}

.m-newsletter-form {
    position: relative;
}

.m-newsletter-form form {
    text-align: center;
}

.m-newsletter-form .a-btn {
    margin-top: 24px;
}

@media (min-width: 768px) {
    .m-newsletter-form .a-btn {
        margin-top: 0;
    }
}

.agreement {
    position: absolute;
    bottom: 120px !important;
    left: 0;
    width: 100%;
    font-size: 12px;
    display: flex;
    background-color: #ffffff;
    padding: 15px !important;
    border-radius: 5px;
    gap: 15px;
    box-shadow: 0 0 24px 0 rgba(0, 0, 0, .1);
    transition: all var(--transition-timing) var(--cubic-bezier);
    opacity: 0;
    visibility: hidden;
    transform: translate(0, 125%);
    z-index: -1;
}

.agreement.visible {
    opacity: 1;
    visibility: visible;
    z-index: 10 !important;
    transform: translate(0, 105%);
}

.agreement::after {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    width: 12px;
    height: 12px;
    background-color: #fff;
    display: inline-block;
    transform-origin: center center;
    transform: translate(-50%, -50%) rotate(45deg);
}

.agreement p {
    margin-bottom: 10px;
    color: #06304B;
    font-size: 14px;
    line-height: 1.3;
    text-align: left;
}

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

.agreement p a {
    color: var(--wp--preset--color--teal);
    text-decoration: underline;
}

@media (min-width:576px) {
    .agreement {
        bottom: 80px !important;
    }
}

#agreement-box {
    position: relative;
}

#agreement-box input[type="checkbox"] {
    opacity: 0;
    z-index: 1;
    width: 18px;
    height: 18px;
}

#agreement-box label {
    display: block;
    width: 18px;
    height: 18px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
}

#agreement-box div {
    width: 18px;
    height: 18px;
    background-color: #fff;
    border: 1px solid #06304B;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 3;
    cursor: pointer;
    border-radius: 4px;
    padding: 2px;
    box-sizing: border-box;
}

.agreement-filled {
    background-color: #06304B !important;
}

#agreement-box-tick span {
    display: none;
    color: white;
}

#agreement-box-tick.agreement-filled span {
    display: block;
}

.m-invalid {
    position: absolute;
    bottom: 103px;
    left: 0;
    width: 100%;
    font-size: 12px;
    display: flex;
    background-color: #ffffff;
    padding: 15px !important;
    border-radius: 5px;
    gap: 15px;
    box-shadow: 0 0 24px 0 rgba(0, 0, 0, .1);
    transition: all var(--transition-timing) var(--cubic-bezier);
    opacity: 0;
    visibility: hidden;
    transform: translate(0, 125%);
    z-index: -1;
}

.m-invalid.visible {
    opacity: 1;
    visibility: visible;
    z-index: 6;
    transform: translate(0, 115%);
}

.m-invalid::after {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    width: 12px;
    height: 12px;
    background-color: #fff;
    display: inline-block;
    transform-origin: center center;
    transform: translate(-50%, -50%) rotate(45deg);
}

.m-invalid p {
    margin-bottom: 10px;
    color: #ec4d44;
    font-size: 14px;
    line-height: 1.3;
    text-align: left;
}

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

.m-invalid p a {
    text-decoration: underline;
}

@media (min-width:576px) {
    .m-invalid {
        bottom: 80px;
    }
}

#m-invalid-box {
    color: #ec4d44;
}

.notvalid {
    border: 1px solid #ec4d44 !important;
    color: #ec4d44 !important;
}

#validation_message_1_1 {
    font-family: var(--inter-semibold) !important;
    color: #ec4d44 !important;
    text-align: center !important;
}


#gform_confirmation_message_1 {
    background-color: transparent !important;
    color: var(--white) !important;
    width: 100% !important;
}

#gform_confirmation_message_1 strong {
    font-weight: 400 !important;
}

.newsletter-form .a-heading--h4 {
    color: #00A490;
    margin-bottom: -10px;
    font-weight: 600;
}

.o-info--section__subscribe .a-success-img,
.o-info--section__subscribe .newsletter-form .a-heading--h4 {
    display: none;
}

.o-info--section__subscribe:has(.gform_confirmation_message_1) p,
.o-info--section__subscribe:has(.gform_confirmation_message_1) i {
    display: none;
}

.o-info--section__subscribe:has(.gform_confirmation_message_1) .a-success-img,
.o-info--section__subscribe:has(.gform_confirmation_message_1) .newsletter-form .a-heading--h4 {
    display: block;
}

.o-info--section__subscribe:has(.gform_confirmation_message_1) .newsletter-form.active {
    margin-top: 15px;
}