@import url('reset.css');

/*--------------------------------------------*/

body {
    font-family: Arial, Helvetica, sans-serif;
    background-color: #030104;
}

._lock body  {
    overflow: hidden;
}

@media (max-width: 991.98px) {
    .menu-open body {
        overflow: hidden;
    }    
}

/* ------------------------- */

.wrapper {
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-height: 100%;    
}

/* ------------------------- */

/*[class*="__container"] {
    max-width: 1200px;
    margin: 0 auto;   
}*/

.footer__container {
    padding: 0 15px;
    max-width: 90%;
    margin: 0 auto;
}

/* PC */

@media (max-width: 1086.98px) {
    /*[class*="__container"] {
        max-width: 970px;
    } */      
    .footer__container {
        max-width: 970px;
    }
}

/* TABLET */

@media (max-width: 991.98px) {
    /*[class*="__container"] {
        max-width: 799.98px;
    }*/

    .footer__container {
        max-width: none;
    }
}

/* MOBILE */

@media (max-width: 767.98px) {
    [class*="__container"] {
        max-width: none;
    }
}

/*--------------------------------------------*/

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;    
    z-index: 50;
    background-color: transparent;
    transition: all 0.4s ease 0s;
}

.menu-open .header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 58px;
    background-color: #47128b;
    z-index: 2;
}

.header._active {
    background-color: #47128b;
}

.header__container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 58px;    
}

.header__logo {
    position: absolute;
    top: 160px;    
    left: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.8s ease 0s;
    z-index: 5;
}

