@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    list-style: none;
}
a{
    text-decoration: none;
}

body {
    font-family: 'Poppins', sans-serif;
}

img{
    max-width: 100%;
}
.container{
    max-width: 1100px;
    margin: 0 auto;
    margin-top: 20px;
    margin-bottom: 20px;
}
.cont{
    width: 100%;
    height: 100px;
    background-color: #fafafa;
    margin: 0 auto;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    
    z-index: 2;
}
.azul{
    background-color: #fafafa !important;
    color: #000;
}
.azul p{
    
    color: #000 !important;
}
.azul li{
    
    color: #000 !important;
}

.header{
    background-color: #fafafa;
    
    min-height: 70vh;
    
    align-items: center;
}

.menu{
    max-width: 1100px;
    margin: 0 auto;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;  
    background-color: #fafafa;
    z-index: 3;
    
}

.menu .navbar ul li{
    position: relative;
    float: left;

}

.menu .navbar ul li a{
    font-size: 18px;
    padding: 20px;
    color: #000;
    display: block;
}

.menu .navbar ul li a:hover{
    color: #02b1f4;
}

.logo{
    font-size: 25px;
    font-weight: 800px;
    color: #02b1f4;
    text-transform: uppercase;
}
.img-logo{
    width: 200px;
    margin-top: 10px;
}

#menu{
    display: none;

}
.menu-icono{
    width: 25px;
}

.menu label{
    cursor: pointer;
    display: none;
}

.header-content{
    display: flex;
    padding: 150px 0 150px 0;
    
}

.header-text{
    width: 100%;

}

.header-text h1{
    line-height: #323232;
    text-transform: uppercase;
    font-size: 55px;
    margin-bottom: 10px;
}


.header-text p {
    font-size: 16px;
    color: #000;
    margin-bottom: 45px;

}

.header-img{
    width: 100%;
    align-items: center;
    margin-left:30px;
    border-radius: 15px;

}
.header-text h1 img{
    width: 100%;
    border-radius: 15px;

}

.btn-1{
    display: inline-block;
    padding: 11px 25px;
    background-color: #fff;
    color: #1a387b;
    border-radius: 15px;

}
.btn-1:hover{
    background-color: #018ad0;
}

.about{
    padding: 100px 0;
    display: flex;
    margin-top: 30px;
}
.about1{
    padding: 30px 0;
    display: flex;
    margin-top: 30px;
}
.about-img{
    width: 50%;
}
.about-img img{
    width: 500px;
    border-radius: 15px;
    margin-top: 20px;

}
.about-text{
    width: 50%;
    margin-left: 25px;
    margin-right: 25px;
}
.about-text h2{
    color: #323232;
    font-size: 50px;
    margin-bottom: 15px;
}
.about-text p{
    font-size: 16px;
    color: #818181;
}
.about-text ul{
    padding-left: 30px;
}
.about-text ul li{
    list-style: circle;
    font-size: 16px;
    color: #818181;
}

.servicios{
    padding: 50px 0 100px 0;
    text-align: center;
    background-color: #fafafa;
}
.servicios1{
    padding: 50px 0 100px 0;
    text-align: center;
    background-color: #fafafa;
}
.servicios h2{
    color: #323232;
    font-size: 50px;
    margin-bottom: 10px;
    margin-top: 40px;
}
.servicios1 h2{
    color: #000;
    font-size: 50px;
    margin-bottom: 10px;
    margin-top: 40px;
}
.blog{
    padding: 50px 0 100px 0;
    text-align: center;
    background-color: #ffffff;
}
.blog1{
    padding: 50px 0 0px 0;
    text-align: center;
    background-color: #ffffff;
}
.blog h2{
    color: #323232;
    font-size: 50px;
    margin-bottom: 10px;
    margin-top: 40px;
}

.servicios-content{
    margin-top: 55px;
    justify-content: space-between;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    display: flex;
    flex-wrap: wrap;
    
    
}
.estudios{
    padding: 20px;
}











