body, html{
    margin: 0;
    padding: 0;
    background: #f8f8f8;
}

html {
    scroll-behavior: smooth;
}

::selection {
    color: white;
    background: #1bc5d7;
}


header{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px;

    z-index: 10000;

    transition: all .3s ease;
}

header.scrollmode{
    background: rgba(255, 255, 255, 0.85);
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px, rgba(0, 0, 0, 0.06) 0px 2px 4px -1px;
}

header.scrollmode > div.wrapper > div.header-items > a.link{
    color: #585858;
}

header.scrollmode > div.wrapper > div.header-items > a.link:after {
    background-color: #585858;
}

.wrapper{
    display: flex;
    flex-direction: row;
    justify-content: space-between;

    max-width: 68%;
    margin: auto;
}

.header-logo{
    display: block;
    width: 177px;
    height: 59px;
    margin-top: 20px;
}

.header-items{
    display: flex;
    flex-direction: row;
}

.link{
    display: inline-block;
    position: relative;
    font-family: 'Open Sans';
    font-style: normal;
    /* font-weight: 600; */
    font-size: 20px;
    /* line-height: 22px;
    identical to box height, or 100% */
    height: 30px;
    margin-top: 32px;


    color: #FFFFFF;
    margin-left: 42px;

    cursor: pointer;

    transition: all .3s ease;

    text-decoration: none;
}

.link:after {
    content: '';
    position: absolute;
    width: 100%;
    transform: scaleX(0);
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #FFFFFF;
    transform-origin: bottom right;
    transition: transform 0.25s ease-out;
  }
  
.link:hover:after {
    transform: scaleX(1);
    transform-origin: bottom left;
}

#current-lang{
    display: block;
    margin-top: 25px;
    margin-left: 35px;
    cursor: pointer;
}




.main-container{
    background: url("../assets/S1_desktop_BG.png");
    /* background-size: contain; */
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
    height: 940px;
}

.main-mobile-container{
    display: none;
    background: url("../assets/S1_mobile_BG.png");
    background-repeat: no-repeat;
    /* height: 100vh; */
    height: 844px;
    background-size: cover;
    position: relative;
}

.mobile-title{
    display: none;
    width: 100%;
    max-width: 266px;
    /* height: 163px; */
    bottom: 0;
    position: absolute;
    bottom: 0; right: 50%;
    transform: translate(50%,-10%);
}


.main-container-wrapper{
    background: url("../assets/intro/1.png");
    /* background-size: contain; */
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
    height: 100vh;

    position: relative;

    z-index: 1;
    overflow: hidden;
}

/* paper */
.main-overlay-1{
    background: url("../assets/intro/2.png");
    background-size: cover;
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 3;
}


/* text */
.main-overlay-2{
    background: url("../assets/intro/3.png");
    background-size: cover;
    width: 100%;
    height: 100%;
    z-index: 4;
    position: absolute;
    top: 0;
    animation: moveUp 2s;
    animation-timing-function: ease-in-out;
    -webkit-animation-timing-function: ease-in-out;
}

.main-overlay-2.cro{
    background: url("../assets/intro/3.png");
}

.main-overlay-2.slo{
    background: url("../assets/intro/3_SLO.png");
}

@keyframes moveUp {
    from {
        opacity: 0;
        top: -200px;
    }
    to {
        opacity: 1;
        top: 0px;
    }
}

/* person */
.main-overlay-3{
    background: url("../assets/intro/4.png");
    background-size: cover;
    width: 100%;
    height: 100%;
    z-index: 2;
    position: absolute;
    /* top: 0; */

    animation: movePerson 2s;
    animation-timing-function: ease-in-out;
    -webkit-animation-timing-function: ease-in-out;
}

@keyframes movePerson {
    from {
        opacity: 0;
        bottom: -200px;
    }
    to {
        opacity: 1;
        bottom: 0px;
    }
}




.info-container{
    display: block;
    height: 100vh;
    width: 100%;
    /* max-width: 1300px; */
    margin: auto;

    padding-top: 120px;
}

.info-row.centered{
    justify-content: center;
}

.info-row{
    display: flex;
    flex-direction: row;
}

.info-column{
    display: flex;
    flex-direction: column;
}

.info-column.text-column-right{
    margin-left: 130px;
}

.info-img{
    display: block;
    width: 496.08px;
    height: 702px;

    filter: drop-shadow(0px 0px 55px rgba(0, 0, 0, 0.25));
    border-radius: 8px;
}

.title-img{
    display: block;
    width: 285.57px;
    height: 116.87px;
}

