@font-face {
    font-family: "ProximaNova";
    font-display: swap;
    src: url("/modules/ebuCommon/fonts/ProximaNova-Bold.woff") format("woff"),
    url("/modules/ebuCommon/fonts/ProximaNova-Bold.woff2") format("woff2"),
    url("/modules/ebuCommon/fonts/ProximaNova-Bold.ttf") format("truetype");
    font-weight: 800;
    font-style: normal;
}
@font-face {
    font-family: "ProximaNova";
    font-display: swap;
    src: url("/modules/ebuCommon/fonts/ProximaNova-Semibold.woff") format("woff"),
    url("/modules/ebuCommon/fonts/ProximaNova-Semibold.woff2") format("woff2"),
    url("/modules/ebuCommon/fonts/ProximaNova-Semibold.ttf") format("truetype");
    font-weight: 600;
    font-style: normal;
}
@font-face {
    font-family: "ProximaNova";
    font-display: swap;
    src: url("/modules/ebuCommon/fonts/ProximaNova-Regular.woff") format("woff"),
    url("/modules/ebuCommon/fonts/ProximaNova-Regular.woff2") format("woff2"),
    url("/modules/ebuCommon/fonts/ProximaNova-Regular.ttf") format("truetype");
    font-weight: 400;
    font-style: normal;
}

* .sub-menu .nav-item-title {
    -webkit-font-smoothing: initial !important;
}

/* While we aren't showing the main block yet, but still preparing, we want everything the user
     has rendered, which may or may not be in #root, to be display none */
.sb-show-preparing-story:not(.sb-show-main) > :not(.sb-preparing-story) {
    display: none;
}

.sb-show-preparing-docs:not(.sb-show-main) > :not(.sb-preparing-docs) {
    display: none;
}

/* Hide our own blocks when we aren't supposed to be showing them */
:not(.sb-show-preparing-story) > .sb-preparing-story,
:not(.sb-show-preparing-docs) > .sb-preparing-docs,
:not(.sb-show-nopreview) > .sb-nopreview,
:not(.sb-show-errordisplay) > .sb-errordisplay {
    display: none;
}

.sb-show-main.sb-main-centered {
    margin: 0;
    display: flex;
    align-items: center;
    min-height: 100vh;
}

/* Vertical centering fix for IE11 */
@media screen and (-ms-high-contrast: none), (-ms-high-contrast: active) {
    .sb-show-main.sb-main-centered:after {
        content: '';
        min-height: inherit;
        font-size: 0;
    }
}

.sb-show-main.sb-main-fullscreen {
    margin: 0;
    padding: 0;
    display: block;
}

.sb-show-main.sb-main-padded {
    margin: 0;
    padding: 1rem;
    display: block;
    box-sizing: border-box;
}

.sb-wrapper {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    -webkit-font-smoothing: antialiased;
    overflow: auto;
}

.sb-heading {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.2px;
    margin: 10px 0;
    padding-right: 25px;
}

.sb-nopreview {
    display: flex;
    align-content: center;
    justify-content: center;
}

.sb-nopreview_main {
    margin: auto;
    padding: 30px;
    border-radius: 10px;
    background: rgba(0, 0, 0, 0.03);
}

.sb-nopreview_heading {
    text-align: center;
}

.sb-errordisplay {
    border: 20px solid rgb(187, 49, 49);
    background: #222;
    color: #fff;
    z-index: 999999;
}

.sb-errordisplay_code {
    padding: 10px;
    background: #000;
    color: #eee;
}

.sb-errordisplay pre {
    white-space: pre-wrap;
}

@-webkit-keyframes sb-rotate360 {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}
@keyframes sb-rotate360 {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}
@-webkit-keyframes sb-glow {
    0%,
    100% {
        opacity: 1;
    }
    50% {
        opacity: 0.4;
    }
}
@keyframes sb-glow {
    0%,
    100% {
        opacity: 1;
    }
    50% {
        opacity: 0.4;
    }
}

/* We display the preparing loaders *over* the rendering story */
.sb-preparing-story,
.sb-preparing-docs {
    background-color: white;
    /* Maximum possible z-index. It would be better to use stacking contexts to ensure it's always
    on top, but this isn't possible as it would require making CSS changes that could affect user code */
    z-index: 2147483647;
}

.sb-loader {
    -webkit-animation: sb-rotate360 0.7s linear infinite;
    animation: sb-rotate360 0.7s linear infinite;
    border-color: rgba(97, 97, 97, 0.29);
    border-radius: 50%;
    border-style: solid;
    border-top-color: #646464;
    border-width: 2px;
    display: inline-block;
    height: 32px;
    left: 50%;
    margin-left: -16px;
    margin-top: -16px;
    mix-blend-mode: difference;
    overflow: hidden;
    position: absolute;
    top: 50%;
    transition: all 200ms ease-out;
    vertical-align: top;
    width: 32px;
    z-index: 4;
}

.sb-previewBlock {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    box-shadow: rgba(0, 0, 0, 0.1) 0 1px 3px 0;
    margin: 25px auto 40px;
    max-width: 600px;
}

.sb-previewBlock_header {
    align-items: center;
    box-shadow: rgba(0, 0, 0, 0.1) 0 -1px 0 0 inset;
    display: flex;
    gap: 14px;
    height: 40px;
    padding: 0 12px;
}

.sb-previewBlock_icon {
    -webkit-animation: sb-glow 1.5s ease-in-out infinite;
    animation: sb-glow 1.5s ease-in-out infinite;
    background: #e6e6e6;
    height: 14px;
    width: 14px;
}
.sb-previewBlock_icon:last-child {
    margin-left: auto;
}

.sb-previewBlock_body {
    -webkit-animation: sb-glow 1.5s ease-in-out infinite;
    animation: sb-glow 1.5s ease-in-out infinite;
    height: 182px;
    position: relative;
}

#docs-root[hidden] {
    display: none !important;
}

.container-news {
    width: calc(100% - 240px);
    margin-left: auto;
    margin-right: auto;
    font-family: "ProximaNova", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 17px;
}

.container-news, .small-container {
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 1280px) {
    .container-news {
        width: calc(100% - 120px);
    }
}
@media (max-width: 64em) {
    .container-news {
        width: calc(100% - 80px);
    }
}

.small-container {
    width: calc(100% - 312px);
}

@media (max-width: 990px) {
    .container-news, .small-container {
        width: calc(100% - 60px) !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }
}
@media (max-width: 580px) {
    .container-news, .small-container {
        width: calc(100% - 40px) !important;
    }
}

.container-news.card-swiper_swiper {
    padding-bottom: 15px;
}

.no-transition, .no-transition * {
    transition: none !important;
}

.no-animation, .no-animation * {
    animation: none !important;
}

.no-events, .no-events * {
    pointer-events: none !important;
}

.no-transform, .no-transform * {
    transform: none !important;
}

[data-fade-in], .fade-in {
    opacity: 0;
    transition: opacity 0.5s ease-in;
}
[data-fade-in].show, .fade-in.show {
    opacity: 1;
}

[data-fade-in-y], .fade-in-y {
    opacity: 0;
    transition: opacity 1s ease-in;
}
[data-fade-in-y] > *, .fade-in-y > * {
    transform: translateY(100px);
    transition: transform 1s cubic-bezier(0.26, 0.1, 0, 1);
}
[data-fade-in-y].show, .fade-in-y.show {
    opacity: 1;
}
[data-fade-in-y].show > *, .fade-in-y.show > * {
    transform: none;
}
.wrapper {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    padding: 15px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

h1 {
    font-weight: 900;
    font-size: 20px;
    line-height: 1;
    margin: 6px 0 6px 10px;
    display: inline-block;
    vertical-align: top;
}

button + button {
    margin-left: 10px;
}

.welcome {
    color: #333;
    font-size: 14px;
    margin-right: 10px;
}

section h2 {
    font-weight: 900;
    font-size: 32px;
    line-height: 1;
    margin: 0 0 4px;
    display: inline-block;
    vertical-align: top;
}

section p {
    margin: 1em 0;
}

section a {
    text-decoration: none;
    color: #1ea7fd;
}

section ul:not(.nav) {
    padding-left: 30px;
    margin: 1em 0;
}

section li:not(.nav-item) {
    margin-bottom: 8px;
}

section .tip {
    display: inline-block;
    border-radius: 1em;
    font-size: 11px;
    line-height: 12px;
    font-weight: 700;
    background: #e7fdd8;
    color: #66bf3c;
    padding: 4px 12px;
    margin-right: 10px;
    vertical-align: top;
}

section .tip-wrapper {
    font-size: 13px;
    line-height: 20px;
    margin-top: 40px;
    margin-bottom: 40px;
}

section .tip-wrapper svg {
    display: inline-block;
    height: 12px;
    width: 12px;
    margin-right: 4px;
    vertical-align: top;
    margin-top: 3px;
}

section .tip-wrapper svg path {
    fill: #1ea7fd;
}
.arrow-button {
             display: inline-flex;
             align-items: center;
             justify-content: center;
             border: none;
             border-radius: 28px;
             width: 56px;
             height: 56px;
             cursor: pointer;
             user-select: none;
             transition: all ease-in 0.3s;
         }
.arrow-button svg path {
    fill: #FFFFFF;
}
.arrow-button.white {
    background: transparent;
}
.arrow-button.white svg path {
    fill: #1C4098;
}
.arrow-button.white:hover {
    background: #1C4098;
}
.arrow-button.white:hover svg path {
    fill: #FFF;
}
.arrow-button.blue {
    background-color: #1C4098;
}
.arrow-button.lightBlue {
    background-color: #0BBBEF;
}
.arrow-button.grey {
    background-color: #B4BFCA;
}
.arrow-button.bt-up {
    transform: rotate(-90deg);
}
.arrow-button:hover {
    background: #FFFFFF;
}
.arrow-button:hover svg path {
    fill: #1C4098;
}
.arrow-button.slide {
    border: 1px solid #1C4098;
    background: transparent;
}
.arrow-button.slide svg path {
    fill: #1C4098;
}
.arrow-button.bt-prev {
    transform: rotate(-180deg);
}
.avatar {
             width: 88px;
             min-width: 88px;
             height: 88px;
             background-size: cover;
             background-position: center;
             border-radius: 100%;
         }
.breadcrumb {
    display: flex;
    align-items: center;
    color: inherit;
}
.breadcrumb__link {
    font-family: inherit;
    display: flex;
    align-items: center;
    font-size: 14px;
    color: inherit;
    text-decoration: none;
}
.breadcrumb__link > i {
    margin: 0 6px;
    height: 7px;
}
.breadcrumb__link > span {
    opacity: 0.5;
}
.breadcrumb__link > a {
    text-decoration: none;
    color: inherit;
}
.check-button {
             display: inline-flex;
             align-items: center;
             border: none;
             font-size: 14px;
             font-weight: 400;
             line-height: 1;
             cursor: pointer;
             user-select: none;
             color: #1C4098;
             padding: 0;
             background: transparent;
             text-align: left;
         }
.check-button span {
    margin-left: 8px;
    font-weight: inherit;
    color: rgba(0, 0, 0, 0.85);
    transform: translateY(0.1em);
}
.check-button .icon {
    width: 9px;
    min-width: 9px;
    height: 9px;
    box-sizing: border-box;
    position: relative;
}
.check-button .icon::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    border: 1px solid currentColor;
    border-radius: 1.5px;
    background: transparent;
    will-change: transform;
    transition: border 1s cubic-bezier(0.56, 0.23, 0, 1), opacity 1s cubic-bezier(0.56, 0.23, 0, 1), background 1s cubic-bezier(0.56, 0.23, 0, 1), transform 1s cubic-bezier(0.56, 0.23, 0, 1);
}
.check-button .icon svg {
    width: 100%;
    height: 100%;
    fill: currentColor;
    opacity: 0;
    will-change: transform;
    transform: scale(0.2) rotate(180deg);
    transition: opacity 1s cubic-bezier(0.56, 0.23, 0, 1), transform 1s cubic-bezier(0.56, 0.23, 0, 1);
}
.check-button.active .icon::before {
    background: currentColor;
}
.check-button.active.check-icon .icon::before {
    background: transparent;
    opacity: 0;
    transform: scale(1.5);
}
.check-button.active.check-icon .icon svg {
    opacity: 1;
    transform: scale(1) rotate(0deg);
}
.check-button.dark {
    color: white;
}
.check-button.dark span {
    color: white;
}
@media (max-width: 1024px) {
    .check-button {
        font-size: 12px;
    }
}
@media (max-width: 768px) {
    .check-button {
        font-size: 14px;
    }
}
.dropdown-button {
             display: inline-flex;
             align-items: center;
             border: none;
             font-size: 14px;
             font-weight: 600;
             line-height: 1;
             cursor: pointer;
             user-select: none;
             padding: 0;
             background: transparent;
         }
.dropdown-button span {
    margin-right: 12px;
    font-weight: inherit;
}
.dropdown-button .icon {
    width: 0.8em;
    fill: currentColor;
    position: relative;
    top: -1px;
    transition: background 1s cubic-bezier(0.56, 0.23, 0, 1), transform 1s cubic-bezier(0.56, 0.23, 0, 1);
}
.dropdown-button.blue .icon {
    fill: #1C4098;
}
.dropdown-button.active .icon {
    transform: rotate(180deg);
}
.ebu-video {
             width: 100%;
             position: relative;
             border-radius: 5px;
             overflow: hidden;
         }
