body{
    font-family: 'Roboto', sans-serif;
    font-size: 1rem;
    color: rgb(70, 70, 70);
    padding: 0;
    margin: 0;
    position: relative;
}
::-moz-selection{
    background-color: rgb(255,228,207);
    color: black;
}
::selection{
    background-color: rgb(255,228,207);
    color: black;
}
a:visited, a:link{
    text-decoration: none;
    color: inherit;
    font-weight: inherit;
}
.primaryTextSerif{
    font-family: 'Arvo', serif;
}
.primaryText{
    font-family: 'Josefin Sans', sans-serif;
    font-weight: 700;
}
.principalTitleSection{
    font-weight: 700;
    font-family: 'Josefin Sans', sans-serif;
    font-size: 1.7rem;
    color: rgb(105, 105, 105);
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 40px;
    margin: 2rem 0;
    background-image: linear-gradient(to right,  rgb(252, 206, 170), rgb(237, 152, 19), rgb(105, 105, 105), rgb(252, 206, 170));
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    background-size: 500%;
    background-position: -100%;
    animation: animatedTitle infinite 8s linear alternate-reverse;
}
@keyframes animatedTitle{
    to{
      background-position: 100%; 
    }
}
header{
    position: sticky;
    top: 0;
    box-shadow: 0px 1px 10px rgba(0,0,0,0.2);
    -webkit-box-shadow: 0px 1px 10px rgba(0,0,0,0.2);
    z-index: 1000;
}
.navbar{
    padding: 0;
}
.navbar-brand{
    text-align: inherit;
    padding: 0;
}
.nav-img{
    height: 75px;
}
.nav-menu{
    font-family: 'Arvo', serif;
    background-color: rgb(255,255,255);
}
.navbar-nav{
    align-items: center;
    padding: 0;
}
.nav-item{
    width: 90%;
    height: 64px;
    margin: 0.75rem 0.25rem;
    display: grid;
    place-content: center;
    text-align: center;
    border-radius: 5px;
    font-weight: 600;
    background-color: rgb(255,255,255);
    background-image: none;
    border: 3px solid rgb(252, 206, 170);
    max-width: 255px;
}
.navbar-nav .nav-link{
    padding-left: 8px;
    padding-right: 8px;
    font-size: 0.9rem;
}
.navbar-nav .nav-item .nav-link.active{
    color: rgb(237, 152, 19);
}
.offcanvas-end{
    width: 82%;
}
.offcanvas-body{
    background-color: rgb(253, 239, 228);
    background-image: linear-gradient(45deg, white, transparent);
}
.offcanvas-header{
    padding: 2rem 1rem;
    background-color: rgb(255, 255, 255);
}
.offcanvas-title{
    color: rgb(136, 124, 112);
    text-shadow: 3px 3px 5px rgb(188, 188, 188);
}
.btnTop{
    color: white;
    position: fixed;
    bottom: 10px;
    right: 10px;
    display: none;
    padding: 0.5rem 0.9rem;
    background-color: rgba(84,188,65, 0.8);
    box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.2);
    border-radius: 50%;
}
.btnTop-icon{
    color: white;
    font-size: 1.2rem;
}
.btnTop:hover{
    background-color: rgb(84,188,65);
}
.btnTop:visited{
    background-color: rgba(84,188,65, 0.8);
}
.highlight-color{
    color: rgb(237, 152, 19);
    font-weight: 600;
    font-family: 'Arvo', serif;
}
.highlight{
    font-weight: 700;
    font-family: 'Josefin Sans', sans-serif;
    font-size: 1.1rem;
}
.section-carousel{
    height: calc(100vh - 75px);
}
.carousel-img{
    display: block;
    background-image: url("../../img/bg-alim.jpg");
    height: calc(100vh - 75px);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}
