/* Google Fonts*/
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans:wght@100;200;300;400;500;600;700;800;900&display=swap');

:root {
    --header-height: 3.5rem;

    /*Colors*/
    --first-color:hsl(200, 100%, 27%);
    --second-color: hsl(200, 100%, 40%);
    --third-color: hsl(195, 100%, 60%);
    --fourth-color: hsl(210, 100%, 19%);
    --gradient-color:   linear-gradient(90deg,
                        hsl(210, 55%, 20%),
                        hsl(192, 62%, 25%));
    --title-color: hsl(210, 52%, 20%);
    --text-color: hsl(210,24%,15%);
    --white-color: #ffffff;
    --body-color:hsl(210,55%,85%);
    
    /*Fonts*/
    /*.5rem = 8px | 1rem = 16px*/
    --default-font: "Noto Sans", sans-serif;
    --biggest-font-size: 2.25rem;
    --second-font-size: 1.25rem;
    --third-font-size: 1.05rem;
    --normal-font-size: .938rem;
    --small-font-size: .813rem;

    /*Font weight*/
    --font-thin: 200;
    --font-light: 300;
    --font-regular: 400;
    --font-medium: 500;
    --font-semi-bold: 600;

    /*z index*/
    --z-tooltip: 10;
    --z-fixed: 100;
}

@media screen and (min-width:768px){
    :root {
        --biggest-font-size: 3rem;
        --second-font-size: 1.75rem;
        --third-font-size: 1.45rem;
        --normal-font-size: 1rem;
        --small-font-size: .875rem;
    }
}

@media screen and (min-width:1024px){
    :root {
        --biggest-font-size: 4rem;
        --second-font-size: 2rem;
        --third-font-size: 1.5rem;
        --normal-font-size: 1rem;
        --small-font-size: .875rem;
    }
}

* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    font-family: var(--default-font);
    list-style: none;
    text-decoration: none;
}

body a {
    color: var(--white-color);
}

nav{
    background: var(--first-color);
    height: 80px;
    width: 100%;
    z-index: 999;
    position: absolute;
}

#menuCheck {
    display: none;
}

.menuCheckBtn {
    display: none;
    font-size: 30px;
    color: var(--white-color);
    float: left;
    width: 70px;
    height: 80px;
    cursor: pointer;
    z-index: 999;
}

#menuCheckBtnIcn {
    display:block;
    margin: 25px 0 0 20px;
}

#logoLink{
    display: block;
    height: 80px;
    float: left;
}

.logo{
    float: left;
    height: 30px;
    z-index: 999;
   
    margin: 25px 4px 25px 40px;
}

nav ul{
    float: right;
    margin-right: 25px;
    z-index: 999;
}

nav ul li{
    display: inline-block;
    margin-right: 10px;
    line-height: 80px;
    font-size: 20px;
    font-weight: var(--font-semi-bold);
    z-index: 999;
}

nav ul li a{
    position: relative;
    padding: 7px 15px;
    border-radius: 7px;
    color: var(--white-color);
    text-transform: uppercase;
    z-index: 999;
}

nav ul li a:hover{
    background-color: var(--third-color);
    transition: 0.25s;
}

nav ul li a.active {
    background-color: var(--second-color);
}

.fadeBanner {
    width: 100%;
    z-index: 1;
    top: 80px;
    height: calc(100vh - 80px);
    position: relative;
}

.fadeBannerPic {
    width: 100%;
    height: calc(100vh - 80px);
    z-index: 2;
    object-fit: cover;
    position: relative;
    animation: darkening 1s ease-in-out;
    animation-delay: 1s;
    animation-fill-mode: both;
}

@keyframes darkening {
    0% {
        filter: brightness(100%)
    }
    100% {
        filter: brightness(60%)
    }
}

.fadeBannerTextB {
    position: absolute;
    color: var(--white-color);
    z-index: 3;
    font-size: var(--biggest-font-size);
    font-weight: var(--font-light);
    width: 100%;
    top: 42%;
    left: 50%;
    transform: translate(-50%, -42%);
    text-align: center;
    animation: fadeIn 0.5s ease-in-out;
    animation-delay: 1.5s;
    animation-fill-mode: both;
}

.fadeBannerButton {
    position: absolute;
    color: var(--white-color);
    z-index: 3;
    font-size: var(--third-font-size);
    background-color: var(--first-color);
    width: fit-content;
    padding: 7px 15px;
    border-radius: 5px;
    top: 55%;
    left: 50%;
    transform: translate(-50%, -55%);
    text-align: center;
    animation: fadeIn 0.5s ease-in-out;
    animation-delay: 2.5s;
    animation-fill-mode: both;
}

.fadeBannerButton:hover {
    background-color: var(--third-color);
}

@keyframes fadeIn {
    0% {
        opacity: 0%;
    }
    100% {
        opacity: 100%;
    }
}

footer {
    background-color: var(--fourth-color);
    display: block;
    position: absolute;
    top: calc(100vh);
    width: 100vw;
}

.disclaimer {
    display: block;
    position: relative;
    width: 100vw;
    z-index: 1;
}

@media screen and (max-width:1024px){
    .menuCheckBtn {
        display: block;
    }
    .logo{
        display: block;
        margin: 25px 0 0 0;
    }
    #logoLink{
        display: block;
        float:none;
        position: absolute;
        margin-left: 50vw;
        transform: translate(-50%, 0);
        
    }
    nav ul{
        position: absolute;
        width: 100%;
        height: auto;
        background-color: var(--fourth-color);
        top: 80px;
        left: -100%;
        text-align: center;
    }
    nav ul li{
        display: block;
        margin: 0;
        line-height: 60px;
    }
    nav ul li a{
        display:block;
        padding: 0px;
        border-radius: 0px;
        color: var(--white-color);
        text-transform: uppercase;
        z-index: 999;
    }
    #menuCheck:checked ~ ul {
        left: 0;
    } 
}
