@import url('https://fonts.googleapis.com/css2?family=Yeseva+One&display=swap');
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Yeseva One', serif;
    font-size: 20px;
}
body{
    background-color: white;
}

/*HEADER*/
header{
    width: 100%;
    height: 100px;
    background-color: #a7ffe2;
    color: #000;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
}
.contenedor{
    width: 98%;
    margin: auto;
}

.logo{
    float: left;
    cursor: pointer;
}
.logo img{
    height: 100px;
    width: auto;
    transition: all 0.3s;
    margin-left: 40%;
    margin-top: 0%;
}
.logo img:hover{
    transform: scale(1.6);
}
header .contenedor{
    display: table;
}
section{
    width: 100%;
    margin-bottom: 25%;
}
#menu-bar{
    display: none;
}
header label{
    float: right;
    font-size: 28px;
    margin: 6px 0;
    cursor: pointer;
}
.menu{
    position: absolute;
    top: 85px;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgb(80, 88, 86);
    transition: all 4,5s;
    transform: translateX(-100%);
}
.menu a{
    display: block;
    color: rgb(248, 248, 250);
    height: 70px;
    text-decoration: none;
    padding: 25px;
    border-bottom: 1px solid rgba(255,255, 255,0.5);
}
.menu a:hover{
    background: rgba(255,255, 255,0.5);
}
#menu-bar:checked ~ .menu{
    transform: translateX(0%);
}
@media (min-width:960px){
    .menu{
        position: static;
        width: auto;
        height: auto;
        transform: translateX(0%);
        float: right;
        display: flex;
        background-color: #a7ffe2;
    }
    .menu a{
        border: none;
        color: rgb(80, 88, 86);
    }
    header label{
        display: none;
    }
}

/*MAIN*/
.main img{
    height: auto;
    width: 100%;
}

/*BANNER*/
.banner{
    margin-top: 130px;
    position: relative;
}
.banner img{
    width: 100%;
    height: 100%;
}
.banner .TextoBanner{
    text-align: center;
    margin-top: 1%;
    color: rgba(80, 88, 86, 0.781);
}
.banner h5{
    font-size: 120%;
}
/*OFRECEMOS*/
.ofrecemos{
    background-color: #a7ffe2;
}
.titulo{
    color: rgba(80, 88, 86, 0.781);
    font-size: 150%;
    text-align: center;
    margin-top: 25px;
}
.item31 {
    color: rgb(80, 88, 86);
    font-size: 100%;
    text-align: center;
    margin-top: 20px;
}
.item32{
    color: rgb(80, 88, 86);
    font-size: 100%;
    text-align: center;
    margin-top: 15px;
}
.item33{
    color: rgb(80, 88, 86);
    font-size: 100%;
    text-align: center;
    margin-top: 15px;
}
.item34{
    color: rgb(80, 88, 86);
    font-size: 100%;
    text-align: center;
    margin-top: 15px;
}
.item35{
    color: rgb(80, 88, 86);
    font-size: 100%;
    text-align: center;
    margin-top: 15px;
}
.item36{
    color: rgb(80, 88, 86);
    font-size: 100%;
    text-align: center;
    margin-top: 15px;
}

/*COLORIMETRIA*/
.slider {
    width: 100%;
    height: 550px;
    overflow: hidden;
}
.slider ul {
    display: flex;
    animation: cambio 20s infinite alternate linear;
    width: 400%;
}
.slider li {
    width: 100%;
    list-style: none;
}
.slider img {
    width: 100%;
    height: 100%;
}
@keyframes cambio {
    0% {margin-left: 0;}
    20% {margin-left: 0;}
    25% {margin-left: -100%;}
    45% {margin-left: -100%;}
    50% {margin-left: -200%;}
    70% {margin-left: -200%;}
    75% {margin-left: -300%;}
    100% {margin-left: -300%;}
}
.textcolor {
    color: white;
    background-color: rgb(155, 175, 170);
    font-size: 94%;
    text-align: center;
    padding-top: 3%;
}
.textcolorS {
    color: white;
    background-color: rgb(155, 175, 170);
    font-size: 20px;
    text-align: center;
    padding-top: 2%;
}

