@charset "UTF-8";
/*

@Author: Themezinho
@URL: http://www.themezinho.net

This file contains the styling for the actual theme, this
is the file you need to edit to change the look of the
theme.


// Table of contents //

	01.	GOOGLE FONTS
    02.	HEADER
    03. Footer

*/

*, html {
    top: 0;
    left: 0;
    margin: 0;
    padding: 0;
}

body {
    margin: 0;
    padding: 0;
    font-family: "Poppins", sans-serif;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    -moz-osx-font-smoothing: grayscale;
    font-size: 17px;
}

a {
    color: #0e0e0e;
    -webkit-transition: 0.25s ease-in-out;
    -moz-transition: 0.25s ease-in-out;
    -ms-transition: 0.25s ease-in-out;
    -o-transition: 0.25s ease-in-out;
    transition: 0.25s ease-in-out;
    text-decoration: none;
}

/* ----------------------------------------------------  HEADER  ----------------------------------------------------------------- */

.header-container {
    max-width: 80vw;
    margin: 25px auto;
}

.header__inner-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
}

.header__nav-container {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
}

.header__nav__item-container {
    margin: auto;
}

.header__nav__item-container > a {
    font-size: 20px;
    padding: 10px;
}


.header__nav-container > a {
    margin: auto;
}

#scroll-work {
    font-size: 20px;
    font-weight: 300;
    padding: 10px;
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px rgb(0 0 0 / 0%);
    position: relative;
    overflow: hidden;
}

#scroll-work:hover {
    cursor: pointer;
}



/*-------------------------------------------------------  EXTERNAL LINL   ------------------------------------------------------------- */

.external > span {
    /* width: 100%;
    text-align: right; */
}

.external-anchor {
    height: 100%;
    width: 100%;
    position: absolute;
}

/* ----------------------------------------------------   FOOTER  ----------------------------------------------------------------- */

.footer-section {
    background-color: rgb(19, 19, 19);
    color: white;
}

.footer-container {
    max-width: 80vw;
    margin: auto;
    padding-top: 25px;
    padding-bottom: 25px;
}

.footer__h3 {
    font-size: 26px;
    padding-top: 15px;
    padding-bottom: 15px;
}

.footer-top__links-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 25px ;
    max-width: 350px;
}

.footer__link,
.footer__link-h3 {
    font-size: 26px;
    color: white;
}

.footer__link-container {
    border-bottom: #ff5200 solid 2px;
}

.back-to-top-link {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    height: 90px;
}

.back-to-top-link > a {
    color: white;
}

#scrollTopButton {
    font-size: 18px;
}

#scrollTopButton:hover {
    cursor: pointer;
}

.footer-bottom-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

#internal {
    font-size: 26px;
    color: white;
}

.footer-logo-container {
    display: flex;
    justify-content: flex-end;
}

.footer-logo-img {
    max-width: 100px;
}



















/* SCALING WITH DEVICES */

@media only screen and (max-width: 600px){
    .header__logo-img {
        max-width: 100px;
    }

    .header__logo-container {
        display: flex;
    }

    .header__logo-container > a {
        margin: auto;
    }

    .main-home-section {
        margin-top: 50px;
    }
}

@media only screen and (max-width: 550px){
    .header__inner-container {
        grid-template-columns: 1fr;
    }
}


/* HOME PAGE */



/* WORK PAGE */



/* WORK ITEM PAGE */