.header__logo._active,
.menu-open .header__logo {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.logo-header__link {
    display: block;
    position: relative;
    z-index: 5;
    width: 358px;
    height: 130px;
    transition: all 0.8s ease 0s;
    cursor: default;
}

.header__logo._active .logo-header__link,
.menu-open .logo-header__link {
    width: 82px;
    height: 30px;
    cursor: pointer;
}

.logo-header__link img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.header__menu {
    max-width: 450px;
}

.menu {
    display: flex;
    flex-wrap: wrap;
    padding: 0 0 0 22px;
}

.menu__body {
    position: relative;
    z-index: 5;
}

.menu__list {
    display: flex;
    flex-wrap: wrap;
    row-gap: 5px;
    column-gap: 22px;
}

.header._active .menu__list {
    max-width: 600px;
}

.menu__link {
    font-family: "congenial", sans-serif;
    font-weight: 400;
    font-size: 14px;        
    color: #ffffff;
    line-height: 1.2;
    transition: color 0.3s ease 0s;
}

.menu__link:hover {
    color: #ffffffd9;
}

.menu__link._active {
    color: #fe00ff;
}

@media (max-width: 991.98px) {

    .logo-header__link {
        width: 250px;
        height: 90px;
    }

    .menu__body {
        display: flex;
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background-color: #47128b;
        padding: 100px 15px 20px 15px;
        transition: left 0.3s ease 0s;
        overflow: auto;
        z-index: 1;
    }       

    .menu-open .menu__body {
        left: 0;        
        flex-direction: column;
        align-items: center;
    }

    .menu__list {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 100%;
        margin: 50px 0 0 0;
    }

    .menu__item {
        margin: 0 0 25px 0;
    }

    .menu__item:last-child {
        margin-bottom: 0;
    }

    .menu__link {
        font-size: 24px;
    }
}

@media (max-width: 579.98px) {
    .header__logo {
        margin: 0 auto;
    }
}
@media (max-width: 479.98px) {
    .logo-header__link {
        width: 180px;
        height: 65px;
    }
}

/*----------------------------------------------*/

.header__actions {
    display: flex;
    align-items: center;
}

.login {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 22px 0 0;
    z-index: 5;
    cursor: pointer;
    justify-content: flex-end;
}

.login__icon {
    width: 15px;
    fill: #fff;
    margin: 3px 10px 0 0;
    transition: fill 0.3s ease 0s;
}

.login__icon:hover {
    fill: #ffffffd9;
}

.login__text {
    font-family: "congenial", sans-serif;
    font-weight: 400;
    font-size: 14px;    
    color: #ffffff;
    line-height: 1.2;
    transition: color 0.3s ease 0s;
}

.login__text:hover {
    color: #ffffffd9;
}

.icons-header__list {
    position: static;
    display: none;
    justify-content: space-between;
    align-items: center;
}

.icons-header__item:not(:last-child) {
    margin: 0 15px 0 0;
}

.icons-header__link svg {
    fill: #fff;
    width: 20px;
    transition: fill 0.3s ease 0s;
}

.icons-header__link:hover svg {
    fill: #ffffffd9;
}

.bigger svg {
    width: 22px;
}

@media (max-width: 991.98px) {
    .login {
        margin: 0;
    }

    .icons-header__list {
        position: absolute;
        top: 400px;
        left: -100%;
        width: 100%;
        height: 100%;
        align-items: center;
        justify-content: center;
        transition: left 0.3s ease 0s;
        z-index: 5;
    }

    .menu-open .icons-header__list {
        left: 0;
    }

    .icons-header__item:not(:last-child) {
        margin: 0 20px 0 0;
    }

    .icons-header__link svg {
        width: 26px;
    }

    .bigger svg {
        width: 28px;
    }

}

@media (max-width: 579.98px) {
    .login__text {
        display: none;
    }

    .login__icon {
        margin: 3px 0 0 0;
        width: 26px;
    }
}

/*--------------------------------------------*/

.icon-menu {
    display: none;
}

@media (max-width: 991.98px) {
   .icon-menu {
        display: block;
        position: relative;
        width: 30px;
        height: 18px;
        z-index: 5;
    }

    .icon-menu__line,
    .icon-menu::before,
    .icon-menu::after {
        content: "";
        position: absolute;
        background-color: #fff;
        width: 100%;
        height: 2px;
        left: 0;
        transition: all 0.3s ease 0s;
    }

    .icon-menu::before {
        top: 0;
    }

    .icon-menu::after {
        bottom: 0;
    }

    .icon-menu__line {
        top: calc(50% - 1px);
    }

    .menu-open .icon-menu::before {
        top: calc(50% - 1px);
        transform: rotate(-45deg);
    }

    .menu-open .icon-menu::after {
        top: calc(50% - 1px);
        transform: rotate(45deg);
    }

    .menu-open .icon-menu__line {
        left: 50%;
        width: 0;
    }
}

/*--------------------------------------------*/

.main {
    flex: 1 1 auto;     
}

.main__background {
    width: 100%;
}

.main__container {
    position: relative;
    flex-direction: column;
}

.main__video {
    position: absolute;
    /* top: 1150px; */
    left: 0;
    width: 100%;
    /* height: 3850px; */
    object-fit: cover;
    object-position: top;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.8s ease 0s;
}

.waterfall__overlay-top {
    position: absolute;
    /* top: 1150px; */
    left: 0;
    width: 100%;
    /* height: 3850px; */
    object-fit: cover;
    object-position: top;
    z-index: 2;
    opacity: 1;
}

.main__image {
    position: absolute;
    /* top: 1150px; */
    left: 0;
    width: 100%;
    /* height: 3850px; */
    object-fit: cover;
    object-position: top;
    z-index: -1;
    opacity: 1;
    transition: opacity 0.8s ease 0s;
    -webkit-transition: opacity 0.8s ease 0s;
    -moz-transition: opacity 0.8s ease 0s;
}

@media (max-width: 1400px) {
    .main__video {
        min-height: 3300px;
    }

    .main__image {
        min-height: 3300px;
    }

    .features__content {
        padding: 0 0 80px 0 !important;
    }
}

.main__video._visible {
    opacity: 1;
}

.main__image._visible {
    opacity: 1;
}

/*--------------------------------------------*/

.full-screen {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.full-screen__stars span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../assets/img/StarsTop2.png') bottom / cover repeat-x;
    overflow: hidden;
    opacity: 0;
    transition: opacity 3s ease 0s;
    animation: stars-shine 3s infinite alternate;
}

.full-screen__stars._visible span {
    opacity: 1;
}

@keyframes stars-shine {
    0% {
        opacity: 0.5;
    }
    100% {
        opacity: 1;
    }
}

.full-screen__body {
    position: relative;
    z-index: 3;
    display: flex;
    flex: 1 1 auto;
    justify-content: center;
    align-items: center;
    text-align: center;
    flex-direction: column;
    padding: 50px 15px;
    background-color: inherit;    
}

.full-screen__title-image {
    position: relative;
    width: 895px;
    height: 142px;
    max-width: 60%;
    margin: 250px 0 0 0;
}

.full-screen__title-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.full-screen__paragraph,
.full-screen__text {
    font-family: "congenial", sans-serif;
    font-weight: 500;
    color: #ffffff;
    line-height: 1.2;
}

.full-screen__paragraph {
    font-size: 24px;
    margin: 0 0 40px 0;
}

.full-screen__text {
    font-size: 30px;
    margin: 0 0 90px 0;
}

.full-screen__video {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.8s ease 0s;
    -webkit-transition: opacity 0.8s ease 0s;
    -moz-transition: opacity 0.8s ease 0s;
    z-index: 1;
}

.full-screen__video._hidden {
    opacity: 0;
}

@media (max-width: 991.98px) {
    .full-screen__title-image {
        max-width: 70%;
    }
}

@media (max-width: 767.98px) {
    .full-screen__title-image {
        max-width: 80%;
        margin: 100px 0 0 0;
    }
    .full-screen__paragraph {
        font-size: 20px;
    }
    .full-screen__text {
        font-size: 25px;
        margin: 0 0 80px 0;
    }
}

@media (max-width: 479.98px) {
    .full-screen__title-image {
        max-width: 100%;
    }
    .full-screen__paragraph {
        font-size: 18px;
    }
    .full-screen__text {
        font-size: 20px;
    }
}

/*--------------------------------------------*/

.title {
    font-size: 79px;
    /*text-transform: lowercase;*/
    font-family: "sirenia", sans-serif;
    color: #ffffff;
    line-height: 1.2;
    text-align: center;
    font-weight: 500;
    transform: translate(0, 120%);
    opacity: 0;
    transition: all 1s ease 0s;
}

.title._active {
    transform: translate(0, 0);
    opacity: 1;
}

@media (max-width: 991.98px) {
    .title {
        font-size: 68px;        
    }
}

@media (max-width: 579.98px) {
    .title {
        font-size: 46px;
    }
}

@media (max-width: 379.98px) {
    .title {
        font-size: 42px;
    }
}

.button {
    font-family: "sirenia", sans-serif;
    font-weight: 500;
    color: #ffffff;
    font-size: 24px;
    /*text-transform: uppercase;*/
}

.button-link {
    display: block;
    background-color: #BC01BD;
    border-radius: 50px;
    padding: 20px;
    color: #fff;
    border: 1px solid #fe00ff;
    box-shadow: 0 0 15px #d7beff92;
    transition: all 0.6s ease 0s;
    min-width: 300px;
}

.button-link:hover {
    background-color: #fe00ff;
    box-shadow: 0 0 15px rgba(215, 190, 255, 0.699);
    cursor: pointer;
}

.btn-ripple {
    position: relative;
    overflow: hidden;
}

.ripple {
    position: absolute;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.5);
    animation: button-circle 2s ease forwards;
}

@keyframes button-circle {
    0% {
        transform: scale(0);
    }
    100% {
        transform: scale(20);
        opacity: 0;
    }
}

@media(max-width: 379.98px) {
    .button {
        font-size: 20px;
    }
    .button-link {
        min-width: 90vw;
    }
}


/*--------------------------------------------*/
.about {
    position: relative;
    z-index: 1;
}

.about__stars {
    opacity: 0;
}

.about__stars span {
    position: absolute;
    top: -9%;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../assets/img/StarsBottom.png') center / cover repeat-x;
    transition: opacity 3s ease 0s;  
    animation: stars-shine 3s infinite alternate;
}

.about__stars._visible {
    opacity: 1;
}

.about__content {
    display: flex;
    flex-direction: column;
    padding: 150px 15px 80px 15px;
    height: 3000px;    
    text-align: center;
    margin: 0 auto;    
    user-select: none;
}

