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

.logo-title {
    color: #ffffff;
    font-family: 'Noto Sans', sans-serif;
    font-weight: bold;
    text-shadow: 1px 1px 4px #000000;
    
}

nav img {
    width: 150px;
    height: auto;
    padding-left: 50px;
    padding-top: 10px;
}

nav a {
    text-decoration: none;
    background-color: chocolate;
    padding: 5px;
    color: #ffffff;
    transition: 1s;
}

nav a:hover {
    background-color: burlywood;
    transform: scale(1.2);
}

/* enlaces NO visitados */
/*
nav a:link {
    background-color: blueviolet;
}

/ enlaces visitados /
nav a:visited {
    background-color: ;
}*/

nav ul li {
    list-style-type: none;
    font-size: 18px;
    padding-right: 20px;
}
nav {
    background-color: #d2691e;
    display: flex;
    justify-content: space-between;
    
}

.nav-list {
    display: flex;
    padding-top: 20px;
    padding-right: 30px;
}

.box {
    margin-top: 10px;
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px;
}

.box__content {
    width: 350px;
    height: 350px;
    text-align: center;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(0, 0, 0, 0.596);
    overflow: hidden;
    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.295);
    transition: .5s;
}

.box__content:hover {
    box-shadow: 0px 0px 10px tomato;
}

.box__content:hover > img {
    transform: scale(1.1);
}

.box__content .box__content__img {
    width: 100%;
    height: 200px;
    overflow: hidden;
    
}

.box__content .box__content__img img {
    width: 100%;
    
   
}
/*
.box__content__contenido {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.box__content .box__content__contenido h2 {
    background-color: rgb(255, 219, 194);
    width: 100%;
}

.box__content .box__content__contenido button {
    width: 80px;
    height: 25px;
    background-color: burlywood;
    color: black;
    font-size: 15px;
    font-weight: bold;
    border: none;
    position: relative;
    top: 40px;
    left: 100px;
    transition: .4s;
}

.box__content .box__content__contenido button:hover {
    width: 85px;
    height: 30px;
    cursor: pointer;

}*/

.sectionCarousel {
    width: 100%;
    height: auto;
}

.carousel {
    width: 50%;
    height: 300px;
}

.carousel img {
    width: 100%;
    height: 100%;
    
}

.welcomeContent {
    width: 50%;
}


.flex {
    width: 100%;
    height: auto;
}

.flex img {
    width: 50%;
    height: auto;
}

.imagen1 {
    width: 100%;
    height: 200px;
}

.flexcards {
    width: 100%;
    height: 600px;
    
}

.flexcards .card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: .3;
   
}

.card {
    width: 100%;
}

.overlay-card h5 {
    color: #fd964c;
    font-size: 30px;
    font-weight: bold;
}

.overlay-card p {
    font-size: 20px;
    font-weight: bold;
    font-style: italic;
}

small {
    font-size: 2px;

}

.overlay-card {
    display: flex;
    flex-direction: column;
    text-align: center;
    justify-content: center;
   
}

.overlay-card button {
    width: 50%;
    align-self: center;
}

.card-group img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 5px;
}

.card-footer {
    width: 100%;
    align-self: center;
}

.sectionCardsBS h2 {
    text-align: center;
    font-weight: bold;
    font-size: 50px;
}

.sectionCardsBS .card {
    display: flex;
    text-align: center;
    padding: 10px;
    border-radius: 15px;
}

.sectionCardsBS .card h5 {
    font-size: 30px;
    font-weight: bold;
    color: #a75216;
}

.sectionCardsBS .card p {
    font-size: 20px;
    font-style: italic;
}

footer h2 {
    font-size: 50px;
    font-weight: bold;
    text-align: center;
    padding-top: 20px;
}

.red-social-icono {
    font-size: 40px;
}

.red-social-icono:hover {
    color: #d2691e;
}

.conoceNuestraPana {
    text-transform: uppercase;
}

@media (max-width: 390px) {
    body {
        background-color: black;
        color: antiquewhite;
    }

    .box {
        flex-direction: column;
    }

    h2 {
        color: black;
    }

}

@media (max-width: 768px) and (min-width: 391px) {
    body {
        background-color: rgb(224, 162, 118);
    }

    .box__content__contenido img {
        width: 100%;
        height: 100%;
    }
}

