@charset "utf-8";
@import url("../webfonts/Asap_Regular/stylesheet.css");
@import url("../webfonts/Alexa_Std_Regular/stylesheet.css");
@import url("../webfonts/AveriaGruesaLibre_Regular/stylesheet.css");

html {
    box-sizing: border-box;
    scroll-behavior: smooth;
}

*,
*:before,
*:after {
    box-sizing: inherit;
    margin: 0;
    padding: 0;
}

body {
    font-size: 1vw;
    background: white;
    color: rgba(40, 40, 40, 1.00);
    font-style: normal;
    font-weight: normal;
    font-family: "Asap Regular";
}

main h1 {
    font-family: "Alexa Std Regular";
}

main h2 {
    font-family: "AveriaGruesaLibre Regular";
}

a {
    text-decoration: none;
}

.padding-0 {
    padding-bottom: 0em;
}

/* Header */

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 2;
    width: 100%;
    padding: 3em 5em;
    position: fixed;
    background-color: rgba(0, 0, 0, 0.50);
}

.site-main {
    font-size: 5em;
    font-weight: bold;
    color: rgba(150, 63, 0, 1.00);
    transition-duration: .2s;
    transition-timing-function: ease;
}

.site-main:hover {
    color: rgba(120, 51, 0, 1.00);
}

.site-nav {
    text-align: center;
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(5px);
    padding-top: 20em;
}

.site-nav li {
    list-style-type: none;
    text-align: center;
    margin-top: 8em;
}

.site-nav li a {
    font-size: 5em;
    font-weight: normal;
    text-transform: uppercase;
    text-decoration: none;
    color: white;
    transition-duration: .2s;
    transition-timing-function: ease;
}

.site-nav li a:hover {
    color: rgba(139, 75, 0, 1.00);
}

/* Hamburger */

.top-animate {
    background: rgba(139, 75, 0, 1.00) !important;
    -webkit-transform: translatey(1.4em) rotate(45deg);
    transform: translatey(1.4em) rotate(45deg);
}

.mid-animate {
    opacity: 0;
}

.bottom-animate {
    background: rgba(139, 75, 0, 1.00) !important;
    -webkit-transform: translatey(-1.4em) rotate(-225deg);
    transform: translatey(-1.4em) rotate(-225deg);
}

.mid-menu {
    margin-top: 1em;
}

.bottom-menu {
    margin-top: 1em;
}

.menui {
    background: #fff;
    transition: 0.6s ease;
    transition-timing-function: cubic-bezier(.75, 0, .29, 1.01);
    width: 5em;
    height: .4em;
    border-radius: .4em;
    background-color: #fff;
}

.hamburger {
    padding: 1em 0em;
}

.icon-header {
    position: sticky;
    user-select: none;
}

/* Footer */

footer {
    font-size: 2em;
}

.footer-content {
    color: rgba(255, 255, 255, 1.00);
    background-color: dimgray;
    padding: 2.5em 2.5em 1em;
}

.wrapper {
    text-align: center;
    padding-bottom: 2.5em;
    border-bottom: rgba(75, 75, 75, 1.00) solid 1px;
    user-select: none;
}

.wrapper .icon-footer {
    position: static;
    background-color: #ffffff;
    border-radius: 50%;
    margin: 0em .5em;
    width: 2.5em;
    height: 2.5em;
    line-height: 2.5em;
    font-size: 2em;
    display: inline-block;
    align-items: center;
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition-timing-function: ease;
    transition-duration: 0.2s;
    color: #333;
    text-decoration: none;
}

.wrapper .facebook:hover,
.wrapper .facebook:hover .tooltip,
.wrapper .facebook:hover .tooltip::before {
    background-color: #3b5999;
    color: #ffffff;
}

.wrapper .instagram:hover,
.wrapper .instagram:hover .tooltip,
.wrapper .instagram:hover .tooltip::before {
    background-color: #e1306c;
    color: #ffffff;
}

.footer-description {
    padding: 1em 0em;
}

.footer-description p {
    width: 30%;
    float: left;
}

.footer-nav {
    width: 50%;
    text-align: right;
    float: right
}

.footer-nav li {
    display: inline;
    margin-left: 2em;
}

.footer-nav li a {
    color: rgba(255, 255, 255, 1.00);
    transition-timing-function: ease;
    transition-duration: 0.2s;
}

.footer-nav li a:hover {
    color: rgba(225, 225, 225, 1.00);
}

.footer-design {
    padding: 0em 2.5em;
    background-color: rgba(40, 40, 40, 1.00);
    text-transform: uppercase;
    color: rgba(150, 150, 150, 1.00);
}

.footer-design p {
    padding: 1em 0em;
    margin-right: .1em;
    display: inline-block;
    vertical-align: middle;
}

.footer-design img {
    border-radius: 50%;
    height: 2em;
    vertical-align: middle;
}

/* Tablet */

@media (min-width: 1024px) {

    header {
        padding: 2em 4em;
    }

    .site-main {
        font-size: 3em;
    }

    .icon-header {
        display: none;
    }

    .site-nav {
        display: flex;
        position: inherit;
        background: rgba(0, 0, 0, 0);
        backdrop-filter: blur(0px);
        margin: 0;
        padding: 0;
        text-align: right;
    }

    .site-nav li {
        margin: 0 0 0 5em;
    }

    .site-nav li:first-child {
        margin-left: 0;
    }

    .site-nav li a {
        font-size: 1.5em;
    }

    /* Footer */

    footer {
        font-size: 1em;
    }

    .footer-content {
        padding: 4em 4em 1em;
    }

    .wrapper {
        padding-bottom: 4em;
    }

    .wrapper .icon-footer {
        position: static;
        background-color: #ffffff;
        border-radius: 50%;
        margin: 0em 1em;
        width: 2.5em;
        height: 2.5em;
        line-height: 2.5em;
        font-size: 2em;
        display: inline-block;
        align-items: center;
        box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
        cursor: pointer;
        transition-timing-function: ease;
        transition-duration: 0.2s;
        color: #333;
        text-decoration: none;
    }

    .footer-design {
        padding: 0em 4em;
    }
}

/* Desktop */

@media (min-width: 1366px) {

    header {
        padding: 1em 3em;
    }

    .site-main {
        font-size: 2em;
    }

    .site-nav li {
        margin-left: 4em;
    }

    .site-nav li a {
        font-size: 1em;
    }

    /* Footer */

    footer {
        font-size: .75em;
    }

    .wrapper .icon-footer {
        position: static;
        background-color: #ffffff;
        border-radius: 50%;
        margin: 0em 1.5em;
        width: 2.5em;
        height: 2.5em;
        line-height: 2.5em;
        font-size: 2em;
        display: inline-block;
        align-items: center;
        box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
        cursor: pointer;
        transition-timing-function: ease;
        transition-duration: 0.2s;
        color: #333;
        text-decoration: none;
    }
}