/*@import url('https://fonts.googleapis.com/css2?family=Noto+Sans:wght@100;300;600;800&display=swap');*/
@import url('https://fonts.googleapis.com/css2?family=Varela+Round&display=swap');

*{
    box-sizing: border-box;
}
:root{
	--negro: #2D2D2D;
}
a{
    color: var(--celeste);
    text-decoration: none;
}
a:hover{
    text-decoration: underline;
}
a:visited{
    color: transparent;
}
ul{
    list-style: none;
    margin: 0;
    padding: 0;
}
fieldset{
    padding: 0;
    border: 0;
    position: relative;
}
html{
	font-size: 16px;
}
body{
    margin: 0;
    padding: 0;
    /*font-family: 'Hind', sans-serif;*/
    font-family: 'Varela Round', sans-serif;
}

.center{
    width: 1200px;
    max-width: 100%;
    margin: 0 auto;
}

/* Textos */

h1,h2, h3, h4,h6{
	line-height: 1.2;
    margin: 0 0 10px;
    font-weight: 400;
    color: var(--negro);
}
h1{
	font-size: 1.8rem;
}
h2{
	font-size: 2.2rem;
    font-weight: 600;
}
h3{
	font-size: 1.5rem;
}
h4{
	font-size: 1.4rem;
}
p{
    margin-top: 0;
    margin-bottom: 20px;
}

li, p, th, td, dt, dd, span{
	font-size: 1rem;
	margin-bottom:20px;
	color: var(--negro);
	line-height: 27px; 
}

.txtCenter{
    text-align: center;
}

/* Forms */
form{
    position: relative;
}
form span{
    position: absolute;
    right: 0;
    bottom: -10px;
    color: #fff;
}
input[type="text"], 
input[type="date"], 
input[type="password"],
input[type="email"],
input[type="button"]{
    width: 100%;
    height: 50px;
    line-height: 50px;
    padding: 0 10px;
    border: 1px solid #D3D3D3;
    font-size: 1rem;
    font-family: 'Varela Round', sans-serif;
    margin-bottom: 20px;
}

input[type="submit"]{
    width: max-content;
    border-radius: 0;
    border: 0;
    background: #fff;
    color: var(--negro);
    padding: 15px 30px;
    cursor: pointer;
    margin-top: 20px;
    font-family: 'Varela Round', sans-serif;

}
input[type="submit"]:hover{
    opacity: 0.9;
}
button{
    font-family: 'Varela Round', sans-serif;
}
textarea{
    width: 100%;
    padding: 10px;
    border: 1px solid #D3D3D3;
    font-family: 'Varela Round', sans-serif;
    font-size: 1rem;
    resize: none;

}

label{
    display: block;
    margin-bottom: 5px;
    color: #505050;
}
fieldset{
    margin-bottom: 15px;
    padding: 0;
}

.btnPrimary{
    width: max-content;
    display: block;
    border: 0;
    background: var(--negro);
    color: #fff;
    text-align: center;
    cursor: pointer;
    padding: 10px 50px;
    transition: all ease-in-out .1s;
    font-family: 'Varela Round', sans-serif;
    font-size: 1.1rem;
}
.btnPrimary:hover{
    background-color: var(--negro);
}
.btnPrimary.ghost{
    background: transparent;
    border: 1px solid var(--negro);
    color: var(--negro);
}
.btnPrimary.ghost:hover{
    background: var(--negro);
    color: #fff;
    text-decoration: none;
}

/* Header */

header{
    position: absolute;
    width: 100%;
    top: 20px;
    left: 0;
    z-index: 9999;
}
header .center{
    display: grid;
    grid-template-columns: 300px 1fr;
    grid-column-gap: 50px;
}
.menuContenedor{
    display: grid;
    grid-template-columns: 1fr 110px;
    grid-column-gap: 30px;
    justify-items: right;
    align-items: center;
}
.nav-menu li{
    display: inline-block;
    margin-left: 25px;
    margin-bottom: 0;
}
.nav-menu li:first-child{
    margin-left: 0;
}
.nav-menu li a, .main-navigation a{
    color: #fff;
}
.redesSociales a:first-child{
    margin-left: 0;
}
.redesSociales a{
    margin-left: 10px;
}

