/*--------------- 
 CSS del Carousel 
----------------*/

.carousel {
    margin-bottom: 1.5rem;
}

.carousel-caption {
    top: 12rem;
    z-index: 10;
}

.carousel-caption h1 {
    color: #fff;
}

.carousel-item {
    height: 50rem;
}

.bd-placeholder-img {
    font-size: 1.125rem;
    text-anchor: middle;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
}

@media (min-width: 768px) {
    .bd-placeholder-img-lg {
        font-size: 3.5rem;
    }
}

@media (min-width: 40em) {
    .carousel-caption h1 {
        font-size: 3.5rem;
    }
    .carousel-caption p {
        margin-bottom: 1.25rem;
        color: #000;
        font-size: 1.4rem;
        line-height: 1.4;
    }
    .text-end p {
        color: #fff;
    }
}

.carousel-caption p {
    color: #fff;
}

.text-end h1 {
    color: #fff;
    margin-right: 5%;
}

.text-end p {
    color: #fff;
}

.text-start h1 {
    color: #fff;
}

.text-start p {
    color: #fff;
}


/*--------------- 
 CSS del Main 
----------------*/

#blog {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 40px;
    margin-top: 50px;
    width: 90%;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    background-color: #F5F6F4;
    margin-left: auto;
    margin-right: auto;
}

.blog-heading {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.blog-heading h3 {
    font-size: 2.5rem;
    color: #5C6513;
}

.contenidoacc {
    display: grid;
    grid-template-columns: repeat(3, 3fr);
}

.card {
    background-color: rgb(245, 245, 245, 0.7);
    width: 80%;
    height: auto;
    margin-top: 8%;
    margin-left: 8%;
    margin-bottom: 8%;
    transition: 0.3s;
    border-radius: 20px 20px 20px 20px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.card:hover {
    transform: scale(105%)!important;
}

.card img {
    object-fit: cover;
    height: 150px;
    width: 100%;
    border-radius: 20px 20px 0px 0px;
    transition: 0.3s;
}

.card p {
    text-align: center;
}


/*Contenido de las Cards*/

#content {
    padding: 2vh 1vw 2vh 2vw;
    font-size: 1.3rem;
    font-family: Arial;
    color: #345e82;
}

#content h3 {
    text-align: center;
    color: #5C6513;
}

#price {
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

#price button {
    margin: 2vw 1vw 2vw 0vh;
    width: 50%;
    height: 2.5rem;
    font-size: 1.5rem;
    font-family: Arial;
    font-weight: Regular;
    background-color: #124F4D;
    border: none;
    outline: none;
    color: white;
    border-radius: 5px;
    transition: 0.3s
}

#price button:active {
    background-color: white;
    color: #345e82
}

#price button:hover {
    transition: 0.3s;
    margin-left: 2vw;
    margin-right: 2vw;
    transform: scale(1.1);
    cursor: pointer
}


/* Responsive CSS de las Cards */

@media (max-width: 800px) {
    .contenidoacc {
        display: block;
        align-content: center;
        justify-content: center;
    }
    .card {
        width: 70%;
        height: 100%;
    }
}

@media (max-width: 500px) {
    .contenidoacc {
        display: block;
        align-content: center;
        justify-content: center;
    }
    .card {
        width: 100%;
        height: 100%;
    }
}


/*--------------
 CSS del Footer
--------------*/

.pie-pagina {
    margin-top: 50px;
    width: 100%;
    background-color: #F5F6F4;
}

.pie-pagina .grupo-1 {
    width: 100%;
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 50px;
    padding: 45px 0px;
}

.pie-pagina .grupo-1 .box figure {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.pie-pagina .grupo-1 .box figure img {
    width: 250px;
}

.pie-pagina .grupo-1 .box h2 {
    color: #000000;
    margin-bottom: 25px;
    font-size: 20px;
}

.pie-pagina .grupo-1 .box p {
    color: #000000;
    margin-bottom: 10px;
}

.pie-pagina .grupo-1 .red-social a {
    display: inline-block;
    text-decoration: none;
    width: 45px;
    height: 45px;
    line-height: 45px;
    color: #fff;
    margin-right: 10px;
    background-color: #124F4D;
    text-align: center;
    transition: all 300ms ease;
}

.pie-pagina .grupo-1 .red-social a:hover {
    color: aqua;
}

.pie-pagina .grupo-2 {
    background-color: #F5F6F4;
    padding: 15px 10px;
    text-align: center;
    color: #000000;
}

.pie-pagina .grupo-2 small {
    font-size: 15px;
}

#logo-footer {
    width: 100px;
}

@media screen and (max-width:800px) {
    .pie-pagina .grupo-1 {
        width: 90%;
        grid-template-columns: repeat(1, 1fr);
        grid-gap: 30px;
        padding: 35px 0px;
    }
}