.about__title {
    margin: 0 0 40px 0;
}

.about__text {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: "congenial", sans-serif;
    font-weight: 500;
    color: #ffffff;
    line-height: 1.2;
    font-size: 30px;
    align-self: center;
    margin: 0 0 20px 0;
    max-width: 1100px;
}

.text-about-bottom {
    flex-direction: column;
    margin: 0 0 80px 0;
}

.about__text .text-about-p {
    opacity: 0;
}

.text-about-p_1 {
    display: flex;
    transition: all 1s ease 0s;
    transform: translate(0, 120%);
    max-width: 850px;
    font-size: 36px;
    margin: 0 20px 0 0;
}

.text-about__btn {
    display: flex;
    align-self: flex-start;
    z-index: 5;
}

.text-about__btn svg {
    cursor: pointer;     
}

.volume-up {
    display: flex;        
}

.volume-off {
    display: none;
}

.text-about__btn._mute .volume-up {
    display: none;
}

.text-about__btn._mute .volume-off {
    display: flex;
}

.volume-btn {
    width: 55px;
    height: 55px; 
    fill: #020209c1;
    border-radius: 50%;
    padding: 15px;
    transition: all 0.6s ease 0s;
}


.volume-up {
    background-color: #caff87;  
}

.volume-off {
    background-color: #cdcdcd;
}

.volume-off:hover {
    background-color: #b4b4b4;
    fill: #020209;
}

.volume-up:hover {
    background-color: #b8f869;
    fill: #020209;    
} 

.text-about-p_2 {
    transition: all 2s ease 0s;
    transform: translate(20%, 120%);
    margin: 0 0 60px 0;
}

.text-about-p_3 {
    transition: all 2s ease 0.8s;
    transform: translate(-20%, 120%);
}

.about__text._active .text-about-p {
    opacity: 1;
    transform: translate(0, 0);
}

.about__cards {
    height: 1200px;
    margin: 80px 0 100px 0;
    opacity: 0;
}

.about__cards._active {
    opacity: 1;
}

.about__cards::-webkit-scrollbar {
    display: none;
}

.about__actions {
    align-self: center;
    opacity: 0;
    transform: translate(0, 120%);
    transition: all 1.5s ease 0s;
    margin: 0 0 200px 0;
}

.about__actions._active {
    opacity: 1;
    transform: translate(0, 0);
}

.about__actions span {
    font-family: "congenial", sans-serif;
    font-weight: 500;
    color: #ffffff;
    line-height: 1.2;
    font-size: 20px;
}

.actions-about__btn {    
    margin: 0 0 40px 0;
}

.actions-about__icon img {
    opacity: 0;
    width: 60%;  
    transition: opacity 0.8s ease 0.5s;
}

.about__actions._active .actions-about__icon img {
    opacity: 1;
}

/*------------------------------*/

.cards-about__wrapper {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    height: 90%;
}

.cards-about__box {
    position: absolute;
    border-radius: 16px;
}

.cards-about__box_1 {
    top: 0px;
    left: 15%;
}

.cards-about__box_2 {
    top: 100px;
    right: 20%;
}

.cards-about__box_3 {
    top: 200px;
    left: 20%;
}

.cards-about__box_4 {
    top: 300px;
    right: 15%;
}

.cards-about__box_5 {
    top: 400px;
    left: 25%;
}

.cards-about__box_6 {
    top: 500px;
    left: 17%;
}

.cards-about__box_7 {
    top: 600px;
    right: 22%;
}

.cards-about__box_8 {
    top: 700px;
    left: 15%;
}

.cards-about__box_9 {
    top: 800px;
    right: 15%;
}

.cards-slide {
    position: relative;
    opacity: 0;
    transition: opacity 0.3s ease 0s;
}

.cards-slide._visible {
    opacity: 1;
}

.cards-slide::before {
    position: absolute;
    content: ''; 
    opacity: 1;
    transform: scale(0);
    transition: all 0.3s ease 0s;  
    z-index: 5;
    width: 400px;
    height: 400px;
}

.cards-slide._visible::before {
    transform: scale(1);
    opacity: 1;
}

.cards-slide_1::before {
    background: url('../assets/img/about/NovaStars/2.svg') center / contain no-repeat;      
}

.cards-slide_2::before {
    background: url('../assets/img/about/NovaStars/3.svg') center / contain no-repeat;
}

.cards-slide_3::before {
    background: url('../assets/img/about/NovaStars/4.svg') center / contain no-repeat;
}

.cards-slide_4::before {
    background: url('../assets/img/about/NovaStars/5.svg') center / contain no-repeat;
}

.cards-slide_5::before {
    background: url('../assets/img/about/NovaStars/6.svg') center / contain no-repeat;
}

.cards-slide_6::before {
    background: url('../assets/img/about/NovaStars/7.svg') center / contain no-repeat;
}

.cards-slide_7::before {
    background: url('../assets/img/about/NovaStars/8.svg') center / contain no-repeat;
}

.cards-slide_8::before {
    background: url('../assets/img/about/NovaStars/9.svg') center / contain no-repeat;
}

.cards-slide_9::before {
    background: url('../assets/img/about/NovaStars/10.svg') center / contain no-repeat;
}

.cards-slide_1::before,
.cards-slide_8::before{
    top: -199px;
    left: -199.5px;
}

.cards-slide_4::before,
.cards-slide_7::before {
    top: -199px;
    right: -199px;
}

.cards-slide_3::before {
    top: -200px;
    left: -199px;
}

.cards-slide_5::before {
    top: -199.5px;
    left: -199.5px;
}

.cards-slide_6::before {
    bottom: -199px;
    left: -199.5px;
}

.cards-slide_2::before,
.cards-slide_9::before {
    bottom: -199px;
    right: -199.5px;
}

/*------------------------------*/

.slide-cards-about {
    display: flex;
}

.slide-cards-about__body {
    max-width: 630px;
    height: auto;
    background-color: #47037e;
    overflow-y: hidden;
    overflow-x: hidden;
    border-radius: 10px;
    border: 1.5px solid #fff;
    box-shadow: 0 0 15px #ffffff5c;
    padding: 30px;
    z-index: 2;
}