.ebu-video::before {
    content: "";
    display: block;
    padding-bottom: 56.25%;
}
.ebu-video iframe {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}
.imageCards {
    min-height: 180px;
    position: relative;
    margin: 0;
}
.imageCards .iconVideo {
    position: absolute;
    z-index: 1;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    transition: all ease-in 0.3s;
    opacity: 0.7;
}
.imageCards:hover .iconVideo {
    opacity: 1;
}
.imageCards:after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.4) 100%);
}
.imageCards.border-no {
    border-bottom: none;
}
.imageCards.border-blue {
    border-bottom: 4px solid #1C4098;
}
.imageCards.border-green {
    border-bottom: 4px solid #00AD68;
}
.imageCards.border-darkgreen {
    border-bottom: 4px solid #004E59;
}
.imageCards.border-red {
    border-bottom: 4px solid #DD0057;
}
.imageCards.border-yellow {
    border-bottom: 4px solid #FFED00;
}
.imageCards.border-violet {
    border-bottom: 4px solid #873299;
}
.labelCards {
     -webkit-appearance: none;
     border: none;
     outline: none;
     display: inline-flex;
     align-items: center;
     justify-content: center;
     border-radius: 40px;
     background: white;
     border: 1px solid transparent;
     box-shadow: 0px 4px 10px rgba(119, 136, 157, 0.2);
     transition: border 0.4s ease-out;
 }
.labelCards.tag {
    font-size: 10px;
    color: #1C4098;
    padding: 5px 16px;
    pointer-events: none;
}
.labelCards.darkTag {
    font-weight: 700;
    font-size: 12px;
    background-color: #1C4098;
    color: #FFFFFF;
    padding: 5px 16px;
    pointer-events: none;
    box-shadow: none;
}
.labelCards.lightTag {
    font-weight: 700;
    font-size: 12px;
    background-color: #FFFFFF;
    color: #1C4098;
    padding: 5px 16px;
    pointer-events: none;
    box-shadow: none;
}
.labelCards.btn {
    font-size: 14px;
    color: #1C4098;
    padding: 9px 20px;
    cursor: pointer;
}
.labelCards.btClose {
    border: 1px solid #1C4098;
}
.labelCards i {
    width: 7px;
    height: 7px;
    border-radius: 7px;
    display: block;
    margin-right: 8px;
}
.labelCards i.bg-darkGreen {
    background-color: #004E59;
}
.labelCards i.bg-lightGreen {
    background-color: #00AD68;
}
.labelCards i.bg-yellow {
    background-color: #FFED00;
}
.labelCards i.bg-red {
    background-color: #DD0031;
}
.labelCards i.bg-violet {
    background-color: #873299;
}
.labelCards i.bg-orange {
    background-color: #EE6F2D;
}
.labelCards svg {
    margin-left: 8px;
}
@media (max-width: 900px) {
    .labelCards {
        margin: 0 10px 10px 0;
    }
}
.logos {
             display: flex;
             align-items: center;
             justify-content: space-between;
         }
@media (max-width: 900px) {
    .logos {
        overflow-x: scroll;
        cursor: grab;
        padding-bottom: 40px;
        position: relative;
    }
}
.primary-button {
             display: inline-flex;
             align-items: center;
             justify-content: center;
             border: none;
             border-radius: 28px;
             font-size: 14px;
             font-weight: 600;
             line-height: 1.1;
             text-align: center;
             cursor: pointer;
             user-select: none;
             text-decoration: none;
             transition: all ease-in 0.3s;
         }
.primary-button[data-size=small] {
    font-size: 10px;
    padding: 5px 33px;
}
.primary-button[data-weight=light] {
    font-weight: 300;
    letter-spacing: 0.03em;
}
.primary-button[data-size=medium] {
    padding: 12px 33px;
}
.primary-button[data-size=large] {
    padding: 16px 33px;
}
.primary-button[data-color=dark] {
    background-color: #1C4098;
    color: #fff;
}
.primary-button[data-color=darkBorder] {
    background-color: #1C4098;
    color: #fff;
    border: 3px solid #fff;
}
.primary-button[data-color=darkBorder]:hover {
    background-color: #fff;
    color: #1C4098;
}
.primary-button[data-color=blue] {
    background-color: #0BBBEF;
    color: black;
}
.primary-button[data-color=blue]:hover {
    background-color: #1C4098 !important;
    color: #fff !important;
}
.primary-button[data-color=white] {
    box-sizing: border-box;
    background-color: #fff;
    color: #1C4098;
    border: 3px solid #1C4098;
}
.primary-button[data-color=white]:hover {
    background-color: #1C4098;
    color: #fff;
}
.primary-button[data-color=tabs] {
    box-sizing: border-box;
    border-radius: 0;
    color: #1C4098;
    background-color: #fff;
    border: none;
    margin: 0;
}
.primary-button > svg {
    margin-right: 15px;
}
.primary-button:hover {
    background-color: #0BBBEF;
    color: black;
}
.primary-button:hover > svg path {
    fill: black;
}
.newsletter {
    padding: 7px;
    background: white;
    border-radius: 30px;
    display: inline-flex;
    align-items: center;
    font-family: inherit;
    }
.newsletter input {
    -webkit-appearance: none;
    appearance: none;
    outline: none;
    font-family: inherit;
    font-size: 14px;
    border: 0;
    padding: 0 16px;
    height: 30px;
}
@media (max-width: 900px) {
    .newsletter {
        background: transparent;
        flex-direction: column;
        border-radius: 0px;
        display: flex;
        width: 100%;
    }
    .newsletter input {
        border-radius: 30px;
        background: white;
        display: block;
        height: 48px;
        margin-bottom: 20px;
        width: 100%;
        box-sizing: border-box;
    }
    .newsletter .primary-button {
        width: 100%;
        font-weight: 800;
    }
}
.paragraphs {
    font-family: inherit;
    font-weight: 400;
    line-height: 1.44;
}
.paragraphs.left {
    text-align: left;
}
.paragraphs.center {
    text-align: center;
}
.paragraphs.right {
    text-align: right;
}
.paragraphs.black {
    color: #000000;
}
.paragraphs.dark {
    color: #595959;
}
.paragraphs.grey {
    color: #77889D;
}
.paragraphs.blue {
    color: #1C4098;
}
.paragraphs.white {
    color: #ffffff;
}
.paragraphs.small {
    font-size: 14px !important;
    margin: 20px 0;
}
.paragraphs.medium {
    font-size: 14px;
    margin: 0px;
}
.paragraphs.large {
    font-size: 22px;
    margin: 20px 0;
}
.paragraphs.xlarge {
    font-size: 22px;
    margin: 15px 0;
}

.cardsAside_body:has(.small.blue.paragraphs) {
    padding-top: 7px;
}

.cardsAside_body:has(.profile) {
    padding-top: 7px;
    padding-left: 15px;
}

@media (max-width: 900px) {
    .cardsAside_body:has(.profile) {
        color: #595959;
    }
}

.cardsAside_body:has(.small.blue.paragraphs) .primary-button{
    margin-top: 0;
}

.ebu-rich-text b,
.ebu-rich-text strong {
    color: var(--bs-body-color);
    font-weight: 700;
}

.ebu-rich-text a {
    color: #1B4098;
    font-weight: 700;
}

.ebu-rich-text a[href], .ebu-rich-text a:hover {
    text-decoration: none;
}
.ebu-rich-text p:not(:last-child) {
    margin-bottom: 1.2em;
}
.search {
    box-sizing: border-box;
    display: inline-flex;
    width: 195px;
    height: 34px;
    border-radius: 34px;
    border: 1px solid #1C4098;
    position: relative;
    padding-left: 50px;
    background: #FFF;
}
.search input, .search button {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border: 0;
    padding: 0;
    margin: 0;
    outline: none;
    background: transparent;
    font-family: inherit;
}
.search input {
    font-size: 12px;
    width: 100%;
    height: 100%;
}
.search button {
    position: absolute;
    left: 20px;
    top: 7px;
}
.search.topics {
    border: none;
    width: 433px;
    padding-left: 20px;
    padding-right: 50px;
}
.search.topics button {
    left: auto;
    right: 20px;
}
.search.topics button svg path {
    fill: #70706E;
}
@media (max-width: 900px) {
    .search.topics {
        width: 100%;
    }
}
.textarrow-button {
             display: inline-flex;
             align-items: center;
             border: none;
             font-size: 16px;
             font-family: inherit;
             cursor: pointer;
             user-select: none;
         }
.textarrow-button strong {
    margin-right: 10px;
}
.textarrow-button svg {
    margin-right: 10px;
    transition: ease-in-out 0.6s;
}
.textarrow-button svg path {
    fill: currentColor;
}
.textarrow-button.white {
    color: white;
}
.textarrow-button.blue {
    color: #1C4098;
}
.textarrow-button.lightBlue {
    color: #0BBBEF;
}
.textarrow-button.grey {
    color: #B4BFCA;
}
.textarrow-button.black[data-type=download]:not(.disabled) svg {
    color: #0BBBEF;
}
.textarrow-button.black.disabled svg {
    opacity: 0.5;
}
.textarrow-button[data-type=download] {
    display: block !important;
    position: relative;
    padding-left: 28px;
}
.textarrow-button[data-type=download] svg {
    transform: translateY(3px);
    position: absolute;
    left: 0;
    top: 0;
}
.textarrow-button[data-type=download] small {
    display: block;
    transform: translateY(-3px);
    color: #0BBBEF;
    font-weight: 600;
}
.textarrow-button:not([data-type=download]):hover svg {
    transform: translateX(10px);
}
.titles {
    font-family: inherit;
    font-weight: 600;
    width: 100%;
    line-height: 1.2;
}
.titles.black {
    color: #000000;
}
.titles.grey {
    color: #595959;
}
.titles.blue {
    color: #1C4098;
}
.titles.white {
    color: #ffffff;
}
.titles.h1 {
    font-size: 42px;
    margin: 0;
}
.titles.h2 {
    font-size: 34px;
    margin: 15px 0;
}
.titles.h3 {
    font-size: 28px;
    margin: 10px 0;
}
.titles.h4 {
    font-size: 22px;
    margin: 5px 0;
}
.titles.h5 {
    font-size: 16px;
    margin: 0;
}
.titles.h6 {
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 300;
    margin: 0;
}
.titles.h7 {
    font-size: 18px;
    margin: 0;
    font-weight: 600;
}
.toggle-button {
    display: inline-flex;
    align-items: center;
    border: none;
    font-size: 16px;
    font-weight: 600;
    line-height: 1;
    cursor: pointer;
    user-select: none;
    color: #1C4098;
    padding: 0;
    background: transparent;
}
.toggle-button span {
    margin-right: 15px;
    font-weight: inherit;
}
.toggle-button .icon {
    width: 43px;
    height: 24px;
    background: #B4BFCA;
    border-radius: 15px;
    position: relative;
}
.toggle-button .icon::after {
    content: "";
    position: absolute;
    top: 3px;
    left: 3px;
    width: 18px;
    height: 18px;
    background: white;
    border-radius: 50%;
    transition: background 1s cubic-bezier(0.56, 0.23, 0, 1), transform 1s cubic-bezier(0.56, 0.23, 0, 1);
}
.toggle-button.active .icon::after {
    background: #1C4098;
    transform: translateX(19px);
}
.underline-button {
             display: inline-block;
             border: none;
             font-size: 22px;
             font-weight: 600;
             line-height: 0.7;
             text-align: center;
             cursor: pointer;
             user-select: none;
             background: transparent;
             padding: 0;
             color: inherit;
             text-decoration: none;
         }
.underline-button.submenu {
    font-size: 16px;
    color: #77889d;
}
.underline-button::after {
    content: "";
    display: block;
    width: 100%;
    height: 2px;
    margin-top: 8px;
    background-color: currentColor;
    transform: scaleX(0);
    transform-origin: 0% 0%;
    transition: transform 1s cubic-bezier(0.56, 0.23, 0, 1);
}
.underline-button:hover:not(.active)::after {
    transform: scaleX(1);
}
.underline-button.active {
    color: #1C4098;
}
.underline-button.active::after {
    transform: scaleX(1);
}
.banners {
             height: 392px;
             display: flex;
             background-size: cover;
             background-position: center;
             align-items: center;
             justify-content: center;
         }
.banners.lightblue {
    background: #0BBBEF;
}
.banners.blue {
    background: #1C4098;
}
.banners--wrapper {
    max-width: 740px;
    padding: 20px;
}
.banners--wrapper .primary-button {
    min-width: 140px;
    margin-top: 20px;
}
@media (max-width: 600px) {
    .banners {
        height: auto;
        padding: 40px 20px;
    }
}
.calendar {
             width: auto;
             max-width: 190px;
             display: inline-block;
             padding: 30px 40px;
             background: white;
             border-radius: 4px;
             box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
             overflow: visible;
             font-family: inherit;
             user-select: none;
             transition: height 1s cubic-bezier(0.56, 0.23, 0, 1);
         }
.calendar .button {
    font-size: 16px;
}
.calendar .button svg {
    fill: #1C4098;
}
.calendar .box {
    padding: 15px 20px;
    margin-top: 14px;
    border: 1px solid #D5D5D5;
    border-radius: 5px;
    transition: opacity 0.5s cubic-bezier(0.56, 0.23, 0, 1) 0.5s;
}
.calendar .nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px;
}
.calendar .year {
    font-weight: 600;
    font-size: 12px;
    line-height: 1;
}
.calendar .arrows {
    display: flex;
    align-items: center;
}
.calendar .arrow {
    width: 15px;
    height: 15px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border-radius: 50%;
    transition: background 1s cubic-bezier(0.56, 0.23, 0, 1);
}
.calendar .arrow svg {
    width: 30%;
    fill: currentColor;
}
.calendar .arrow:not(:last-child) {
    margin-right: 15px;
}
.calendar .arrow:hover {
    background: #F5F5F5;
}
.calendar .months {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}
.calendar .month {
    width: 33.3333333333%;
    padding: 6px;
    box-sizing: border-box;
    border-radius: 12px;
    font-size: 16px;
    line-height: 1;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    color: #A4A4A4;
    margin-bottom: 10px;
    text-align: center;
    transition: background 1s cubic-bezier(0, 0.48, 0, 1);
}
.calendar .month.active {
    color: #1C4098;
    background: rgba(28, 64, 152, 0.1);
}
.calendar .month:hover {
    background: rgba(28, 64, 152, 0.1);
}
.calendar:not(.open) {
    transition-delay: 0.2s;
}
.calendar:not(.open) .box {
    opacity: 0;
    pointer-events: none;
    transition-delay: 0s;
}
.calendar.transparent {
    background: transparent;
    box-shadow: none;
    padding: 0;
}
@media (max-width: 1180px) {
    .calendar {
        max-width: 170px;
    }
    .calendar .box {
        padding: 12px 15px;
    }
    .calendar .month {
        font-size: 14px;
        padding: 5px;
        margin-bottom: 8px;
    }
}
@media (max-width: 1024px) {
    .calendar .button {
        font-size: 14px;
    }
}
@media (max-width: 768px) {
    .calendar .button {
        font-size: 16px;
    }
}
.cards {
             max-width: 384px;
             overflow: hidden;
             border-radius: 5px;
             background-color: white;
             position: relative;
             display: flex;
             flex-direction: column;
         }
