
@import url('https://fonts.googleapis.com/css2?family=Newsreader:wght@400;500;600;700&family=Vollkorn+SC:wght@400;600;700;900&display=swap');
@font-face {
    font-family:triOrahaFont;
    src: url('../fonts/COPRGTB.TTF');
    /*Avoiding invisible text till font is loaded*/
    font-display: swap;
}

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: triOrahaFont;
}
.nav-menu_a.active{
    border-bottom: 2px solid goldenrod;
}
.showcase{
    position: absolute;
    right: 0;
    width: 100%;
    min-height: 100vh;
    padding: 100px;
    display: flex;
    justify-content:space-between;
    align-items: center;
    background: #111;
    color: #fff;
    z-index: 2;
    transition: 0.5s;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -ms-transition: 0.5s;
    -o-transition: 0.5s;
}
.showcase.active{
    right: 300px;
}

.showcase header{
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    padding: 40px 100px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 1000;
}
.logo{
    text-transform:uppercase;
    cursor: pointer;
    width: auto;
    height: 90px;
}
.logo img{
    height:100%;
}
.logo .logo-name{
    height: 50%;
    margin-bottom: 20px;
}


.toggle{
    width: 60px;
    height: 60px;
    background-image: url(../images/hamburger.svg);
    background-repeat: no-repeat;
    background-size: 30px;
    background-position: center;
    position: relative;
    cursor: pointer;
}
.toggle.active{
    background-image: url(../images/icon-close.svg);
    background-size: 20px;
}
video{
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    object-fit: cover;
    opacity: 0.8;
}
.overlay{
    background: var(--main-color);
    /*background: rgb(199, 228, 228);*/
    /*background: darkgoldenrod;
    /*background: rgb(85, 3, 3);*/
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    mix-blend-mode:overlay;
}
.text{
    position: relative;
    z-index: 10;
    margin-top: 50px;
}
.text h2{
    font-size: 5em;
    font-weight: 800;
    line-height:1em;
    text-transform: uppercase;
}
/*Start Clean version*/
.text h3{
    font-size: 3rem;
    font-weight: 700;
    line-height: 1em;
    text-transform: uppercase;
}
.text h3 span{
    color: goldenrod;
    font-size: 3rem;
}
/*End Clean version*/
.text p{
    font-size: 1.1em;
    font-weight: 400px;
    margin: 20px 0px;
    max-width: 700px;
    padding-right: 10px;
}
.text p span{
    color: goldenrod;
    text-transform: uppercase;
    /*font-size:1.5rem;*/
    font-weight: bold;
    letter-spacing:3px;
}
.text a{
    padding: 10px 30px;
    display: inline-block;
    background-color: #fff;
    border: 2px solid white;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-family: 'Newsreader', serif;
    margin-top: 10px;
    color: #111;
    transition: 0.2s;
    -webkit-transition: 0.2s;
    -moz-transition: 0.2s;
    -ms-transition: 0.2s;
    -o-transition: 0.2s;
}
.text a:hover{
    letter-spacing: 6px;
}
.social{
    position: absolute;
    bottom: 20px;
    display: flex;
    justify-content:center;
    align-items: center;
    list-style: none;
}
.social li a{
    display: inline-block;
    margin-right: 20px;
    filter: invert(1);
    transform: scale(1);
    transition:0.5s;
    -webkit-filter: invert(1);
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    -webkit-transition:0.5s;
    -moz-transition:0.5s;
    -ms-transition:0.5s;
    -o-transition:0.5s;
}
.social li a:hover{
    transform: scale(1) translateY(-15px);
    -webkit-transform: scale(1) translateY(-15px);
    -moz-transform: scale(1) translateY(-15px);
    -ms-transform: scale(1) translateY(-15px);
    -o-transform: scale(1) translateY(-15px);
}
.copyright a {
    color:rgb(161, 149, 149);
    text-decoration: none;
    font-style: italic;
    position: absolute;
    font-size: 13px;
    bottom: 20px;
    right: 100px;
    cursor: pointer;
}
.copyright :hover{
    color: white;
}
.menu{
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgb(11, 23, 34);
}

.menu ul{
    position: relative;
    list-style: none;
}
.menu li a{
    text-decoration: none;
    font-size: 18px;
    line-height: 1.7;
    color: #111;
    color: goldenrod;
    color: white;
}
.menu li a:hover{
    color: goldenrod;
}
.flag{
    height: 22px;
    width: 33px;
    margin: 30px 5px;
    border:0px;
    cursor: pointer;
    padding: 0px;
}
.flag:hover{
    transform: scale(1.2);
    -webkit-transform: scale(1.2);
    -moz-transform: scale(1.2);
    -ms-transform: scale(1.2);
    -o-transform: scale(1.2);
}
.flag img{
    width: 100%;
    height: 100%;
    content: auto;
    object-fit: cover;
}
@media(max-width:768px){
    .logo{
        height: 60px;
    }
    .showcase, .showcase header{
        padding: 40px 20px 40px 40px;
    }
    .text p{
        font-size:0.9rem;
    }
    .text h2{
        font-size: 3em;
    }
    .text a{
        padding: 9px 18px;
        font-size:12px;
    }
    .social{
        bottom: 70px;
    }
    .copyright a{
        bottom: 40px;
    }
}
@media screen and (max-width:440px){
    .menu{
        width: 250px;
    }
    .menu li a{
        font-size: 16px;
    }
    .showcase.active{
        right: 250px;
    } 
    .text h3{
        font-size:2rem;
    }
    .text h3 span{
        font-size: 2rem;
    }
    .text p{
        font-size:0.75rem;
    }  
    .copyright a{
        right: 20px;
    }
}