.slide-cards-about__content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.slide-cards-about__title {
    font-family: "congenial";
    font-weight: 400;
    color: #bd6bff;
    font-size: 22px;
    line-height: 1.4;
    letter-spacing: 1.5px;
    margin: 0 0 20px 0;
    text-align: left;
}

.slide-cards-about__text {
    display: flex;
    flex-direction: column;
    font-family: "neulis-neue", sans-serif;
    font-weight: 300;
    color: #ffffff;
    font-size: 18px;  
    line-height: 1.4;
    letter-spacing: 1.5px;
    text-align: left;
    gap: 15px;    
}


@media (max-width: 991.98px) {
    .about__text {
        max-width: 700px;
        font-size: 20px;
    }
    .text-about-p_1 {
        font-size: 24px;
    }
    .slide-cards-about__body {
        padding: 20px;
    }
    .slide-cards-about__text {
        font-size: 18px;
    }
}

@media (max-width: 767.98px) {
    .about__text {
        font-size: 18px;
        flex-direction: column;
    }
    .text-about-p_1 {
        font-size: 22px;
        margin: 0 0 20px 0;
    }
    .text-about-p_2 {
        margin: 0 0 40px 0;
    }
    .text-about__btn {
        align-self: flex-end;
    }
    .slide-cards-about__text {
        font-size: 16px;
    }
    .slide-cards-about__title {
        font-size: 20px;
    }
    .about__title {
        margin: 0 0 40px 0;
    }
}

@media (max-width: 579.98px) {  
    .about__text {
        font-size: 14px;
    }
    .text-about-p_1 {
        font-size: 16px;
    }
    .slide-cards-about__text {
        font-size: 10px;
    }
    .slide-cards-about__title {
        font-size: 16px;
    }
    .cards-slide_1,
    .cards-slide_3,
    .cards-slide_5,
    .cards-slide_6,
    .cards-slide_8 {
        align-self: flex-end;
        right: 0;
    }

    .cards-slide_4,
    .cards-slide_2,
    .cards-slide_7,
    .cards-slide_9 {
        align-self: flex-start;
        left: 0;
    }
    .slide-cards-about__body {
        padding: 15px;
    }
}

@media (max-width: 379.98px) {
    .actions-about__icon img {
        width: 80%;
    }

}

/*--------------------------------------------*/

.features__content {    
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 0 0 80px 0;
}

.features__bg {
    position: absolute;
    width: 100%;
    /* height: auto; */
    /* height: 6061px; */
}

.features__bg span {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6065px;
    background-image: url('../assets/img/features/bg-waterfall-below-fixed.png');
    background-size: cover;
    background-repeat: no-repeat;
    z-index: 1;
}

.features._active .features__left-tree span,
.features._active .features__right-tree span {
    transform: translate(0, 0);
}

.features__left-tree span {
    position: absolute;
    top: -610px;
    left: 0px;
    width: 100%;
    height: 80%;
    background: url('../assets/img/features/HN-Web-left-side-rocks.png') left / contain no-repeat;
    z-index: 2;
    transition: transform 1s ease 0s;
    transform: translate(-100%, 0);
}

.features__right-tree span {
    position: absolute;
    top: -610px;
    right: 0px;
    width: 100%;
    height: 80%;
    background: url('../assets/img/features/HN-Web-right-side-rocks.png') right / contain no-repeat;
    z-index: 2;
    transition: transform 1s ease 0s;
    transform: translate(100%, 0);
}

.features__decor span {
    position: absolute;
    top: 0;
    left: 0;
    animation: stars-shine 5s infinite alternate;
}

.decor-features-bottom span {
    width: 100%;
    height: 109%;
    background: url('../assets/img/features/Layer15.svg') bottom / contain no-repeat;
    z-index: 4;
}

.features__box {
    height: auto;
    padding: 15px 0;
    z-index: 5;
}

.features__box::-webkit-scrollbar {
    display: none;
}

.features__title {
    margin: 500px 0 50px 0;
    z-index: 5;
}

.reflections__text {
    text-align: center;
    font-family: "reenie-beanie", sans-serif;
    font-weight: 500;
    font-style: normal;
    font-size: 60px;
    line-height: 1.2;
    color: #fff;
    margin: 100px auto 0 auto;
    width: 85%;
    height: 250px;
    z-index: 999;
}

.swiper-text-features__wrapper {
    min-height: 250px;
    user-select: none;
}

.slide-swiper-text-features__option p {
    opacity: 0;
    transition: opacity 3s ease 0s;
}

.slide-swiper-text-features__option._anim p {
    opacity: 1;
    /*animation: color-options 11s ease alternate;*/
}

/*@keyframes color-options {
    0% {
        opacity: 0;
    }
    50% {
        opacity: 1;

    }
    100% {
        opacity: 0;
    }
}*/

.slide-swiper-text-features__option {
    padding: 15px;
}

.features__items {
    display: grid;
    grid-template-columns: repeat(2, minmax(200px, 480px));
    justify-content: center;
    z-index: 5;
    transition: all 0.6s ease 0s;
    opacity: 0;
}

.features__items._active {
    opacity: 1;
}

.features__item {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 25px;
    min-height: 300px;   
    opacity: 0;
    transition: opacity 0.6s ease 0s;
}

.features__item._visible-top {
    opacity: 1;
}

.features__item._visible-center {
    opacity: 0.7;
}

.features__item._visible-bottom {
    opacity: 0.4;
}

.features__item._hidden {
    opacity: 0.1;
}

.item-features__title {
    font-family: "congenial", sans-serif;
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: 2.4px;
    font-size: 22px;
    text-transform: uppercase;
    color: #ffffff;
    margin: 0 0 25px 0;
}

.item-features__icon {
    position: relative;
    width: 150px;
    height: 150px;
    margin: 0 0 20px 0;   
}

.item-features__icon img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.item-reflections__text {
    font-size: 18px;
    font-family: "neulis-neue", sans-serif;
    font-weight: 300;
    letter-spacing: 1.5px;
    color: #ffffff;
    line-height: 1.4;
    margin: 0 0 30px 0;
}