.cards_body {
    padding: 22px 30px;
}
.cards_body > .paragraphs {
    margin: 14px 0;
}
.cards_foo {
    padding: 0 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
    margin-bottom: 10px;
}
.cards_foo > .arrow-button {
    margin-right: -22px;
}
.cards.large {
    box-shadow: 0px 6px 14px rgba(119, 136, 157, 0.2);
}
.cards > .labelCards.tag {
    position: absolute;
    top: 16px;
    left: 16px;
}
.cards .titles {
    margin: 5px 0 10px;
}
@media (max-width: 900px) {
    .cards {
        max-width: 100%;
    }
}
.cards {
    overflow: hidden;
    border-radius: 5px;
    background-color: white;
    position: relative;
    display: flex;
    flex-direction: column;
}
.cards_body {
    padding: 18px;
}
.cards_body .paragraphs {
    margin-bottom: 0;
}

.cards.small {
    max-width: 282px;
}
.cards > .labelCards.tag {
    position: absolute;
    top: 16px;
    left: 16px;
}
.cards .titles {
    margin: 5px 0 10px;
}
.cards .labelCards.darkTag {
    margin: 16px 0;
}
@media (max-width: 900px) {
    .cards.small {
        max-width: 100%;
    }
}
.cardsAside {
             max-width: 290px;
             margin-bottom: 16px;
         }
.cardsAside_body {
    margin-top: 16px;
    padding: 32px;
    background: #F8F9FA;
    border-radius: 6px;
}
.cardsAside_body .title {
    font-weight: 400;
    font-size: 14px;
    line-height: 1.2;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin: 0;
    margin-bottom: 8px;
    color: #595959 !important;
}
.cardsAside_body .item {
    display: block;
    font-weight: 600;
    font-size: 16px;
    color: #1C4098;
    text-decoration: none;
    overflow-wrap: anywhere;
}

.cardsAside_body a.item:not(:only-child):not(:last-child) {
    margin-bottom: 10px;
}

.cardsAside_body .item[href]:hover {
    text-decoration: underline;
}
.cardsAside_body .primary-button {
    width: 100%;
    margin-top: 20px;
}
.cardsAside_body h2 {
    line-height: 1.5;
}
@media (max-width: 900px) {
    .cardsAside {
        max-width: 100%;
    }
}
.cardsDesk {
             overflow: hidden;
             border-radius: 5px;
             background-color: white;
             position: relative;
             display: flex;
             flex-direction: column;
             max-width: 384px;
         }
.cardsDesk_body {
    padding: 32px;
    position: relative;
    border-left: 3px solid #0BBBEF;
}
.cardsDesk_body .date {
    display: flex;
    align-items: center;
    font-size: 12px;
    margin-bottom: 40px;
}
.cardsDesk_body .date svg {
    margin-right: 10px;
}
.cardsDesk_body .paragraphs {
    margin-bottom: 0;
}
.cardsDesk_foo {
    border-left: 3px solid #0BBBEF;
    padding: 0 32px;
    padding-bottom: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
}
.cardsDesk_foo .hour {
    display: flex;
    font-size: 12px;
    align-content: center;
    color: #1A1919;
}
.cardsDesk_foo .hour > svg {
    margin-right: 8px;
}
.cardsDesk_foo .buttonLink {
    display: flex;
    align-items: center;
    padding: 0 20px;
    color: white;
    font-size: 14px;
    box-sizing: border-box;
    min-width: 60px;
    height: 60px;
    background: #1C4098;
    border-radius: 60px;
}
.cardsDesk_foo .buttonLink span {
    margin-right: 12px;
    white-space: nowrap;
}
.cardsDesk.large {
    box-shadow: 0px 6px 14px rgba(119, 136, 157, 0.2);
}
.cardsDesk .titles {
    margin: 5px 0 10px;
}
/*.date {
             appearance: none;
             border: 0;
             padding: 0;
             margin: 0;
             position: absolute;
             left: 30px;
             top: 0;
             transform: translateY(-50%);
             background: #FFFFFF;
             border-radius: 28px;
             display: inline-flex;
             align-items: center;
             font-size: 14px;
             padding: 0 20px;
             height: 42px;
             color: #1C4098;
             filter: drop-shadow(0px 1px 5px rgba(119, 136, 157, 0.3));
         }*/
.date strong {
    font-weight: 600;
    margin: 0 6px;
}
.cards {
             transition: background 0.4s;
             overflow: hidden;
             border-radius: 5px;
             background-color: white;
             position: relative;
             display: flex;
             flex-direction: column;
             max-width: 384px;
         }
.cards[data-color=yellow] {
    border-bottom: 6px solid #FFED00;
}
.cards[data-color=green] {
    border-bottom: 6px solid #00AD68;
}
.cards[data-color=darkGreen] {
    border-bottom: 6px solid #004E59;
}
.cards[data-color=violet] {
    border-bottom: 6px solid #873299;
}
.cards[data-color=red] {
    border-bottom: 6px solid #DD0057;
}
.cards_body {
    padding: 32px;
    position: relative;
}
.cards_body .label {
    position: absolute;
    right: 30px;
    font-size: 12px;
    font-weight: 600;
    color: white;
    top: -30px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}
.cards_body .paragraphs {
    margin-bottom: 0;
}
.cards_body .labelCards.tag {
    margin-top: 16px;
    box-shadow: none;
    border: 0.4px solid #CCCCCC;
    color: black;
    font-weight: 600;
    background: transparent;
}
.cards_foo .hour {
    display: flex;
    font-size: 12px;
    align-content: center;
    color: #1A1919;
}
.cards_foo .hour > svg {
    margin-right: 8px;
}
.cards.small {
    max-width: 282px;
}
.cards.large {
    box-shadow: 0px 6px 14px rgba(119, 136, 157, 0.2);
}
.cards .titles {
    margin: 5px 0 10px;
}
.cards .labelCards.darkTag {
    margin: 16px 0;
}
@media (max-width: 900px) {
    .cards.small {
        max-width: 100%;
    }
}
.cardsImage {
             box-sizing: border-box;
             max-width: 280px;
             overflow: hidden;
             border-radius: 5px;
             background-size: cover;
             background-position: center;
             position: relative;
             min-height: 200px;
             padding: 32px;
             font-family: inherit;
         }
.cardsImage:not(.h3)::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 22, 74, 0.6) 53.66%, rgba(0, 22, 74, 0) 100%), linear-gradient(0deg, rgba(0, 22, 74, 0.4), rgba(0, 22, 74, 0.4));
}
.cardsImage .cardsImage_body {
    position: relative;
    z-index: 1;
}
.cardsImage.h3 {
    max-width: 384px;
    background-size: auto 100%;
    transition: ease-out 0.5s;
    overflow: hidden;
}
.cardsImage.h3 .btn-link {
    position: absolute;
    display: flex;
    align-items: center;
    z-index: 2;
    right: 32px;
    bottom: 16px;
    transition: ease-out 0.5s;
    transform: translateY(20px);
    opacity: 0;
    pointer-events: none;
    font-size: 14px;
    line-height: 1.5;
    color: #fff;
    padding: 8px 20px;
    border-radius: 28px;
    border: 2px solid #fff;
    cursor: pointer;
}
.cardsImage.h3 .btn-link svg {
    margin-left: 14px;
}
.cardsImage.h3:hover {
    background-size: auto 120%;
}
.cardsImage.h3:hover .btn-link {
    transform: translateY(0px);
    opacity: 1;
    pointer-events: initial;
}
.cardsImage a.primary-button {
    text-decoration: none;
    width: 100%;
    box-sizing: border-box;
    margin-top: 48px;
}
.cardsImage .titles {
    margin: 0px;
}
@media (max-width: 900px) {
    .cardsImage {
        max-width: 100%;
    }
}
.documents {
             max-width: 450px;
             border-radius: 5px;
             overflow: hidden;
             display: flex;
             flex-direction: column;
             background: white;
             padding: 40px;
         }
.documents.blue {
    background: #1C4098;
}
.documents.grey {
    background: #F8F9FA;
}
.documents .textarrow-button {
    margin-top: 22px;
}
@media (max-width: 900px) {
    .documents {
        padding: 30px;
    }
}
.documents--wrapper {
             margin-bottom: 50px;
         }
.documents--wrapper.small {
    max-width: 260px;
}
.documents--wrapper > .titles {
    margin-bottom: 20px;
}
.documents--wrapper > .textarrow-button {
    margin: 14px 0;
    display: flex;
}
.documents--wrapper > .primary-button {
    margin-top: 30px;
}
.documents--wrapper > .subtitle {
    color: #1C4098;
    font-size: 18px;
    margin: 20px 0;
}
.dropdown-list {
             width: auto;
             display: inline-block;
             padding: 30px 40px;
             background: white;
             border-radius: 4px;
             box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
             overflow: visible;
             transition: height 1s cubic-bezier(0.56, 0.23, 0, 1);
         }
.dropdown-list .button {
    font-size: 16px;
}
.dropdown-list .button svg {
    fill: #1C4098;
}
.dropdown-list ul {
    padding: 0;
    margin: 0;
    margin-top: 14px;
    transition: opacity 0.5s cubic-bezier(0.56, 0.23, 0, 1) 0.5s;
}
.dropdown-list ul::-webkit-scrollbar {
    width: 2px;
}
.dropdown-list ul::-webkit-scrollbar-track {
    background: #EDEEEE;
}
.dropdown-list ul::-webkit-scrollbar-thumb {
    background: #B4BFCA;
}
.dropdown-list ul::-webkit-scrollbar-thumb:hover {
    background: rgba(28, 64, 152, 0.6);
}
.dropdown-list ul li {
    list-style: none;
    padding: 0;
    margin: 0;
    padding-right: 10px;
}
.dropdown-list ul li:not(:last-child) {
    margin-bottom: 8px;
}
.dropdown-list:not(.open) {
    transition-delay: 0.2s;
}
.dropdown-list:not(.open) ul {
    opacity: 0;
    pointer-events: none;
    transition-delay: 0s;
}
.dropdown-list.transparent {
    background: transparent;
    box-shadow: none;
    padding: 0;
}
.dropdown-list.scroll ul {
    max-height: 215px;
    overflow-y: auto;
}
@media (max-width: 1024px) {
    .dropdown-list .button {
        font-size: 14px;
    }
}
@media (max-width: 768px) {
    .dropdown-list .button {
        font-size: 16px;
    }
}
.grid {
             max-width: 1200px;
             display: flex;
             flex-direction: column;
         }
.grid .primary-button {
    align-self: center;
}
.grid__cardtop {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 25px;
}
.grid__cardtop--total {
    display: flex;
    font-family: inherit;
    align-items: center;
}
.grid__cardtop--total strong {
    margin-left: 5px;
    color: #1C4098;
}
@media (max-width: 900px) {
    .grid__cardtop--total {
        margin-top: 30px;
    }
}
@media (max-width: 900px) {
    .grid__cardtop {
        flex-direction: column-reverse;
        align-items: flex-start;
    }
}
.grid__cards {
    display: grid;
    grid-column-gap: 25px;
    grid-row-gap: 25px;
    margin-bottom: 80px;
}
.grid__cards.cols3 {
    grid-template-columns: repeat(3, 1fr);
}
.grid__cards.cols4 {
    grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 900px) {
    .grid__cards.cols4, .grid__cards.cols3 {
        grid-template-columns: repeat(1, 1fr);
    }
}
.grid {
             max-width: 960px;
         }
.grid__documents {
    margin-top: 30px;
    display: grid;
    grid-column-gap: 40px;
    grid-row-gap: 40px;
}
.grid__documents.cols2 {
    grid-template-columns: repeat(2, 1fr);
}
.grid__documents.cols1 {
    grid-template-columns: repeat(1, 1fr);
}
@media (max-width: 900px) {
    .grid__documents {
        grid-column-gap: 25px;
        grid-row-gap: 25px;
    }
    .grid__documents.cols2 {
        grid-template-columns: repeat(1, 1fr);
    }
}

