@font-face {
    font-family: 'TCCC-UnityHeadline';
    src: url('../assets/Fonts/TCCC-UnityHeadline-Light.woff2') format('woff2'),
        url('../assets/Fonts/TCCC-UnityHeadline-Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'TCCC-UnityHeadline';
    src: url('../assets/Fonts/TCCC-UnityHeadline-Medium.woff2') format('woff2'),
        url('../assets/Fonts/TCCC-UnityHeadline-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'TCCC-UnityCondensed';
    src: url('../assets/Fonts/TCCC-UnityCondensed-Medium.woff2') format('woff2'),
        url('../assets/Fonts/TCCC-UnityCondensed-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'TCCC-UnityHeadline';
    src: url('../assets/Fonts/TCCC-UnityHeadline-Bold.woff2') format('woff2'),
        url('../assets/Fonts/TCCC-UnityHeadline-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'TCCC-UnityHeadline';
    src: url('../assets/Fonts/TCCC-UnityHeadline-Regular.woff2') format('woff2'),
        url('../assets/Fonts/TCCC-UnityHeadline-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'TCCC-UnityHeadline';
    src: url('../assets/Fonts/TCCC-UnityHeadline-Black.woff2') format('woff2'),
        url('../assets/Fonts/TCCC-UnityHeadline-Black.woff') format('woff');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'TCCC-UnityText';
    src: url('../assets/Fonts/TCCC-UnityText-Bold.woff2') format('woff2'),
        url('../assets/Fonts/TCCC-UnityText-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'TCCC-UnityText';
    src: url('../assets/Fonts/TCCC-UnityText-Light.woff2') format('woff2'),
        url('../assets/Fonts/TCCC-UnityText-Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'TCCC-UnityText';
    src: url('../assets/Fonts/TCCC-UnityText-Medium.woff2') format('woff2'),
        url('../assets/Fonts/TCCC-UnityText-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'TCCC-UnityText';
    src: url('../assets/Fonts/TCCC-UnityText-Regular.woff2') format('woff2'),
        url('../assets/Fonts/TCCC-UnityText-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

* {
    font-family: 'TCCC-UnityHeadline', 'TCCC-UnityCondensed', 'TCCC-UnityText';
}

html, body { 
    scroll-behavior: smooth
}

body {
    margin: 0;
}

a {
    transition: ease-in-out .3s all;
}

.nav {
    background: #1EA34F;
    height: 63px;
    position: fixed;
    width: 100%;
    top: 0px;
    box-shadow: 2px 2px 1px #0000004D;
    z-index: 10;
}

.logo {
    padding: 10px 10px 5px;
    display: inline-block;
}

.logo img {
    width: 140px;
    height: auto;
}

#nav-icon {
    position: absolute;
    margin: 16px 30px;
    right: 0;
    top: 0;
    width: 35px;
    height: 30px;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .5s ease-in-out;
    -moz-transition: .5s ease-in-out;
    -o-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
    cursor: pointer;
}

#nav-icon span {
    display: block;
    position: absolute;
    height: 3px;
    width: 100%;
    background: #fff;
    opacity: 1;
    left: 0;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .25s ease-in-out;
    -moz-transition: .25s ease-in-out;
    -o-transition: .25s ease-in-out;
    transition: .25s ease-in-out;
}

#nav-icon span:nth-child(1) {
    top: 0px;
}

#nav-icon span:nth-child(2),
#nav-icon span:nth-child(3) {
    top: 12px;
}

#nav-icon span:nth-child(4) {
    top: 24px;
}

#nav-icon.open span:nth-child(1) {
    top: 12px;
    width: 0%;
    left: 50%;
}

#nav-icon.open span:nth-child(2) {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
}

#nav-icon.open span:nth-child(3) {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

#nav-icon.open span:nth-child(4) {
    top: 12px;
    width: 0%;
    left: 50%;
}

/* menu */

.menu {
    display: none;
    text-align: right;
}

.menu ul {
    position: absolute;
    right: 0;
    border: solid 1px #1EA34F;
    margin-top: 0;
    padding: 0;
    font-size: small;
}

input:checked~ul {
    display: block;
}

.menu-text {
    text-decoration: none;
    color: #21A64F;
}

.menu-text:hover {
    filter: opacity(0.7);
}

.menu ul li {
    display: block;
    background: white;
    margin: 0;
    padding: 10px;
    list-style: none;
    border-bottom: 1px solid #21A64F;
}

/* textos */
h1 {
    font-size: 29px;
    padding: 20px;
}

h2 {
    font-size: 20px;
    font-weight: normal;
    margin-bottom: 30px;
}

h3 {
    font-size: 21px;
    font-weight: normal;
}

h4 {
    font-size: small;
}

h5 {
    font-size: 16px;
    font-weight: lighter;
}


.content {
    text-align: center;
    margin-top: 63px;
}


.masthead {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.masthead .tns-outer {
    max-width: 100%;
    width: 100%;
}

.mh1 {
    height: 300px;
    width: 100%;
    height: 412px;
    background-size: cover;
    background-position: center;
}

.municipios {
    background-image: url("../assets/images/logo_reciclemos.png");
    height: 350px;
    width: 350px;
    background-size: cover;
    background-repeat: no-repeat;
    position: absolute;
    bottom: -100px;
    scroll-margin-top: 50px;
}

.municipios .select2  {
    width: 70% !important;
    color: #383938;
    position: absolute;
    left: 0;
    right: 0;
    top: 46%;
    margin: 0 auto;
    height: 30px;
    font-size: 14px;
}
.select2-results{
    font-size: 14px !important;
}
.section-links {
    padding: 150px 20px 20px;
    display: flex;
    justify-content: center;
}

.row {
    display: flex;
    /* flex-direction: row;
    flex-wrap: wrap; */
}

.column {
    display: flex;
    flex-direction: column;
}


.button {
    padding: 10px;
    color: white;
    font-size: 16px;
    text-decoration: none;
    margin: 0 20px;
    /* width: 160px; */
}

.btn-r {
    border: #1D80BC solid;
    background-color: #1D80BC;
}

.btn-s {
    border: #F4BA35 solid;
    background-color: #F4BA35;
}

.btn-d {
    border: #8B8A8A solid;
    background-color: #8B8A8A;
}

.btn-xq {
    border: #21A64F solid;
    background-color: #21A64F;
}

.color-down {
    margin-top: 10px;
    width: 30px;
}

.ciu {
    position: relative;
}

.logo-csr {
    position: absolute;
    z-index: 1;
    left: 0;
    right: 0;
    top: 15%;
    margin: 0 auto;
    height: 30px;
}

.ciudad .tns-outer {
    max-width: 100%;
    width: 100%;
}

.ciudad-img {
    height: 260px;
    width: 100%;
    background-size: cover;
    background-position: center;
}

.text-ciudad {
    background: #21A64F;
    text-align: center;
    color: white;
    padding: 1px;
}

.reciclamos {
    color: #1D80BC;
    padding: 20px;
    scroll-margin-top: 50px;
    position: relative;
}

.controls {
    margin: 0;
    padding: 0;
    list-style: none;
    position: absolute;
    left: 0;
    width: 100%;
    top: 50%;
    transform: translatey(-50%);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.controls img{
    width: 60px;
}

.controls:focus {
    outline: none;
}

.prev-arrow{
    transform: rotate(90deg);
}

.next-arrow{
    transform: rotate(270deg);
}

.tns-outer {
    max-width: 1000px;
    margin: 0 auto;
}

.reci-logos {
    padding: 10px;
    width: 700px;
}

.separamos {
    background-color: #F29836;
    color: white;
    padding: 20px;
    scroll-margin-top: 50px;
}

.depositamos {
    background-color: #8B8A8A;
    color: white;
    padding: 20px;
    scroll-margin-top: 50px;
}

.deposito {
    padding: 20px;
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
}

.button-depo {
    margin-top: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 15px;
}

.btn-depo {
    padding: 10px;
    background-color: white;
    color: #21A64F;
    text-decoration: none;
}

.por-que {
    color: #21A64F;
    scroll-margin-top: 50px;
}

.eco-text {
    color: #21A64F;
    font-weight: bold;
}

.ciclo {
    background-color: #21A64F;
    color: white;
    padding: 20px;
    scroll-margin-top: 50px;
}

.ali-logos {
    background: rgba(139, 138, 138, 0.3);
    display: flex;
    justify-content: center;
    padding: 20px;
    scroll-margin-top: 50px;
}

.ali-wrap {
    width: 80%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    padding-bottom: 20px;
}

.alianzas,
.organiza,
.ejecuta {
    color: #21A64F;
    padding: 20px;
    flex: 1 1 0px;
}

.ali-text {
    text-decoration: none;
}

.logo-rsu,
.logo-ril,
.logo-coca,
.logo-afac {
    padding: 10px;
}

.wrap-logos {
    display: flex;
    justify-content: center;
    align-items: center;
}


.redes {
    padding: 10px;
}

.redes-logos {
    padding: 10px;
}

.redes-text {
    text-decoration: none;
}

.logo-footer {
    padding: 10px;
    width: 120px;
}

.logo-ig,
.logo-fb,
.logo-ln,
.logo-tw,
.logo-ytb {
    width: 40px;
}

footer {
    text-align: center;
    padding: 10px;
    font-size: small;
}

hr {
    opacity: 0.3;
}

.p {
    margin-top: 15px;
}

.text-footer {
    margin-bottom: 10px;
    margin-top: 10px;
    padding: 10px;
    color: #383938;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.modal-footer {
    display: flex;
}

.footer-text {
    color: #383938;
}

.down {
    width: 50px;
    margin: 10px;
}

.arrow-down {
    display: flow-root;
    margin-top: 30px;
}

.ciclo-reci {
    width: 80%;
}

#modal{
    display: none;
    position: fixed;
    width: 100%;
    height: 100%;
    background: white;
    z-index: 8;
    top: 63px;
    overflow-y: scroll;
    max-width: 950px;
    max-height: 500px;
    margin: 0 auto;
    left: 0;
    right: 0;
    top: 80px;
}

/* MOBILE */
@media (max-width: 768px) {
    .mh1 {
        height: 200px !important;
    }

    .municipios{
        bottom: -270px;
    }

    .section-links {
        padding: 300px 20px 20px;
    }

    .ciudad-img {
        height: 220px !important;
    } 

    .logo-csr {
        top: 5%;
    }

    .ali-logos {
        flex-direction: column;
    }

    .deposito {
        flex-direction: column;
        align-items: center;
    }

    h3 {
        padding: 10px;
    }

    h5 {
        font-size: 10px;
        padding: 10px;
    }

    .tipitos {
        width: 200px;
    }

    .row {
        flex-direction: column;
    }

    .column {
        display: flex;
        flex-direction: column;
    }

    .ali-wrap {
        flex-direction: column;
        width: 100%;
    }

    .reci-logos {
        width: 100%;
    }

    .modal-footer {
        display: flex;
    }
    
    .logo-footer {
        width: auto;
    }
    
    .logo-ig,
    .logo-fb,
    .logo-ln,
    .logo-tw,
    .logo-ytb {
        width: 50px;
    }
    .ciclo {
        padding: 0px;
    }
    .popup-mail{
        font-size: 14px !important;
    }
}

/* TABLET */
@media (max-width: 991px) {
    .row {
        flex-direction: column;
    }

    .ali-logos {
        flex-direction: column;
    }

    .ali-wrap {
        width: 100%;
    }
}


/* MODAL Poli - Tyc */
.modal {
    padding: 20px;
    color: white;
    background-color: #21A64F;
    width: auto;
}

.modal-title {
    text-align: center;
}

.close {
    position: absolute;
    right: 10px;
    top: 10px;
    padding: 3px;
    cursor: pointer;
    width: 25px;
    height: 25px;
}

#backdrop{
    display: none;
    position: fixed;
    background: rgb(255 255 255 / 67%);
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.poli-links {
    text-decoration: none;
    color: white;
    word-break: break-all;
    font-weight: bold;
}

h6 {
    font-size: 20px;
    margin: 0;
    margin-left: 10px;
}


/* POP UPs A y B */
.popup {
    padding: 20px;
    color: white;
    background-color: #21A64F;
    width: auto;
    font-size: 20px;
}
.popup-links {
    text-decoration: underline;
    color: white;
    word-break: break-all;
}
.popup-mail{
    text-decoration: underline;
    color: white;
    word-break: keep-all;
    font-size: 15px;
}
.popup-txt {
    font-size: 16px;
    word-break: break-word;
}
.logo-popup {
    margin-top: 20px;
    width: 130px;
}
.close-pp {
    position: absolute;
    right: 5px;
    top: 0px;
    padding: 3px;
    cursor: pointer;
    width: 25px;
    height: 25px;
}

#popup{
    display: none;
    position: fixed;
    width: auto;
    height: auto;
    background: white;
    z-index: 8;
    top: 63px;
    max-width: 360px;
    max-height: 360px;
    margin: 0 auto;
    left: 0;
    right: 0;
    top: 255px;
}