.column_2 {
    transform: translate(0, 60%);
}

@media (max-width: 991.98px) {
    .features__item {
        padding: 25px 20px;
    }   
    .item-features__title {
        font-size: 20px;
    }
    .item-reflections__text {
        font-size: 16px;
    }
}

@media (max-width: 767.98px) {
    .reflections__text {
        font-size: 48px;
    }
    .item-features__title {
        font-size: 18px;
    }
    .item-reflections__text {
        font-size: 14px;
    }
}

@media (max-width: 579.98px) {
    .reflections__text {
        font-size: 36px;
    }    
    .features__items {
        grid-template-columns: repeat(1, 90%);    
        gap: 20px;   
    }   
    .features__item {
        min-height: auto;
        padding: 15px 10px;
    }
    .item-features__icon {
        width: 120px;
        height: 120px;
    }
    .column_2 {
        transform: translate(0, 0);
    }
    .item-features__title {
        font-size: 16px;
    }
    .item-reflections__text {
        font-size: 12px;
    }
    .features__left-tree span,
    .features__right-tree span {
        display: none;
    }
}

@media (max-width: 479.98px) {

    .reflections__text {
        font-size: 28px;
    }
    .features__items {
        grid-template-columns: repeat(1, 100%);
    }

    .features__item {
        padding: 0 10px 5px 10px;
    }
        
}
/*--------------------------------------------*/

.stories {
    position: relative;
    z-index: 4;
    margin-top: -120px;
}

@media (max-width: 1400px) {
    .swiper-text-features {
        margin-top: 0;
    }
    .stories {
        margin-top: -600px;
    }
    .features__left-tree span {
        left: 0px;
    }
    .features__right-tree span {
        right: 0px;
    }
}

@media (max-height: 800px) {
    .text-features__swiper {
        margin-bottom: 300px;
    }
}

@media (max-width: 1200px) {
    .features__left-tree span {
        left: -50px;
    }
    .features__right-tree span {
        right: -50px;
    }
}

@media (max-width: 1050px) {
    .features__left-tree span {
        left: -100px;
    }
    .features__right-tree span {
        right: -75px;
    }
}

.stories__trees,
.stories__trees span {
    position: absolute;
    width: 100%;
    height: 80%;
    top: 0;
    left: 0;
    will-change: transform;  
}

.stories__trees_1 span {
    background: url("../assets/img/stories/Layer32_4.png") -200px 2% / auto 100% repeat-x;
}

.stories__trees_5 span {
    background: url("../assets/img/stories/Layer32_4.png") 220px 3% / auto 80% repeat-x;
}

.stories__trees_2 span {
    background: url("../assets/img/stories/Layer32_5.png") 240px 4% / auto 90% repeat-x;
}

.stories__trees_3 span {
    background: url("../assets/img/stories/Layer32_3.png") -240px 5% / auto 90% repeat-x;
}

.stories__trees_4 span {
    background: url("../assets/img/stories/Layer32_6.png") 0 30% / auto 50% repeat-x;
}

.stories__trees_5 span,
.stories__trees_1 span,
.stories__trees_2 span,
.stories__trees_3 span {
    transform: translate(0px, 90%);
    transition: transform 1s ease 0s;
}

.stories__trees_5 span {
    transition-delay: 0.6s;
}

.stories__trees_1 span {
    transition-delay: 0.2s;
}

.stories__trees_2 span {
    transition-delay: 0.4s;
}

.stories__trees_3 span {
    transition-delay: 0s;
}

.stories__trees._active span {
    transform: translate(0, 0);
}

/*--------------------------------------------*/

.stories__content {
    padding: 300px 0 80px 0;    
    height: 1450px;
}

.stories__title {
    margin: 5% 0 20px 0;
}

.stories__body {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    height: 1200px;
    background: url('../assets/img/stories/stories_background2.png') top / cover no-repeat;
}

.stories__swiper {    
    position: absolute;
    bottom: 0;
    right: 0;
    height: 100%;
    width: 100%;
}

.stories__box {    
    position: relative;
    align-self: flex-end;
    width: 510px;
    max-width: 100%;  
    height: 100%;  
    padding: 0 15px;
    opacity: 0;
    transform: translate(100%, 0);
    transition: all 2.5s ease 0s;
    z-index: 6;
    margin-right: 10%;
}

@media (max-width: 1340px) {
    .stories__box {
        margin-right: 5%;
    }
}

.stories__box._active {
    opacity: 1;
    transform: translate(0, 0);
}

.slide-swiper-stories__picture {
    display: flex;
    flex-direction: column;    
    gap: 20px;
    align-items: center;
    justify-content: center;
    margin: 0 0 20px 0;
}

.slide-swiper-stories {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px 0;
}

.slide-swiper-stories__body {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border-radius: 10px;
    padding: 0 30px;
}

.slide-swiper-stories__image {
    position: relative;
    width: 90px;
    height: 90px;
}

.slide-swiper-stories__image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.slide-swiper-stories__name {
    font-family: "congenial", sans-serif;
    font-weight: 400;
    letter-spacing: 1.5px;
    color: #ffffff;
    font-size: 28px;
}

.slide-swiper-reflections__text {
    height: 240px;
    font-family: "neulis-neue", sans-serif;
    font-weight: 300;
    color: #ffffff;
    line-height: 1.2;
    font-size: 1em;
    letter-spacing: 1px;
    margin: 0 0 100px 0;
    max-width: 600px;
}

.slide-swiper-reflections__text p {
    margin: 0 0 15px 0;
}

.swiper-stories .swiper-button-next,
.swiper-stories .swiper-button-prev {
    top: 40%;
}

.swiper-stories .swiper-button-prev {
    left: 0;
}

.swiper-stories .swiper-button-next {
    right: 0;
}

.swiper-stories .swiper-button-next::after,
.swiper-stories .swiper-button-prev::after {
    display: block;
    color: #fff;
    font-size: 36px;
    font-weight: 800;
}

@media (max-width: 1400px) {
    .stories__content {
        height: 1198px;
    }
    .stories__body {
        height: 900px;
        background: url('../assets/img/stories/stories_background2.png') top / 120% auto no-repeat;
    }
}


