@import url('https://fonts.googleapis.com/css2?family=Montserrat: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');

*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

:root{
    --lineH: 1.6;
    --colorP: #424242;
    --bgColor: #424242;
}

p{
    color: var(--colorP);
}

h1{
    color: var(--colorP);
}

h5{
    color: var(--colorP);
}

.txtCenter{
    text-align: center;
}

.main{
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 3rem 0rem;
}

.containerContent{
    width: 90%;
    max-width: 1094px;
}



/*------ SECTION ONE ------*/

.h5SectionOne{
    font-size: 1.7rem;
}

.divContainerIconEntry{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 1rem 0;
}

.pInfoIconEntry{
    text-align: center;
    line-height: 1;
    font-weight: 600;
}

.divBgIconEntry{
    background-color: var(--bgColor);
    -webkit-mask-box-image: url(https://encasa.parqueexplora.org/wp-content/uploads/2020/10/FLECHA.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100%;
    width: 80px;
    height: 80px;
    transform: translateY(-15%);
    animation: slide-in 4s infinite;
}

@keyframes slide-in {

    50% {
        transform: translateY(15%);
        -webkit-transform: translateY(15%);
    }

    100% {
        transform: translateY(-15%);
        -webkit-transform: translateY(-15%);
    }
}

/*------ SECTION TWO ------*/

.img{
    width: 100%;
    border-radius: 10px 10px 10px 10px
}



.sectionImg{
    gap: 3rem;
}

/*------ SECTION TREE ------*/

.containerALinkEndInfo{
    display: flex;
    justify-content: center;
    padding: 1rem 0;
}

.aLinkDEndInfo{
    background-color: #59b3a2;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    text-decoration: none;
    color: #fff;
    font-size: .9rem;
    transition: .3s;
}

.aLinkDEndInfo:hover{
    background-color: #33655C;
}

.btnFixed{
    display: flex;
    z-index: 1;
    position: fixed;
    bottom: 2rem;
    left: 2rem;
}

.carrouselMovil{
    height: 15rem;
}

@media (min-width:360px){

    /*------ SECTION ONE ------*/
    .sectionImg{
        display: none;
    }

    /*------ SECTION TWO ------*/
    .carrouselMovil{
        display: block;
    }
}


@media (min-width:768px){

    /*------ SECTION ONE ------*/

    p{
        line-height: var(--lineH);
    }

    .h1SectionOne{
        font-size: 4rem;
        line-height: .9;
    }

    .h5SectionOne{
        font-size: 1.7rem;
    }

    /*------ SECTION TWO ------*/

    .sectionImg{
        display: grid;
        grid-template: repeat(6,21rem) / repeat(2, auto);
        margin-bottom: 3rem;
    }

    .img{
        -webkit-box-shadow: 0px 0px 17px -4px rgba(0,0,0,0.75);
        -moz-box-shadow: 0px 0px 17px -4px rgba(0,0,0,0.75);
        box-shadow: 0px 0px 17px -4px rgba(0,0,0,0.75);
    }

    .containerItemSectionImg{
        width: 540px;
        height: 540px;
    }

    /*------ SECTION TREE ------*/

    .carrouselMovil{
        display: none;
    }
}