.grid {
    max-width: 1200px;
}
.grid__top {
    display: flex;
    align-content: center;
    justify-content: center;
    margin-bottom: 40px;
}
.grid__top > .underline-button {
    margin: 0 28px;
}
@media (max-width: 900px) {
    .grid__top > .underline-button {
        margin: 0 10px;
    }
}
.grid__cards {
    display: grid;
    grid-column-gap: 25px;
    grid-row-gap: 25px;
    grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 900px) {
    .grid__cards {
        grid-template-columns: repeat(1, 1fr);
    }
}
.hero {
    background-size: cover;
    background-position: center;
    background-color: rgba(86, 125, 219, 0.8);
    height: 450px;
}
.hero:not(.sections) {
    background-blend-mode: multiply;
}
.hero .container-news {
    height: 100%;
}
.hero .breadcrumb {
    color: white;
}
.hero .breadcrumb {
    position: absolute;
    top: 20px;
    left: 0;
}
.hero__titles {
    max-width: 610px;
}
.hero__titles .titles {
    display: block;
    margin-top: 10px;
    width: 100%;
    margin-bottom: 16px;
}
@media (max-width: 900px) {
    .hero__titles {
        width: 100%;
    }
}
.hero.sections {
    background-color: #1C4098;
    height: 386px;
    background-size: contain;
    background-position: right center;
    background-repeat: no-repeat;
}
.hero.sections.full {
    background-size: cover;
    background-position: center;
}
@media (max-width: 900px) {
    .hero.sections {
        background-size: cover;
        background-position: -15% center;
    }
}
.hero__box {
    box-sizing: border-box;
    border: 1px solid #FFFFFF;
    border-radius: 6px;
    padding: 30px;
    margin-left: 64px;
    width: 440px;
}
.hero__box .paragraphs {
    margin: 10px 0;
}
@media (max-width: 900px) {
    .hero__box {
        width: 100%;
        padding: 22px;
        margin-top: 20px;
        margin-left: 0px;
    }
}
.hero.topics .hero__titles {
    margin: auto;
    text-align: center;
}
.hero.topics .hero__titles > h2, .hero.topics .hero__titles > p {
    text-align: center;
}
@media (max-width: 900px) {
    .hero.topics .hero__titles > h2, .hero.topics .hero__titles > p {
        text-align: left;
    }
}
.hero.topics .hero__titles .search {
    margin-top: 20px;
    box-sizing: border-box;
}
@media (max-width: 900px) {
    .hero.topics .hero__titles {
        text-align: left;
    }
}
@media (max-width: 900px) {
    .hero {
        padding: 0;
        min-height: 300px;
        height: auto;
    }
}
.content {
    width: 100%;
    max-width: 1200px;
    margin: auto;
    height: 100%;
    padding-bottom: 60px;
    box-sizing: border-box;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
@media (max-width: 900px) {
    .content {
        padding-top: 70px;
        flex-direction: column;
    }
}
.horizontalCard {
             max-width: 550px;
             border-radius: 5px;
             overflow: hidden;
             display: flex;
             align-items: stretch;
             background: white;
         }
.horizontalCard .strong {
    font-weight: 800;
    text-transform: initial;
}
.horizontalCard .imageCards {
    width: 45%;
    padding: 0;
    min-height: 180px;
}
.horizontalCard .content {
    width: 55%;
    padding: 16px 24px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.horizontalCard .content .titles {
    margin-bottom: 10px;
}
.horizontalCard .content .textarrow-button {
    margin-top: auto;
}
.horizontalCard.large {
    flex-direction: row-reverse;
}
.horizontalCard {
    max-width: 550px;
    border-radius: 5px;
    overflow: hidden;
    display: flex;
    align-items: stretch;
    background: white;
}
.horizontalCard .strong {
    font-weight: 800;
    text-transform: initial;
}
.horizontalCard .imageCards {
    width: 45%;
    padding: 0;
    min-height: 180px;
}
@media (max-width: 900px) {
    .horizontalCard .imageCards {
        width: 100%;
        min-height: 276px;
    }
}
.horizontalCard .content {
    width: 55%;
    padding: 16px 24px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.horizontalCard .content .titles {
    margin-bottom: 10px;
}
.horizontalCard .content .textarrow-button {
    margin-top: 20px;
}
.horizontalCard.large {
    max-width: 100%;
    flex-direction: row-reverse;
}
.horizontalCard.large .content {
    padding: 40px;
}
@media (max-width: 900px) {
    .horizontalCard.large .content {
        padding: 20px 0;
        width: 100%;
    }
}
@media (max-width: 900px) {
    .horizontalCard.large {
        flex-direction: column;
    }
    .horizontalCard.large .primary-button {
        width: 100%;
    }
}
.horizontalCard .linksContent {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    margin-bottom: 40px;
}
.horizontalCard .linksContent .textarrow-button {
    width: 50%;
}
@media (max-width: 900px) {
    .horizontalCard .linksContent .textarrow-button {
        width: 100%;
    }
}
.media {
             width: 100%;
         }
.media img {
    width: 100%;
    height: auto;
}
.media .caption {
    display: block;
    font-weight: 400;
    font-size: 12px;
    line-height: 1.3;
    text-align: right;
    opacity: 0.85;
    margin-top: 14px;
}
.media.marign {
    margin: 64px 0;
}
.navTabs {
             border-radius: 40px;
             overflow: hidden;
             box-shadow: 0px 4px 10px rgba(119, 136, 157, 0.2);
             display: flex;
             width: 100%;
         }
.navTabs .primary-button {
    width: 16.66%;
}
.navTabs .primary-button:not(:first-child) {
    border-left: 1px solid rgba(119, 136, 157, 0.2);
}
.navTabs .primary-button.active {
    background-color: #1C4098;
    color: #fff;
}
.navTabs.small {
    max-width: 950px;
}
.navTabs.small .primary-button {
    width: 20%;
    max-width: 196px;
}
.navTabs.dark .primary-button:not(:first-child) {
    border-left: 1px solid #1C4098;
}
.navTabs.dark .primary-button.active {
    background-color: #0BBBEF;
    color: #000;
}
@media (max-width: 900px) {
    .navTabs {
        overflow-x: scroll;
        box-shadow: none;
        border-radius: 0px;
        padding-bottom: 20px;
    }
    .navTabs .primary-button {
        width: auto;
        white-space: nowrap;
        padding: 10px 0px;
        margin-left: 20px;
        border-bottom: 2px white solid;
    }
    .navTabs .primary-button:not(:first-child) {
        border-left: 0px;
    }
    .navTabs .primary-button.active {
        background-color: white;
        color: #1C4098;
        border-bottom: 2px #1C4098 solid;
    }
    .navTabs.dark .primary-button {
        color: white;
        background-color: transparent;
        border-bottom: 2px transparent solid;
    }
    .navTabs.dark .primary-button:not(:first-child) {
        border-left: 0px;
    }
    .navTabs.dark .primary-button.active {
        background-color: transparent;
        color: #0BBBEF;
        border-bottom: 2px #0BBBEF solid;
    }
}
.profile {
    display: flex;
    align-items: flex-start;
}
.profile > .avatar {
    margin-right: 18px;
}
.profile > .info {
    font-size: 14px;
    line-height: 1.28;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.profile .info .title {
    text-transform:capitalize!important;
    font-weight: bolder!important;
    font-size:16px!important
}

.profile-grid {
    grid-row-gap: 40px;
    grid-column-gap: 100px;
    flex-wrap: wrap;
}

.modal-header {
    border-bottom: none;
}

.modal-header, .modal-body {
    padding: 30px;
}

h5.modal-title {
    font-size: 1.5rem;
}

* a {
    color: inherit;
    text-decoration: none;
}
.profile > .info a.dark {
    color: #595959;
}
.profile > .info .textarrow-button {
    display: inline-flex;
    align-items: center;
    color: #1C4098;
    cursor: pointer;
    background: transparent;
    border: none;
    padding: 0;
    margin: 0;
    margin-top: 10px;
}
.profile > .info .textarrow-button span {
    font-weight: 600;
}
.profile > .info .textarrow-button svg {
    width: 1em;
    fill: currentColor;
    margin-left: 5px;
}
.contentPopUp {
    position: fixed;
    z-index: 100;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    transition: ease-in 0.5s;
}
.contentPopUp.hiden {
    opacity: 0;
    pointer-events: none;
}
.contentPopUp .popupBio {
    max-width: 650px;
    border-radius: 5px;
    background: white;
    padding: 60px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}
.contentPopUp .popupBio .btClose {
    position: absolute;
    right: 36px;
    top: 36px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    outline: none;
    padding: 0;
    margin: 0;
    border: none;
    cursor: pointer;
    background: transparent;
}
.contentPopUp .popupBio__profile {
    display: flex;
    align-items: center;
}
.contentPopUp .popupBio__profile-bio {
    padding-left: 24px;
    max-width: 250px;
}
.contentPopUp .popupBio > .paragraphs {
    margin-top: 24px;
}
@media (max-width: 900px) {
    .contentPopUp .popupBio {
        padding: 30px;
    }
    .contentPopUp .popupBio .btClose {
        right: 16px;
        top: 16px;
    }
}
.contentPopUp {
             position: fixed;
             z-index: 100;
             left: 0;
             top: 0;
             width: 100%;
             height: 100%;
             background: rgba(0, 0, 0, 0.5);
             transition: ease-in 0.5s;
         }
.contentPopUp.hiden {
    opacity: 0;
    pointer-events: none;
}
.contentPopUp .popupContact {
    max-width: 750px;
    border-radius: 5px;
    background: white;
    padding: 60px;
    position: relative;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}
.contentPopUp .popupContact .btClose {
    cursor: pointer;
    position: absolute;
    right: 36px;
    top: 36px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    outline: none;
    padding: 0;
    margin: 0;
    border: none;
    background: transparent;
}
.contentPopUp .popupContact .profiles {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-column-gap: 40px;
    grid-row-gap: 30px;
}
.contentPopUp .popupContact .profiles.cols3 {
    grid-template-columns: repeat(3, 1fr);
    grid-column-gap: 50px;
    grid-row-gap: 20px;
}
@media (max-width: 900px) {
    .contentPopUp .popupContact {
        padding: 30px;
    }
    .contentPopUp .popupContact .profiles {
        grid-template-columns: repeat(1, 1fr);
        grid-column-gap: 0px;
        grid-row-gap: 20px;
    }
    .contentPopUp .popupContact .profiles.cols3 {
        grid-template-columns: repeat(1, 1fr);
        grid-column-gap: 0px;
        grid-row-gap: 20px;
    }
}
.pre-footer {
             background-repeat: no-repeat;
             background-position: left center;
             background-color: #1C4098;
             height: 420px;
             display: flex;
             align-items: stretch;
             justify-content: center;
         }
.pre-footer__mid {
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
}
.pre-footer__mid:not(.single):first-child {
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}
.pre-footer__mid.onlyRRSS {
    border: 0 !important;
}
.pre-footer__mid:last-child {
    border: none !important;
}
.pre-footer__mid .paragraphs {
    max-width: 410px;
}
.pre-footer__mid .newsletter {
    margin-top: 24px;
}
.pre-footer__module {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    box-sizing: border-box;
    padding: 0 50px;
}
.pre-footer__module:last-child {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.pre-footer__module.triple {
    align-items: flex-start;
    text-align: left;
}
.pre-footer__module.triple .perfil {
    display: flex;
    align-items: flex-start;
    margin-top: 16px;
}
.pre-footer__module.triple .perfil > .info {
    margin-left: 18px;
    max-width: 160px;
    font-size: 14px;
    line-height: 1.28;
}
.pre-footer__module.triple .perfil > .info p {
    margin: 3px 0;
}
.pre-footer__module.triple .perfil > .info a {
    color: #FFF;
    text-decoration: none;
    font-family: inherit;
}
.pre-footer__module > .contact .paragraphs {
    margin: 0 0 10px;
}
.pre-footer__rrss {
    margin: 20px 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.pre-footer__rrss a {
    margin: 0 20px;
}
.pre-footer__rrss.triple a {
    margin: 0 40px 0 0;
}
@media (max-width: 900px) {
    .pre-footer {
        flex-direction: column;
        height: auto;
        padding: 20px 0;
    }
    .pre-footer__mid {
        width: 100%;
        padding: 20px;
        box-sizing: border-box;
    }
    .pre-footer__mid:not(.single):first-child {
        border: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    .pre-footer__module {
        border: 0 !important;
    }
    .pre-footer__module.triple {
        padding: 20px 0;
    }
}
.table {
    width: 100%;
    padding: 40px 0;
    position: relative;
}
@media (max-width: 900px) {
    .table {
        position: relative;
    }
    .table:after {
        /*content: savepage-url=http://localhost:6006/static/media/src/assets/hand-slide.svg*/ ;
        position: absolute;
        bottom: 20px;
        left: 50%;
        transform: translateX(-50%);
    }
}
.table .title {
    margin-bottom: 24px;
}
.table .description, .table table {
    max-width: 800px;
}
.table table {
    width: auto;
    border-collapse: collapse;
    border-spacing: 0;
}
.table table:not(:first-child) {
    margin-top: 32px;
}
.table th, .table td {
    max-width: 300px;
    text-align: left;
    padding: 24px 0;
}
.table th:not(:last-child), .table td:not(:last-child) {
    padding-right: 64px;
}
.table th {
    font-weight: 600;
    padding-bottom: 0;
    color: #1C4098;
}
.table td {
    border-bottom: 0.6px solid #77889D;
}
.table td .td-content a {
    color: #1C4098;
    text-decoration: none;
}
.table td .td-content a:hover {
    text-decoration: underline;
}
.table.gray {
    background: #D7DDE3;
}
.table:not(.wrap-container) .container-news {
    width: 100% !important;
    max-width: none !important;
}
@media (max-width: 900px) {
    .table-content {
        overflow: scroll;
        padding-bottom: 20px;
    }
}
.filters {
             width: 100%;
             position: relative;
         }
.filters .flex {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}
.filters .toggle-button {
    position: absolute;
    right: 0;
    top: -36px;
    color: white;
}
.filters .title {
    font-weight: 400;
    font-size: 14px;
    line-height: 22px;
    color: #A2A3A4;
    margin: 0;
}
.filters .desktop {
    position: relative;
}
.filters .desktop .title {
    position: absolute;
    top: 22px;
}
.filters .desktop .box-container {
    height: 120px;
    overflow: visible;
    z-index: 1;
    position: relative;
}
.filters .desktop .box {
    width: 100%;
    padding: 48px 40px;
    box-sizing: border-box;
    background: white;
    box-shadow: 0px 4px 10px rgba(119, 136, 157, 0.2);
    border-radius: 5px;
}
.filters .desktop .controls {
    display: flex;
    align-items: flex-start;
    width: calc(100% - 200px);
}
.filters .desktop .control {
    margin-right: 27px;
    margin-top: 8px;
}
.filters .desktop .search-container {
    width: auto;
}
.filters .desktop .search {
    width: 100%;
    max-width: 200px;
    margin-left: auto;
    display: block;
}
.filters .desktop .tags {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
}
.filters .desktop .tags .tag-container {
    position: relative;
}
.filters .desktop .tags .tag-container:not(.checked) .tag-items {
    opacity: 0;
    pointer-events: none;
}
.filters .desktop .tags .tag-container:not(:last-child) {
    margin-right: 20px;
}
.filters .desktop .tags .tag-button {
    cursor: pointer;
}
.filters .desktop .tags .tag-items {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    position: absolute;
    top: calc(100% + 16px);
    left: 0;
    transition: opacity 0.4s ease-in-out;
}
.filters .desktop .tags .tag-items .check-button:not(:last-child) {
    margin-right: 24px;
}
.filters .desktop .tags:not(:empty) {
    margin-top: 30px;
}
.filters .mobile-filters {
    width: 100vw;
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 999;
    background: white;
    box-shadow: 0px 4px 10px rgba(119, 136, 157, 0.2);
    transition: opacity 1s cubic-bezier(0.53, 0.14, 0, 1);
}
.filters .mobile-filters .top .flex {
    width: 100%;
    padding: 0 30px;
    box-sizing: border-box;
}
.filters .mobile-filters .top .flex:first-child {
    padding: 27px 24px;
    color: #1C4098;
}
.filters .mobile-filters .top .close {
    width: 13px;
    height: 13px;
}
.filters .mobile-filters .top .close svg {
    width: 100%;
    height: 100%;
    fill: currentColor;
}
.filters .mobile-filters .top .apply {
    font-weight: 600;
    font-size: 14px;
    line-height: 1;
    text-align: right;
    cursor: pointer;
}
.filters .mobile-filters .top .search {
    width: calc(100% - 60px);
    display: flex;
    margin-left: auto;
    margin-right: auto;
}
.filters .mobile-filters .top .footer {
    margin-top: 24px;
    font-size: 12px;
}
.filters .mobile-filters .top .count strong {
    color: #1C4098;
}
.filters .mobile-filters .top .clear {
    cursor: pointer;
    color: #DD0031;
}
.filters .mobile-filters .content {
    width: calc(100% - 6px);
    height: auto;
    /*max-height: calc(var(--vh) - 144px - 26px);*/
    overflow-y: auto;
    padding: 30px;
    padding-top: 0;
    margin-top: 13px;
    box-sizing: border-box;
}
.filters .mobile-filters .content::-webkit-scrollbar {
    width: 2px;
}
.filters .mobile-filters .content::-webkit-scrollbar-track {
    background: #EDEEEE;
}
.filters .mobile-filters .content::-webkit-scrollbar-thumb {
    background: #B4BFCA;
}
.filters .mobile-filters .content::-webkit-scrollbar-thumb:hover {
    background: rgba(28, 64, 152, 0.6);
}
.filters .mobile-filters .content .control {
    width: 100%;
}
.filters .mobile-filters .content .control:not(:last-child) {
    margin-bottom: 30px;
}
.filters .mobile-tags {
    width: 100%;
    display: none;
    position: relative;
    margin-top: 40px;
}
.filters .mobile-tags-button {
    width: 100%;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: white;
    border: 1px solid #B7BCD6;
    border-radius: 4px;
    font-style: normal;
    font-size: 12px;
    line-height: 16px;
    padding: 0 20px;
    box-sizing: border-box;
    cursor: pointer;
    z-index: 1;
    position: relative;
}
.filters .mobile-tags-button span {
    color: rgba(0, 0, 0, 0.25);
}
.filters .mobile-tags-button svg {
    width: 0.7em;
    fill: currentColor;
}
.filters .mobile-tags .tags {
    width: 100%;
    height: auto;
    max-height: 400px;
    overflow-y: auto;
    position: absolute;
    top: 38px;
    z-index: 0;
    background: white;
    border: 1px solid #B7BCD6;
    border-radius: 4px;
    box-sizing: border-box;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}
.filters .mobile-tags .tag-container {
    font-size: 14px;
    padding: 10px 20px;
}
.filters .mobile-tags .tag-container .tag-button {
    display: inline-flex;
    align-items: center;
}
.filters .mobile-tags .tag-container .tag-button figure {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    margin: 0;
    margin-right: 8px;
}

.filters .mobile-tags .tag-container .tag-button[data-color=darkGreen] figure {
    background: #004E59;
}
.filters .mobile-tags .tag-container .tag-button[data-color=lightGreen] figure {
    background: #00AD68;
}
.filters .mobile-tags .tag-container .tag-button[data-color=yellow] figure {
    background: #FFED00;
}
.filters .mobile-tags .tag-container .tag-button[data-color=red] figure {
    background: #DD0031;
}
.filters .mobile-tags .tag-container .tag-button[data-color=violet] figure {
    background: #873299;
}
.filters .mobile-tags .tag-container .tag-button[data-color=orange] figure {
    background: #EE6F2D;
}
.filters .mobile-tags .tag-container .tag-items {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-top: 24px;
    margin-bottom: 14px;
}
.filters .mobile-tags .tag-container .tag-items .check-button {
    margin-left: 0;
}
.filters .mobile-tags .tag-container .tag-items .check-button:not(:last-child) {
    margin-bottom: 14px;
}
.filters .mobile-tags .tag-container.checked .tag-button span {
    font-weight: 700;
}
.filters .mobile-tags .tag-container:not(.checked) .tag-items {
    display: none;
}
.filters .mobile-tags:not(.open) .tags {
    display: none;
}
.filters.hasTags .desktop {
    padding-bottom: 20px;
}
.filters:not(.open) .mobile-filters {
    opacity: 0;
}
.filters:not(.open) .mobile-filters, .filters:not(.open) .mobile-filters * {
    pointer-events: none !important;
}
@media (max-width: 1180px) {
    .filters .desktop .controls {
        width: calc(100% - 150px);
    }
    .filters .desktop .control {
        margin-right: 17px;
    }
}
@media (max-width: 850px) {
    .filters .desktop .box {
        padding: 38px 20px;
        box-sizing: border-box;
    }
    .filters .desktop .controls {
        width: calc(100% - 140px);
    }
    .filters .desktop .control {
        margin-right: 10px;
    }
}
@media (max-width: 768px) {
    .filters .toggle-button {
        position: static;
        color: #1C4098;
    }
    .filters .mobile-tags {
        display: block;
    }
}
.contentLogos {
             max-width: 1200px;
             position: relative;
         }
.contentLogos .paragraphs {
    max-width: 570px;
    margin-bottom: 40px;
}
@media (max-width: 900px) {
    .contentLogos:after {
        /*content: savepage-url=http://localhost:6006/static/media/src/assets/hand-slide.svg*/
        position: absolute;
        bottom: 4px;
        left: 50%;
        transform: translateX(-50%);
    }
}
.profiles {
             padding: 80px 0;
             margin: 80px 0;
             background: #F8F9FA;
         }
.profiles .content {
    width: calc(100% - 310px);
    max-width: 820px;
}
@media (max-width: 900px) {
    .profiles .content {
        width: 100%;
    }
}
.profiles .title {
    margin-bottom: 60px;
}
.profiles .flex {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.profiles .flex .item {
    width: 43%;
    margin-bottom: 48px;
}
@media (max-width: 900px) {
    .profiles .flex {
        flex-direction: column;
    }
    .profiles .flex .item {
        width: 100%;
        margin-bottom: 30px;
    }
}
.cards {
             max-width: 384px;
             overflow: hidden;
             border-radius: 5px;
             background-color: white;
             position: relative;
             display: flex;
             flex-direction: column;
         }
.cards_body {
    padding: 1px 0px 20px;
}
.cards_body > .paragraphs {
    margin: 14px 0;
}
.cards > .labelCards.lightTag {
    position: absolute;
    top: 16px;
    left: 16px;
}
.cards .titles {
    margin: 5px 0 10px;
}
@media (max-width: 900px) {
    .cards {
        max-width: 100%;
    }
}
.grid {
             max-width: 1200px;
             display: flex;
             flex-direction: column;
         }
.grid .primary-button {
    align-self: center;
}
.grid__cardtop {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 25px;
}
.grid__cardtop--total {
    display: flex;
    font-family: inherit;
}
.grid__cardtop--total strong {
    margin-left: 5px;
    color: #1C4098;
    max-height: 20px;
    margin: 9px;
}
@media (max-width: 900px) {
    .grid__cardtop--total {
        margin-top: 30px;
    }
}
@media (max-width: 900px) {
    .grid__cardtop {
        flex-direction: column-reverse;
        align-items: flex-start;
    }
}
.grid__cards {
    display: grid;
    grid-column-gap: 25px;
    grid-row-gap: 25px;
    margin-bottom: 80px;
}
.grid__cards.cols3 {
    grid-template-columns: repeat(3, 1fr);
}
.grid__cards.cols4 {
    grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 900px) {
    .grid__cards.cols4, .grid__cards.cols3 {
        grid-template-columns: repeat(1, 1fr);
    }
}

.container-news > .filterBox {
    margin: 30px 0;
    margin-top: -60px;
    position: relative;
    z-index: 2;
}
@media (max-width: 768px) {
    .container-news > .filterBox {
        margin-top: 30px;
    }
}

.cards-slider .swiper {
    padding: 24px 0;
}
.cards-slider .swiper-wrapper {
    align-content: stretch;
}
.cards-slider .swiper-slide {
    position: relative;
    box-sizing: border-box;
    height: auto;
}
.cards-slider .swiper-slide > .cards {
    height: 100%;
}
.cards-slider .swiper-card {
    width: 100%;
    max-width: none;
}

.card-swiper .swiper-slide{
    cursor: inherit !important;
}

.card-swiper .swiper-slide .cards_body .titles.h4.blue {
    font-size: 17px !important;
    color: #1B4098;
}

.bt-up {
    position: absolute;
    margin-top: -100px;
    right: 40px;
}
.sticky-content {
    position: relative;
}
.grid {
    max-width: 1200px;
    display: flex;
    flex-direction: column;
}
.grid .primary-button {
    align-self: center;
}
.grid__cardtop {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 25px;
}
.grid__cardtop--total {
    display: flex;
    font-family: inherit;
    align-items: center;
}
.grid__cardtop--total strong {
    margin-left: 5px;
    color: #1C4098;
}
@media (max-width: 900px) {
    .grid__cardtop--total {
        margin-top: 30px;
    }
}
@media (max-width: 900px) {
    .grid__cardtop {
        flex-direction: column-reverse;
        align-items: flex-start;
    }
}
.grid__cards {
    display: grid;
    grid-column-gap: 25px;
    grid-row-gap: 25px;
    margin-bottom: 80px;
}
.grid__cards.cols3 {
    grid-template-columns: repeat(3, 1fr);
}
.grid__cards.cols4 {
    grid-template-columns: repeat(4, 1fr);
}
.grid__cards.cols4 .cards_body {
    padding: 18px;
}
@media (max-width: 900px) {
    .grid__cards.cols4, .grid__cards.cols3 {
        grid-template-columns: repeat(1, 1fr);
    }
}

.back-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: none;
    border-radius: 28px;
    min-width: 158px;
    cursor: pointer;
    user-select: none;
    transition: all ease-in 0.3s;
    padding: 5px 15px;
    font-weight: 600;
    box-shadow: 0 4px 10px rgba(119, 136, 157, 0.2);
}
.back-button svg {
    margin-right: 10px;
    transition: all ease-in 0.3s;
}
.back-button.white {
    background: transparent;
    color: #1C4098;
}
.back-button.white svg path {
    fill: #1C4098;
}
.back-button.white:hover {
    color: #FFF;
    background: #1C4098;
}
.back-button.white:hover svg {
    transform: translateX(-10px);
}
.back-button.white:hover svg path {
    fill: #FFF;
}

svg {
    display: inline-block;
    vertical-align: top;
}

.media {
    width: 100%;
}

.media .caption {
    display: block;
    font-weight: 400;
    font-size: 12px;
    line-height: 1.3;
    text-align: right;
    opacity: 0.85;
    margin-top: 14px;
}
.media .accessibility {
    position: relative;
    border-radius: 5px;
    background: #F8F9FA;
    width: 100%;
    padding-top: 56.25%;
}
.media .accessibility-caption {
    position: absolute;
    top: 30px;
    left: 30px;
    font-size: 14px;
    line-height: 1.5;
    color: #1C4098;
    max-width: 550px;
}

.news-template .back-button {
    margin-top: 32px;
    font-size: 14px;
    text-decoration: none;
}
.news-template > .container-news {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}
.news-template .article-left {
    width: calc(100% - 280px - 10%);
}
.news-template .article-left .title {
    margin-bottom: 16px;
}
.news-template .article-left .aside-cards-image {
    display: none;
    margin-top: 40px;
}
@media (max-width: 900px) {
    .news-template .article-left {
        width: 100%;
    }
}
.news-template .article-right {
    width: 280px;
    position: relative;
    top: 32px;
    margin-top: 294px !important;
    z-index: 1;
}
.news-template .article-right-header {
    display: none;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
    color: white;
}
.news-template .article-right-header h1 {
    max-width: calc(100% - 35px - 15px);
    font-style: normal;
    font-weight: 600;
    font-size: 18px;
    line-height: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    margin: 0;
}
.news-template .article-right-header .button {
    width: 35px;
    height: 35px;
    background: currentColor;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}
.news-template .article-right-header .button svg {
    width: 50%;
    fill: #1C4098;
    transition: transform 1s cubic-bezier(0.49, 0.27, 0, 1);
}
.news-template .article-right .aside-item .title {
    margin-top: 0;
}
.news-template .article-right .aside-item:not(:last-child) {
    margin-bottom: 72px;
}
.news-template .article-right .aside-cards-image {
    transition: opacity 0.5s cubic-bezier(0.49, 0.27, 0, 1);
}
.news-template .article-right .aside-cards-image.fixed {
    position: fixed;
    top: 32px;
}
.news-template .article-right .aside-cards-image.hidden {
    opacity: 0;
}
.news-template .article-right .aside-cards-image.hidden, .news-template .article-right .aside-cards-image.hidden * {
    pointer-events: none !important;
}
.news-template .header {
    margin-top: 24px;
    margin-bottom: 64px;
}
.news-template .header > span:first-child {
    display: block;
    font-weight: 400;
    font-size: 14px;
    line-height: 1;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #1C4098;
    margin-bottom: 8px;
}
.news-template .header .date {
    display: block;
    margin-top: 16px;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.5;
    color: rgba(0, 0, 0, 0.85);
}
.news-template .header .media-container {
    width: 100%;
    margin-top: 0;
}
.news-template .header .media-container .media {
    margin-top: 32px;
}
.news-template .body {
    margin-bottom: 40px;
}
.news-template .text-module {
    width: 100%;
}
.news-template .notes {
    margin-top: 40px;
}
.news-template .related {
    width: 100%;
    padding: 40px 0;
    background: #F8F9FA;
    position: relative;
}
.news-template .related .title {
    margin-bottom: 28px;
}
@media (max-width: 900px) {
    .news-template .related {
        position: relative;
    }
    .news-template .related:after {
        content: '';/*savepage-url=http://localhost:6006/static/media/src/assets/hand-slide.svg url(../modules/ebuModule/css/newsV2/);*/
        position: absolute;
        bottom: 80px;
        left: 50%;
        transform: translateX(-50%);
    }
}
@media (max-width: 900px) {
    .news-template > .container-news {
        flex-direction: column;
    }
    .news-template .article-left .aside-cards-image {
        display: block;
    }
    .news-template .article-right {
        width: 100%;
        height: auto;
        max-height: calc(100% - 100px);
        overflow-y: auto;
        padding: 20px;
        padding-top: 0;
        box-sizing: border-box;
        position: fixed;
        left: 0;
        top: auto;
        bottom: 0;
        z-index: 99;
        color: white;
        background: #1C4098;
        box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.1);
        border-radius: 6px 6px 0px 0px;
        transition: transform 1s cubic-bezier(0.49, 0.27, 0, 1), opacity 1s cubic-bezier(0.49, 0.27, 0, 1);
    }
    .news-template .article-right-header {
        display: flex;
    }
    .news-template .article-right .aside-item .title {
        color: inherit;
    }
    .news-template .article-right .aside-cards-image {
        position: static !important;
        display: none;
    }
    .news-template .article-right:not(.openRight) {
        overflow: hidden;
        transform: translateY(calc(100% - 75px));
    }
    .news-template .article-right.openRight .article-right-header .button svg {
        transform: rotate(45deg);
    }
    .news-template .article-right.hidden {
        opacity: 0;
        transform: translateY(100%) !important;
    }
    .news-template .article-right.hidden, .news-template .article-right.hidden * {
        pointer-events: none !important;
    }
}
.container-news > .filterBox {
    position: relative;
    z-index: 2;
    transform: translateY(-24%);
}

.cards {
             max-width: 384px;
             overflow: hidden;
             border-radius: 5px;
             background-color: white;
             position: relative;
         }
.cards_body {
    padding: 20px 30px;
}
.cards.large {
    box-shadow: 0px 6px 14px rgba(119, 136, 157, 0.2);
}
.cards > .labelCards.tag {
    position: absolute;
    top: 16px;
    left: 16px;
}
.cards .titles {
    margin: 5px 0 10px;
}
.cards .labelCards.darkTag {
    margin: 16px 0;
}
.contentTopics {
    margin: 80px auto;
}
.contentTopics .grid {
    display: grid;
    grid-column-gap: 25px;
    grid-row-gap: 25px;
    grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 900px) {
    .contentTopics .grid {
        grid-column-gap: 0px;
        grid-template-columns: repeat(1, 1fr);
    }
}

.tabs-casebook {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-top: 80px;
}

.tabs-casebook .paragraphs {
    max-width: 792px;
}
.tabs-casebook .contentChecks {
    margin: 30px 0 50px;
}
.tabs-casebook > .primary-button {
    margin: auto;
}
.tabs-casebook__grid {
    display: grid;
    grid-column-gap: 25px;
    grid-row-gap: 25px;
    margin-bottom: 80px;
    grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 900px) {
    .tabs-casebook__grid {
        grid-template-columns: repeat(1, 1fr);
        grid-column-gap: 0px;
    }
}

.our-community .paragraphs {
    max-width: 792px;
}
.related-links {
  padding: 40px;
  border-radius: 3px;
  background: white;
  margin-top: 80px;
}
.related-links .paragraphs {
    max-width: 792px;
}
.related-links .h2 {
    margin: 0 0 40px;
}
.related-links .grid {
    display: flex;
    justify-content: space-between;
}
.related-links .grid .box {
    max-width: 280px;
}
.related-links .grid .box p {
    margin-bottom: 24px;
}
@media (max-width: 900px) {
    .related-links .grid {
        overflow: scroll;
        padding-bottom: 40px;
    }
    .related-links .grid .box {
        min-width: 240px;
        margin-right: 20px;
    }
    .related-links .grid:after {
        content: '';/*savepage-url=http://localhost:6006/static/media/src/assets/hand-slide.svg*/ url(../modules/ebuModule/css/newsV2/);
        position: absolute;
        bottom: 10px;
        left: 50%;
        transform: translateX(-50%);
    }
}
.sub-nav {
    border-bottom: 1px solid #D7DDE3;
    padding-top: 26px;
    margin-bottom: 30px;
    position: sticky;
    top: 0px;
    z-index: 99;
    background: #FFF;
}
.sub-nav button {
    margin-right: 20px;
}
.sub-nav button::after {
    margin-top: 12px;
    transform: translateY(1px);
}
.sub-nav button:not(.active) {
    color: #77889D;
}
.sub-nav button:not(.active)::after {
    opacity: 0;
}
@media (max-width: 900px) {
    .sub-nav {
        overflow: scroll;
        padding-top: 10px;
        padding-bottom: 10px;
        display: flex;
        margin-bottom: 40px;
    }
    .sub-nav > * {
        white-space: nowrap;
    }
}
.container-news.two-cols {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}
.container-news.two-cols > figure {
    margin-bottom: 60px !important;
}
.container-news.two-cols .text {
    max-width: 792px;
}
.container-news.two-cols aside {
    position: sticky;
    top: 50px;
    margin-left: 40px;
}
@media (max-width: 900px) {
    .container-news.two-cols {
        flex-direction: column;
    }
}
.paragraphs {
    max-width: 792px;
}
.grey-section {
    padding: 80px 0;
    background: #F8F9FA;
    margin-top: 60px;
}
.grey-section .horizontalCard {
    margin-top: 80px;
}
.grey-section.related-services {
    margin-top: 0;
}
.blue-section {
    background: #1C4098;
    padding: 80px 0;
    background-position: right top;
    background-repeat: no-repeat;
}
.blue-section .cards-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 60px 0 100px;
}
.blue-section .cards-content .horizontalCard {
    max-width: calc(50% - 18px);
    width: 100%;
}
@media (max-width: 900px) {
    .blue-section .cards-content {
        margin: 40px 0 50px;
        flex-direction: column;
    }
    .blue-section .cards-content .horizontalCard {
        max-width: 100%;
        width: 100%;
        margin-bottom: 20px;
    }
}
.blue-section .box-white {
    padding: 50px;
    background: white;
    margin-top: 60px;
}
@media (max-width: 900px) {
    .blue-section .box-white {
        padding: 30px 10px;
    }
}
.logos-section {
    padding: 80px 0;
}

.media-container {
    width: 100%;
    margin-top: 0;
}
.media-container .media {
    margin-top: 32px;
}

body {
   margin: 0;
}

body #embed {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    flex-flow: column;
}
body #embed #location {
    position: absolute;
    top: 0;
    right: 0;
    margin: 1em;
    background-color: transparent;
    color: white;
    opacity: 0.5;
    font-size: 3vw;
    line-height: 0.5;
    font-weight: bold;
    text-align: center;
    text-shadow: 4px 4px 6px rgba(0, 0, 0, 0.9);
    z-index: 1;
}
body #embed #area-player {
    position: relative;
    /* Display player-overlay on hover, only on compatible devices */
}
body #embed #area-player #player {
    background-color: black;
    max-height: 100vh;
    /* player placeholder */
}
body #embed #area-player #player.player-reduced {
    height: calc(100vh - 150px) !important;
}
@media screen and (max-width: 1024px) {
    body #embed #area-player #player.player-reduced {
        height: inherit !important;
    }
}