@media (max-width: 991.98px) {
    .stories__trees_1 span {
        background: url("../assets/img/stories/Layer32_4.png") -200px 2% / auto 100% repeat-x;
    }

    .stories__trees_5 span {
        background: url("../assets/img/stories/Layer32_4.png") 120px 3% / auto 80% repeat-x;
    }

    .stories__trees_2 span {
        background: url("../assets/img/stories/Layer32_5.png") -150px 4% / auto 90% repeat-x;
    }

    .stories__trees_3 span {
        background: url("../assets/img/stories/Layer32_3.png") -300px 5% / auto 90% repeat-x;
    }

    .stories__trees_4 span {
        background: url("../assets/img/stories/Layer32_6.png") 0 30% / auto 50% repeat-x;
    }
    .stories__content {
        height: 1450px;
    }
    .stories__title {
        margin: 5% 0 450px 0;
    }
    .stories__box {
        align-self: center;
        margin-right: 0px;
    }
    .slide-swiper-stories__name {
        font-size: 26px;
    }
    .slide-swiper-reflections__text {
        height: 180px;
        font-size: 14px;
        margin: 0 0 60px 0;
        padding: 0 15px;
    }
    .stories__body {
        justify-content: flex-start;
        height: 1200px;
        background: url('../assets/img/stories/stories_background2.png') 0 0 / cover no-repeat;
    }
}

@media (max-width: 767.98px) {
    .stories__body {
        background: url('../assets/img/stories/stories_background2.png') -160px 0 / cover no-repeat;        
    }
    .slide-swiper-stories__name {
        font-size: 24px;
    }
}

@media (max-width: 579.98px) {
    .stories__box {
        padding: 5px;
        margin-right: 0px;
    }
    .slide-swiper-stories__image {
        width: 80px;
        height: 80px;
    }
    .slide-swiper-stories__name {
        font-size: 22px;
    }

    .swiper-stories .swiper-button-next,
    .swiper-stories .swiper-button-prev {
        top: 18%;
    }

    .swiper-stories .swiper-button-prev {
        left: 8%;
    }

    .swiper-stories .swiper-button-next {
        right: 8%;
    }

}

@media (max-width: 479.98px) {                        
    .slide-swiper-reflections__text { 
        height: 200px;     
        font-size: 12px;
        padding: 0;
    }
}

/*--------------------------------------------*/

.team {
    position: relative;       
    z-index: 5;
    background-color: #550aa4;
}

.team__content {
    padding: 100px 15px 40px 15px;
    max-width: 1200px;
    margin: 0 auto;
    height: auto;
}

.team__title {
    margin: 0 0 80px 0;
    position: relative;
}

.team__title::after {
    content: '';
    position: absolute;
    top: -40px;
    background: url('../assets/img/team/star.png') center / contain no-repeat;
    width: 80px;
    height: 80px;
    animation: stars-shine 4s infinite alternate;
}

.team__items {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    gap: 15px;
    height: auto;
    margin: 0 0 40px 0;
}

.team__items::-webkit-scrollbar {
    display: none;
}

.team__item {
    display: flex;
    flex: 0 0 23%;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    border-radius: 8px;
    padding: 20px 15px 30px 15px;
    overflow: hidden;
    cursor: pointer;
    height: 700px;
    box-shadow: 8px 8px 10px #ffffff31;  
    transform: scale(1); 
    transition: all 0.8s ease 0s;
}

.team__item:hover {
    box-shadow: 8px 8px 10px #ffffff56;
    transform: scale(1.05);
}

.item-team._open:hover {
    box-shadow: 8px 8px 10px #ffffff31;
    transform: scale(1);
}

.text-spaced {
    letter-spacing: 1px;
}

._anim-card {
    opacity: 0;   
}

._anim-card._active,
._active ._anim-card {
    opacity: 1;
    margin: 0;
}

.item-team_1 {
    background-color: #00c1a0; 
    margin: 160px 0 0 0;
}

.item-team_2 {
    background-color: #1371c2;
    margin: 240px 0 0 0;
}

.item-team_3 {
    background-color: #bc00bd;
    margin: 160px 0 0 0;
}

.item-team_4 {
    background-color: #8131c4;
    margin: 240px 0 0 0;
}

.item-team._open {
    flex: 1 0 100%;
    order: -1;
    margin: 0 35px 0 0;
    height: auto;
    padding: 20px 30px 30px 30px;
}

.item-team__close {
    display: none;
}

.item-team._open .item-team__close,
.item-team__more {
    display: flex;
    fill: #fff;
    align-self: flex-end;
    z-index: 5;
}

.item-team__close {
    width: 20px;
}

.item-team._open .item-team__more,
.item-team__more {
    display: none;
}

.item-team__more {
    flex: 0 0 10px;
    opacity: 0.8;
    transition: opacity 0.3s ease 0s;
}

.item-team__more:hover {
    opacity: 1;
}

.item-team__top {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-around;
}

.item-team__box {
    display: flex;
    flex-direction: column;
}

.item-team._open .item-team__box {
    margin: 0 20px 0 0;
}

.item-team__image {
    position: relative;
    width: 180px;
    height: 180px;
    margin: 0 0 20px 0;
}

.item-team__image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.item-team__title {
    font-family: "congenial", sans-serif;
    font-weight: 500;
    color: #ffffff;
    text-align: center;
    text-transform: uppercase;
    font-size: 30px;
    letter-spacing: 3px;
    line-height: 120%;
    margin: 0 0 30px 0;
}

.item-team__quote {
    position: relative;    
    display: none;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin: 0 0 20px 0;
    max-width: 600px;  
}

.item-team._open .item-team__quote {
    display: flex;
}

.quote-team__icon {
    position: relative;
    width: 30px;
    height: 30px;
}

.quote-team__icon img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.quote-team__text {
    font-family: "congenial", sans-serif;
    font-weight: 400;
    font-size: 30px;
    color: #ffffff;
    line-height: 1.2;
    padding: 0 45px;
}


.quote-team__icon_left {
    position: absolute;
    top: -10px;
    left: 0;
}