.servicios-content a{
    text-decoration: none;
}

.servicio-1{
    margin: 20px;
    padding: 25px;
    background-color: #ffffff;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
    flex-basis: calc(25% - 20px);   
}

.servicio-1:hover{
    box-shadow: 0 0 20px rgba(55, 138, 206, 0.815);
}

.servicio-1 img {
    width: 250px;
    height:200px;
    
}
.servicio-1 h3{
    font-size: 20px;
    color: #323232;
    text-transform: capitalize;
    text-decoration: none;
}


.servicio-1 h3:hover{
    color: #02b1f4;
}

.servicio-1 img:hover{
    -webkit-transform: rotateY(180deg);
    -webkit-transform-style: preserve-3d;
    transform: rotateY(180deg);
    transform-style: preserve-3d;
}






.puntos ul {
    list-style-type: disc;
}
.puntos ul li{
    list-style-type: disc;
    font-size: 18px;
}
.tra{
    padding-top: 50px;
    padding-bottom: 50px;
    
}
.tra h2{
    text-align: center;
    margin-bottom: 30px;
}
.lista{
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.puntos{
    margin: 50px;
}

















.formulario{
    margin-top: 50px;
    margin-bottom: 100px;
    display: flex;
    justify-content: center;
    align-items: center;

}
.otro h3{
    text-align: center;
    font-size: 50px;
    color: #323232;
    text-transform: capitalize;
    text-decoration: none;
    margin-top: 25px;
}

.formu{
    padding: 25px;
    width: 500px;
    text-align: center;
    box-shadow: 0 0 20px rgba(0,0,0,0.2);
}
.formu2{
    padding: 25px;
    
    
    box-shadow: 0 0 20px rgba(0,0,0,0.2);
}
form h2{
    font-size: 25px;
    color: #323232;
    text-transform: uppercase;
    margin-bottom: 35px;
}
.input-container{
    position: relative;
    z-index: 1;

}
.input-container > i{
    padding: 14px;
    border-radius: 50%;
    background-color: #02b1f4;
    color: #ffffff;
    position: absolute;
    font-size: 20px;
    top: 4px;
    left: 10px;
}
.input-container > input, textarea{
    padding: 17px 15px 17px 65px;
    width: 100%;
    margin-bottom: 25px;
    border-radius: 35px;
    background-color: transparent;
    border: 2px solid #02b1f4;
    font-size: 16px;
    outline: none;
    color: #323232;
}
textarea{
    font-family: 'Poppins', sans-serif;
    height: 150px;
}


::placeholder{
    color: #a0a0a0;
    font-size: 16px;
}
.btn-2{
    background-color: #02b1f4;
    padding: 17px 30px;
    width: 100%;
    border: 0;
    box-shadow: 0 0 20px rgba(0,0,0,0.2);
    border-radius: 25px;
    color: #ffffff;
    font-size: 15px;
    cursor: pointer;
}

.mapa{
    
    padding-bottom: 20px;
    padding-left: 25px;
    padding-right: 25px;
    margin-left: 15px;
    width: 500px;
    box-shadow: 0 0 20px rgba(0,0,0,0.2);
}
.mapa h3{
    margin-bottom: 35px;
    font-size: 25px;
    text-transform: uppercase;
    text-align: center;
    justify-content: center;
}

.footer{
    padding: 50px;
    background-color: #fafafa;
    font-family: 'Poppins', sans-serif;
}
.link ul{
    display: flex;
    align-items: center;
    justify-content: space-between;

}
.link ul li a{
    color: #323232;
    font-size: 17px;
}
.link ul li a:hover{
    color: #02b1f4;  
}



#team {
    background: #eee !important;
}

.btn-primary:hover,
.btn-primary:focus {
    background-color: #02b1f4;
    border-color: #02b1f4;
    box-shadow: none;
    outline: none;
}