body #embed #area-player #player.player-placeholder {
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}
body #embed #area-player #player.player-placeholder:before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: #000;
    opacity: 0.5;
}
body #embed #area-player #player.player-placeholder .player-title {
    position: absolute;
    color: white;
    font-size: 20px;
    padding-left: 5px;
}
body #embed #area-player #player.player-placeholder .player-description {
    font-size: 16px;
}
body #embed #area-player #player.player-placeholder .player-message {
    position: absolute;
    width: 100%;
    padding: 5px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    opacity: 0.9;
    font-size: 50px;
    font-size: 6vw;
    font-weight: bold;
    text-align: center;
    text-shadow: 4px 4px 6px rgba(0, 0, 0, 0.9);
    z-index: 1;
}
@media screen and (max-width: 767px) {
    body #embed #area-player #player.player-placeholder .player-message {
        font-size: 30px;
        font-size: 6vw;
    }
}
body #embed #area-player #player.player-placeholder #countdown-days {
    display: inline-block;
    font-size: 4vw;
    width: 20%;
}
body #embed #area-player #player.player-placeholder #countdown-hours {
    display: inline-block;
    font-size: 4vw;
    width: 20%;
}
body #embed #area-player #player.player-placeholder #countdown-minutes {
    display: inline-block;
    font-size: 4vw;
    width: 20%;
}
body #embed #area-player #player.player-placeholder #countdown-seconds {
    display: inline-block;
    font-size: 4vw;
    width: 20%;
}
body #embed #area-player #player.player-error {
    background: linear-gradient(#bdc1cd 15%, #4d4e52 100%);
}
body #embed #area-player #player.player-error #info-detail {
    width: 100%;
    position: absolute;
    bottom: 0px;
    padding: 20px;
    color: #fff;
    font-weight: bold;
    text-transform: uppercase;
}
body #embed #area-player:hover #player-overlay .left-info, body #embed #area-player:hover #player-overlay .right-info {
    display: block;
}
@media (hover: none) {
    body #embed #area-player:hover #player-overlay .left-info, body #embed #area-player:hover #player-overlay .right-info {
        display: none;
    }
}
body #embed #player-overlay .left-info, body #embed #player-overlay .right-info {
    display: none;
    position: absolute;
    top: 18px;
    box-sizing: content-box;
    z-index: 99;
}
body #embed #player-overlay .left-info {
    left: 0;
    padding-left: 20px;
}
body #embed #player-overlay .right-info {
    right: 0;
    padding-right: 20px;
}
body #embed #player-overlay .right-info #textarea-share {
    position: absolute;
    z-index: -1;
    opacity: 0;
}
body #embed #player-overlay .right-info #textarea-share-link {
    position: absolute;
    z-index: -1;
    opacity: 0;
}
body #embed #player-overlay #modal-info, body #embed #player-overlay #modal-download {
    position: absolute;
    color: #fff;
    font-weight: bold;
    font-size: 11px;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
    z-index: 1000;
    padding: 10px;
    background-color: rgba(0, 0, 0, 0.8);
    overflow-x: hidden;
}
body #embed #player-overlay #modal-info .title, body #embed #player-overlay #modal-download .title {
    display: inline-block;
    font-size: 14px;
    line-height: 30px;
}
body #embed #player-overlay #modal-info .table, body #embed #player-overlay #modal-download .table {
    margin-bottom: 0px;
}
body #embed #player-overlay #modal-info .table > tbody > tr > td, body #embed #player-overlay #modal-download .table > tbody > tr > td {
    padding: 15px 2px;
    font-size: 13px;
}
@media screen and (max-width: 767px) {
    body #embed #player-overlay #modal-info .table > tbody > tr > td, body #embed #player-overlay #modal-download .table > tbody > tr > td {
        padding: 12px 2px;
        font-size: 12px;
    }
}
@media screen and (max-width: 575px) {
    body #embed #player-overlay #modal-info .table > tbody > tr > td, body #embed #player-overlay #modal-download .table > tbody > tr > td {
        padding: 7px 2px;
        font-size: 11px;
    }
}
body #embed #player-overlay #modal-download .table > tbody > tr:hover {
    background-color: rgba(255, 255, 255, 0.8);
    cursor: pointer;
}
body #embed #player-overlay .btn-primary {
    font-size: 25px;
    color: rgba(255, 255, 255, 0.8);
    background-color: transparent;
    border: 0px;
}
body #embed #player-overlay .btn-primary:hover, body #embed #player-overlay .btn-primary:active {
    color: #cecece;
    border: 0px;
}
body #embed #player-overlay .btn-primary:focus {
    outline: none;
    border: 0px;
}
body #embed #player-overlay .btn-primary:focus:active {
    color: #cecece;
    border: 0px;
}
body #embed #player-overlay .popover {
    font-size: 11px;
    font-weight: bold;
}
body #embed #player-overlay .popover .popover-content {
    padding: 6px 6px;
}
body .sidebar {
    background-color: #000;
    display: flex;
    position: relative;
    flex-flow: column nowrap;
    margin: auto;
    height: 100%;
    overflow: hidden;
    display: none;
    width: 100%;
    padding: 10px 48px;
}
@media screen and (max-width: 1024px) {
    body .sidebar {
        padding: 15px;
        text-align: center;
    }
}
body .sidebar h3 {
    color: #fff;
    font-size: 14px;
    margin: 0;
    padding: 20px;
    text-align: left;
}