.nav-menu li:hover .sub-menu{
    display:block;
}

.nav-menu .sub-menu{
    position: absolute;
    margin: 0;
    padding: 0;
    background: #00000082;
    border-radius: 5px;
    padding: 10px 20px;
    z-index: 99999;
    display: none;
    width: 190px;
}
.nav-menu .sub-menu li{
    display: block;
    margin-left: 0;
    margin-bottom: 10px;
}
.nav-menu .sub-menu li:last-child{
    margin-bottom: 0;
}
.menu-item-has-children{
    position: relative;
}
.menu-item-has-children::after{
    content: ' ';
    position: absolute;
    right: -16px;
    top: 10px;
    width: 10px;
    height: 10px;
    background: url(../imagenes/i-triangle.svg) no-repeat;
}

/* SliderHome */

.sliderHome{
    position: relative;
    margin-bottom: 120px;
    height: 700px;
    overflow: hidden;
}
.sliderHome img{
    width: 100%;
    object-fit: cover;
    height: 700px;
    object-position: center;
}
.sliderHome .contenido{
    position: relative;
}
.sliderHome .contenido .overlay{
    background: #3C1A44;
    opacity: 0.4;
    position: absolute;
    width: 100%;
    height: 700px;
    top: 0;
    left: 0;
    z-index: 999;
}

.sliderHome .flex-direction-nav .flex-prev {
    left: 50px;
    z-index: 999999;
    top: 370px;
    position: absolute;
    background: url(/imagenes/i-prev.svg) no-repeat;
    width: 50px;
    height: 70px;
    font-size: 0;
}
.sliderHome .flex-direction-nav .flex-next {
    right: 50px;
    z-index: 999999;
    top: 370px;
    position: absolute;
    background: url(/imagenes/i-next.svg) no-repeat;
    width: 50px;
    height: 70px;
    font-size: 0;
}


.sliderHome .flex-control-nav{
    bottom: 0px;
    z-index: 9;
    background-color: rgba(0, 0, 0, 0.5);
    width: max-content;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    padding: 15px 20px 0;
    border-radius: 20px 20px 0 0;
    height: 40px;
}
.sliderHome .flex-control-paging li a{
    background: transparent;
    border: 1px solid #fff;
    box-shadow: none;
    cursor: pointer;
}
.sliderHome .flex-control-paging li a.flex-active{
    background: #fff;
}



.sliderHome .flex-direction-nav a{
    opacity: 1;
}
.sliderDetalles .flex-direction-nav .flex-next {
    background: url(/imagenes/i-next.svg) no-repeat;
}
.sliderDetalles .flex-direction-nav .flex-prev {
    background: url(/imagenes/i-prev.svg) no-repeat;
}
.flex-direction-nav a:before{
    opacity: 0;
}
.flex-direction-nav a{
    width: 24px;
    height: 24px;
}





.conoceme{
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    grid-column-gap: 30px;
    margin-bottom: 100px;
}

.conoceme h2{
    margin-bottom: 30px;
}

.conoceme .imagen{
    position: relative;
}
.conoceme .imagen img{
    z-index: 9;
    position: relative;
    max-width: 500px;
    width: 100%;
    object-fit: cover;

}
.conoceme .btnPrimary.ghost{
    margin-top: 40px;
}
/*.conoceme .imagen:after{
    position: absolute;
    right: 60px;
    bottom: -31px;
    width: 500px;
    height: 500px;
    background: transparent;
    border: 1px solid #cacaca;
    content: '.';
}*/

.servicios{
    margin-bottom: 100px;
}