.btn-primary {
    color: #fff;
    background-color: #02b1f4;
    border-color: #02b1f4;
}

section {
    padding: 60px 0;
}

section .section-title {
    text-align: center;
    color: #000000;
    margin-bottom: 50px;
    text-transform: uppercase;
}

#team .card {
    border: none;
    background: #ffffff;
}

.image-flip:hover .backside,
.image-flip.hover .backside {
    -webkit-transform: rotateY(0deg);
    -moz-transform: rotateY(0deg);
    -o-transform: rotateY(0deg);
    -ms-transform: rotateY(0deg);
    transform: rotateY(0deg);
    border-radius: .15rem;
}

.image-flip:hover .frontside,
.image-flip.hover .frontside {
    -webkit-transform: rotateY(180deg);
    -moz-transform: rotateY(180deg);
    -o-transform: rotateY(180deg);
    transform: rotateY(180deg);
}

.mainflip {
    -webkit-transition: 1s;
    -webkit-transform-style: preserve-3d;
    -ms-transition: 1s;
    -moz-transition: 1s;
    -moz-transform: perspective(1000px);
    -moz-transform-style: preserve-3d;
    -ms-transform-style: preserve-3d;
    transition: 1s;
    transform-style: preserve-3d;
    position: relative;
}

.frontside {
    position: relative;
    -webkit-transform: rotateY(0deg);
    -ms-transform: rotateY(0deg);
    z-index: 2;
    margin-bottom: 30px;
}

.backside {
    position: absolute;
    top: 0;
    left: 0;
    background: white;
    -webkit-transform: rotateY(-180deg);
    -moz-transform: rotateY(-180deg);
    -o-transform: rotateY(-180deg);
    -ms-transform: rotateY(-180deg);
    transform: rotateY(-180deg);
    -webkit-box-shadow: 5px 7px 9px -4px rgb(158, 158, 158);
    -moz-box-shadow: 5px 7px 9px -4px rgb(158, 158, 158);
    box-shadow: 5px 7px 9px -4px rgb(158, 158, 158);
}

.frontside,
.backside {
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transition: 1s;
    -webkit-transform-style: preserve-3d;
    -moz-transition: 1s;
    -moz-transform-style: preserve-3d;
    -o-transition: 1s;
    -o-transform-style: preserve-3d;
    -ms-transition: 1s;
    -ms-transform-style: preserve-3d;
    transition: 1s;
    transform-style: preserve-3d;
}

.frontside .card,
.backside .card {
    min-height: 312px;
}

.backside .card a {
    font-size: 18px;
    color: #ffffff !important;
}

.frontside .card .card-title,
.backside .card .card-title {
    color: #000000 !important;
}

.frontside .card .card-body img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
}





.selfi{
    
}


.directorio{
    margin-top: 100px;
}
.directorio1{
    margin-top: 20px;
}

.rowo{
    display: flex;
}

.descri{
    padding: 10px;
    padding-left: 25px;
}


.img-selfie{
    border-radius: 10px;
}

.ablack a{
    color: #000000;
}

.dirinfo{
    display: flex;
    padding-top:25px;
}
.dir{
    width: 50%;
}
.cuerpo{
    padding-left: 35px;
    padding-right: 35px;
}















.admin-form{
    display: flex;
    flex-direction: column;
    
}


.directory{
    width: 100%;
    height: 600px;
}



.area1{
    width: 100%;
}

.table-wrapper {
    width: 100%;
    height: 200px; /* Altura de ejemplo */
    overflow: auto;
}
.table-wrapper table {
    border-collapse: separate;
    border-spacing: 0;
  }
.table-wrapper table thead {
    position: -webkit-sticky; /* Safari... */
    position: sticky;
    top: 0;
    left: 0;
}
.table-wrapper table thead th,
.table-wrapper table tbody td {
    border: 0.5px solid #00000021;
    background-color: #FFF;
}