body div[button=search-button] {
    width: 50% !important;
    position: relative;
    margin: auto;
}
@media screen and (max-width: 359px) {
    body div[button=search-button] {
        display: none;
    }
}
@media screen and (max-width: 1024px) {
    body body #match {
        width: 15%;
        display: inline-block;
        margin: auto;
        position: relative;
        text-align: center;
    }
    body #previous-match, body #next-match {
        display: inline-block;
    }
}
body #match {
    color: #fff;
    font-size: 14px;
    line-height: 20px;
    display: inline-block;
}

article.news-template{
    padding: 1rem;
}

.contact-container {
    width: 100%;
    max-width: 378px;
}

.white .contact-container,
.white .contact-container .title {
    color: #FFFFFF !important;
}

.contact {
    width: inherit;
}

.h5, h5 {
    font-weight: 700;
    padding: 0;
    margin: 0 0 1em 0;
    color: #1b4098;
}

.ebu_filters--show:before {
    content: "";
}

.ebu_filters--show.open::before {
    content: "";
}

.ebu_filters--show svg{
    vertical-align: middle;
}

.ebu_cards{
    border-bottom: 0;
    display: grid;
}

.ebu_cards_image{
    border-radius: 5px;
    border-bottom: 6px solid;
}

.ebu_grid_cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-column-gap: 24px;
    grid-row-gap: 24px;
}

