/* Header start */

body.no-scroll {
    overflow: hidden;
    position: fixed;
    width: 100%;
}

.capsred {
    text-transform: uppercase;
    color: #ea3323;
    font-weight: 700;
}

.header__regions {
    position: relative;
    z-index: 1000;
    display: flex;
    justify-content: flex-end;
    padding: 10px 35px;
    background-color: #00003c;
}

.header__regions__link {
    color: white;
    display: flex;
    gap: 5px;
    align-items: center;
    transition: all 0.3s ease;
}

.header__regions__link:hover {
    text-decoration: none;
    color: #ea3323;
}

.header__regions__notification {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    color: #fff !important;
    background-color: #ea3323;
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    padding: 0 30px;
    text-decoration: none !important;
}

.header__regions__notification p {
    margin-bottom: 0;
}

.header__regions__notification p:first-of-type {
    color: white;
    font-weight: bold;
}

.header__regions__notification svg {
    transition: all 0.3s ease;
}

.header__regions__notification:hover svg {
    transform: translateX(3px);
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    width: 100vw !important;
    padding: 20px 30px;
    position: relative;
    background-color: transparent !important;
    transition: all 0.3s ease;
    z-index: 1000;
    position: sticky;
    top: 0;
}

.header--sticky,
.header--dark {
    background-color: #00003c !important;
}

.header--sticky .header__logo--white,
.header--dark .header__logo--white {
    opacity: 1;
}

.header--sticky .header__logo--black,
.header--dark .header__logo--black {
    opacity: 0;
}

.header--sticky .header__nav__item__trigger,
.header--dark .header__nav__item__trigger {
    color: white;
}

.header--active,
body.single-post:not(.single-post-casestudy) .header.header--active {
    background-color: #fff !important;
}

.header--active .header__logo--white {
    opacity: 0;
}

.header--active .header__logo--black {
    opacity: 1;
}

.header--active .header__nav__item__trigger {
    color: black;
}

.header__logo {
    position: relative;
}

.header__logo img {
    position: absolute;
    object-fit: contain;
}

.header__logo,
.header__logo img {
    min-width: 217px;
    width: 15vw;
    min-height: 46px;
    height: 3.1vw;
}

.header__logo--black {
    opacity: 0;
}

.header__nav {
    display: flex;
    gap: 40px;
    align-items: center;
}

.header__mbl {
    display: none;
    align-items: center;
    gap: 20px;
}

.header__mbl__nav {
    width: 100vw;
    height: var(--app-height);
    background-color: white;
    z-index: 100;
    position: fixed;
    top: 0;
    left: 0;
    display: none;
    border-top: 8px solid #000039;
    transition: all 0.3s ease;
    opacity: 0;
    pointer-events: none;
    flex-direction: column;
    justify-content: space-between;
    box-sizing: border-box;
}

.header__mbl__nav.has-active-sub {
    overflow-y: hidden;
}

.header__mbl__nav--active {
    opacity: 1;
    pointer-events: all;
}

.header__mbl__nav__top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: fit-content;
    padding: 20px 30px;
}

.header__mbl__nav__logo {
    min-width: 217px;
    width: 15vw;
    min-height: 46px;
    height: 3.1vw;
}

.header__mbl__nav__body {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 120px 30px;
    padding-bottom: 30px;
    position: relative;
}

.header__mbl__nav__body__item {
    width: 100%;
    color: black;
    margin-bottom: 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.12);
}
.header__mbl__nav__body__item:last-child {
    border-bottom: none;
}

.header__mbl__nav h4 {
    padding-bottom: 20px;
    margin-bottom: 0;
    font-weight: 600;
    font-size: 30px;
    line-height: 38px;
}

.header__mbl__nav__body__item a {
    color: black;
    display: block;
    width: 100%;
    text-decoration: none !important;
}

