﻿/*LAYOUT*/

footer {
    margin: 0;
    font-family: 'ZonaPro';
    color: #2c2c2c;
    overflow-x: hidden;
    width: 100%;
}

.social-menu ul {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(5,1fr);
    max-width: 280px;
    width: 100%;
    margin: 0 auto;
}

.social-menu {
    background-color: #1d1d1b;
    padding:10px 0;
}



.social-menu ul li a img {
    display: block;
    max-width: 40px;
    margin: 0 auto;
    width: 95%;
}

.desk-menu {
    display: grid;
    grid-template-columns: repeat(5,1fr);
    list-style: none;
    padding: 0;
    text-align: center;
    width: 95%;
    margin: 0px auto;
    margin-top: 20px;
}

.desk-menu a:not(.main-btn){
    text-decoration:none;
    color:black;
    font-weight: 600;
    cursor:pointer;
    font-size: 17px;
}

.desk-menu .main-btn{
    margin-top:9px;
}

.nl-header {
    display: grid;
    /*grid-template-columns: calc(100% - 30px) 30px;*/
    /*grid-template-columns: 130px calc(100% - 230px);*/
    align-items: center;
    padding: 20px 10px;
    position: fixed;
    width: 100%;
    top: 0;
    background-color: white;
    padding-right: 0px;
    z-index: 9;
}

    .nl-header::after {
        content: "";
        display: block;
        width: 100%;
        height: 2.5px;
        /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#e22787+0,9c388c+50,544394+100 */
        background: #e22787; /* Old browsers */
        background: -moz-linear-gradient(-45deg, #e22787 0%, #9c388c 50%, #544394 100%); /* FF3.6-15 */
        background: -webkit-linear-gradient(-45deg, #e22787 0%,#9c388c 50%,#544394 100%); /* Chrome10-25,Safari5.1-6 */
        background: linear-gradient(135deg, #e22787 0%,#9c388c 50%,#544394 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
        filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#e22787', endColorstr='#544394',GradientType=1 ); /* IE6-9 fallback on horizontal gradient */
        position: absolute;
        bottom: 0;
    }

    .nl-header img {
        display: block;
        max-width: 130px;
        width: 100%;
        margin: 0 auto;
        filter: brightness(10) invert(1);
    }

.bg-grad {
    /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#e22787+0,9c388c+50,544394+100 */
    background: #e22787; /* Old browsers */
    background: -moz-linear-gradient(-45deg, #e22787 0%, #9c388c 50%, #544394 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(-45deg, #e22787 0%,#9c388c 50%,#544394 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(135deg, #e22787 0%,#9c388c 50%,#544394 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#e22787', endColorstr='#544394',GradientType=1 ); /* IE6-9 fallback on horizontal gradient */
}

.hamburger {
    display:none;
    overflow-x: hidden;
    position: relative;
    right: 30px;
}

.hamburger .line {
    width: 100%;
    height: 3px;
    background-color: #2c2c2c;
    display: block;
    margin: 5px auto;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.hamburger:hover {
    cursor: pointer;
}


.nl-nav {
    position: fixed;
    right: -360px;
    z-index: 99;
    padding: 0px;
    width: 0px;
    top: 70px;
    background-color: white;
    box-shadow: 0px 0px 8px 2px #0000001f;
    height: 90vh;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.is-active .nl-nav {
    right: -20px;
    width: 380px;
    padding:15px;
}

.nl-nav ul {
    list-style:none;
    margin:0;
    padding:0;
}

.nl-nav ul li a{
    display:grid;
    grid-template-columns: calc(100% - 40px) 40px;
    align-items:center;
    text-decoration:none;
    font-weight:500;
}
/* ONE */
#hamburger-1.is-active .line:nth-child(2) {
    opacity: 0;
}

#hamburger-1.is-active .line:nth-child(1) {
    -webkit-transform: translateY(3px) rotate(45deg);
    -ms-transform: translateY(3px) rotate(45deg);
    -o-transform: translateY(3px) rotate(45deg);
    transform: translateY(3px) rotate(45deg);
}

#hamburger-1.is-active .line:nth-child(3) {
    -webkit-transform: translateY(-13px) rotate(-45deg);
    -ms-transform: translateY(-13px) rotate(-45deg);
    -o-transform: translateY(-13px) rotate(-45deg);
    transform: translateY(-13px) rotate(-45deg);
}

.hamburger::after {
    content: "";
    display: block;
    width: 0px;
    height: 100vh;
    background-color: #00000094;
    position: fixed;
    top: 69px;
    right: -100px;
    z-index: 1;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    opacity:0;
}

.hamburger.is-active::after {
    content: "";
    display: block;
    width: 100%;
    height: 100vh;
    right: 0px;
    top: 69px;
    z-index: 1;
    opacity:1;
}

.ft-menu {
    display: block;
    border-top: 1.6px solid darkgray;
}

.ft-menu ul {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    padding: 0;
    list-style: none;
    text-align: center;
    margin: 15px 0;
    text-transform: uppercase;
    font-size: 13px;
}

footer {
    text-align: center;
    margin: 30px 0;
    margin-bottom: 0px;
    box-shadow: 0px 0px 8px 1px lightgrey;
}

footer a{
    text-decoration:none;
    font-weight: 600;
    color:#979696;
}

.copyr {
    font-weight: 600;
    font-size: 14px;
    margin: 0;
    display: block;
    background-color: white;
    color: #db074e;
    padding: 10px 0;
}

.copyr strong{
    font-weight: 400;
}

.btn-mobile{
    display:none;
}

@media screen and (max-width:991px) {

    footer {
        position: relative;
        padding-bottom: 70px;
    }

    .btn-mobile .main-btn {
        width: 90%;
        max-width: unset;
        margin: 0 auto;
    }

    .btn-mobile {
        width: 100%;
        position: fixed;
        z-index: 8;
        bottom: 0;
        left: 0;
        padding: 20px 10px;
        box-sizing: border-box;
        background: white;
        box-shadow: 0px 0px 8px 2px #00000036;
    }

    .btn-mobile {
        display: block;
    }

    .desk-menu {
        display: none;
    }

    .hamburger {
        display: block;
    }

    .nl-header {
        grid-template-columns: calc(100% - 30px) 30px;
    }

    .main-container {
        max-width: 95%;
    }
}
/*-------------*/

@media screen and (max-width:600px) {
    .is-active .nl-nav {
        width: 100%;
    }

    .ft-menu ul {
        grid-template-columns: repeat(1,1fr);
    }

        .ft-menu ul li {
            margin: 5px 0px;
        }
}


/*TERMINA-ESTILOS-LAYOUT*/