@import "branding-new.css";
@import "STY-text.css";
@import "STY-section.css";
@import "STY-parallax.css";
@import "STY-elements-bt.css";


body {
    margin: 0;
    padding: 0;
    background-color: var(--grey-800);
    max-width: 100vw;
    display: flex;
    flex-direction: column;
    font-family: 'Inter', sans-serif;
    position: relative;
}
a {
    text-decoration: none;
    cursor: pointer;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: var(--grey-800);
}
::-webkit-scrollbar-thumb {
    background: var(--grey-700);
    border-radius: 5px;
}


/* ----------------------------------------------------------- PAGE */
.page {
    width: 100%; min-height: 100vh;
    display: flex; flex-direction: column;
}


/* ----------------------------------------------------------- HEADER*/
.header {
    width: 100%; height: 60px;
    display: flex; flex-direction: row;
    justify-content: flex-end; align-items: center;
    padding: 0px 40px 20px 20px;
    box-sizing: border-box;
}
.header-left {
    width: 50%; height: 100%;
    display: flex; flex-direction: row; justify-content: left; align-items: flex-end;
}
.header-logo {
    width: 20px; height: 20px;
    fill: var(--grey-200);
    margin: 0px 6px 2px 0px;
}

.header-right {
    width: 50%; height: 100%;
    display: flex; flex-direction: row; justify-content: right; align-items: flex-end;
}



/* ----------------------------------------------------------- FOOTER*/
.footer {
    width: 100%;
    background-color: var(--grey-800);
    display: flex; flex-direction: column; justify-content: center; align-items: center;
    padding: 80px 20px 40px 20px;
    box-sizing: border-box;
}
.footer-nav {
    width: 100%;
    display: flex; flex-direction: row; justify-content: center; align-items: center;
    margin-bottom: 20px;
}

/* ----------------------------------------------------------- @MEDIA*/


@media only screen and (max-width: 800px) {
    .footer-nav {
        flex-direction: column;
    }
    .text-footer-nav {
        margin: 0px 0px 0px 0px;
    }
    .header {padding: 0px 20px 20px 20px;}
    .header-left {width: 40%;}
    .header-right {width: 60%;}
}
@media only screen and (max-width: 600px) {
    .header {padding: 0px 10px 20px 10px;}
    .header-logo {width: 18px; height: 18px;}
}