.info-text{
    font-family: 'Nunito', sans-serif;
    font-style: normal;
    /* font-weight: 700; */
    font-size: 18px;
    line-height: 26px;
    /* or 144% */
    
    text-align: justify;
    
    color: #565656;

    width: 100%;
    max-width: 652px;
}

.info-text > span.red{
    color: #E30613;
    font-weight: bold;
}










.video-container{
    display: block;
    background: url("../assets/Frame_5.png");
    /* background-size: contain; */
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
    /* height: 793px; */
    height: 100vh;
    min-height: 1080px;
    position: relative;
}

.video-wrapper{
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    position: absolute;
    top: 62%; right: 50%;
    transform: translate(50%,-50%);
}

.video-title {
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 700;
    font-size: 45px;
    line-height: 45px;
    /* identical to box height, or 100% */

    text-align: center;
    margin: 0;

    color: #FFFFFF;
}

.video{
    position: relative;
    margin: auto;
    margin-top: 60px;

    box-shadow: 0px 4px 55px rgba(0, 0, 0, 0.25);
    border-radius: 8px;
    border: none;
    background: #ffffff;
}




#interview{
    display: block;
}

.interview-cards.invisible{
    display: none;
}


.interview-container{
    display: block;
    margin-bottom: 100px;
    padding-top: 120px;
}


.interview-container > h4 {
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 700;
    font-size: 45px;
    line-height: 45px;
    /* identical to box height, or 100% */

    text-align: center;

    color: #241C19;
}


.interview-desc{
    font-family: 'Nunito';
    font-style: normal;
    /* font-weight: 700; */
    font-size: 18px;
    line-height: 26px;
    /* or 144% */

    text-align: center;

    color: #565656;

    width: 100%;
    max-width: 888px;
    margin: 0 auto;
}

.interview-cards{
    display: flex;
    flex-direction: row;
    justify-content: center;
    margin-top: 55px;
    
    flex-wrap: wrap;
}

.card{
    background: #FFFFFF;
    /* Shadow / Bottom medium */

    box-shadow: 0px 0.9px 4px -1px rgba(0, 0, 0, 0.08), 0px 2.6px 8px -1px rgba(0, 0, 0, 0.06), 0px 5.7px 12px -1px rgba(0, 0, 0, 0.05), 0px 15px 15px -1px rgba(0, 0, 0, 0.04);
    border-radius: 6px;

    display: block;

    margin: 0 25px;
    margin-bottom: 25px;

    width: 100%;
    max-width: 392px;

    border-radius: 8px;
}

.interview-img{
    display: block;
    height: 265.46px;
    /* background: url("../assets/Blog_image.png"); */
    border-top-right-radius: 8px;
    border-top-left-radius: 8px;
    background-size: auto;
}

.interview-img.one{
    background: url("../assets/interview-one.png");
    background-size: cover;
}

.interview-img.two{
    background: url("../assets/interview-three.png");
    background-size: cover;
}

.interview-img.three{
    background: url("../assets/interview-two.png");
    background-size: cover;
}

.interview-img.four{
    background: url("../assets/interview-one-slo.png");
    background-size: cover;
}

.interview-content{
    display: flex;
    flex-direction: column;
    padding: 20px;
}

.interview-title{
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 26.9358px;
    line-height: 39px;
    /* identical to box height, or 145% */

    text-align: center;

    /* Text/Title - $euiTitleColor */

    color: #1A1C21;
    max-width: 352.82px;
    margin: auto;
    /* margin-top: 20px; */
    margin-bottom: 14px;
}

.interview-text{
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 17.141px;
    line-height: 26px;
    /* or 150% */

    text-align: center;

    /* Text / Text - $euiTextColor */

    color: #343741;
    max-width: 352.82px;
    margin: auto;
    margin-bottom: 20px;
}

.view-more-btn{
    display: block;
    width: 100%;
    max-width: 350px;
    height: 47px;
    margin: auto;

    display: flex;
    align-items: center;
    
    background: #585858;

    text-decoration: none;

    border-radius: 8px;

    transition: all .3s ease;

    border: 2px solid transparent;
    cursor: pointer;
}

.view-more-btn:hover{
    background: transparent;
    border: 2px solid #585858;
}

.view-more-btn:hover > p{
    color: #585858;
    font-weight: bold;
}

.view-more-btn > p {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 500;
    font-size: 17.141px;
    line-height: 26px;
    /* identical to box height, or 150% */
    color: #FFFFFF;
    margin: 0 auto;
}


footer{
    background: #585858;
    height: 60px;
    width: 100%;
}

footer > p {
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    /* line-height: 60px; */
    text-align: center;
    padding-top: 20px;

    color: #FFFFFF;

    margin: 0 auto;
}

