@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200;300;400;500;600;700;800&display=swap');
:root{
    --c-white: #fff;
    --c-black: #2e2e42;

    --b-accent: #6ec5ff;
    --b-white: #f9f9f9;
}
*{
    box-sizing: border-box;
    font-family: 'Manrope', sans-serif;
    font-size: 1rem;
}
a{
    text-decoration: none;
    color: inherit;
}
html{
    font-size: 18px;
    scroll-behavior: smooth;
}
body{
    margin: 0;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
}






/*-----HEADER-----*/
header{
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    width: 100%;
    height: 75px;
    background: var(--b-accent);
    color: var(--c-black);
    padding: 0 10px;
    transition: top .3s, height .2s ;
    overflow: hidden;
}
.header-bottom{
    top: -75px;
}
.header-top{
    top: 0;
}
#header i{
    display: none;
}
header nav{
    float: right;
}
header nav ul{
    text-transform: uppercase;
    list-style-type: none;
    height: 100%;
    line-height: 75px;
    margin: 0;
    padding: 0;
}
header nav ul li{
    float: left;
    padding: 0 15px;
}
header nav ul li a{
    position: relative;
    font-weight: 600;
    font-size: 1.15rem;
}
header nav ul li a::before{
    content: '';
    display: block;
    position: absolute;
    width: calc(0% + 0px);
    height: 2.1px;
    background: var(--c-black);
    bottom: 0px;
    transition: .2s;
}
header nav ul li a:hover::before{
    width: 100%;
}
.logo{
    float: left;
    width: 75px;
}
@media screen  and (max-width: 900px){
    header{
        width: 100%;
        padding: 0 20px;
    }
}
@media screen  and (max-width: 750px){
    header{
        width: 100%;
        padding: 10px;
        height: 65px;
    }
    .logo{
        float: left;
        margin-top: -15px;
        transition: margin .3s;
    }
    #header i{
        display: block;
        float: right;
        width: 45px;
        height: 45px;
        padding: 5px 0;
        text-align: center;
        z-index: 999;
        cursor: pointer;
        transition: opacity .3s;
    }
    header nav{
        width: 100%;
        float: left;
    }
    header nav ul{
        text-transform: uppercase;
        list-style-type: none;
        height: 100%;
        line-height: 1;
        margin: -10px 0 0 0;
        padding: 0;
    }
    header nav ul li{
        float: none;
        padding-top: 60px;
        text-align: center
    }
    header nav ul li a{
        font-size: 1.5rem;
        font-weight: 600;
    }
    header nav ul li a::before{
        display: none;
    }
}
.header-full{
    width: 100%;
    height: 100vh;
    padding: 10px;
}
#header.header-full i{
    opacity: 0;
}
#header.header-full .logo{
    margin-left: calc(50% - 75px / 2);
    margin-top: 15px;
}




/*-----MAIN-----*/
main section{
    position: relative;
    float: left;
    width: 100%;
    --max-height: 100vh;
}
@media screen  and (max-width: 900px){
    main section{
        max-height: 90vh;
    }
}





/*-----HELLO-----*/
#hello{
    width: 100%;
    height: 100vh;
    padding: 0 10%;
    color: var(--c-black);
    
    background-image: url('../images/wall@2x.jpg');

    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    overflow: hidden;
}
#hello::before{
    content: '';
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.2);
}
#hello>div{
    position: absolute;
    bottom: 5vw;
}
#hello h2{
    font-size: 3rem;
    font-weight: 700;
    margin: 0;
    line-height: 1.1;
}
#hello h3{
    float: left;
    font-size: 1.5rem;
    font-weight: 500;
    margin: 0;
    line-height: 1;
    margin-top: 40px;
}
@media screen  and (max-width: 1200px){
    #hello{
        background-size: auto 100%;
    }
    #hello>div{
        bottom: 7vw;
    }
}
@media screen  and (max-width: 750px){
    #hello{
        padding: 0 5vw;
        background-attachment: scroll;
    }
    #hello>div{
        bottom: 5vw;
    }
    #hello h3{
        margin-top: 20px;
    }
}
@media screen  and (max-width: 650px){
    #hello h2{
        font-size: 2rem;
    }
    #hello h3{
        font-size: 1.25rem;
    }
}




