/* Color Scheme
--------------------------------------------------*/
:root{
    --main-green: #3dae2b;
    --main-green--10: #eaf4e6;
    --neutral-black-80: #3f3f3f;
    --cool-gray-1c: #d9d8d6;
    --cool-gray-1c--10: #f9f9f9;
    --c192c: #eb0045
}

/*End of Color Scheme
-------------------------------------------------- */

.logo-vigilado__container{
    position: absolute;
    left: 0;
    bottom: 0;
    transform: translateY(-50%);
}

.header{
    margin: 0;
    position: relative;
}

.header__logo-container{
    width: 80%;
    margin: 15px auto;
}

.header__banner-container--big{
    background: url(https://images.ctfassets.net/ex6ts2p2j0ib/719H5I7SqTYbu11OeVj2Zk/debb2f2bd93827d2730504879e1e5fbe/main-banner--desktop.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    height: 500px;
    background-position: right;
}

.header__banner-container--small{
    width: 90%;
    margin: 0 auto;
    border-radius: 10px;
    overflow: hidden;
}

.header__tittle-container{
    width: 90%;
    margin: 1.5rem auto;
    padding: 0;
}

.header__tittle,
.header__subtitle{
    margin: 0;
    text-align: center;
    text-shadow: none;
    color: #3f3f3f;
}

.header__tittle{
    font-weight: 900;
}
.header__subtitle{
    margin-top: 1rem;
}


.layout-canvas-g {
    background-color: #FFFFFF;
    border: none;
    box-sizing: border-box;
    padding: 0px
}
.layout-canvas-g > .header, 
.layout-canvas-g > .section, 
.layout-canvas-g > .footer {
    position: relative; 
    overflow: hidden; 
    width: 100%; 
    overflow-wrap: break-word;
}
.layout-canvas-g > .section {
    margin: 10px 0px;
}
.layout-canvas-g > .section > .columns {
    box-sizing: border-box;
    overflow-wrap: break-word;
}
.layout-canvas-g > .section > .columns {
    width: 100%; 
}


.main-footer {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    background-color: var(--neutral-black-80);
}

.footer__logo-container{
    width: 67%;
    margin: 0 auto;
}

.footer__logo{
    width: 100%;
    display: block;
    margin: 0 auto;
}


/*=====================================================================================================================
=                                                      Media Query                                                    =
=====================================================================================================================*/


/* Mobile
-------------------------------------------------- */

@media only screen and (min-width: 0) and (max-width: 430px) {

    .header__logo-container{
        width: 80%;
    }
    .header__tittle{
        font-size: 2rem;
    }
    .header__subtitle{
        margin-top: 1rem;
        font-size: 1.5rem;
    }

    .mobile-hidden { 
        display: none !important; 
    }
    .responsive-td { 
        width: 100% !important; 
        display: block !important; 
        padding: 0px !important; 
    }
    .logo-vigilado__container{
        width: 1%;
    }
    .norm-list-container{
        margin: 0 10%;
    }
}

/* End of Mobile
-------------------------------------------------- */


/* Tablet
-------------------------------------------------- */
@media only screen and (min-width: 431px) and (max-width: 768px) {
    .header__logo-container{
        width: 40%;
    }
    .header__banner-container--big{
        height: 400px;
    }
    .logo-vigilado__container{
        width: 2%
    }
}
/* End of Tablet
-------------------------------------------------- */



/* Desktop
-------------------------------------------------- */
@media only screen and (min-width: 800px) {
    .header__logo-container{
        width: 25%;
        max-width: 250px;
    }
    .header__tittle-container{
        width: 70%;
        margin: 50px 5% 0 0;
        padding: 0 0 0 5%;
    }
    .header__tittle{
        text-align: left;
        font-size: 3rem;
    }
    .header__subtitle{
        text-align: left;
        margin-top: 1.5rem;
        font-size: 2.5em;
    }
    .footer__logo-container{
        width: 9%;
    }
    .logo-vigilado__container{
        width: 10px;
    }
    .norm-list-container{
        width: 70%;
        margin: 50px 5% 50px 0;
        padding: 0 0 0 5%;
    }
}

/* End of Desktop
-------------------------------------------------- */

/*==============================================  End of Media Query  ===============================================*/