.carousel-img-1{
    background-image: url("../../img/bg-antrop.jpg");
}
.carousel-img-2{
    background-image: url("../../img/bg-plants.jpg");
}
.carousel-img-3{
    background-image: url("../../img/bg-recipe.jpg");
}
.carousel-img-4{
    background-image: url("../../img/bg-treatm.jpg");
}
.carousel-img-5{
    background-image: url("../../img/bg-turnos.jpg");
    background-position: top;
}
.carousel-caption{
    background-color: rgba(0, 0, 0, 0.2);
    top: 12%;
    bottom: 15%;
    right: 12%;
    left: 12%;
    backdrop-filter: blur(10px);
    border-radius: 25px;
    border: 1px dotted rgba(255, 255, 255, 0.1);
    border: 5px solid rgba(255, 255, 255, 0.75);
    display: flex;
    flex-flow: row wrap;
    align-content: center;
    justify-content: center;
    padding: 2rem 0;
}
.carousel-caption-content{
    display: block;
    margin: auto 0;
    padding: 2rem 1rem;
}
.carousel-caption-title{
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    font-family: 'Josefin Sans', sans-serif;
    text-transform: uppercase;
}
footer{
    background-image: url("../../img/bg-footer.jpg");
    height: inherit;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 1rem;
    text-align: center;
}
.footer-info-icons{
    text-align: center;
    margin: 2rem 0 1rem 0;
}
.footer-info-icons, .footer-info-maps{
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}
.footer-icon{
    width: 3.3rem;
    margin: 0 2rem;
    box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.2);
    border-radius: 16px;
    transition: all 0.3s;
}
.footer-icon:hover{
    transform: scale(1.2);
    box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.5);
}
.footer-map{
    width: 90%;
}
.footer-text-map{
    margin: 2rem 0 1rem 0;
}
.footer-text-small{
    font-size: 0.6rem;
    margin-top: 2rem;
    color: rgb(105, 105, 105);
    font-family: 'Raleway', sans-serif;
}
@media screen and (min-width: 576px){
    .navbar-nav .nav-link{
        padding-left: 0;
        padding-right: 0;
    }
}
@media screen and (min-width: 992px){
    .principalTitleSection{
        font-size: 2rem;
    }
    .navbar-brand{
        text-align: center;
        padding-left: 1rem;
    }
    .nav-img{
        height: 90px;
    }
    .offcanvas-body{
        background-color: rgb(255,255,255);
    }
    .navbar-expand-lg .navbar-nav{
        flex-flow: row wrap;
        font-size: 0.9rem;
    }
    .nav-item{
        border-radius: 0px;
        width: 130px;
        height: 64px;
        margin: 0 0.25rem;
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        border: none;
        transition: none;
        z-index: 1;
    }
    .nav-item:hover{
        background-color: transparent;
        background-image: none;
        border: none;
    }
    .nav-item::before{
        content: '';
        position: absolute;
        display: block;
        width: 100%;
        height: 100%;
        background-image: linear-gradient(to top, rgb(252, 248, 245), rgb(255,228,207));
        transform: scaleY(0);
        transition: transform .4s;
        z-index: -1;
    }
    .nav-item:hover::before{
        transform: scaleY(1);
        transform-origin: top;  
    }
    .navbar-nav .nav-link{
        font-size: 0.8rem;
    }
    .section-carousel{
        height: calc(100vh - 90px);
    }
    .carousel-img{
        height: calc(100vh - 90px);
    }
    .carousel-caption{
        top: 20%;
        bottom: 20%;
        right: 15%;
        left: 15%;
    }
    .carousel-caption-title{
        font-size: 2.5rem;
    }
    .carousel-caption-text{
        width: 60%;
        margin: 1rem auto 0 auto;
        font-size: 1.2rem;
    }
    .carousel-caption-text-5{
        width: unset;
    }
    .btnTop{
        color: white;
        position: fixed;
        bottom: 20px;
        right: 30px;
        display: none;
    }
    .btnTop-icon{
        color: white;
        font-size: 1.4rem;
    }
    .footer-info{
        display: flex;
        flex-flow: row nowrap;
        justify-content: space-evenly;
        align-items: flex-start;
    }
    .footer-map{
        width: 100%;
    }
    .footer-icon-instagram{
        margin: 0 2rem 0 0.75rem;
    }
    .footer-icon-whatsapp{
        margin: 0 0.75rem 0 2rem;
    }
    footer{
        padding: 1rem;
    }
    .footer-info-icons, .footer-info-maps{
        max-width: 300px;
        margin-left: 1.25rem;
        margin-right: 1.25rem;
    }
    .footer-info-icons p{
        margin-bottom: 2rem;
    }
}
@media screen and (min-width: 1200px){
    .navbar-expand-lg .navbar-nav{
        font-size: 1rem;
    }
    .navbar-brand{
        padding-left: 2rem;
    }
    .nav-item{
        width: 150px;
        margin: 0 0.75rem;
    }
    .navbar-nav .nav-link{
        font-size: 0.9rem;
    }
    .footer-info-icons, .footer-info-maps{
        margin-left: 2rem;
        margin-right: 2rem;
    }
}