@import url('https://fonts.googleapis.com/css2?family=Lato:wght@300;400;700&display=swap');

@font-face {
    font-family: 'Gilroy-ExtraBold';
    src: url("../assets/fonts/Gilroy-ExtraBold.ttf");
}

@font-face {
    font-family: 'Gilroy-Medium';
    src: url("../assets/fonts/Gilroy-Medium.ttf");
}

:root{
    --bg-color: #222222;
    --primary-color: #ffffff;
    --secondary-color: #E3CF88;
    --dark-accent-color: #3e3e3e;
    --primary-fade-color: #ffffff6b;
    --alt-text-font: 'Lato' , sans-serif ;
}

*{
    color: var(--primary-color);
    scroll-behavior: smooth;
    cursor: url("../assets/images/cursor.svg"), auto;
}

html,body{
    height: 100%;
    width: 100%;
    margin: 0;
    padding: 0;
    background: var(--bg-color);
}

.overlay_loading{
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: fixed;
}



.wrapper{
    height: 100%;
    min-width: 100%;
    position: absolute;
    display: none;
    justify-content: center;
    align-items: center;
    position: fixed;
    gap: 100px;
    /* padding: 10px 50px; */
}

.wrapper > section{
    max-width: 90vw;
    width: 90vw;
    height: 95%;
}

.header{
    height: 10%;
}

.left_header{
    width: 15%;
    height: 100%;
    display: flex;
    align-items: center;
}

.left_header> .section_title{
    color: var(--secondary-color);
    transform: rotateZ(270deg);
}

.large_action_text{
    font-family: "Gilroy-ExtraBold";
    font-size: 40px;
}

.large_centered_text{
    font-family: "Gilroy-ExtraBold";
    font-size: 60px;
}

.large_action_text:hover{
    transition: 350ms;
    cursor: url("../assets/images/cursor_action.svg"), auto;
    text-shadow: 0px -38px var(--dark-accent-color),
    0px 38px var(--secondary-color);
}

.thin_text{
    font-family: "Lato" , sans-serif;
    font-weight: 300;
    color: var(--primary-color);
}

.large_thin_text{
    font-family: "Lato" , sans-serif;
    font-weight: 300;
    color: var(--primary-color);
    font-size: 48px;
    margin-bottom: 10px;
}

.large_text{
    font-family: "Gilroy-Medium";
    font-weight: 300;
    font-size: 48px;
}

a>*{
    cursor: url("../assets/images/cursor_action.svg"), auto;
}

.hvy_accent_text{
    font-family: "Gilroy-ExtraBold";
    color: var(--secondary-color);
    text-transform: uppercase;
    font-size: 16px;
}

.section_title{
    font-family: "Gilroy-ExtraBold";
}


.section_title_large{
    font-family: "Gilroy-ExtraBold";
    font-size: 48px;
}

.section_title_large> span{
    font-weight: 300;
    text-decoration: underline;
    color: var(--secondary-color);
}


.innactive_action_text{
    color: var(--primary-fade-color);
}

.active_action_text{
    color: var(--primary-color);
}


.mb_innactive_action_text{
    color: var(--primary-fade-color);
    transition: 200ms;
    border-bottom: 2px solid var(--primary-fade-color) !important;
}

.mb_active_action_text{
    color: var(--primary-color);
    transition: 200ms;
    border-bottom: 2px solid var(--secondary-color) !important;
}


.wrapper_mobile{
    display: none;
    flex-direction: column;
    justify-content: center;
    background: linear-gradient(180deg, var(--secondary-color),var(--bg-color),var(--bg-color),var(--bg-color),var(--bg-color),var(--bg-color),var(--bg-color),var(--bg-color),var(--bg-color),var(--bg-color),var(--bg-color),var(--bg-color),var(--bg-color),var(--bg-color),var(--bg-color),var(--bg-color),var(--bg-color),var(--bg-color),var(--bg-color), var(--bg-color));
    gap: 175px;
}



.mb_niche{
    font-family: "lato", sans-serif;
    font-weight: 600;
    font-size: 24px;
}

.mb_section_tittle{
    text-align: left;
    font-size: 24px;
    font-family: "Gilroy-ExtraBold";
    color: var(--secondary-color);
}



@media screen and (max-width: 991px) {

    html,body{
        min-height: 100vh;
    }

    .wrapper{
        display: none;
        /* transform: none !important;
        flex-direction: column;
        min-height: 100% !important;
        height: auto;
        position: relative;
        gap: 220px; */
        
    }

    .wrapper>section{
       min-height: 100% !important;
    }

    .large_action_text{
        font-size: 26px;
    }

    .large_action_text:hover{
        text-shadow: none;
    }

    .large_text{
        font-size: 30px;
    }

    .large_thin_text{
        font-size: 30px;
    }

    .header>img{
        max-width: 200px;
    }
}