/*-----whoarewe----*/
#whoarewe{
    width: 100%;
    height: auto;
    padding: 5vw 20%;
    color: var(--c-white);
    background: linear-gradient(45deg, #f7a937, #aa5fff);
    background-size: 1000vw;
    animation: backgroundanim 30s infinite;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
}
#whoarewe .left{
    float: left;
    width: 50%;
    height: auto;
}
#whoarewe .right{
    float: left;
    width: 50%;
    height: auto;
    display: grid;
    grid-gap: 15px;
}
#whoarewe .left h2{
    font-size: 4rem;
    font-weight: 700;
    margin: 0;
    line-height: 1.1;
}
#whoarewe .right p{
    padding: 0;
    margin: 0;
    font-weight: 400;
}
@keyframes backgroundanim{
    0%{background-position: -250vw;}
    50%{background-position: -750vw;}
    100%{background-position: -250vw;}
}
@media screen  and (max-width: 1200px){
    #whoarewe{
        padding: 5vw 10%;
    }
    #whoarewe .left h2{
        font-size: 3rem;
    }
}
@media screen  and (max-width: 750px){
    #whoarewe{
        padding: 10vw 5vw;
    }
    #whoarewe .left{
        width: 40%;
    }
    #whoarewe .right{
        width: 60%;
    }
    #whoarewe{
        animation: backgroundanim 15s infinite;
    }
}
@media screen  and (max-width: 650px){
    #whoarewe{
        padding: 8vw 5vw 10vw 5vw;
    }
    #whoarewe .left{
        width: 100%;
        margin: 0 0 25px 0;
    }
    #whoarewe .right{
        width: 100%;
    }
}




/*image*/
.image{
    width: 100%;
}
.image picture{
    width: 100%;
}
.image picture img{
    width: 100%;
    height: 100vh;
    object-fit: cover;
    object-position: center;
}
@media screen  and (max-width: 650px){
    .image{
        height: 65vh;
    }
}





/*-----WWYOUGET------*/
#wwyouget{
    width: 100%;
    height: auto;
    padding: 5vw 20%;
    color: var(--c-black);
    background: var(--b-white);
}
#wwyouget .left{
    float: left;
    width: 50%;
    height: auto;
}
#wwyouget .right{
    float: left;
    width: 50%;
    height: auto;
}
#wwyouget .left h2{
    font-size: 4rem;
    font-weight: 700;
    margin: 0;
    line-height: 1.1;
}
#wwyouget .right ul{
    padding: 0 15px;
    margin: 0;
    font-weight: 400;
    display: grid;
    grid-gap: 5px;
}
@media screen  and (max-width: 1200px){
    #wwyouget{
        padding: 5vw 10%;
    }
    #wwyouget .left h2{
        font-size: 3rem;
    }
}
@media screen  and (max-width: 750px){
    #wwyouget{
        padding: 10vw 5vw;
    }
    #wwyouget .left{
        width: 40%;
    }
    #wwyouget .right{
        width: 60%;
    }
}
@media screen  and (max-width: 650px){
    #wwyouget{
        padding: 8vw 5vw 10vw 5vw;
    }
    #wwyouget .left{
        width: 100%;
        margin: 0 0 25px 0;
    }
    #wwyouget .right{
        width: 100%;
    }
}