.quote-team__icon_right {
    position: absolute;
    bottom: 0px;
    right: 0;
}

.item-team__text {
    display: flex;
    flex-direction: column;
    gap: 20px;
    text-align: center;
    font-size: 18px;
    font-family: "neulis-neue", sans-serif;
    font-weight: 300;
    letter-spacing: 0.5px;
    color: #ffffff;
    line-height: 1.2;
    height: 80%;        
    overflow: hidden;    
}

.team__item._open .item-team__text {
    height: auto;
    overflow: auto;
}

.team__item._open .item-team__text::-webkit-scrollbar {
    display: none;
}

.team-item-text__main {
    display: none;
}

.team__item._open .team-item-text__main {
    display: flex;
}

@media (max-width: 991.98px) {
    .team__content {
        padding: 40px 15px 20px 15px;
        max-width: 799.98;
    }  
    .team__items {
        overflow: auto;
        flex-wrap: wrap;
        row-gap: 30px;
    }
    .team__item {
        flex: 0 0 48%;
        height: auto;
        margin: 0;
    }

    .item-team:hover {
        box-shadow: 8px 8px 10px #ffffff31;
        transform: scale(1);
    }

    .item-team__text {
        font-size: 16px;
    }
    .item-team._open {
        order: 0;
        margin: 0;
    }

    .item-team__more {
        display: flex;
        width: 10px;
    }

    .quote-team__icon {
        width: 28px;
        height: 28px;
    }

    .quote-team__text {
        font-size: 28px;
    }
}

@media(max-width: 767.98px) {
    .team__content {
        max-width: none;
    }
    .item-team._open {
        order: 0;
    }
    .team__item {
        flex: 0 0 100%;
    }
    .quote-team__icon {
        width: 26px;
        height: 26px;
    }
    .quote-team__text {
        font-size: 24px;
        padding: 0 30px;
    }          
}

@media (max-width: 579.98px) {
    .item-team__close,
    .item-team__quote {
        margin: 0 0 30px 0;
    }
    .item-team._open .item-team__box {
        display: none;
    }
    .item-team__text {
        display: flex;
        font-size: 14px;
    }
    .quote-team__text {
        font-size: 20px;
    }
    .quote-team__icon {
        width: 22px;
        height: 22px;
    }
}

@media (max-width: 379.98px) {

    .item-team__text {
        display: none;
    }

    .item-team._open .item-team__text {
        display: flex;
        font-size: 12px;
    }

    .quote-team__text {
        font-size: 14px;
    }

    .quote-team__icon {
        width: 14px;
        height: 14px;
    }

    .item-team__image {
        width: 120px;
        height: 120px;
    }
}

/*--------------------------------------------*/

.footer {
    background-color: #550aa4;
    z-index: 5;
}

.footer__body {
    display: flex;
    flex-direction: column;
    padding: 60px 0 30px 0;
}

.footer__top {
    font-family: "congenial", sans-serif;
    font-size: 18px;
    font-weight: 200;
    letter-spacing: 1px;
    color: #ffffff;
}

.top-footer__menu {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.rc-list,
.cc-list,
.lc-list {
    display: flex;
    flex-direction: column;

}

.lc-list {
    line-height: 1.5;
}

.rc-list {
    align-items: flex-end;
}

.cc-list {
   align-items: center;
   line-height: 1.8;
   padding: 0 0 0 28px;
}

.lc-list,
.cc-list__item-contact {
    text-transform: uppercase;   
}

.rc-list__item,
.cc-list__item {
    margin: 0 0 5px 0;
    transition: all 0.3s ease 0s;
}

.lc-list__item:hover {
    color: #ffffffd9;
    cursor: pointer;
}

.cc-list__item:hover a {
    color: #ffffffd9;
}

.cc-list__item-phone,
.cc-list__item-email {
    display: flex;
    gap: 5px;
}

.rc-list__item-social {
    text-align: center;
    line-height: 1.5;
    width: 250px;
    margin: 20px 0 20px 0;
}

.footer__bottom {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bottom-footer__copyright {
    display: flex;
    font-family: "congenial-light", sans-serif;
    font-weight: 200;
    color: #ffffff;
    line-height: 1.2;
    margin: 0 20px;
    text-align: center;
    gap: 5px;
}

.icons-footer {
    position: absolute;
    right: 80px;
    bottom: 0;
    display: flex;
    align-items: center;
    text-align: center;
    justify-content: center;
}

.icons-footer__link svg {
    width: 20px;
    fill: #fff;
    transition: all 0.3s ease 0s;
}

.icons-footer__link:hover svg {
    fill: #ffffffd9;
}

.facebook-icon svg {
    width: 14px;
}

.icons-footer__item {
    margin: 0 0 0 15px;
}

@media (max-width: 991.98px) {
    .footer__top {
        margin: 0 0 20px 0;
    }
    .footer__bottom {
        flex-direction: column-reverse;
    }
    .icons-footer {
        position: static;
        margin: 0 0 20px 0;
    }
    .icons-footer__item {
        margin: 0 15px 0 0;
    }
    .icons-footer__item:last-child {
        margin: 0;
    }
    .lc-list,
    .cc-list {
        width: 50%;
    }
    .cc-list {
        align-items: flex-end;
        padding: 0;
    }
    .rc-list {
        width: 100%;
    }
}

@media (max-width: 579.98px) {
    .top-footer__menu {
        flex-direction: column;
    }
    .rc-list__item-social {
        width: 100%;
        text-align: center;
    }
    .lc-list,
    .cc-list {
        width: 100%;
    }
    .lc-list,
    .cc-list,
    .rc-list {
        align-items: center;
        text-align: center;

    }
    .lc-list {
        margin: 0 0 40px 0;        
    }   
}

@media (max-width: 379.98px) {
    .cc-list__item-phone,
    .cc-list__item-email {
        font-size: 16px;
    }
    .bottom-footer__copyright {
        flex-direction: column;
    }
}


.modal {
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transform: scale(1.1);
    transition: visibility 0s linear 0.25s, opacity 0.25s 0s, transform 0.25s;
}
.modal-content {
    position: absolute;
    background-color: white;
    width: 90vw;
    height: 90vh;
    left: 5vw;
    top: 5vh;
    border-radius: 0.5rem;
    overflow: hidden;
}
.modal-content > div {
    overflow-y: scroll;
    position: absolute;
    z-index: 1000;
    width: 100%;
    height: 100%;
}
.modal-content .modal-body {
    padding: 0 2.5rem;
}
.close-button {
    float: right;
    width: 1.5rem;
    text-align: center;
    cursor: pointer;
    border-radius: 0.25rem;
    position: absolute;
    top: 1.5em;
    right: 1.5em;
    z-index: 1001;
}
.close-button:hover {
    background-color: rgba(255,255,255,0.2);
}
.show-modal {
    opacity: 1;
    visibility: visible;
    transform: scale(1.0);
    transition: visibility 0s linear 0s, opacity 0.25s 0s, transform 0.25s;
}

.modal__tab {
    display: none;
}

.modal__tab .modal-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #3e0f97;
    padding: 1em 0 0 0;
}

.modal__tab._active {
    display: block;
    width: 100%;
    height: 100%;
}

.modal-body h2 {
    color: #3e0f97;
    font-size: 30px;
    font-weight: 700;
    padding: 1.5em 0.2em 0.5em 0.2em;
}

.modal-body h3 {
    color: #3e0f97;
    font-size: 24px;
    font-weight: 700;
    padding: 1.5em 0.2em 0.5em 0.2em;
}

.modal-body p {
    padding: 0.5em 0.2em;
    line-height: 1.5;
}

.modal-body ol {
    margin-top: 1em;
    margin-left: 0.5em;
}

.modal-body ol li {
    padding: 5px 0;
    list-style-type: decimal;
    list-style: decimal;
    list-style-position: outside;
    color: #3e0f97;
}

.modal-body a {
    color: #3e0f97;
    text-decoration: underline;
}

.hidden {
    display: none;
}

.audio-hint {
    position: absolute;
    width: 400px;
    right: 10%;
    top: 400px;
    font-family: 'congenial';
    box-sizing: border-box;
    padding: 1em;
    background-color: rgba(255,255,255,0.2);
    border-radius: 1em;
}

.trust-centre-list {
    color: white;
    text-align: left;
    margin-top: 0.5em;
}

ul.trust-centre-list li {
    width: 100%;
    padding: 1em 1em;
    font-family: 'congenial', sans-serif;
    font-weight: bold;
}

ul.trust-centre-list li h4 {
    margin-bottom: 0.5em;
    font-size: 24px;
}


ul.trust-centre-list li ul li {
    width: 100%;
    padding: 0.5em 1em;
    font-family: 'congenial', sans-serif;
    font-weight: normal;
    font-size: 18px;
}

ul.trust-centre-list li ul li:hover {
    background-color: rgba(255, 255, 255, 0.1);
    cursor: pointer;
}

.trust-centre-embed {
    padding: 1em;
    box-sizing: border-box;
}

.waitlist-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
}