.blogi-page{
    margin-top: 150px;
    margin-bottom: 150px;
    width: 100%;
    
    justify-content: center;
    align-items: center;
    
    
}
.conta{
    padding-bottom: 50px;
    padding-left: 100px;
    padding-right: 100px;
    padding-top: 20px;
    
}
.blogi{
    
    margin-top: 150px;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    
    
}
.blogi1{
    
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    
    
}

.mar{
    margin: 10px;
}

.blog-page .single_post {
    -webkit-transition: all .4s ease;
    transition: all .4s ease
}

.blog-page .single_post .img-post {
    position: relative;
    overflow: hidden;
    max-height: 500px;
    
}

.blog-page .single_post .img-post>img {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    opacity: 1;
    -webkit-transition: -webkit-transform .4s ease, opacity .4s ease;
    transition: transform .4s ease, opacity .4s ease;
    max-width: 100%;
    filter: none;
    -webkit-filter: grayscale(0);
    -webkit-transform: scale(1.01)
}

.blog-page .single_post .img-post:hover img {
    -webkit-transform: scale(1.02);
    -ms-transform: scale(1.02);
    transform: scale(1.02);
    opacity: .7;
    filter: gray;
    -webkit-filter: grayscale(1);
    -webkit-transition: all .8s ease-in-out
}

.blog-page .single_post .img-post:hover .social_share {
    display: block
}

.blog-page .single_post .img-post .social_share {
    position: absolute;
    bottom: 10px;
    left: 10px;
    display: none
}

.blog-page .single_post .meta {
    list-style: none;
    padding: 0;
    margin: 0
}

.blog-page .single_post .meta li {
    display: inline-block;
    margin-right: 15px
}

.blog-page .single_post .meta li a {
    font-style: italic;
    color: #959595;
    text-decoration: none;
    font-size: 12px
}

.blog-page .single_post .meta li a i {
    margin-right: 6px;
    font-size: 12px
}

.blog-page .single_post h3 {
    font-size: 20px;
    line-height: 26px;
    -webkit-transition: color .4s ease;
    transition: color .4s ease
}

.blog-page .single_post h3 a {
    color: #242424;
    text-decoration: none
}

.blog-page .single_post p {
    font-size: 15px
}

.blog-page .single_post .blockquote p {
    margin-top: 0 !important
}

.blog-page .right-box .categories-clouds li {
    display: inline-block;
    margin-bottom: 5px
}

.blog-page .right-box .categories-clouds li a {
    display: block;
    font-size: 14px;
    border: 1px solid #ccc;
    padding: 6px 10px;
    border-radius: 3px;
    color: #242424
}

.blog-page .right-box .instagram-plugin {
    overflow: hidden
}

.blog-page .right-box .instagram-plugin li {
    float: left;
    overflow: hidden;
    border: 1px solid #fff
}

.blog-page .comment-reply li {
    margin-bottom: 15px
}

.blog-page .comment-reply li:last-child {
    margin-bottom: none
}

.blog-page .comment-reply li h5 {
    font-size: 18px
}

.blog-page .comment-reply li p {
    margin-bottom: 0px;
    font-size: 15px;
    color: #777
}

.blog-page .comment-reply .list-inline li {
    display: inline-block;
    margin: 0;
    padding-right: 20px
}

.blog-page .comment-reply .list-inline li a {
    font-size: 13px
}

.page.with-sidebar.right .left-box {
    margin-right: -20px
}

@media (max-width: 414px) {
    .section.blog-page {
        padding: 20px 0
    }
    .blog-page .left-box .single-comment-box>ul>li {
        padding: 25px 0
    }
    .blog-page .left-box .single-comment-box ul li .icon-box {
        display: inline-block
    }
    .blog-page .left-box .single-comment-box ul li .text-box {
        display: block;
        padding-left: 0;
        margin-top: 10px
    }
}
.card {
    background: #fff;
    
    transition: .5s;
    border: 0;
    border-radius: .55rem;
    position: relative;
    width: 100%;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.637);
    
}