/*-----NEWS------*/
#news{
    width: 100%;
    height: auto;
    padding: 5vw 0;
    color: var(--c-black);
    background: var(--b-white);
    max-height: 99999vh;
    perspective: 800px;
}
#news h2{
    float: left;
    width: 100%;
    font-size: 4rem;
    font-weight: 700;
    margin: 0 0 50px 0;
    padding: 0 20%;
    line-height: 1.1;
}
#news .news{
    width: 100%;
    float: left;
    grid-template-columns: repeat(3, 1fr);
    display: grid;
    grid-gap: 5px;
    padding: 0 calc(10% - 20px);
}
#news .news .novelty{
    transition: .3s;
    padding: 15px;
    transition: background .3s;
    border-radius: 18px;
}
#news .news .novelty:hover{
    background: #e4e4e4;
}
#news .news .novelty:hover i{
    color: var(--c-black);
}
#news .news .novelty picture{
    width: 100%;
    max-height: 450px;
    
}
#news .news .novelty picture img{
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 10px;
}
#news .news .novelty h3{
    font-size: 1.25rem;
    margin: 15px 0;
    padding: 0;
    line-height: 1.1;
}
#news .news .novelty p{
    margin: 0 0 10px 0;
    padding: 0;
}
#news .news .novelty i{
    font-size: 0.875rem;
    color: gray;
    font-weight: 600;
    font-style: normal;
    transition: color .3s;
}
#news .news .novelty.white{
    background: #e4e4e4;
}
#news .news .novelty.white div{
    width: 100%;
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin-top: 70%;
    transform: translate(0, -50%);
    color: gray;
}
@media screen  and (max-width: 1200px){
    #news h2{
        padding: 0 10%;
        font-size: 3rem;
    }
    #news .news{
        width: 100%;
        float: left;
        grid-template-columns: repeat(2, 1fr);
    }
    #news .news .novelty.white{
        background: transparent;
    }
    #news .news .novelty.white div{
        font-weight: 400;
    }
}
@media screen  and (max-width: 750px){
    #news{
        padding: 10vw 0;
    }
    #news h2{
        padding: 0 5vw;
        font-size: 3rem;
        margin-bottom: 25px;
    }
    #news .news{
        padding: 0 5vw;
        grid-gap: 25px;
    }
    #news .news .novelty:hover{
        transform: none;
    }
}
@media screen  and (max-width: 650px){
    #news .news{
        width: 100%;
        float: left;
        grid-template-columns: repeat(1, 1fr);
    }
    #news .news .novelty.white div{
        margin-top: 15%;
    }
}






/*-----FOOTE-----*/
footer{
    position: relative;
    float: left;
    width: 100%;
    max-height: 100vh;
    padding: 5vw 20%;
    color: var(--c-black);
    background: var(--b-accent);
}
footer .left{
    float: left;
    width: 50%;
    height: auto;
}
footer .right{
    float: left;
    width: 50%;
    height: auto;
}
footer .left h2{
    font-size: 4rem;
    font-weight: 700;
    margin: 0;
    line-height: 1.1;
    width: 91%;
}
footer .right ul{
    padding: 0;
    margin: 0;
    display: grid;
    grid-gap: 5px;
    list-style-type: none;
}
footer .right ul li a{
    position: relative;
    font-weight: 600;
    font-size: 4rem;
    text-transform: uppercase;
    line-height: 1.1;
}
footer .right ul li a::before{
    content: '';
    display: block;
    position: absolute;
    width: calc(0% + 0px);
    height: 5px;
    background: var(--c-black);
    bottom: 5px;
    transition: .3s;
}
footer .right ul li a:hover::before{
    width: calc(100% + 4px);
}
footer .bottom{
    position: relative;
    float: left;
    width: 100%;
    padding-top: 100px;
}
footer .bottom a{
    width: 100%;
    float: left;
    text-transform: uppercase;
    font-style: 1.5rem;
    text-align: center;
}
@media screen  and (max-width: 1200px){
    footer{
        padding: 5vw 10%;
    }
    footer .left h2{
        font-size: 3rem;
        font-weight: 600;
    }
    footer .right ul li a{
        font-size: 3rem;
    }
}
@media screen  and (max-width: 750px){
    footer{
        padding: 10vw 5vw;
    }
    footer .left{
        width: 20%;
        padding-left: 50px;
    }
    footer .left h2{
        writing-mode: tb-rl;
        transform: rotate(180deg);
        font-weight: 700;
        font-size: 2.75rem;
    }
    footer .right ul{
        grid-gap: 24px;
        padding-left: 50px;
    }
    footer .right ul li a{
        font-size: 2.5rem;
    }
    footer .right{
        width: 80%;
    }
    footer .right ul li a::before{
        display: none;
    }
}
@media screen  and (max-width: 500px){
    footer .left{
        padding-left: 0;
    }
    footer .right ul{
        padding-left: 0;
    }
}









