﻿@import url('//fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap');

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

/*
    Codigo de Colores del nuevo logo:
    #9c2343     #e4c7ce     #be6f82     #cc8c9c
    #cc949c     #940a2d     #b4546c     #b44e64 
*/

/* custom scroll bar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #888;
}

    ::-webkit-scrollbar-thumb:hover {
        background: #555;
    }

body {
    font-family: 'Poppins', sans-serif;
    background: #fff;
}
/*-------------------*/
/* ---- Menu ---- */
.wrapper {
    top: 0;
    position: fixed;
    width: 100%;
    z-index: 90;
    background: #C2BA98;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .wrapper .menu {
        position: relative;
        display: flex;
        max-width: calc(100% - 200px);
        margin: 0 auto;
        height: 100px;
        align-items: center;
        justify-content: space-between;
    }

.menu .main-cont {
    display: flex;
    align-items: center;
}

    .menu .main-cont .links {
        margin-left: 10px; /* ------------------------------------------------------------------------- */
        display: flex;
    }

.main-cont .logo {
    text-decoration: none;
    max-width: 300px; /* -------------------------------------------------------------------------------- */
    margin: auto 25px;
}

    .main-cont .logo img {
        max-width: 100%;
    }

.main-cont .links li {
    list-style: none;
    line-height: 100px;
}

    .main-cont .links li a,
    .main-cont .links li label {
        color: #636569;
        font-size: 18px;
        font-weight: 500;
        padding: 9px 17px;
        border-radius: 5px;
        transition: all 0.3s ease;
        text-decoration: none;
    }

    .main-cont .links li label {
        display: none;
    }

        .main-cont .links li a:hover,
        .main-cont .links li label:hover {
            background-color: #A6A6A8;
        }

.wrapper .search-icon,
.wrapper .menu-icon {
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    line-height: 100px;
    width: 70px;
    text-align: center;
}

.wrapper .menu-icon {
    display: none;
}

.wrapper #show-search:checked ~ .search-icon i::before {
    content: "\f00d";
}

.wrapper .search-box {
    position: absolute;
    height: 100%;
    max-width: calc(100% - 50px);
    width: 100%;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
}

.wrapper #show-search:checked ~ .search-box {
    opacity: 1;
    pointer-events: auto;
}

.search-box input {
    width: 100%;
    height: 100%;
    border: none;
    outline: none;
    font-size: 17px;
    color: #fff;
    background: #171c24;
    padding: 0 100px 0 15px;
}

.search-box .go-icon {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    line-height: 90px;
    width: 70px;
    background: #171c24;
    border: none;
    outline: none;
    color: #fff;
    font-size: 20px;
    cursor: pointer;
}

.wrapper input[type="checkbox"] {
    display: none;
}

/*Dropdown menu code*/
.main-cont .links ul {
    position: absolute;
    background: #D6D1C4;
    top: 80px;
    z-index: 92;
    opacity: 0;
    visibility: hidden;
}

.main-cont .links li:hover > ul {
    top: 100px;
    opacity: 1;
    visibility: visible;
    transition: all 0.3s ease;
    
    
    max-height: 80vh;
    overflow-y: auto;
}

.main-cont .links ul li a {
    display: block;
    line-height: 30px;
    border-radius: 0px !important;
}

.main-cont .links ul ul {
    position: absolute;
    top: 0;
    right: calc(-100% + 8px);
}

.main-cont .links ul li {
    position: relative;
}

    .main-cont .links ul li:hover ul {
        top: 0;
    }

/*Responsive code*/
/*@media screen and (max-width: 1250px){*/
@media screen and (max-width: 1450px) {
    .wrapper .menu {
        max-width: 100%;
        padding: 0 20px;
    }

    .menu .main-cont .links {
        margin-left: 30px;
    }

    .main-cont .links li a {
        padding: 8px 13px;
    }

    .wrapper .search-box {
        max-width: calc(100% - 100px);
    }

        .wrapper .search-box input {
            padding: 0 100px 0 15px;
        }
}

/*@media screen and (max-width: 1156px){*/
/*@media screen and (max-width: 985px){*/
/*@media screen and (max-width: 1192px){*/
@media screen and (max-width: 1214px) {
    .wrapper {
        background: #C2BA98;
    }

        .wrapper .menu-icon {
            display: block;
        }

        .wrapper #show-menu:checked ~ .menu-icon i::before {
            content: "\f00d";
        }

    .menu .main-cont .links {
        display: block;
        position: fixed;
        background: #D6D1C4;
        width: 100%;
        height: 100%;
        /*top: 11.2em;*/
        top: 100px;
        left: -100%;
        margin-left: 0;
        overflow-y: auto;
        padding-bottom: 100px;
        transition: all 0.3s ease;
        z-index: 50;
    }

    .menu #show-menu:checked ~ .main-cont .links {
        left: 0%;
    }

    .main-cont .links li {
        margin: 15px 20px;
    }

        .main-cont .links li a,
        .main-cont .links li label {
            line-height: 40px;
            font-size: 20px;
            display: block;
            padding: 8px 18px;
            cursor: pointer;
        }

            .main-cont .links li a.desktop-links {
                display: none;
            }

    /*Dropdown resposive*/
    .main-cont .links ul,
    .main-cont .links ul ul {
        position: static;
        opacity: 1;
        visibility: visible;
        background: none;
        max-height: 0px;
        overflow: hidden;
    }

    .main-cont .links #show-ayuntamiento:checked ~ ul,
    .main-cont .links #show-transparencia:checked ~ ul,
    .main-cont .links #show-tramites:checked ~ ul,
    .main-cont .links #show-atencion:checked ~ ul {
        max-height: 100vh;
    }

    .main-cont .links ul li {
        margin: 7px 20px;
    }

        .main-cont .links ul li a {
            font-size: 18px;
            line-height: 30px;
            border-radius: 5px !important;
        }
}