.servicios .grilla{
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    margin-top: 50px;
}
.servicios img{
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.servicios .grilla > div{
    position: relative;
    overflow: hidden;
    height: 300px;
}
.servicios .grilla > div .overlay{
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100px;
    background-image: linear-gradient(#ffffff00, #000000c9);
    z-index: 99;
}
.servicios .grilla > div img{
    transition: all ease-in-out .3s;
}
.servicios .grilla > div:hover img{
    transform: scale(1.2);
    
}
.servicios .grilla > div h3{
    position: absolute;
    bottom: 20px;
    width: 280px;
    text-align: center;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    z-index: 999;
}
.servicios .grilla h3 a{
    color: #fff;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 1.3rem;
}

.servicios .btnPrimary{
    margin: 50px auto;
}




.testimonios{
    padding: 50px 100px;
}
.testimonios h2{
    color: var(--negro);
}
.testimonios h3{
    margin-bottom: 0;
}
.testimonios span{
    opacity: .5;  
}
.testimonios p{
    margin-top: 20px;
}
.testimonios .linkIntro{
    margin: 0 0 50px;
}
.testimonios .linkIntro a{
    text-decoration: underline;
}
.sliderClientes{
    position: relative;
    min-height: 250px;
} 
.sliderClientes .flex-direction-nav{
    display: none;
}
.sliderClientes .flex-control-nav{
    text-align: left;
}
.sliderClientes .flex-control-paging li a{
    background: transparent;
    border: 1px solid #000;
    box-shadow: none;
}
.sliderClientes .flex-control-paging li a.flex-active{
    background: #000;
}

.grillaContacto{
    display: grid;
    grid-template-columns: 1fr 1fr;
}
.grillaContacto .contacto{
    background-color: var(--negro);
    padding: 50px 100px;
}
.grillaContacto .contacto h2{
    color: #fff;
    margin-bottom: 30px;
}
.contacto .ghost{
    background: transparent;
    border: 1px solid #fff;
    color: #fff;
}
.contacto input::placeholder,
.contacto textarea::placeholder{
    color: #fff;
    font-family: 'Varela Round', sans-serif;
}
.contacto .btnPrimary.ghost{
    margin-top: 20px;
}





footer{
    padding: 100px 0 50px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    align-items: center;
}
footer .datosContacto{
    justify-self: center;
}
footer .datosContacto span{
    margin-right: 20px;
    display: inline-block;
}
footer .datosContacto span:nth-child(3){
    display: block;
}
footer .datosContacto img{
    vertical-align: middle;
    margin-right: 5px;
}

footer .rrss{
    justify-self: right;
}
footer .rrss a:last-child{
    margin-left: 20px;
}



.bannerInternas{
    position: relative;
    height: 300px;
    margin-bottom: 70px;
}
.bannerInternas img{
    width: 100%;
    height: 300px;
    object-fit: cover;
}
.bannerInternas h1{
    color: #fff;
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    z-index: 999;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 2.5rem;
    bottom: 50px;
    text-align:center;
}
.bannerInternas .overlay{
    background: #3C1A44;
    opacity: 0.4;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 9;
}

.experiencia h2{
    margin-bottom: 30px;
}
.parrafos{
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-column-gap: 20px;
}


.grillaServicios{
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-column-gap: 20px;
    grid-row-gap: 20px;
}


.grillaServicios img{
    width: 100%;
    height: 350px;
    object-fit: cover;
}

.grillaServicios > div{
    position: relative;
    overflow: hidden;
    height: 350px;
}
.grillaServicios > div .overlay{
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 350px;
    background-image: linear-gradient(#ffffff00, #000000c9);
    z-index: 99;
}
.grillaServicios > div img{
    transition: all ease-in-out .3s;
}
.grillaServicios > div:hover img{
    transform: scale(1.2);
    
}
.grillaServicios > div h3{
    position: absolute;
    bottom: 20px;
    width: 280px;
    text-align: center;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    z-index: 999;
}
.grillaServicios h3 a{
    color: #fff;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 1.3rem;
}



.intro{
    display: grid;
    grid-template-columns: 400px 1fr;
    grid-column-gap: 50px;
    align-items:center;
}
.intro h2{
    margin-bottom: 20px;
}

.intro .btnPrimary.ghost{
    width: 100%;
    margin-top: 20px;
}
.carrusel{
    margin-top: 70px;
    position: relative;
}
.carrusel img{
    width: 100%;
    height: 500px;
    object-fit: cover;
}
.carrusel .slick-slide {
    padding-right: 20px;
    display: block;
}
.carrusel .slick-prev{
    background: url(../imagenes/i-carrusel-prev.png) -5px;
    width: 84px;
    height: 88px;
    position: absolute;
    left: -4px;
    top: 40%;
    z-index: 99;
    border: 0;
    font-size: 0;
    cursor: pointer;
    padding: 0;
    background-size: cover;
}
.carrusel .slick-next{
    background: url(../imagenes/i-carrusel-next.png) -5px;
    width: 84px;
    height: 88px;
    position: absolute;
    right: 9px;
    top: 40%;
    z-index: 99;
    border: 0;
    font-size: 0;
    cursor: pointer;
    padding: 0;
    background-size: cover;
}
.paginaContacto{
    margin-bottom: 70px;
}
.paginaContacto p{
    text-align: center;
    margin-bottom: 70px;
}

.paginaContacto .grilla{
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-column-gap: 40px;
}
.paginaContacto form input[type="submit"],
.popUp form input[type="submit"]
{
    background: var(--negro);
    color: #fff;
}
.paginaContacto form span,
.popUp span{
    color: var(--negro);
}
.paginaContacto img{
    width: 100%;
    height: 350px;
    object-fit: cover;
}


.cursosIntro img{
    height: 350px;
    width: 100%;
    object-fit: cover;
}

.carruselCurso img{
    width: 100%;
    height: 300px;
    object-fit: cover;
}


/* Style the buttons that are used to open and close the accordion panel */
.accordion {
    background-color: #eee;
    color: #444;
    cursor: pointer;
    padding: 18px;
    width: 100%;
    text-align: left;
    border: none;
    outline: none;
    transition: 0.4s;
    margin-bottom: 20px;
    font-weight: 700;
    font-size: 1rem;
}

/* Add a background color to the button if it is clicked on (add the .active class with JS), and when you move the mouse over it (hover) */
.active, .accordion:hover {
  background-color: #ccc;
}

/* Style the accordion panel. Note: hidden by default */
.panel {
  padding: 0 18px;
  background-color: white;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
}

.contenedorAcordeon{
    margin: 30px 0 0;
}


.simplefilter_159 li{
    background: transparent !important;
    color: #5a5a5a !important;
}

.simplefilter li.active{
    border-radius: 100px;
    background: transparent;
}

.filtr-search{
    display: none !important;
}
.filters-div{
    margin-top: 30px;
}
.portafolioHome{
    padding: 70px 0;
}
.portafolioHome h2{
    text-align: center;
}
.portafolioHome .grilla{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-row-gap: 10px;
    grid-column-gap: 10px;
    margin: 30px 0;
}
.portafolioHome .grilla a:nth-child(1) img{
    height: 232px;
    object-fit: cover;
}
.portafolioHome .grilla a:nth-child(2){
    grid-column-start: 2;
    grid-column-end: 5;
}
.portafolioHome .grilla a:nth-child(2) img{
    width: 100%;
    height: 232px;
    object-fit: cover;
}
.portafolioHome .grilla a:nth-child(3){
    grid-column-start: 1;
    grid-column-end: 3;
}
.portafolioHome .grilla a:nth-child(4){
    grid-column-start: 3;
    grid-column-end: 5;
}
.portafolioHome .btnPrimary.ghost{
    margin: 20px auto;
}


.paginaExito{
    text-align: center;
}
.paginaExito .btnPrimary{
    margin: 50px auto;
}

.menuResponsivo{
    position: absolute;
    right: 30px;
    top: 50px;
    display: none;
}
.menuResponsivo li{
    margin-bottom: 10px;
}
.menuResponsivo .menu-menu-principal-container{
    padding: 10px 20px;
    background: #000000a6;
    position: absolute;
    right: 0;
    width: 250px;
    display: none;
}
.menuResponsivo a{
    color: #fff;
    display: block;
}
.menuResponsivo .sub-menu{
    margin: 10px;
}
.menuResponsivo .menu-item-has-children::after{
    right: 0;
}

.menuResponsivo .sub-menu{
    display: none;
}

header .custom-logo{
    width: 100%;
    height: auto;

}

.logoFooter{
    width: 300px;
}

.popUp{
    position: fixed;
    width: 100%;
    height: 100%;
    background: #000000a6;
    z-index: 99999;
    left: 0;
    top: 0;
}
.popUp .content{
    max-width: 500px;
    width: 90%;
    margin: 100px auto;
    padding: 25px;
    background: #fff;
    position: relative;
}
.popUp .content span{
    position: absolute;
    right: 0;
    bottom: -20px;
}
.popUp .content img{
    position: absolute;
    right: 0;
    top: -30px;
    width: 20px;
    cursor: pointer;
}
.popUp p{
    text-align: left !important;
}
.lb-data .lb-caption{
    color: #fff;
}



/* Responsive */

@media screen and (max-width: 1200px) { 
    .center{
        padding: 0 20px;
    }
    .menuContenedor{
        display: none;
    }
    .menuResponsivo{
        display: block;
    }
}


@media screen and (max-width: 992px) {
    .conoceme{
        grid-template-columns: 1fr;
        justify-items: center;
        grid-row-gap: 30px;
    }
    .conoceme h2,
    .conoceme p,
    .testimonios h2,
    .testimonios h3,
    .testimonios span,
    .testimonios p,
    .experiencia h2,
    .intro h2,
    p
    {
        text-align: center;
    }
    .testimonios span{
        display: block;
    }
    .conoceme .btnPrimary{
         margin: 0 auto;
    }
    .grillaContacto{
        grid-template-columns: 1fr;
    }
    footer{
        padding: 70px 50px 0 !important;
        grid-template-columns: 1fr;
        grid-row-gap: 20px;
        justify-items: center;
    }
    .datosContacto span:nth-child(3) {
        text-align: center;
        margin: 0;
    }
    footer .rrss{
        justify-self: center;
    }
    .portafolioHome{
        margin-bottom: 70px;
    }
    .testimonios,
    .grillaContacto .contacto{
        padding: 50px;
    }
    .sliderClientes .flex-control-nav{
        text-align: center;
    }
    .parrafos{
        grid-template-columns: 1fr;
        grid-row-gap: 20px;
        text-align: center;
    }
    .intro{
        grid-template-columns: 1fr;
        justify-items: center;
        grid-row-gap: 30px;
    }
    .intro > div:nth-child(2){
        grid-row-start:1;
    }
    
    .bannerInternas{
        height: 320px;
    }
    .bannerInternas .overlay{
        height: 300px;
    }
    .bannerInternas h1{
        font-size: 2rem;
        text-align: center;
        width: 100%;
        padding: 0 20px;
        bottom: 60px;
    }
    .paginaContacto .grilla{
        grid-template-columns: 1fr;
        grid-row-gap: 70px;
    }
    
    
}
@media screen and (max-width: 768px) { 
    .servicios .grilla{
        grid-template-columns: 1fr;
        grid-row-gap: 20px;
    }
    header .center{
        display:block;
    }
    header .custom-logo{
        width: 250px;
    }
    footer .datosContacto span{
        display:block;
        text-align: center;
    }
    footer .logoFooter{
        position: relative;
        left: -20px;
    }
    form span,
    .popUp .content span,
    {
        position: relative;
    }


}
@media (max-width: 576px) { ... }