/*-----ARTICLE-----*/
.article{
    float: left;
    width: 100%;
    height: auto;
    padding-top: 70px;
    overflow: hidden;
    color: #121212;
    padding: 5vw 20%;
}
.article a{
    color: var(--b-accent);
}
.article_prev{
    width: 100%;
    height: 40vh;
}
.article_prev img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.article .wall{
    float: left;
    width: 100%;
    height: 30vh;
    
    overflow: hidden;
    margin-bottom: -4.3rem;
    background-image: url('../images/poster@2x.jpg');

    background-size: 100% auto;
    background-position: center;
    background-attachment: fixed;
    background-repeat: repeat;
    overflow: hidden;
    position: relative;
    z-index: -999;
}
.article .wall:before{
    content: '';
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, .9);
}
.article .button{
    float: left;
    width: 100%;
    padding: 15px 45px;
    color: white;
    font-weight: 700;
    font-size: 1.25rem;
    margin: 50px 0 20px 0;
    text-align: center;
    transition: background .3s;
    background: linear-gradient(45deg, #f7a937, #aa5fff);
    background-size: 1000vw;
    animation: backgroundanim 10s infinite;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
}
.article .button:hover{
    opacity: 0.9;
}
.article picture{
    float: left;
    width: 100%;
}
.article picture img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.article h1{
    width: 100%;
    float: left;
    font-size: 4rem;
    font-weight: 800;
    margin: 10px 0;
    line-height: 1.1;
    padding: 0 20px;
    color: #2d2d41;
}
.article>i{
    float: left;
    font-size: 0.875rem;
    color: gray;
    font-weight: 600;
    font-style: normal;
    padding: 0 20px;
}
.article p{
    float: left;
    width: 100%;
    padding: 0 20px;
    margin: 10px 0;
}
.article p>i{
    font-size: 1.5rem;
    color: #2d2d41;
    font-weight: 700;
    font-style: normal;
}
.article h2{
    width: 100%;
    float: left;
    font-size: 2rem;
    padding: 0 20px;
    font-weight: 800;
    line-height: 1.1;
    margin: 10px 0;
    color: #2d2d41;
}
.article p b{
    font-size: 1rem;
    color: #2d2d41;
}
.article h3{
    width: 100%;
    float: left;
    font-size: 1.25rem;
    padding: 0 20px;
    font-weight: 700;
    line-height: 1.1;
    margin: 10px 0;
    color: #2d2d41;
}
.article ul{
    float: left;
    width: 100%;
    margin-top: 0;
}
@media screen  and (max-width: 1200px){
    .article{
        padding: 75px 10%;
    }
    .article .wall{
        margin-bottom: -0rem;
    }
    .article .wall:before{
        background-color: rgba(255, 255, 255, .7);
    }
}
@media screen  and (max-width: 900px){
    .article h1{
        font-size: 2.5rem;
    }
    .article h2{
        font-size: 1.5rem;
    }
    .article p b{
        font-size: 1rem;
    }
    .article .button{
        width: calc(100% - 40px);
        font-size: 1rem;
        margin-left: 20px;
    }
    .article p>i{
        font-size: 1.25rem;
    }
    .article .wall{
        background-attachment: scroll;
    }
}
@media screen  and (max-width: 750px){
    .article{
        padding: 75px 0;
    }
}