@media screen and (max-width: 400px) {
    .wrapper .menu {
        padding: 0 10px;
    }

    .main-cont .logo a {
        font-size: 27px;
    }

    .wrapper .search-box {
        max-width: calc(100% - 70px);
    }

        .wrapper .search-box .go-icon {
            width: 30px;
            right: 0;
        }

        .wrapper .search-box input {
            padding-right: 30px;
        }
}
/* -------------- */
.decoration {
    top: 100px;
    position: fixed;
    /*background: gray;*/
    background: linear-gradient(90deg, black, gray);
    width: 100%;
    height: 10px;
    z-index: 30;
}

.site-container {
    margin: 150px 250px 0;
}

@media screen and (max-width: 1250px) {
    .site-container {
        margin: 150px 150px 0;
    }
}

@media screen and (max-width: 985px) {
    .site-container {
        margin: 150px 50px 0;
    }
}

.titulo {
    width: 100%;
    padding: 10px;
    font-size: 20px;
    text-align: center;
    font-weight: bold;
    color: #636569;
    background: #C2BA98;
    border-radius: 5px;
    /*text-transform: uppercase;*/
}

/*Titulo Decorado*/
.container-tit {
    text-align: center;
}

    .container-tit h1 {
        display: inline-block;
        position: relative;
        text-align: center;
        color: #636569;
        font-size: 36px;
    }

        .container-tit h1::after, .container-tit h1::before {
            content: '';
            position: absolute;
            width: 120px;
            height: 3px;
            background-color: #C2BA98;
            top: 0.6em;
        }

        .container-tit h1::before {
            left: -140px;
        }

        .container-tit h1::after {
            right: -140px;
        }
/*--------------*/

.info-atlixco {
    border-radius: 5px;
    margin-bottom: 50px;
    display: flex;
    flex-direction: row;
}