/*TARJETAS*/
.tarjetas {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}
.card {
    position: relative;
    width: 270px;
    height: 530px;
    margin: 20px;
}
.card .face {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 10px;
    overflow: hidden;
    transition: .5s;
}
.card .front {
    transform: perspective(600px) rotateY(0deg);
    box-shadow: 0 5px 10px #000;
}
.card .front img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: fill;
}
.card .front h3 {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 50px;
    line-height: 55px;
    color: #fff;
    background: rgba(0, 0, 0, .3);
    text-align: center;
    font-size: 70%;
}
.card .back {
    transform: perspective(600px) rotateY(180deg);
    box-shadow: 0 5px 10px #000;
}
.card .back img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: fill;
}
.card .back h3 {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 50px;
    line-height: 55px;
    color: #fff;
    background: rgba(0, 0, 0, .3);
    text-align: center;
    font-size: 80%;
}
.card .back h2 {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 70px;
    line-height: 45px;
    color: #fff;
    background: rgba(0, 0, 0, .3);
    text-align: center;
    font-size: 57%;
}
.card .back p {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 30px;
    line-height: 25px;
    color: #fff;
    background: rgba(0, 0, 0, .0);
    text-align: center;
    font-size: 57%;
}
.card:hover .front {
    transform: perspective(600px) rotateY(180deg);
}
.card:hover .back {
    transform: perspective(600px) rotateY(360deg);
}
/*VESTIDOR*/
.vestidores {
    background-color: #a7ffe2;
    height: 660%;
}
.vestidores h3 {
    text-align: center;
    font-size: 80%;
    padding-top: 16px;
    padding-bottom: 5px;
}
.fotovestidor {
    width: 70%;
    padding-left: 27%;
    padding-bottom: 10%;
    padding-top: 2%;
}
.vestidores p {
    padding-top: 3px;
    font-size: 71%;
    align-items: center;
    text-align: center;
}
/*PROYECTOS*/
.proyectos {
    height: 460%;
    background-color: rgb(155, 175, 170);
}
.proyectos h3 {
    color: #fff;
    text-align: center;
    font-size: 100%;
    padding-top: 20px;
    padding-bottom: 5px;
}
.fotoproyectos {
    width: 95%;
    padding-left: 4%;
    padding-bottom: 10%;
    padding-top: 2%;
}
.proyectos p {
    color: #fff;
    padding-top: 10px;
    font-size: 83%;
    align-items: center;
    text-align: center;
}
/*SOBRE MI*/
.sobremi {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.fotosobremi {
    padding-left: 2%;
    padding-right: 2%;
    padding-top: 0%;
}
.textosobremi p{
    padding-left: 2%;
    padding-right: 2%;
    padding-top: 1%;
    padding-bottom: 5%;
    font-size: 1.8%;
    align-items: center;
    text-align: center;
}
.textosobremi h3 {
    color: #a7ffe2;
    font-size: 180%;
    padding-bottom: 20px;
    text-align: center;
}
/*CAPACITACIONES*/
.capacitaciones {
    color: rgb(155, 175, 170);
    font-size: 150%;
    text-align: center;
    padding-top: 20px;
}
.capacitaciones h3 {
    font-size: 80%;
    padding-top: 30px;
    padding-bottom: 30px;
    text-align: center;
    background-color: #a7ffe2;
}
.capacitaciones h2 {
    font-size: 70%;
    text-align: center;
}
.capacitaciones p {
    font-size: 50%;
    text-align: center;
}
.celeb {
    padding-top: 5%;
}
/*ESCUELA ONLINE*/
.escuela{
    background-color: #a7ffe2;
    color: black;
    font-size: 170%;
    text-align: center;
    margin-top: 12px;
}
.escuela img{
    width: 40%;
    height: 40%;
}
.escuela a{
    display: block;
    color: #000;
    text-decoration: none;
    padding: 5px;
}
.escuela a:hover{
    background: #fff;
}
/*SERVICIOS*/
.servicios {
    background-color: rgba(80, 88, 86, 0.781);
    color: white;
    font-size: 250%;
    text-align: left;
    margin-top: 12px;
    margin-bottom: 2px;
}
.servicios h3 {
    font-size: 70%;
    padding-top: 15px;
    padding-bottom: 10px;
    text-align: center;
}
.servicios h2 {
    font-size: 40%;
    text-align: center;
    padding-top: 15px;
    padding-bottom: 10px;
}
.servicios p {
    font-size: 28%;
    text-align: center;
    padding-bottom: 10px;
}
.color {
    padding-top: 5%;
}
.looks {
    padding-top: 5%;
}
.asesoria {
    padding-top: 5%;
}


/*FOOTER*/
.footer {
    background-color: #a7ffe2;
    height: 350px;
}
.mail{
    font-size: 13px;
    padding-top: 5%;
}
.contactos{
    font-size: 1.8%;
    padding-top: 1%;
    text-align: left;
}
.footer .logo {
    float: center;
    cursor: pointer;
}
.footer .logo img {
    height: 150px;
    width: auto;
    transition: all 0,3s;
    margin-top: 20%;
}
.footer .logo img:hover {
    transform: scale(1.4);
}


.copyright {
    background-color: #000;
}
.copyright p {
    color: #fff;
    font-size: 50%;
    text-align: center;
}