.waitlist-outer {
    position: fixed;
    z-index: 10000;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

#getWaitlistContainer {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: auto !important;
}

.invisible {
    visibility: hidden;
}

.visible {
    visibility: visible;
}

.trust-centre-nav-container {
    flex: 0.2;
    text-align: center;
    background-color: #550aa4;    
}

.trust-centre-line {
    border-top: 10px solid;
    border-image-slice: 1;
    border-width: 5px;
    border-image-source: linear-gradient(to right, #d53a9d, #550aa4);
}

.trust-centre-content {
    display: flex;
    flex: 1;
    height: 100%;
}

.trust-centre-menu-toggle {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 10px;
    padding-bottom: 10px;
}

.active-trust-centre-menu {
    background-color: #550aa4;
    color: white;
}

.show {
    display: block;
}

.trust-centre-empty-state {
    width: 100%;
    height: 100%;
    background: url('../assets/img/trust-centre-bg.png');
    background-position-x: center;
    background-position-y: center;
    background-size: cover;
}

.trust-centre-empty-state-content,
.trust-centre-empty-state-item {
    width: 100%;
    height: 100%;
}

.trust-centre-empty-state-item.tree {
    background: url('../assets/img/trust-centre-graphic.png');
    background-position-x: center;
    background-position-y: center;
    background-size: contain;
    background-repeat: no-repeat;
}

.trust-centre-embed-container {
    flex: 0.8;
    width: 100%;
    height: auto;
}

@media screen and (max-width: 992px) {
    .modal-body {
        height: 100%;
    }
    .modal-body div {
        flex-direction: column;
    }
    .trust-centre-embed-container {
        height: 100%;
        flex: 1;
    }
    .trust-centre-list {
        text-align: center;
    }
    .trust-centre-nav-container {
        display: none;
    }
    .trust-centre-icon-menu {
         display: block;
         position: relative;
         width: 30px;
         height: 18px;
         z-index: 5;
     }
 
     .trust-centre-icon-menu__line,
     .trust-centre-icon-menu::before,
     .trust-centre-icon-menu::after {
         content: "";
         position: absolute;
         background-color: #550aa4;
         width: 100%;
         height: 2px;
         left: 0;
         transition: all 0.3s ease 0s;
     }

     .active-trust-centre-menu > button.trust-centre-icon-menu::before,
     .active-trust-centre-menu > button.trust-centre-icon-menu::after {
         content: "";
         position: absolute;
         background-color: white;
         width: 100%;
         height: 2px;
         left: 0;
         transition: all 0.3s ease 0s;
     }
     .trust-centre-icon-menu::before {
         top: 0;
     }
 
     .trust-centre-icon-menu::after {
         bottom: 0;
     }
 
     .trust-centre-icon-menu__line {
         top: calc(50% - 1px);
     }
 
     .active-trust-centre-menu > .trust-centre-icon-menu::before {
         top: calc(50% - 1px);
         transform: rotate(-45deg);
     }
 
     .active-trust-centre-menu > .trust-centre-icon-menu::after {
         top: calc(50% - 1px);
         transform: rotate(45deg);
     }
 
     .active-trust-centre-menu > span.trust-centre-icon-menu__line {
         left: 50%;
         width: 0;
     }
}