.ebu_grid_cards--head {
    grid-area: 1 / 1 / 3 / 5;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #1C4098;
    letter-spacing: 1px;
    font-size: 12px;
    text-transform: uppercase;
}

.ebu_grid_cards--head .buttons a {
    display: inline-block;
    margin-left: 10px;
    opacity: .3;
    filter: brightness(0.5);
}

.ebu_grid_cards--head .buttons a.active {
    opacity: 1;
    filter: brightness(1);
}


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

    .ebu_grid_cards--head {
        grid-area: 1 / 1 / 3 / 4;
    }
}

@media (max-width: 840px) {
    .ebu_grid_cards {
        grid-template-columns: repeat(2, 1fr);
    }
    .ebu_grid_cards--head {
        grid-area: 1 / 1 / 3 / 3;
    }
}

@media (max-width: 570px) {
    .ebu_grid_cards {
        display: flex;
        flex-direction: column;
    }
    .ebu_grid_cards--head {
        font-size: 14px;
        font-weight: 400;
        line-height: 16px;
    }
}

.cta_loadmore {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 88px 0 104px;
}

.type_label{
    text-transform: uppercase;
}

.ebu-img-copyright {
    position: relative;
    color: #000;
    text-align: right;
    right: 20px;
    bottom: 22px;
    font-size: 10px;
    z-index: 11;
    text-shadow:-1px -1px 0px #FFF, 1px -1px 5px #FFF, -1px 1px 0px #AAA, 1px 1px 0px #AAA;
}

.embed-responsive iframe,
.embed-responsive embed {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    height: 100%;
    width: 100%;
    border: 0;
}

.embed-responsive-16by9{
    position: relative;
    margin-top: 55px;
    margin-bottom: 20px;
    padding-bottom: 56.25%;
}

.embed-responsive-16by9:has(div[id^="lrm-embedded-content-slideshow-gallery"]) {
    padding-bottom: 0;
}

.news-list .titles.h4 {
    font-size: 17px!important;
    margin: 5px 0!important;
}

.news-list .titles.h6 {
    font-size: 12px!important;
    text-transform: uppercase;
    font-weight: 300!important;
    margin: 0;
    opacity: 0.50!important;
    letter-spacing: 1px!important;
}

.news-list.ebu_cards {
    background-color: transparent!important;
    padding: 0 15px 15px 0;
}

.news-list .cards_body {
    padding: 20px 15px!important;
}

.flickity-prev-next-button path.arrow {
    fill: #1b4098;
}

.flickity-prev-next-button svg {
    vertical-align: top;
    width: 21px;
    height: 21px;
    margin-top: 3px;
}

.lrm-embed-gallery-container .flickity-prev-next-button {
    width: 40px !important;
    height: 40px !important;
    border-radius: 20px !important;
    position: absolute;
    border: 1px solid #1b4098 !important;
    background: rgba(255, 255, 255, 0.5);
    padding: 2px;
}

.lrm-embed-gallery-container .flickity-prev-next-button:hover {
    background: rgba(255, 255, 255, 0.9);
}

.content-event.fade-in-y_NO.show {
    max-width: 900px;
}

.text-module-summary {
    margin: 16px 0;
    padding: 16px;
    background: #F8F9FA;
    border-radius: 6px;
}

.ad-event img {
    max-width:280px;
}

.container-news .ebu-img-book{
    margin: 20px 15px !important;
}

.container-news .ebu-img-book img {
    position: relative;
    margin-top: -15px;
    display: inline-block;
    background: black;
    padding: 0;
    width: 100%;
    text-align: center;
    -webkit-box-shadow: 0 6px 14px rgba(119, 136, 157, 0.7);
    -moz-box-shadow: 0 6px 14px rgba(119, 136, 157, 0.7);
    box-shadow: 0 6px 14px rgba(119, 136, 157, 0.7);
}
/**
 * Swiper 10.3.1
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2023 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: September 28, 2023
 */

@font-face{font-family:swiper-icons;src:url('data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA');font-weight:400;font-style:normal}:root{--swiper-theme-color:#007aff}:host{position:relative;display:block;margin-left:auto;margin-right:auto;z-index:1}.swiper{margin-left:auto;margin-right:auto;position:relative;overflow:hidden;overflow:clip;list-style:none;padding:0;z-index:1;display:block}.swiper-vertical>.swiper-wrapper{flex-direction:column}.swiper-wrapper{position:relative;width:100%;height:100%;z-index:1;display:flex;transition-property:transform;transition-timing-function:var(--swiper-wrapper-transition-timing-function,initial);box-sizing:content-box}.swiper-android .swiper-slide,.swiper-ios .swiper-slide,.swiper-wrapper{transform:translate3d(0px,0,0)}.swiper-horizontal{touch-action:pan-y}.swiper-vertical{touch-action:pan-x}.swiper-slide{flex-shrink:0;width:100%;height:100%;position:relative;transition-property:transform;display:block}.swiper-slide-invisible-blank{visibility:hidden}.swiper-autoheight,.swiper-autoheight .swiper-slide{height:auto}.swiper-autoheight .swiper-wrapper{align-items:flex-start;transition-property:transform,height}.swiper-backface-hidden .swiper-slide{transform:translateZ(0);-webkit-backface-visibility:hidden;backface-visibility:hidden}.swiper-3d.swiper-css-mode .swiper-wrapper{perspective:1200px}.swiper-3d .swiper-wrapper{transform-style:preserve-3d}.swiper-3d{perspective:1200px}.swiper-3d .swiper-cube-shadow,.swiper-3d .swiper-slide{transform-style:preserve-3d}.swiper-css-mode>.swiper-wrapper{overflow:auto;scrollbar-width:none;-ms-overflow-style:none}.swiper-css-mode>.swiper-wrapper::-webkit-scrollbar{display:none}.swiper-css-mode>.swiper-wrapper>.swiper-slide{scroll-snap-align:start start}.swiper-css-mode.swiper-horizontal>.swiper-wrapper{scroll-snap-type:x mandatory}.swiper-css-mode.swiper-vertical>.swiper-wrapper{scroll-snap-type:y mandatory}.swiper-css-mode.swiper-free-mode>.swiper-wrapper{scroll-snap-type:none}.swiper-css-mode.swiper-free-mode>.swiper-wrapper>.swiper-slide{scroll-snap-align:none}.swiper-css-mode.swiper-centered>.swiper-wrapper::before{content:'';flex-shrink:0;order:9999}.swiper-css-mode.swiper-centered>.swiper-wrapper>.swiper-slide{scroll-snap-align:center center;scroll-snap-stop:always}.swiper-css-mode.swiper-centered.swiper-horizontal>.swiper-wrapper>.swiper-slide:first-child{margin-inline-start:var(--swiper-centered-offset-before)}.swiper-css-mode.swiper-centered.swiper-horizontal>.swiper-wrapper::before{height:100%;min-height:1px;width:var(--swiper-centered-offset-after)}.swiper-css-mode.swiper-centered.swiper-vertical>.swiper-wrapper>.swiper-slide:first-child{margin-block-start:var(--swiper-centered-offset-before)}.swiper-css-mode.swiper-centered.swiper-vertical>.swiper-wrapper::before{width:100%;min-width:1px;height:var(--swiper-centered-offset-after)}.swiper-3d .swiper-slide-shadow,.swiper-3d .swiper-slide-shadow-bottom,.swiper-3d .swiper-slide-shadow-left,.swiper-3d .swiper-slide-shadow-right,.swiper-3d .swiper-slide-shadow-top{position:absolute;left:0;top:0;width:100%;height:100%;pointer-events:none;z-index:10}.swiper-3d .swiper-slide-shadow{background:rgba(0,0,0,.15)}.swiper-3d .swiper-slide-shadow-left{background-image:linear-gradient(to left,rgba(0,0,0,.5),rgba(0,0,0,0))}.swiper-3d .swiper-slide-shadow-right{background-image:linear-gradient(to right,rgba(0,0,0,.5),rgba(0,0,0,0))}.swiper-3d .swiper-slide-shadow-top{background-image:linear-gradient(to top,rgba(0,0,0,.5),rgba(0,0,0,0))}.swiper-3d .swiper-slide-shadow-bottom{background-image:linear-gradient(to bottom,rgba(0,0,0,.5),rgba(0,0,0,0))}.swiper-lazy-preloader{width:42px;height:42px;position:absolute;left:50%;top:50%;margin-left:-21px;margin-top:-21px;z-index:10;transform-origin:50%;box-sizing:border-box;border:4px solid var(--swiper-preloader-color,var(--swiper-theme-color));border-radius:50%;border-top-color:transparent}.swiper-watch-progress .swiper-slide-visible .swiper-lazy-preloader,.swiper:not(.swiper-watch-progress) .swiper-lazy-preloader{animation:swiper-preloader-spin 1s infinite linear}.swiper-lazy-preloader-white{--swiper-preloader-color:#fff}.swiper-lazy-preloader-black{--swiper-preloader-color:#000}@keyframes swiper-preloader-spin{0%{transform:rotate(0deg)}100%{transform:rotate(360deg)}}.swiper-virtual .swiper-slide{-webkit-backface-visibility:hidden;transform:translateZ(0)}.swiper-virtual.swiper-css-mode .swiper-wrapper::after{content:'';position:absolute;left:0;top:0;pointer-events:none}.swiper-virtual.swiper-css-mode.swiper-horizontal .swiper-wrapper::after{height:1px;width:var(--swiper-virtual-size)}.swiper-virtual.swiper-css-mode.swiper-vertical .swiper-wrapper::after{width:1px;height:var(--swiper-virtual-size)}:root{--swiper-navigation-size:44px}.swiper-button-next,.swiper-button-prev{position:absolute;top:var(--swiper-navigation-top-offset,50%);width:calc(var(--swiper-navigation-size)/ 44 * 27);height:var(--swiper-navigation-size);margin-top:calc(0px - (var(--swiper-navigation-size)/ 2));z-index:10;cursor:pointer;display:flex;align-items:center;justify-content:center;color:var(--swiper-navigation-color,var(--swiper-theme-color))}.swiper-button-next.swiper-button-disabled,.swiper-button-prev.swiper-button-disabled{opacity:.35;cursor:auto;pointer-events:none}.swiper-button-next.swiper-button-hidden,.swiper-button-prev.swiper-button-hidden{opacity:0;cursor:auto;pointer-events:none}.swiper-navigation-disabled .swiper-button-next,.swiper-navigation-disabled .swiper-button-prev{display:none!important}.swiper-button-next svg,.swiper-button-prev svg{width:100%;height:100%;object-fit:contain;transform-origin:center}.swiper-rtl .swiper-button-next svg,.swiper-rtl .swiper-button-prev svg{transform:rotate(180deg)}.swiper-button-prev,.swiper-rtl .swiper-button-next{left:var(--swiper-navigation-sides-offset,10px);right:auto}.swiper-button-next,.swiper-rtl .swiper-button-prev{right:var(--swiper-navigation-sides-offset,10px);left:auto}.swiper-button-lock{display:none}.swiper-button-next:after,.swiper-button-prev:after{font-family:swiper-icons;font-size:var(--swiper-navigation-size);text-transform:none!important;letter-spacing:0;font-variant:initial;line-height:1}.swiper-button-prev:after,.swiper-rtl .swiper-button-next:after{content:'prev'}.swiper-button-next,.swiper-rtl .swiper-button-prev{right:var(--swiper-navigation-sides-offset,10px);left:auto}.swiper-button-next:after,.swiper-rtl .swiper-button-prev:after{content:'next'}.swiper-pagination{position:absolute;text-align:center;transition:.3s opacity;transform:translate3d(0,0,0);z-index:10}.swiper-pagination.swiper-pagination-hidden{opacity:0}.swiper-pagination-disabled>.swiper-pagination,.swiper-pagination.swiper-pagination-disabled{display:none!important}.swiper-horizontal>.swiper-pagination-bullets,.swiper-pagination-bullets.swiper-pagination-horizontal,.swiper-pagination-custom,.swiper-pagination-fraction{bottom:var(--swiper-pagination-bottom,8px);top:var(--swiper-pagination-top,auto);left:0;width:100%}.swiper-pagination-bullets-dynamic{overflow:hidden;font-size:0}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{transform:scale(.33);position:relative}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active{transform:scale(1)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main{transform:scale(1)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev{transform:scale(.66)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev{transform:scale(.33)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next{transform:scale(.66)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next{transform:scale(.33)}.swiper-pagination-bullet{width:var(--swiper-pagination-bullet-width,var(--swiper-pagination-bullet-size,8px));height:var(--swiper-pagination-bullet-height,var(--swiper-pagination-bullet-size,8px));display:inline-block;border-radius:var(--swiper-pagination-bullet-border-radius,50%);background:var(--swiper-pagination-bullet-inactive-color,#000);opacity:var(--swiper-pagination-bullet-inactive-opacity, .2)}button.swiper-pagination-bullet{border:none;margin:0;padding:0;box-shadow:none;-webkit-appearance:none;appearance:none}.swiper-pagination-clickable .swiper-pagination-bullet{cursor:pointer}.swiper-pagination-bullet:only-child{display:none!important}.swiper-pagination-bullet-active{opacity:var(--swiper-pagination-bullet-opacity, 1);background:var(--swiper-pagination-color,var(--swiper-theme-color))}.swiper-pagination-vertical.swiper-pagination-bullets,.swiper-vertical>.swiper-pagination-bullets{right:var(--swiper-pagination-right,8px);left:var(--swiper-pagination-left,auto);top:50%;transform:translate3d(0px,-50%,0)}.swiper-pagination-vertical.swiper-pagination-bullets .swiper-pagination-bullet,.swiper-vertical>.swiper-pagination-bullets .swiper-pagination-bullet{margin:var(--swiper-pagination-bullet-vertical-gap,6px) 0;display:block}.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic,.swiper-vertical>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic{top:50%;transform:translateY(-50%);width:8px}.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,.swiper-vertical>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{display:inline-block;transition:.2s transform,.2s top}.swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet,.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet{margin:0 var(--swiper-pagination-bullet-horizontal-gap,4px)}.swiper-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic,.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic{left:50%;transform:translateX(-50%);white-space:nowrap}.swiper-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{transition:.2s transform,.2s left}.swiper-horizontal.swiper-rtl>.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{transition:.2s transform,.2s right}.swiper-pagination-fraction{color:var(--swiper-pagination-fraction-color,inherit)}.swiper-pagination-progressbar{background:var(--swiper-pagination-progressbar-bg-color,rgba(0,0,0,.25));position:absolute}.swiper-pagination-progressbar .swiper-pagination-progressbar-fill{background:var(--swiper-pagination-color,var(--swiper-theme-color));position:absolute;left:0;top:0;width:100%;height:100%;transform:scale(0);transform-origin:left top}.swiper-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill{transform-origin:right top}.swiper-horizontal>.swiper-pagination-progressbar,.swiper-pagination-progressbar.swiper-pagination-horizontal,.swiper-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite,.swiper-vertical>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite{width:100%;height:var(--swiper-pagination-progressbar-size,4px);left:0;top:0}.swiper-horizontal>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,.swiper-pagination-progressbar.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite,.swiper-pagination-progressbar.swiper-pagination-vertical,.swiper-vertical>.swiper-pagination-progressbar{width:var(--swiper-pagination-progressbar-size,4px);height:100%;left:0;top:0}.swiper-pagination-lock{display:none}.swiper-scrollbar{border-radius:var(--swiper-scrollbar-border-radius,10px);position:relative;touch-action:none;background:var(--swiper-scrollbar-bg-color,rgba(0,0,0,.1))}.swiper-scrollbar-disabled>.swiper-scrollbar,.swiper-scrollbar.swiper-scrollbar-disabled{display:none!important}.swiper-horizontal>.swiper-scrollbar,.swiper-scrollbar.swiper-scrollbar-horizontal{position:absolute;left:var(--swiper-scrollbar-sides-offset,1%);bottom:var(--swiper-scrollbar-bottom,4px);top:var(--swiper-scrollbar-top,auto);z-index:50;height:var(--swiper-scrollbar-size,4px);width:calc(100% - 2 * var(--swiper-scrollbar-sides-offset,1%))}.swiper-scrollbar.swiper-scrollbar-vertical,.swiper-vertical>.swiper-scrollbar{position:absolute;left:var(--swiper-scrollbar-left,auto);right:var(--swiper-scrollbar-right,4px);top:var(--swiper-scrollbar-sides-offset,1%);z-index:50;width:var(--swiper-scrollbar-size,4px);height:calc(100% - 2 * var(--swiper-scrollbar-sides-offset,1%))}.swiper-scrollbar-drag{height:100%;width:100%;position:relative;background:var(--swiper-scrollbar-drag-bg-color,rgba(0,0,0,.5));border-radius:var(--swiper-scrollbar-border-radius,10px);left:0;top:0}.swiper-scrollbar-cursor-drag{cursor:move}.swiper-scrollbar-lock{display:none}.swiper-zoom-container{width:100%;height:100%;display:flex;justify-content:center;align-items:center;text-align:center}.swiper-zoom-container>canvas,.swiper-zoom-container>img,.swiper-zoom-container>svg{max-width:100%;max-height:100%;object-fit:contain}.swiper-slide-zoomed{cursor:move;touch-action:none}.swiper .swiper-notification{position:absolute;left:0;top:0;pointer-events:none;opacity:0;z-index:-1000}.swiper-free-mode>.swiper-wrapper{transition-timing-function:ease-out;margin:0 auto}.swiper-grid>.swiper-wrapper{flex-wrap:wrap}.swiper-grid-column>.swiper-wrapper{flex-wrap:wrap;flex-direction:column}.swiper-fade.swiper-free-mode .swiper-slide{transition-timing-function:ease-out}.swiper-fade .swiper-slide{pointer-events:none;transition-property:opacity}.swiper-fade .swiper-slide .swiper-slide{pointer-events:none}.swiper-fade .swiper-slide-active{pointer-events:auto}.swiper-fade .swiper-slide-active .swiper-slide-active{pointer-events:auto}.swiper-cube{overflow:visible}.swiper-cube .swiper-slide{pointer-events:none;-webkit-backface-visibility:hidden;backface-visibility:hidden;z-index:1;visibility:hidden;transform-origin:0 0;width:100%;height:100%}.swiper-cube .swiper-slide .swiper-slide{pointer-events:none}.swiper-cube.swiper-rtl .swiper-slide{transform-origin:100% 0}.swiper-cube .swiper-slide-active,.swiper-cube .swiper-slide-active .swiper-slide-active{pointer-events:auto}.swiper-cube .swiper-slide-active,.swiper-cube .swiper-slide-next,.swiper-cube .swiper-slide-prev{pointer-events:auto;visibility:visible}.swiper-cube .swiper-cube-shadow{position:absolute;left:0;bottom:0px;width:100%;height:100%;opacity:.6;z-index:0}.swiper-cube .swiper-cube-shadow:before{content:'';background:#000;position:absolute;left:0;top:0;bottom:0;right:0;filter:blur(50px)}.swiper-cube .swiper-slide-next+.swiper-slide{pointer-events:auto;visibility:visible}.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-bottom,.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-left,.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-right,.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-top{z-index:0;-webkit-backface-visibility:hidden;backface-visibility:hidden}.swiper-flip{overflow:visible}.swiper-flip .swiper-slide{pointer-events:none;-webkit-backface-visibility:hidden;backface-visibility:hidden;z-index:1}.swiper-flip .swiper-slide .swiper-slide{pointer-events:none}.swiper-flip .swiper-slide-active,.swiper-flip .swiper-slide-active .swiper-slide-active{pointer-events:auto}.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-bottom,.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-left,.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-right,.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-top{z-index:0;-webkit-backface-visibility:hidden;backface-visibility:hidden}.swiper-creative .swiper-slide{-webkit-backface-visibility:hidden;backface-visibility:hidden;overflow:hidden;transition-property:transform,opacity,height}.swiper-cards{overflow:visible}.swiper-cards .swiper-slide{transform-origin:center bottom;-webkit-backface-visibility:hidden;backface-visibility:hidden;overflow:hidden}

svg:not(:root) {
    overflow: hidden;
}


.card-swiper {
    width: 100%;
    position: relative;
}

.card-swiper_swiper {
    width: calc(100% - 200px);
    padding: 0 0px;
    position: relative;
    box-sizing: border-box;
    margin: auto;
    overflow: hidden;
}

.card-swiper__nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 1px;
    position: absolute;
    left: 0;
    top: 50%;
    width: 100%;
    z-index: 9;
}