.ctn-presidenta {
    background-image: url('../Images/Recursos/semblanza.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
}

    .ctn-presidenta img {
        width: 100%;
        border-radius: 5px 5px 0 0;
        top: 0;
    }

.ctn-presidenta-info {
    font-weight: bold;
    margin: 1.5em auto 0;
    text-align: center;
}

.btn {
    background: #C2BA98;
    color: #636569;
    text-decoration: none;
    font-weight: bold;
    margin: 2em auto;
    padding: 15px;
    border-radius: 5px;
}

.ctn-Atl {
    display: grid;
    grid-template-columns: 50% 50%;
    background-color: rgba(255,255,255,0.7);
    backdrop-filter: blur(20px);
    margin-left: 10px;
    border-radius: 5px;
}

.ctn-Atl-img {
    /*width: 50%;*/
    display: flex;
    align-items: center;
    align-content: center;
    justify-content: center;
}

    .ctn-Atl-img img {
        max-width: 75%;
        border-radius: 5px;
    }

.ctn-Atl-info {
    display: flex;
    flex-direction: column;
    /*justify-content: center;*/
    align-items: center;
    padding: 25px;
}

    .ctn-Atl-info h1 {
        text-align: center;
        font-size: 36px;
        color: #636569;
        text-transform: uppercase;
    }

    .ctn-Atl-info hr {
        color: #C2BA98;
        width: 25%;
        margin-bottom: 1em;
        border-radius: 5px;
        border: 3px solid;
    }

    .ctn-Atl-info p {
        text-align: justify;
        margin-bottom: .5em;
    }
/*------- Nuevo Contenedor ------*/
.atlixco-info {
    display: flex;
    flex-direction: column;
    margin-bottom: 50px;
    height: auto;
}

.atlixco-visitanos {
    display: inline-block;
    position: relative;
    margin-top: 3em;
    padding: 0;
}

    .atlixco-visitanos img {
        width: 100%;
        height: auto;
        border-radius: 5px;
    }

    .atlixco-visitanos .btn-visitanos {
        position: absolute;
        bottom: 1rem;
        left: 4rem;
        margin: 0;
        padding: 0;
    }

        .atlixco-visitanos .btn-visitanos img {
            width: 250px;
            height: auto;
        }

.atlixco-info-p {
    border-radius: 5px;
    padding: 15px;
    background-color: #fff;
    backdrop-filter: blur(20px);
    height: calc(100% - 6px);
}

    .atlixco-info-p h1 {
        text-align: center;
        font-size: 36px;
        color: #636569;
        text-transform: uppercase;
        border-bottom: 5px solid #C2BA98;
        margin-bottom: .3em;
    }

    .atlixco-info-p p {
        text-align: justify;
        margin-bottom: 10px;
    }

/* Nuevo contenedor info presidenta */
.info-presidenta {
    margin-bottom: 50px;
    padding: 20px;
    background-color: #fff;
    border-radius: 5px;
    display: grid;
    grid-template-columns: 20% 80%;
}

.foto-presidenta {
    width: 100%;
    height: 100%;
    background-image: url('../Images/Recursos/semblanza.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    margin: auto;
    display: flex;
    flex-direction: column;
    border-radius: 5px;
}

    .foto-presidenta img {
        width: 100%;
        margin: 0 auto;
        border-radius: 5px;
    }

    .foto-presidenta h3 {
        margin-top: .7em;
    }

    .foto-presidenta h4 {
        margin-bottom: 4.2em;
    }

    .foto-presidenta h3, .foto-presidenta h4 {
        text-align: center;
    }

.texto-presidenta {
    margin-left: 20px;
    padding: 20px;
    /*border-left: 2px solid #C2BA98;*/
}

    .texto-presidenta .slogan-presidenta {
        text-align: center;
        color: #C2BA98;
        font-size: 25pt;
        font-weight: 700;
    }

    .texto-presidenta p {
        text-align: justify;
        margin: 15px 0 10px 0;
    }

    .texto-presidenta .firma-presidenta {
        width: 170px;
        float: right;
    }

/*-----------------------------*/

.transparencia {
    border: 2px solid white;
    border-radius: 5px;
    margin-bottom: 50px;
    display: grid;
    grid-template-columns: repeat(2, 50%);
    background-color: rgba(255,255,255,0.7);
    backdrop-filter: blur(20px);
}

.transparencia-links {
    width: 100%;
    /*background-image: url('../Images/Recursos/FondoTrans.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;*/
    background-color: #f8f8f8;
}

    .transparencia-links h1 {
        background-color: #C2BA98;
        font-size: 1.5rem;
        text-align: center;
        color: #636569;
        padding: 5px;
        border-radius: 5px;
    }

    .transparencia-links ul {
        color: #A6A6A8;
        list-style: none;
        padding: 15px;
    }

        .transparencia-links ul li {
            border-left: #C2BA98 4px solid;
            border-radius: 5px;
            margin: .5em 0;
            padding: 5px;
        }

            .transparencia-links ul li a {
                text-decoration: none;
                color: #636569;
                padding: 10px;
            }

            .transparencia-links ul li:hover {
                background-color: #A6A6A8;
                color: #636569;
                transition: all 0.2s ease-in-out;
                width: 100%;
                opacity: 0.9;
            }

            .transparencia-links ul li a i {
                margin-left: 5px;
                color: #C2BA98;
            }

.transparencia-sites {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

    .transparencia-sites a {
        margin: 2em;
    }

        .transparencia-sites a img {
            width: 100%;
        }

/*----- Footer -----*/
footer {
    /*background-image: url('../Images/Recursos/Fondo.png');
    background-repeat: no-repeat;
    background-size: cover;*/
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    padding: 60px 0;
    background-color: #A6A6A8;
}


.pie-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0 50px;
}

    .pie-left .logo-ayto {
        width: 450px;
        max-width: 100%;
    }

    .pie-left .logo-slogan {
        margin-top: 0.5em;
        width: 250px;
        max-width: 100%;
    }

    .pie-left p {
        text-align: center;
        margin: 3px 0;
    }

.btn_ubicacion {
    text-decoration: none;
    padding: 5px 10px;
    background-color: #C2BA98;
    color: #636569;
    border-radius: 5px;
    margin: 30px auto;
    font-weight: bold;
}

    .btn_ubicacion:hover {
        color: #A6A6A8;
    }

.pie-center {
    display: flex;
    flex-direction: column;
    border-left: 2px solid #C2BA98;
    padding: 0 20px;
}

    .pie-center h2 {
        color: #D6D1C4;
    }

    .pie-center p {
        text-align: justify;
        margin: 5px 0;
    }

    .pie-center a {
        font-size: 20px;
        font-weight: bold;
        text-decoration: none;
        color: #D6D1C4;
        margin: 5px 0;
        cursor: pointer;
    }

        .pie-center a i {
            margin-right: 7px;
        }

    .pie-center .pie-redes a {
        color: #000;
    }

.pie-right {
    padding: 0 20px 0 20px;
}

    .pie-right .num_emergencia {
        margin: 0 0 10px 0;
    }

        .pie-right .num_emergencia a {
            font-size: 24px;
            font-weight: bold;
            color: #D6D1C4;
            text-decoration: none;
        }

            .pie-right .num_emergencia a i {
                margin-right: 7px;
                border: 2px solid #D6D1C4;
                width: 35px;
                height: 35px;
                border-radius: 25px;
                text-align: center;
                padding-top: 4px;
            }

.footer-links {
    width: 100%;
    padding: 20px;
    background-color: #c2c2c2;
    border-left: 60px solid #dcdcdc;
    border-right: 60px solid #dcdcdc;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    text-align: center;
}

    .footer-links a {
        font-weight: 700;
        color: #000;
        font-size: 16px;
        text-decoration: none;
        /*margin: 0 auto 0 0;*/
        margin: 0 auto;
        cursor: pointer;
    }

        .footer-links a i {
            margin-right: 5px;
        }
/*------------------*/
/*boton hacia arriba*/
.go-top-ctn {
    position: fixed;
    width: 60px;
    height: 60px;
    right: 0px;
    bottom: 140px;
    z-index: -1;
}

.go-top-btn {
    width: 0rem;
    height: 0rem;
    background: #C2BA98;
    border-radius: 50%;
    cursor: pointer;
    transition: 0.2s;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
}

    .go-top-btn i {
        position: absolute;
        font-size: 1.7rem;
        top: 48%;
        left: 50%;
        transform: translate(-50%, -50%) scale(0);
        color: #636569;
        transition: 0.2s;
    }

.show-go-top {
    z-index: 10;
}

    .show-go-top .go-top-btn {
        animation: popup 0.3s ease-in-out;
        width: 60px;
        height: 60px;
        z-index: 11;
    }

    .show-go-top i {
        transform: translate(-50%, -50%) scale(1);
    }

@keyframes popup {
    0% {
        width: 0rem;
        height: 0rem;
    }

    50% {
        width: 60px;
        height: 60px;
    }

    100% {
        width: 60px;
        height: 60px;
    }
}
/*------------------*/
.float-button {
    position: fixed;
    width: 60px;
    height: 60px;
    right: 30px;
    bottom: 30px;
    background-color: #25d366;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    font-weight: bold;
    color: #fff;
    /*box-shadow: 2px 2px 3px #999;*/
    text-decoration: none;
    z-index: 100;
}

    .float-button i {
        margin-top: 15px;
    }

    .float-button:hover {
        color: #25d366;
        background-color: #fff;
        transition: all 0.3s ease;
    }
/*------------------*/

/*------------------*/
.float-button-maps {
    position: fixed;
    width: 60px;
    height: 60px;
    right: 30px;
    bottom: 100px;
    background-color: #fff;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    font-weight: bold;
    color: #fff;
    text-decoration: none;
    z-index: 100;
}

    .float-button-maps img {
        margin-top: 15px;
        margin: .2em auto;
    }

    .float-button-maps:hover {
        color: #25d366;
        background-color: #fff;
        transition: all 0.3s ease;
    }
/*------------------*/

/*--- Modal Popup ---*/
.button {
    background-color: #C2BA98;
    color: #636569;
    border: 0;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    font-size: 14px;
    padding: 10px 25px;
    cursor: pointer;
}

.modal-container {
    display: flex;
    background-color: rgba(0,0,0,0.3);
    align-items: center;
    justify-content: center;
    position: fixed;
    pointer-events: none;
    opacity: 0;
    top: 0;
    left: 0;
    height: 100vh;
    width: 100vw;
    transition: opacity 0.3s ease;
    z-index: 1001;
}

.show {
    pointer-events: auto;
    opacity: 1;
}

.modal {
    background-color: #fff;
    width: 900px;
    max-width: 90%;
    padding: 30px 50px;
    border-radius: 5px;
    box-shadow: 0 2px 4px rbga(0,0,0,0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    /*text-align: center;*/
}

    .modal img {
        width: 30%;
        margin: .5em auto;
    }

    .modal h1 {
        text-align: center;
        margin: 0;
    }

.modal-content {
    margin: .7em auto;
    /*height: 25vh;
    overflow-y: auto;*/
}

.modal-content img{
    width: 100%;
    height: auto;
    margin: auto;
}

.modal p {
    opacity: 0.7;
    font-size: 14px;
    text-align: justify;
}

.modal-footer {
    background: #C2BA98;
    width: 100%;
    border-radius: 5px;
    padding: 10px;
    margin: .7em auto;
}

    .modal-footer p {
        text-align: center;
        font-weight: bold;
        color: #636569;
    }

/*------ Diseño Dependencias ------*/
.container-sec {
    margin-top: 1em;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
}

    .container-sec a {
        margin: 0;
        padding: 0;
        text-decoration: none;
        color: #000;
    }

.card-sec {
    border-top: 5px solid #999;
    width: 400px;
    max-width: 90%;
    height: 160px;
    padding: 5px;
    margin: .5em;
    background: #F8F8F8;
    display: grid;
    grid-template-columns: 100px 300px;
}

    .card-sec .card-icon {
        font-size: 36px;
        background: #fff;
        width: 72px;
        height: 72px;
        margin: auto 10px;

        display: flex;
        justify-content: center;
        align-items: center;
        border-radius: 36px;
    }

        .card-sec .card-icon i {
            color: #bb945b;
        }

    .card-sec .card-info {
        margin: auto 0;
        border-left: 3px solid #811A1A;
        padding: 10px;
        height: 100px;
    }

        .card-sec .card-info h4 {
            margin: 0;
            padding: 0;
        }

        .card-sec .card-info i {
            color: #BB945B;
            font-weight: bold;
            margin-left: 10px;
        }
/*-----------------------*/

/*------ Blog card ------*/
.blog-card {
    display: flex;
    flex-direction: column;
    margin: 1.5rem auto;
    box-shadow: 0 3px 7px -1px rgba(0, 0, 0, .1);
    /*margin-bottom: 1.6%;*/
    background: #fff;
    line-height: 1.4;
    font-family: sans-serif;
    border-radius: 5px;
    overflow: hidden;
    z-index: 0;
    justify-content: center;
    align-content: center;
    /*height: 340px;
    width: 540px;
    height: 180px;*/
    width: 540px;
    max-width: 90%;
}

    .blog-card a {
        color: inherit;
    }

    .blog-card:hover .photo {
        /*transform: scale(1.3) rotate(3deg);*/
        transform: rotate(3deg);
    }

    .blog-card .meta {
        position: relative;
        z-index: 0;
        height: 200px;
    }

    .blog-card .photo {
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        background-size: cover;
        background-position: center;
        transition: transform 0.2s;
        width: 180px;
        height: auto;
        margin: 0 auto;
    }

    .blog-card .details, .blog-card .details ul {
        margin: auto;
        padding: 0;
        list-style: none;
    }

    .blog-card .details {
        position: absolute;
        top: 0;
        bottom: 0;
        left: -100%;
        margin: auto;
        transition: left 0.2s;
        background: rgba(0, 0, 0, .6);
        color: #fff;
        padding: 10px;
        width: 100%;
        font-size: 0.9rem;
    }

        .blog-card .details a {
            /*text-decoration: dotted underline;*/
            text-decoration: none;
        }

        .blog-card .details ul li {
            display: inline-block;
        }

        .blog-card .details .author:before {
            font-family: FontAwesome;
            margin-right: 10px;
            content: "\f1fa";
        }

        .blog-card .details .date:before {
            font-family: FontAwesome;
            margin-right: 10px;
            content: "\f041";
        }

        .blog-card .details .tags ul:before {
            font-family: FontAwesome;
            content: "\f095";
            margin-right: 10px;
        }

        .blog-card .details .tags li {
            margin-right: 2px;
        }

            .blog-card .details .tags li:first-child {
                margin-left: -4px;
            }

    .blog-card .description {
        padding: 1rem;
        background: #fff;
        position: relative;
        z-index: 1;
        /*margin-top: 2.5em;*/
        /*padding-top: 2.5em;*/
    }

        .blog-card .description h1 {
            line-height: 1;
            margin: 0;
            font-size: 1.7rem;
            text-align: center;
        }

        .blog-card .description h2 {
            font-size: 1rem;
            font-weight: 300;
            text-transform: uppercase;
            color: #a2a2a2;
            margin-top: 5px;
            text-align: center;
        }

        .blog-card .description p {
            padding: 15px 0;
            text-align: center;
        }

            .blog-card .description p a {
                color: #fff;
            }

        .blog-card .description .read-more {
            text-align: right;
        }

            .blog-card .description .read-more a {
                color: #5ad67d;
                display: inline-block;
                position: relative;
            }

                .blog-card .description .read-more a:after {
                    content: "\f061";
                    font-family: FontAwesome;
                    margin-left: -10px;
                    opacity: 0;
                    vertical-align: middle;
                    transition: margin 0.3s, opacity 0.3s;
                }

                .blog-card .description .read-more a:hover:after {
                    margin-left: 5px;
                    opacity: 1;
                }

    .blog-card p {
        position: relative;
        margin: 1rem 0 0;
    }

        .blog-card p:first-of-type {
            margin-top: 1.25rem;
        }

    /*.blog-card p:first-of-type:before {
    content: "";
	position: absolute;
	height: 5px;
	background: #5ad67d;
	width: 35px;
	top: -0.75rem;
	border-radius: 3px;
}*/

    .blog-card:hover .details {
        left: 0%;
    }

@media (min-width: 640px) {
    .blog-card {
        flex-direction: row;
        max-width: 700px;
    }

        .blog-card .meta {
            flex-basis: 40%;
            height: auto;
        }

        .blog-card .description {
            flex-basis: 60%;
        }

            .blog-card .description:before {
                transform: skewX(-3deg);
                content: "";
                background: #fff;
                width: 30px;
                position: absolute;
                left: -10px;
                top: 0;
                bottom: 0;
                z-index: -1;
            }

        .blog-card.alt {
            flex-direction: row-reverse;
        }

            .blog-card.alt .description:before {
                left: inherit;
                right: -10px;
                transform: skew(3deg);
            }

            .blog-card.alt .details {
                padding-left: 25px;
            }
}
/*------ --------- ------*/
/*------ Diseño Secretarias Individual ------*/
.container-sec-qs {
    /*
        background-image: url('../Images/Recursos/Fondo_flor.png');
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
    */
    background: #f8f8f8;
    padding: 15px;
    border-radius: 5px;
    display: flex;
    flex-direction: row;
    margin: 1em 0;
}

    .container-sec-qs div {
        /*flex: auto;*/
        flex: 30%;
        margin: 0 20px;
    }

        .container-sec-qs div p {
            text-align: justify;
            font-size: 15px;
            margin-top: 10px;
        }

        .container-sec-qs div ul {
            font-size: 15px;
            text-align: justify;
        }

.titulo-sec {
    font-size: 28px;
    color: #636569;
    text-align: center;
}

.titulo-sec-hr {
    color: #C2BA98;
    width: 25%;
    border-radius: 5px;
    border: 3px solid;
    margin: auto;
}

.container-sec-or {
    border-radius: 5px;
    background: #F8F8F8;
    margin: 1.5em 0;
}

    .container-sec-or img {
        width: 100%;
        border-radius: 5px;
    }
/*-------------------------------------------*/
/*------ Menu Secretarias ------*/
.sec-nav {
    background: #171c24;
    border-radius: 36px;
    color: #fff;
    margin-bottom: 1.7em;
}

    .sec-nav ul {
        display: flex;
        list-style: none;
        width: 100%;
        justify-content: center;
    }

        .sec-nav ul li {
            margin: 20px;
            padding: 5px;
        }

            .sec-nav ul li a {
                text-decoration: none;
                color: #fff;
                font-weight: bold;
            }
/*------------------------------*/
/*------ Anclas ------*/
section[id] {
    scroll-margin-top: 120px;
}
/*--------------------*/

/*------ Fondos ------*/
/*Pagina Principal*/
.fondo-1 {
    /*background-image: url('../Images/Recursos/imgAtlixco.jpg');*/
    background-image: url('../Images/Recursos/Declaracion_sintitulo.jpg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    overflow: auto;
}

/*Trabajo*/
.fondo-2 {
    background-image: url('../Images/Recursos/FondoTeclado.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    overflow: auto;
}
/*--------------------*/
/*------ Contenedores ------*/
/*.container-gral{
    width: 100%;
    height: 100%;
    padding: 150px 15% 50px 15%;
}*/

.container-gral {
    width: 1200px;
    height: auto;
    margin: 150px auto 10px auto;
}

.container-tramites {
    width: 100%;
    height: 100%;
    margin-top: 110px;
    display: flex;
    align-content: center;
    justify-content: center;
}

.search-container {
    width: 60%;
    height: auto;
    margin: 4em auto;
    border-radius: 10px;
    background: rgba(250, 250, 250, 0.5);
    padding: 40px 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
}

    .search-container label {
        font-size: 20pt;
        font-weight: bold;
        padding: 15px;
    }

    .search-container h2 {
        text-align: center;
        font-size: 32px;
    }

        .search-container h2 span {
            font-weight: bold;
        }

.box {
    width: 80%;
    height: 50px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    /*background-color: #ddb5b5;*/
    background-color: #BF6A7E;
    margin: auto;
}

    .box > i {
        font-size: 20px;
        /*color: #777;*/
        color: #fff;
    }

    .box > input {
        flex: 1;
        height: 40px;
        border: none;
        outline: none;
        font-size: 18px;
        padding-left: 10px;
        /*background-color: #ddb5b5;*/
        background-color: #BF6A7E;
    }

        .box > input::placeholder {
            color: #fff;
            font-weight: bold;
        }

        .box > input:focus {
            color: #fff;
        }

.btnSearch {
    background-color: rgb(107,3,31);
    padding: 15px 40px;
    border-radius: 50px;
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
    width: 40%;
    margin: 0 30%;
}

.validationMessage {
    color: red;
    font-size: 18pt;
    font-weight: bold;
}

.container-tramites-busqueda {
    width: 80%;
    margin: 1.5em auto;
    padding: 2em;
    background: rgba(250, 250, 250, 0.5);
    border-radius: 5px;
    height: 640px;
}

    .container-tramites-busqueda h1 {
        font-size: 32pt;
        color: #444;
        margin-bottom: .2em;
    }

    .container-tramites-busqueda p {
        text-align: justify;
        font-size: 18pt;
        font-weight: bold;
        margin-bottom: .5em;
    }

.search-page-container {
    display: grid;
    grid-template-columns: 80% 20%;
    margin: auto;
    padding: 30px;
    background-color: gray;
    border-radius: 15px;
}

.search-page-container-dec {
    margin: auto;
    padding: 30px;
    background-color: lightgray;
    border-radius: 15px;
}

.search-page-container-form {
    display: grid;
    grid-gap: 15px;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
}

.dec_item {
    display: flex;
    flex-direction: column;
}

    .dec_item label {
        font-weight: bold;
    }
/*------ ------------ ------*/
/*------ Diseño Gabinete ------*/
.card-gabinete {
    /*background-image: url('../Images/Recursos/semblanza.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;*/
    background: #D6D1C4;
    margin: 1em auto;
    width: 250px;
    height: 450px;
    border-radius: 5px;
    padding: 10px;
}

    .card-gabinete img {
        width: 200px;
        max-width: 100%;
        margin: 15px 15px 0 15px;
    }

    .card-gabinete h4 {
        text-align: center;
        height: 40px;
    }

    .card-gabinete p {
        font-weight: 500;
        text-align: center;
        padding: 5px 0;
        font-size: 10pt;
        margin-bottom: 1.5em;
        height: 60px;
    }

    .card-gabinete a {
        /*border: 2px solid rgb(107,3,31);*/
        border: 2px solid #636569;
        border-radius: 5px;
        padding: 10px;
        text-decoration: none;
        color: #000;
        margin: 0 40px;
        font-weight: bold;
    }

        .card-gabinete a:hover {
            background-color: #636569;
            transition: all 0.3s ease;
            color: #fff;
        }

.gabinete-content {
    display: grid;
    grid-gap: 0 1em;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
}
/*-----------------------------*/
/*------ Comite de Etica ------*/

.ce-organigrama {
    display: grid;
    /*grid-template-columns: repeat(2, 1fr);*/
    grid-template-rows: repeat(2, auto);
    grid-gap: 2em 0;
    margin: 1.5em 0;
    padding: 20px;
}

    .ce-organigrama img {
        width: 58%;
        margin: auto;
    }

.container-enlaces-ce {
    border-radius: 5px;
    background: #F8F8F8;
    padding: 15px;
}

.enlaces-ce {
    list-style: none;
    text-decoration: none;
    margin: 1.5em 1.5em;
}

    .enlaces-ce li {
        margin: .6em 0;
        padding: 10px;
    }

        .enlaces-ce li:hover {
            background-color: #A6A6A8;
            transition: all 0.5s ease-in-out;
            border-radius: 5px;
            color: #fff;
        }

        .enlaces-ce li a {
            text-decoration: none;
            font-size: 16px;
            color: #000;
            font-weight: bold;
        }

            .enlaces-ce li a:hover {
                color: #fff;
                transition: all 0.5s ease;
            }

.container-enlaces-ce p {
    text-align: center;
}

.ce-fotografias {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

    .ce-fotografias img {
        height: 300px;
        max-height: 100%;
        align-self: center;
        justify-self: center;
        margin: 1em;
    }

@media (max-width: 1288px) {
    .ce-fotografias img {
        height: 250px;
    }
}

@media(max-width: 1098px) {
    .ce-fotografias {
        display: grid;
        grid-template-columns: 1fr;
        /*grid-template-rows: repeat(2, auto);*/
    }

        .ce-fotografias img {
            height: auto;
            width: 90%;
        }
}

.ce-contacto {
    text-align: center;
    margin: 1em;
}

    .ce-contacto p {
        font-size: 18px;
    }
/*-----------------------------*/
.container-politicas {
    /*background-image: url('../Images/Recursos/Fondo_flor.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;*/
    background: #f8f8f8; 
    padding: 15px;
    border-radius: 5px;
    margin: 1em 0;
    padding: 40px;
}

    .container-politicas p {
        text-align: justify;
        margin-bottom: 15px;
    }

    .container-politicas h2 {
        text-align: center;
        color: #C2BA98;
    }

    .container-politicas ul {
        list-style-position: inside;
    }

        .container-politicas ul li a {
            text-decoration: none;
            color: #333;
        }

.politicas-enlaces li {
    margin: .3em 0;
    padding: 5px;
}

    .politicas-enlaces li:hover {
        width: 100%;
        background-color: #dcdcdc;
        border-radius: 5px;
        padding: 5px;
    }

.list-columnas-2 {
    margin-top: 10px;
    columns: 2;
}

.list-columnas-3 {
    margin-top: 10px;
    columns: 3;
    align-items: center;
}

/*------ Servicios Internos ------*/
.container-si {
    border-radius: 5px;
    background: #F8F8F8;
    padding: 20px;
}

    .container-si p {
        text-align: justify;
        margin-bottom: 15px;
    }

.container-si-modulos {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

    .container-si-modulos img {
        width: 250px;
        max-width: 100%;
        border-radius: 5px;
        margin: auto .7em;
    }

        .container-si-modulos img:hover {
            transform: scale(1.1);
            transition: all 0.3s ease-in-out;
        }

.container-si-lista {
    list-style-position: inside;
    margin-bottom: 15px;
}

/*---- Direccion de Egresos ----*/

.container-egresos {
    width: 90%;
    margin: 1.5em auto;
    padding: 2em;
    background: rgba(250, 250, 250, 0.5);
    border-radius: 5px;
    height: auto;
}

    .container-egresos h1 {
        font-size: 28pt;
        color: #fff;
        margin-bottom: .2em;
        text-align: center;
        background-color: #636569;
        border-radius: 5px;
        width: 100%;
        padding: 10px;
    }

    .container-egresos h2 {
        font-size: 24pt;
        text-align: center;
    }

    .container-egresos h3 {
        font-size: 16pt;
        text-align: center;
        margin-top: 1em;
        padding-top: 1em;
        border-top: solid 5px;
        border-color: #C2BA98;
    }

    .container-egresos ul {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        list-style: none;
    }

        .container-egresos ul li {
            margin: 10px;
            padding: 5px;
            font-weight: bold;
        }

            .container-egresos ul li:hover {
                background-color: darkgray;
                border-radius: 4px;
                padding: 5px 60px;
                transition: all 0.3s ease;
            }

            .container-egresos ul li a {
                text-decoration: none;
                color: black;
            }

    .container-egresos p {
        text-align: justify;
        font-size: 18pt;
        font-weight: bold;
        margin-bottom: .5em;
    }


/*-----------------------------*/
/*------ Responsive View ------*/
/*------ Pagina Principal -----*/
@media (max-width: 1366px) {
    .container-gral {
        padding: 150px 10% 50px 10%;
    }
}

@media (max-width: 1200px) {
    .container-gral {
        padding: 150px 10% 50px 10%;
    }

    .info-presidenta {
        display: grid;
        grid-template-columns: 20% 80%;
        padding: 10px;
        grid-gap: 0;
    }

    .foto-presidenta {
        width: 100%;
        height: 100%;
    }

        .foto-presidenta img {
            width: 100%;
            margin: 0 auto;
        }

        .foto-presidenta h3 {
            margin-top: .5em;
            font-size: 18px;
        }

    .texto-presidenta {
        height: 100%;
        margin: 0 0 0 10px;
        padding: 0 0 0 10px;
    }

        .texto-presidenta p {
            text-align: justify;
            margin: 0 0 15px;
        }

        .texto-presidenta .firma-presidenta {
            width: 150px;
            float: right;
        }
}

@media (max-width: 992px) {
    .info-presidenta {
        display: flex;
        flex-direction: column;
    }

    .foto-presidenta {
        width: 40%;
    }

    .texto-presidenta {
        border: none;
        margin-top: 2em;
    }

    .transparencia {
        display: flex;
        flex-direction: column;
    }

    footer {
        display: grid;
        grid-template-columns: repeat(2, 50%);
        grid-template-areas: "left center"
            "right right";
        /*background-image: url('../Images/Recursos/Fondo.png');
        background-repeat: no-repeat;
        background-size: cover;*/
    }

    .pie-left {
        grid-area: left;
        font-size: 14px;
    }

    .pie-center {
        grid-area: center;
        /*font-size: 14px;*/
        border: none;
    }

        .pie-center a {
            /*font-size: 14px;*/
        }

    .pie-right {
        grid-area: right;
        /*display: flex;
        flex-direction: row;*/
        display: grid;
        grid-gap: 0 5px;
        /*grid-template-columns: repeat(auto-fill, 1fr);*/
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    }

        .pie-right .num_emergencia {
            text-align: center;
            width: 149px;
        }

            .pie-right .num_emergencia a {
                font-size: 16px;
            }

                .pie-right .num_emergencia a i {
                    margin-right: 7px;
                    border: 2px solid #D6D1C4;
                    width: 24px;
                    height: 24px;
                    border-radius: 25px;
                    text-align: center;
                    padding-top: 2px;
                }

    .container-sec-qs {
        display: flex;
        flex-direction: column;
    }

        .container-sec-qs div {
            margin-bottom: 25px;
        }
}

@media (max-width: 768px) {
    .search-container {
        width: 90%;
    }

    .btnSearch {
        width: 70%;
        margin: 0 15%;
    }

    footer {
        display: grid;
        grid-template-columns: repeat(2, 50%);
        grid-template-areas: "left center"
            "right right";
        /*background-image: url('../Images/Recursos/Fondo.png');
        background-repeat: no-repeat;
        background-size: cover;*/
    }

    .pie-left {
        grid-area: left;
        font-size: 14px;
    }

        .pie-left .logo-ayto {
            width: 200px;
        }

        .pie-left .logo-slogan {
            width: 140px;
        }

    .pie-center {
        grid-area: center;
        font-size: 14px;
        border: none;
    }

        .pie-center a {
            font-size: 14px;
        }

    .pie-right {
        grid-area: right;
        display: grid;
        grid-gap: 0 5px;
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    }

        .pie-right .num_emergencia {
            text-align: center;
            width: 149px;
        }

            .pie-right .num_emergencia a {
                font-size: 16px;
            }

                .pie-right .num_emergencia a i {
                    margin-right: 7px;
                    border: 2px solid #D6D1C4;
                    width: 24px;
                    height: 24px;
                    border-radius: 25px;
                    text-align: center;
                    padding-top: 2px;
                }
}

@media (max-width: 576px) {
    footer {
        display: flex;
        flex-direction: column;
        align-content: center;
        justify-content: center;
        text-align: center;
    }

        footer .pie-left .logo-ayto {
            width: 70%;
        }

        footer .pie-left .logo-slogan {
            width: 40%;
        }

        footer .pie-center {
            text-align: center;
        }

            footer .pie-center p {
                text-align: center;
            }

        footer .pie-right {
            margin-top: 2em;
        }

    .footer-links {
        display: flex;
        flex-direction: column;
    }

        .footer-links a {
            margin: .5em auto;
        }
}
/*-----------------------------*/
.enlaces-transparencia {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding: 0;
    margin: 0;
    width: 100%;
}

    .enlaces-transparencia a img {
        width: 100%;
        height: auto;
    }

    .enlaces-transparencia .eta {
        margin-right: 15px;
    }

    .enlaces-transparencia .etb {
        margin-left: 15px;
    }

@media (max-width: 519px) {
    .enlaces-transparencia {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        padding: 0;
        margin: 0;
        width: 100%;
    }

        .enlaces-transparencia .eta {
            margin: 0;
        }

        .enlaces-transparencia .etb {
            margin: 0;
        }
}

/*-----------------------------*/

@media (max-width: 1199px) {
    .container-gral {
        width: 100%;
        height: auto;
        margin: 0 auto;
    }
}

@media (max-width: 1366px) {
    .container-gral {
        width: 100%;
        height: auto;
        margin: 0 auto 0 auto;
    }
}

/*---------------------------*/
.semblanza_presidenta {
    /*display: flex;
    flex-direction:column;*/
    background-color: #fff;
    border-radius: 5px;
    padding: 20px;
    border: 5px double #C2BA98;
}

    .semblanza_presidenta img {
        margin: 0 10%;
        border-radius: 3px;
        width: 80%;
        height: 0 auto 1.5em auto;
    }

    .semblanza_presidenta p {
        text-align: justify;
        margin-bottom: 15px;
    }

    .semblanza_presidenta .firma-presidenta {
        width: 200px;
        margin-left: auto;
        display: block;
    }

    .semblanza_presidenta .semblanza-pie {
        width: 100%;
    }

.redes-presidenta a {
    color: #C2BA98;
    text-decoration: none;
}

    .redes-presidenta a i:hover {
        transform: scale(1.5);
        transition: 0.3s ease;
    }

    .redes-presidenta a i {
        font-size: 40px;
    }