.card .body {
    font-size: 14px;
    color: #424242;
    padding: 20px;
    font-weight: 400;
}
.card .header {
    color: #424242;
    padding: 20px;
    position: relative;
    box-shadow: none;
}
.card .header h2 {
    font-size: 15px;
    color: #757575;
    position: relative;
}
.card .header h2:before {
    background: #a27ce6;
}
.card .header h2::before {
    position: absolute;
    width: 20px;
    height: 1px;
    left: 0;
    top: -20px;
    content: '';
}
.m-b-15 {
    margin-bottom: 15px;
}











@media (max-width:991px){
    .menu{
        padding: 10px;
    }
    .rowo{
        display: flex;
        flex-wrap: wrap;
    }
    .conta{
        padding: 50px;
    }
    .cont{
        padding: 10px;
        height: 86.17px;
    }
    .menu label{
        display: initial;
    }
    .menu .navbar{
        position: absolute;
        top: 100%;
        left: 0;
        background-color: #fff;
        display: none;
    }
    .menu .navbar ul li{
        width: 100%;
    }
    #menu:checked ~ .navbar{
        display: initial;
    }
    .header{
        min-height: 0vh;
        padding: 80px 30px 50px 30px;
    }
    .header-content{
        flex-direction: column;
        padding: 5px 0 5px 0;
    }
    .header-text{
        text-align: center;
        width: 100%;
        margin-bottom: 25px;
    }
    .header-text h1{
        font-size: 40px;
    }
    .header-img{
        width: 100%;
    }
    
    .header-img img{
        width: 100%;
    }

    .about{
        padding: 30px;
        flex-direction: column;

    }
    .about1{
        padding: 30px;
        flex-direction: column;

    }
    .about-img{
        width: 100%;
        order: 2;

    }
    .about-img img{
        width: 100%;
    }
    .about-text{
        width: 100%;
        margin-left: 0;  
        margin-bottom: 25px;
        margin-top: 60px;
    }
    .about-text h2{
        font-size: 40px;
        text-align: center;
    }
    .about-text p{
        align-items: center;
    }
    .about-text ul li{
        font-size: 13px;
    }
    .servicios{
        padding: 30px;
        
    }
    .servicios h2{
        font-size: 40px;
    }
    .servicios-content{
        margin-top: 25px;
        flex-direction: column;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        width: 100%;
        

    }
    .servicio-1{
        margin-bottom: 20px;   
        margin: 10px;
        padding: 12px;
        
    }
    .servicio-1 h3{
        font-size: 18px;
    }

    .formulario{
        padding: 30px;
        margin-top: 0;
        margin-bottom: 0;
        flex-direction: column;
    }
    .mapa{
        margin-left: 0;
        width: 100%;
        margin-top: 25px;
    }
    .mapa h3{
        margin-top: 10px;
        margin-bottom: 10px;
    }
    .mapa iframe{
        
        width: 100%;
        height: 250px;
    }
    .formu{
        width: 100%;
    }

    .footer{
        padding: 30px;
    }
    .footer-content{
        flex-direction: column;
        text-align: center;
    }
    .link ul{
        flex-direction: column;
    }
    .link ul li{
        margin: 0 0 15px 0;
    }
    .dirinfo{
        display: flex;
        flex-wrap: wrap;
    }

}

@media (max-width:550px){
    .servicio-1 h3{
        font-size: 11px;
    }
    .header-img{
        width: 80%;
    }
    .conta{
        padding: 10px;
    }
    .servicio-1 img{
        width: 50px;
        height: 50px;
    }
    .img-logo{
        width: 130px;
        margin-top: 5px;
    }
    .about-text{
        margin-top: 30px;
    }
    iframe{
        width:320px;
    }
    .puntos{
        margin-left: 10px;
        margin-right 10px;
        margin-top: 0px;
        margin-bottom: 0px;
    }
        
        
}