.card-swiper__nav .arrow-button {
    width: 40px;
    height: 40px;
}
@media (max-width: 1280px) {
    .card-swiper_swiper {
        width: calc(100% - 120px);
    }
    .card-swiper__nav .arrow-button {
        min-width: 30px;
        min-height: 30px;
        max-width: 30px;
        max-height: 30px;
    }
    .card-swiper__nav .arrow-button:hover {
        background-color: transparent;
    }
    .card-swiper__nav .arrow-button:hover svg path {
        fill: #1B4098;
    }
}

.card-swiper .swiper-slide {
    cursor: pointer;
}
.card-swiper .swiper-slide h2 {
    font-size: min(14px, 90%) !important;
    color: #1B4098;
}


.arrow-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: none;
    border-radius: 28px;
    width: 56px;
    height: 56px;
    min-width: 56px;
    min-height: 56px;
    cursor: pointer;
    user-select: none;
    transition: all ease-in 0.3s;
}
.arrow-button svg path {
    fill: #FFFFFF;
}
.arrow-button.white {
    background: transparent;
}
.arrow-button.white svg path {
    fill: #1B4098;
}
.arrow-button.white:hover {
    background: #1B4098;
}
.arrow-button.white:hover svg path {
    fill: #FFF;
}
.arrow-button.blue {
    background-color: #1B4098;
}
.arrow-button.lightBlue {
    background-color: #0BBBEF;
}
.arrow-button.grey {
    background-color: #B4BFCA;
}
.arrow-button.bt-up {
    transform: rotate(-90deg);
}
.arrow-button:hover {
    background: #FFFFFF;
}
.arrow-button:hover svg path {
    fill: #1B4098;
}
.arrow-button.slide {
    border: 1px solid #1B4098;
    background: transparent;
}
.arrow-button.slide svg path {
    fill: #1B4098;
}
.arrow-button.bt-prev {
    transform: rotate(-180deg);
}

.swiper-button-next svg, .swiper-button-prev svg {
    width: auto;
    height: auto;
}

.swiper-button-next:after, .swiper-rtl .swiper-button-prev:after{
    content: none;
}
.swiper-button-prev:after, .swiper-rtl .swiper-button-next:after{
    content: none;
}
.ebu-project-gallery {
    padding: 10px 0 0;
}
.ebu-project-gallery a {
    background: none repeat scroll 0 0 #fff;
    border: 1px solid #ccc;
    border-radius: 3px;
    display: inline-block;
    margin: 5px;
    padding: 5px;
}
.ebu-project-gallery a:hover {
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
}
.ebu-project-gallery a > img {
    display: block;
    max-height: 100px;
    width: 100px;
}

.pre-footer {
    background-repeat: no-repeat;
    background-position: left center;
    background-color: #1C4098;
    height: 420px;
    display: flex;
    align-items: stretch;
    justify-content: center;
}

.pre-footer__mid {
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
}

.pre-footer__mid:not(.single):first-child {
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.pre-footer__mid.onlyRRSS {
    border: 0 !important;
}

.pre-footer__mid:last-child {
    border: none !important;
}

.pre-footer__mid .paragraphs {
    max-width: 410px;
}

.pre-footer__mid .newsletter {
    margin-top: 24px;
}

.pre-footer__module {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    box-sizing: border-box;
    padding: 0 50px;
}

.pre-footer__module:last-child {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.pre-footer__module.triple {
    align-items: flex-start;
    text-align: left;
}

.pre-footer__module.triple .perfil {
    display: flex;
    align-items: flex-start;
    margin-top: 16px;
}

.pre-footer__module.triple .perfil > .info {
    margin-left: 18px;
    max-width: 160px;
    font-size: 14px;
    line-height: 1.28;
}

.pre-footer__module.triple .perfil > .info p {
    margin: 3px 0;
}

.pre-footer__module.triple .perfil > .info a {
    color: #FFF;
    text-decoration: none;
    font-family: inherit;
}

.pre-footer__module > .contact .paragraphs {
    margin: 0 0 10px;
}

.pre-footer__rrss {
    margin: 20px 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pre-footer__rrss a {
    margin: 0 20px;
}

.pre-footer__rrss.triple a {
    margin: 0 40px 0 0;
}

@media (max-width: 900px) {
    .pre-footer {
        flex-direction: column;
        height: auto;
        padding: 20px 0;
    }

    .pre-footer__mid {
        width: 100%;
        padding: 20px;
        box-sizing: border-box;
    }

    .pre-footer__mid:not(.single):first-child {
        border: 0;
        border-right:none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .pre-footer__module {
        border: 0 !important;
    }

    .pre-footer__module.triple {
        padding: 20px 0;
    }
}

@media (min-width: 901px) {
    .pre-footer {
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }
    .pre-footer__mid:not(.single):first-child {
        border-right: 1px solid rgba(255, 255, 255, 0.1);
    }
}

.newsletter {
    padding: 7px;
    background: white;
    border-radius: 30px;
    display: inline-flex;
    align-items: center;
    font-family: inherit;
}
.newsletter input {
    -webkit-appearance: none;
    appearance: none;
    outline: none;
    font-family: inherit;
    font-size: 14px;
    border: 0;
    padding: 0 16px;
    height: 30px;
}
@media (max-width: 900px) {
    .newsletter {
        background: transparent;
        flex-direction: column;
        border-radius: 0px;
        display: flex;
        width: 100%;
    }
    .newsletter input {
        border-radius: 30px;
        background: white;
        display: block;
        height: 48px;
        margin-bottom: 20px;
        width: 100%;
        box-sizing: border-box;
    }
    .newsletter .primary-button {
        width: 100%;
        font-weight: 800;
    }
}