#scrollTop{
    display: block;
    position: fixed;
    bottom: 24px;
    /* right: 24px; */
    width: 45px;
    height: 45px;
    border-radius: 25px;
    background-color: white;
    box-shadow: rgba(9, 30, 66, 0.25) 0px 1px 1px, rgba(9, 30, 66, 0.13) 0px 0px 1px 1px;
    cursor: pointer;

    transition: all .3s ease;

    right: -100px;
}

#scrollTop.canScrollTop{
    right: 24px;
}

#scrollTop > p {
    text-align: center;
    font-weight: bold;
    font-size: 18px;
    line-height: 40px;
    margin: 0 auto;
}

#video-modal{
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0,0,0, 0.6);
    z-index: 10000000;
}

#video-modal > div.content{
    text-align: center;

}

#video-modal.hidden{
    display: none;
}

#close-video{
    display: block;
    width: 50px;
    height: 50px;
    border-radius: 25px;
    background-color: white;
    text-align: center;
    margin: 14px auto;
    font-family: 'Inter';
    font-weight: bold;
    line-height: 48px;
    font-size: 20px;
    cursor: pointer;
}









.mobile-header{
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;

    z-index: 1000000;
}

.mobile-header-wrapper{
    display: flex;
    flex-direction: row;
    width: 100%;
    justify-content: space-between;
}

.header-logo-mobile{
    width: 85px;
    margin: 16px;
}


#current-lang-mobile{
    display: block;
    margin-top: 4px;
    margin-left: auto;
    cursor: pointer;
}

#mobile-toggle{
    display: block;
    width: 40px;
    height: 40px;
    margin: 7px;
    margin-right: 14px;

    user-select: none;
}


#mobile-toggle .line{
    width: 40px;
    height: 5px;
    background-color: #000000;
    display: block;
    margin: 8px auto;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

#mobile-toggle:hover{
    cursor: pointer;
}

#mobile-toggle.is-active .line:nth-child(1){
    -webkit-transform: translateY(13px) rotate(45deg);
    -ms-transform: translateY(13px) rotate(45deg);
    -o-transform: translateY(13px) rotate(45deg);
    transform: translateY(13px) rotate(45deg);
}

#mobile-toggle.is-active .line:nth-child(2){
    opacity: 0;
}

#mobile-toggle.is-active .line:nth-child(3){
    -webkit-transform: translateY(-13px) rotate(-45deg);
    -ms-transform: translateY(-13px) rotate(-45deg);
    -o-transform: translateY(-13px) rotate(-45deg);
    transform: translateY(-13px) rotate(-45deg);
}

#mobile-links-wrapper{
    position: fixed;
    top: 60px;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0, 0.3);
    transition: all .3s ease;
    opacity: 1;
}

#mobile-links-wrapper.not-visible{
    display: none;
}

.mobile-links{
    display: flex;
    flex-direction: column;
    background: white;
    height: 275px;
}

.mobile-link{
    font-family: 'Open Sans';
    font-style: normal;

    display: block;
    font-size: 24px;
    padding: 14px;

    color: #585858;

    text-decoration: none;
}

#mobile-current-lang{
    display: block;
    width: 50px;
    height: 50px;
    margin-top: 14px;
    margin-left: 14px;
}













@media (max-width: 1425px) {

    .wrapper{
        max-width: 77%;
    }

    .info-text{
        max-width: 425px;
    }

}

@media (max-width: 1325px) {
    .card{
        max-width: 325px;
    }
}

@media (max-width: 1325px) {

    .main-container{
        height: 700px;
    }

    .info-column.text-column-right{
        margin-left: 20px;
    }
}


@media (max-width: 975px) {

    header > div.wrapper{
        display: none;
    }

    .mobile-header{
        display: block;
    }
    

    .info-container{
        height: auto;
    }

    .info-img{
        display: none;
    }

    .info-column.text-column-right{
        margin-left: initial;
        max-width: 75%;
        margin: auto;
    }

    .info-text{
        max-width: 100%;
    }

    .video{
        max-width: 90vw;
    }

    .video-wrapper{
        top: 65%;
    }
}

@media (max-width: 660px) {
    footer > p {
        padding-top: 11px;
    }
}

@media (max-width: 450px){
    .main-mobile-container{
        display: block;
    }
    .main-container-wrapper{
        display: none;
    }

    .mobile-title{
        display: block;
    }

    .title-img{
        display: none;
    }

    header{
        height: 60px;
    }

    header.scrollmode{
        background: #ffffff;
    }

    .video-container{
        background: url("../assets/videobg.png");
        background-repeat: no-repeat;
        height: 100vh;
        background-size: cover;
    }

    .video-wrapper{
        top: 50%;
    }
}

@media (max-width: 400px){
    .video-wrapper{
        top: 50%;
    }
}