*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Quicksand',sans-serif;
}

:root {
    --padding-container: 100px 0;
    --color-title: #001A49;
}

body {
    font-family: 'Quicksand',sans-serif;
    font-size: 14px;
	font-weight: 400;
}

.containerr {
    width: 90%;
    max-width: 100%;
    margin: 0 auto;
    overflow: hidden;
    padding: var(--padding-container);
}


/* Hero container */

.hero__containerr {
    max-width: 800px;
    --padding-container: 0;
    display: grid;
    grid-auto-rows: max-content;
    align-content: center;
    gap: 1em;
    padding-bottom: 100px;
    text-align: center;
    margin-top: 60px;
}

.hero__title {
   
    color: #068e08;
    font-size: 47px;
    text-align: center;

    font-weight: bold; /*color de letra del slider-------------------- */
      text-shadow: 2px 4px 6px grey;
    
}

.hero__paragraph {
    margin-bottom: 20px;
    color: black;
}

.cta {
    display: inline-block;
    justify-self: center;
    color: #fff;
    text-decoration: none;
    padding: 13px 30px;
    border-radius: 15px;
    background: #61ba6d;
    background: -webkit-linear-gradient(to right, #61ba6d, #83c331);
    background: linear-gradient(to right, #61ba6d, #83c331); 
   font-size: 20px;
    font-weight: 500;
}


a:hover
{
	color: #fff;
}



/* About */

.about {
    text-align: center;
    margin-top: 100px;
}

.subtitle {
    color: var(--color-title);
    font-size: 2rem;
    margin-bottom: 30px;
    margin-top: 100px;
}
.about__title{
    color:rgba(28, 222, 60, 0.768);;
    font-size: 20px; /*tamaño de letra de las skill de la empresa*/

}

.about__paragrah {
    line-height: 1.7;
    color: black;
    font-size: 18px;
}

.about__main {
    padding-top: 80px;
    display: grid;
    width: 90%;
    margin: 0 auto;
    gap: 1em;
    overflow: hidden;
    grid-template-columns: repeat(auto-fit, minmax(260px, auto));
}


.about__icons {
    display: grid;
    gap: 1em;
    justify-items: center;
    width: 260px;
    overflow: hidden;
    margin: 0 auto;
    
}

.about__icon {
    width: 100px;
}

/* Media queries */

@media (max-width:800px){
    .hero__title{
        font-size: 2.5rem;
    }
    .about__main{
        gap: 2em;
    }

    .about__icons:last-of-type{
        grid-column: 1/-1;
    }


}
@media (max-width:600px){
    .hero__title{
        font-size: 2rem;
    }

    .hero__paragraph{
        font-size: 1rem;
    }

    .subtitle{
        font-size: 1.8rem;
    }
}











/*************************************EMPLEADOS**************************/

.contenedorespag{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    width: 100%;
    gap: 10px;
    margin: auto;
    justify-items: center;
    align-items: center;

    
}
.cardemple{ /*tamaño de las tarjetas de empleados*/
    height: 250px;
    width: 300px;
    overflow: hidden;
    margin: auto;
    padding: 10px 30px;
    border-radius: 2%;
    border: 1px solid #fff;
    transition: all .4e ease-in-out;
    box-shadow: 0px 1px 5px 0px rgba(0,0,0,0.3);
    text-align: center;
    background: linear-gradient(-135deg, #eef5ef, #fff);
}
.cardemple:hover{
    height: 420px;
    width: 300px;
    border-radius: 5px;
    box-shadow: 0px 2px 10px rgba(0,0,0,0.5);  
}
/* propiedades del contorno del circulo*/
.cardemple-encabezado img {
    position: relative;
    border-radius: 50%;
    display: block;
    height: 220px;
    width: 220px;
    border-top: 8px solid rgb(114, 180, 68);
    border-bottom: 8px solid rgb(114, 180, 68);
    object-fit: cover;
    margin: 20px auto;
    transition: all 0.3s ease;

}
.cardemple-encabezado{
    position: relative;
}
/*.cardemple-encabezado:before, .cardemple-encabezado:after{
    content: '';
    position: absolute;
    opacity: .7;
}*/
.cardemple-encabezado:after{
    border-radius: 50%;
    z-index: 20;
    background-color: greenyellow;
    width: 50px;
    height: 50px;
    top: 0;
    right: 25px;
}
.cardemple-encabezado:before{
    width: 70px;
    height: 70px;
    bottom: 0;
    left: 10px;
    border-radius: 20px;
    background-color: greenyellow;
    transform: rotate(120deg);
}
.cardemple-iconos{
    display: flex;
    justify-content: center;
    position: relative;
    margin-bottom: 15px;
    list-style: none;
}
/*.cardemple-iconos li{
    border-radius: 50%;
    background-color: #fff;
    color: #fff;
    width: 120px;
    height: 40px;
    margin:0 5px;
    line-height: 40px;
    text-align: center;
    transform: scale(0);
    transition: all 0.5s ease;
}*/
.desplazar{
    opacity: 0;
    transition: all .5s ease;
    transform: translateY(-45px);
}
.agrandar{
 transform: scale(0);
 opacity: 0;
 transform: all .4s ease;
}
.cardemple:hover .agrandar{
    opacity: 1;
    transform: scale(1);
}
.cardemple:hover .desplazar{
    transform: translateY(0px);
    opacity: 1;
}
/*propiedades de iconos*/
.cardemple-iconos li a{
    color: #050505;
    height: 100%;
    width: 100%;
    border-radius: 50%;
    background: greenyellow;
    display: block;
    line-height: 40px;
    transition: all o.3s;

}
/*contorno del icon*/
.cardemple-iconos li a:hover{
    transform: scale(1.1);
    box-shadow: 0 0 5px #134703;
}
.cardemple-iconos li :nth-child(1) {
    transition-delay: 0.2s;
}
.cardemple-iconos li :nth-child(2) {
    transition-delay: 0.3s;
}
.cardemple-iconos li :nth-child(3) {
    transition-delay: 0.4s;
}
.desplazar:nth-child(1){
    transition-delay:  .1s;
}
.desplazar:nth-child(2){
    transition-delay:  .2s;
}
.desplazar:nth-child(3){
    transition-delay:  .4s;
}
.info-personal:nth-child(1){
    font-size: 30px;
    font-weight: bold;
    padding: 10px;
    line-height: 25px;
}
.info-personal:nth-child(3){
    margin: 15px o;
}
/*color de texto*/
.info-personal{
    color: rgb(6, 5, 5);
}
.cardemple-acciones{
    text-align: center;
    margin-top: 25px;
}
/*propiedades para los botones*/
.botones{
    color: #fff;
    border: none;
    border-radius: 30px;
    box-shadow: 0 0 4px rgba(0,0,0,0.2);
    padding: 8px 15px;
    font-size: 16px;
    width: 80%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(90deg, #83ff75, #061d02);
}
.botones:hover{
    cursor: pointer;
    width: 100%;
}
.botones span {
    margin-right: 10px;
    font-size: 20px;
}
@media screen and(max-width: 600px){
    .contenedorespag{
     grid-template-columns: 1fr;
    }
}

@media screen and(max-width: 852px){
    .contenedorespag{
     gap:5px
    }
}
    
/*******************FIN DE EMPLEADOS**************************+*/

/*resposive tarjeta empleados */
@media (max-width:1200px){
   
    .contenedorespag{
        grid-template-columns: 4fr;
        grid-template-rows: auto;
        grid-template-areas:
        "cardemple";
    }
}



.afterr{
    font-size: 20px;
    color: black;
}


.about__paragrah_zz{
    font-size: 15px;
    color: black;
}