.header__mbl__nav__body__item--menu {
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.header__mbl__nav__body__item--menu h4 {
    cursor: pointer;
    width: 100%;
}

.header__mbl__nav__body__item--menu::after {
    content: url(../../assets/images/svg/red-plus.svg);
    position: absolute;
    right: 30px;
    margin-top: 10px;
    pointer-events: none;
}

.mbl-sub {
    width: 100vw;
    height: var(--app-height);
    background-color: white;
    z-index: 100;
    position: absolute;
    top: 0;
    left: 0;
    border-top: 2px solid #eeeeee;
    transition: all 0.3s ease;
    flex-direction: column;
    justify-content: space-between;
    overflow: auto;
    pointer-events: none;
    opacity: 0;
    padding-bottom: 100px;
}

.mbl-sub--active {
    pointer-events: all;
    opacity: 1;
}

.mbl-sub__head {
    padding: 40px 0;
    background-color: #f6f6f6;
    text-align: center;
    cursor: pointer;
    position: relative;
    display: flex;
    align-items: center;
}

.mbl-sub__head::after {
    content: "";
    width: 16px;
    height: 9px;
    position: absolute;
    left: 25px;
    transform: rotate(180deg) scale(1.5);
    transition: all 0.3s ease;
    pointer-events: none;
    background: no-repeat center center url(../images/svg/red-arrow-right.svg);
}

.mbl-sub__head h4 {
    margin-bottom: 0;
    padding-bottom: 0;
    font-weight: 600;
    font-size: 30px;
    line-height: 38px;
}

.header__mbl__nav__foot {
    padding: 25px 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    background-color: #f6f6f6;
    width: 100vw;
    position: absolute;
    bottom: 0;
}

@media (max-width: 750px) {
    .header__mbl__nav__foot {
        gap: 0;
        justify-content: space-between;
    }
}

.header__mbl__nav__foot__item {
    background-color: white;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header__mbl__nav__foot__item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.header__mbl__trigger {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 25px;
    cursor: pointer;
    height: fit-content;
}

.header__mbl__trigger__line,
.header__mbl__trigger::before,
.header__mbl__trigger::after {
    content: "";
    width: 25px;
    height: 2px;
    background-color: #ea3323;
}

.header__mbl__nav .header__mbl__trigger__line {
    opacity: 0;
}
.header__mbl__nav .header__mbl__trigger::before {
    transform: translateY(10px) rotate(45deg);
}
.header__mbl__nav .header__mbl__trigger::after {
    transform: translateY(-10px) rotate(-45deg);
}

.header__mbl__region img {
    filter: brightness(0) invert(1);
    width: 26px;
    height: 26px;
}

.mbl-sub__body {
    padding: 20px 25px;
    padding-bottom: 0px;
}

@media screen and (max-height: 650px) {
    .header__nav__item__dropdown {
        max-height: calc(100vh - 120px);
        overflow-y: scroll;
    }
}

@media screen and (max-width: 1220px) {
    .header__nav {
        display: none;
    }

    .header__regions {
        height: 8px;
        padding: 0;
    }

    .header__regions > * {
        display: none;
    }

    .header__mbl,
    .header__mbl__nav {
        display: flex;
    }
}

.header__nav__item {
    font-weight: 500;
    color: #fff;
}

.header__nav__item__trigger {
    font-style: normal;
    font-weight: 600;
    font-size: 22px;
    line-height: 28px;
    transition: all 0s linear;
    z-index: 10;
    cursor: pointer;
    margin-bottom: 0;
    color: white;
    display: block;
}

.header__nav__item__trigger:hover {
    color: #ea3323;
    text-decoration: none;
}

.header__nav__item__dropdown {
    width: 100vw;
    height: auto;
    background-color: white;
    position: absolute;
    top: 100%;
    left: 0;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
    z-index: -1;
    border-top: 2px solid #f6f6f6;
}

.header__overlay {
    position: fixed;
    top: 0;
    left: 0;
    background-color: #000;
    opacity: 0;
    width: 100vw;
    height: 100vh;
    z-index: 10;
    pointer-events: none;
    transition: all 0.3s ease;
}

.header__overlay--active {
    opacity: 0.6;
}

.header__nav__item--active .header__nav__item__trigger {
    color: #ea3323;
}

.header__nav__item--active .header__nav__item__dropdown {
    opacity: 1;
    pointer-events: all;
    /* transition-delay: .1s; */
}

/* How */
.how {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
}

.how__select {
    background-color: #f7f7f7;
    padding: 60px 30px;
    display: flex;
    flex-direction: column;
    padding-bottom: 0;
}

.how__select__list {
    display: flex;
    flex-direction: column;
}

.how__select__list__item {
    padding: 20px 0;
    color: rgba(0, 0, 0, 0.3);
    font-weight: 600;
    font-size: 20px;
    margin-bottom: 0;
    transition: all 0.3s ease;
    cursor: default;
}

.how__select__list__item:not(:last-of-type) {
    border-bottom: 1px solid #e8e8e8;
}

.how__select__list__item__icon {
    margin-right: 8px;
    margin-top: -2px;
    transition: all 0.3s ease;
    filter: contrast(0);
    opacity: 0.3;
}

.how__select__list__item--active {
    color: black;
}

.how__select__list__item--active .how__select__list__item__icon {
    filter: contrast(1);
    opacity: 1;
}

.how__content {
    position: relative;
}

.how__content__container {
    padding: 60px;
    padding-left: 80px;
    display: flex;
    flex-direction: column;
    gap: 40px 70px;
    display: grid;
    grid-template-columns: 1fr 1fr;

    position: absolute;
    top: 0;
    left: 0;

    pointer-events: none;
    opacity: 0;
}

@media (max-width: 1400px) {
    .how__content__container {
        padding: 60px 30px;
        gap: 40px 30px;
    }

    .how__select__list__item__icon {
        filter: contrast(1);
        opacity: 1;
    }
}

.header__nav__item--active .how__content__container--active {
    position: unset;
    opacity: 1;
    pointer-events: all;
}

.how__content__item__block__head {
    color: black;
    padding-bottom: 10px;
    margin-bottom: 15px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.12);
    font-size: 20px;
    width: 100%;
}

.how__content__item__block__head a {
    color: black;
    text-decoration: none;
    width: 100%;
    display: block;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.3s ease;
    font-weight: 600;
}

.how__content__item__block__head a::after {
    content: "";
    width: 16px;
    height: 9px;
    transition: all 0.3s ease;
    background: no-repeat center center url(../images/svg/red-arrow-right.svg);
}

.how__content__item__block__list {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.how__content__item__block__list a {
    color: black;
    width: fit-content;
    text-decoration: none;
    transition: all 0.3s ease;
}

.how__content__item__block__list a:hover,
.how__content__item__block__head a:hover {
    color: #ea3323;
}

.how__content__item__block__head a:hover::after {
    transform: translateX(5px);
}

.how__cta {
    padding: 0 30px;
    border-left: 1px solid rgba(0, 0, 0, 0.12);
    height: calc(100% - 60px);
    margin-top: 30px;
    display: flex;
    flex-direction: column;
}

.how__cta__box {
    position: relative;
    display: block;
    height: 100%;
    color: white;
    text-decoration: none;
    overflow: hidden;
}

.how__cta__box:hover {
    color: white;
    text-decoration: none;
}

.how__cta__box__img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    transition: all 0.3s ease;
}

.how__cta__box:hover .how__cta__box__img {
    transform: scale(1.1);
}

.how__cta__box__content {
    z-index: 2;

    display: flex;
    flex-direction: column;
    gap: 15px;
    justify-content: space-between;
    height: 100%;
    padding: 30px;
}

.how__cta__box__content__upper {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.how__cta__box__content__upper h5 {
    text-transform: uppercase;
}

.how__cta__box__content p {
    margin-bottom: 0;
    position: relative;
    display: flex;
    align-items: center;
}

.how__cta__box__content > p::after {
    content: "";
    width: 16px;
    height: 9px;
    display: block;
    transition: all 0.3s ease;
    margin-top: 2px;
    margin-left: 7px;
    background: no-repeat center center url(../images/svg/red-arrow-right.svg);
}

.how__cta__box:hover .how__cta__box__content > p::after {
    transform: translateX(5px);
}

.how-mbl {
    display: flex;
    flex-direction: column;
    gap: 66px;
    margin-bottom: 25px;
}

.how-mbl__dropdowns__item__head {
    border: none;
    background-color: transparent;
    outline: none;
    width: 100%;
    display: flex;
    gap: 10px;
    align-items: center;
    padding: 25px 0;
    position: relative;
    transition: all 0.3s ease;
}

.how-mbl__dropdowns__item__head::before,
.how-mbl__dropdowns__item__head::after {
    content: "";
    width: 12px;
    height: 1px;
    position: absolute;
    right: 0;
    background-color: #ea3323;
}

.how-mbl__dropdowns__item__head::after {
    transform: rotate(90deg);
    transition: all 0.3s ease;
}

.how-mbl__dropdowns__item__head h5 {
    margin-bottom: 0;
    font-weight: 600;
    font-size: 20px;
    line-height: 25px;
}

.how-mbl__dropdowns__item:not(:last-of-type) {
    border-bottom: 1px solid rgba(0, 0, 0, 0.12);
}

.how-mbl__dropdowns__item__body {
    margin: 0 25px;
    display: none;
}

.how-mbl__dropdowns__item__body h5 {
    border-bottom: 1px solid rgba(0, 0, 0, 0.12);
    padding: 10px 0;
    margin-bottom: 0;
    font-size: 18px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.how-mbl__dropdowns__item__body h5::after {
    content: "";
    width: 16px;
    height: 9px;
    background: no-repeat center center url(../images/svg/red-arrow-right.svg);
}

.how-mbl__dropdowns__item__body__list {
    padding: 25px 0;
    padding-bottom: 30px;
}

.how-mbl__dropdowns__item__body__list a {
    width: fit-content;
}

.how-mbl__dropdowns__item__body
    .how-mbl__dropdowns__item__body__list:not(:last-of-type) {
    border-bottom: 1px solid rgba(0, 0, 0, 0.12);
}

.how-mbl__dropdowns__item--active .how-mbl__dropdowns__item__body {
    display: block;
}

.how-mbl__dropdowns__item--active .how-mbl__dropdowns__item__head::after {
    transform: rotate(0deg);
}

.how-mbl__dropdowns__item--active .how-mbl__dropdowns__item__head {
    border-bottom: 1px solid rgba(0, 0, 0, 0.12);
    padding-bottom: 25px;
    margin-bottom: 20px;
}

.how-mbl__cta {
    padding: 30px;
    display: flex !important;
    flex-direction: column;
    justify-content: space-between;
    gap: 95px;
    width: 100%;
    position: relative;
    color: white;
    min-height: 40vh;
}

.how-mbl__cta h4 {
    font-weight: 700;
    font-size: 26px;
    line-height: 26px;
    text-transform: uppercase;
}

.how-mbl__cta p {
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
}

.how-mbl__cta p::after {
    content: "";
    width: 16px;
    height: 9px;
    display: block;
    background: no-repeat center center url(../images/svg/red-arrow-right.svg);
}

.how-mbl__cta * {
    color: white;
}

.how-mbl__cta__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
}

/* How end */

/* Hub */

.hub {
    padding: 30px;
    display: flex;
}

.hub:not(.hub--v2) .hub__featured__list__item:nth-of-type(3),
.hub:not(.hub--v2) .hub__featured__list__item:nth-of-type(4) {
    display: none;
}

.hub.hub--v2 .hub__ctas {
    display: flex;
}

.hub.hub--v2 .hub__ctas__item:nth-of-type(2) {
    display: none;
}

.hub.hub--v2 .hub__featured__list {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.hub__ctas {
    display: grid;
    grid-gap: 20px;
    grid-template-columns: 1fr 1fr;
    padding-right: 30px;
    border-right: 1px solid rgba(0, 0, 0, 0.12);
}

.hub__ctas__item {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 30px;
    position: relative;
    color: white;
    text-decoration: none;
    padding: 40px;
    overflow: hidden;
    height: 100%;
}

.hub__ctas__item:hover {
    color: white;
    text-decoration: none;
}

.hub__ctas__item:hover > p::after {
    transform: translateX(5px);
}

.hub__ctas__item__img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    transition: all 0.3s ease;
}

.hub__ctas__item:hover .hub__ctas__item__img {
    transform: scale(1.1);
}

.hub__ctas__item__upper {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.hub__ctas__item__upper h4 {
    text-transform: uppercase;
}

.hub__ctas__item__upper p {
    max-width: 90%;
    font-size: 16px;
}

.hub__ctas__item > p {
    margin-bottom: 0;
    position: relative;
    display: flex;
    align-items: center;
}

.hub__ctas__item > p::after {
    content: "";
    width: 16px;
    height: 9px;
    transition: all 0.3s ease;
    margin-top: 2px;
    margin-left: 7px;
    background: no-repeat center center url(../images/svg/red-arrow-right.svg);
}

.hub__featured {
    padding-left: 30px;
    height: 100%;
}

.hub__featured__list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.hub__featured__list__item {
    display: block;
    background-color: #ececec;
    padding: 30px;
    color: black;
    text-decoration: none;
    position: relative;
}

.hub__featured__list__item:hover {
    text-decoration: none;
    color: black;
}

.hub__featured__list__item:hover h6 {
    color: red;
}

.hub__featured__list__item h6 {
    color: black;
    font-size: 20px;
    display: flex;
    justify-content: space-between;
    transition: all 0.3s ease;
    width: 100%;
}

.hub__featured__list__item h6::after {
    content: "";
    width: 16px;
    height: 9px;
    transition: all 0.3s ease;
    margin-top: 2px;
    background: no-repeat center center url(../images/svg/red-arrow-right.svg);
}

.hub__featured__list__item:hover h6::after {
    transform: translateX(5px);
}

/* Hub end */

/* Who */

.who {
    padding: 30px;
    display: grid;
    grid-template-columns: 1fr 2fr;
}

.who__about {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 20px;
    background-color: #f6f6f6;
    color: black;
    padding: 40px;
}

.who__about__upper h4 {
    text-transform: uppercase;
}

.who__about__upper p {
    margin-top: 5px;
}

.who__about__list {
    display: flex;
    flex-direction: column;
}

.who__about__list__item {
    font-size: 20px;
    color: black;
    font-weight: 600;
    padding-top: 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.3s ease;
}

.who__about__list__item:not(:last-of-type) {
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.12);
}

.who__about__list__item::after {
    content: "";
    width: 16px;
    height: 9px;
    transition: all 0.3s ease;
    background: no-repeat center center url(../images/svg/red-arrow-right.svg);
}

.who__about__list__item:hover {
    color: red;
    text-decoration: none;
}

.who__about__list__item:hover::after {
    transform: translateX(5px);
}

.who__about__list__item__icon {
    margin-right: 8px;
    margin-top: -2px;
}

.who__ctas {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
}

.who__ctas__item {
    padding: 40px;
    color: black;
    display: flex;
    flex-direction: column;
    gap: 30px;
    justify-content: space-between;
}

.who__ctas__item:not(:last-of-type) {
    border-right: 1px solid rgba(0, 0, 0, 0.12);
}

.who__ctas__item__upper h4 {
    text-transform: uppercase;
}

.who__ctas__item__more {
    margin-bottom: 0;
    font-weight: 600;
    padding-top: 15px;
    border-top: 1px solid rgba(0, 0, 0, 0.12);
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: black;
    transition: all 0.3s ease;
}

.who__ctas__item__more:hover {
    color: #ea3323;
    text-decoration: none;
}

.who__ctas__item__more::after {
    content: "";
    width: 16px;
    height: 9px;
    transition: all 0.3s ease;
    background: no-repeat center center url(../images/svg/red-arrow-right.svg);
}

.who__ctas__item__more:hover::after {
    transform: translateX(5px);
}

.hub-mbl {
    display: flex;
    flex-direction: column;
    gap: 35px;
    padding-bottom: 20px;
}

.hub-mbl__top {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.hub-mbl__top .hub__ctas__item {
    display: flex;
    color: #fff;
    min-height: 20rem;
    padding: 2rem;
}

.hub-mbl .hub__featured {
    padding-left: 0;
    margin-top: 40px;
}

.hub-mbl .hub__featured__list__item {
    padding: 2rem;
}

.who-mbl {
    display: flex;
    flex-direction: column;
    gap: 35px;
    padding-bottom: 20px;
}

.who-mbl__top {
    display: flex;
    flex-direction: column;
}

.who-mbl__top .who-mbl__top__item {
    padding: 25px 0;
    display: flex;
    gap: 10px;
    align-items: center;
    position: relative;
}

.who-mbl__top .who-mbl__top__item:not(:last-of-type) {
    border-bottom: 1px solid #e8e8e8;
}

.who-mbl__top .who-mbl__top__item::after {
    content: "";
    width: 16px;
    height: 9px;
    position: absolute;
    right: 0;
    transition: all 0.3s ease;
    background: no-repeat center center url(../images/svg/red-arrow-right.svg);
}

.who-mbl__top__item p {
    margin-bottom: 0;
    font-size: 20px;
    font-weight: 600;
}

.who-mbl__bottom {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.who-mbl__bottom__item {
    padding: 20px 23px;
    background-color: #f6f6f6;
    display: flex;
    flex-direction: column;
    gap: 0;
    color: black !important;
    text-decoration: none !important;
    position: relative;
    min-height: 15vw;
}

.who-mbl__bottom__item::after {
    content: "";
    width: 16px;
    height: 9px;
    position: absolute;
    top: 20px;
    right: 23px;
    transition: all 0.3s ease;
    background: no-repeat center center url(../images/svg/red-arrow-right.svg);
}

.who-mbl__bottom__item h5 {
    color: black;
    text-transform: uppercase;
    font-size: 22px;
}

.who-mbl__bottom__item p {
    margin-bottom: 0;
}

.who-mbl__bottom__item small {
    font-weight: 700;
}

/* Who end */

/* Header end */

/* Header notification banner */

.header__notification {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100vw;
    background-color: #ea3323;
    padding: 9px 30px;
    gap: 20px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #fff;
    transition: all 0.3s ease;
    opacity: 0;
    z-index: -2;
}

.header__notification p {
    margin-bottom: 0;
}

.header__notification p:first-of-type {
    font-weight: bold;
}

.header__notification p a {
    color: inherit !important;
    font-weight: bold;
    text-decoration: underline;
}

.header__notification button {
    display: flex;
    align-items: center;
    justify-content: center;
    border: 0;
    outline: 0;
    background-color: transparent;
}

.header--sticky .header__notification {
    opacity: 1;
}

.header__notification.header__notification--closed {
    opacity: 0;
}

/* Header notification banner end */
