
.sectionCustom {
    margin-left: 1.5rem;
    margin-right: 1.5rem;
    margin-bottom: 5rem;
}

.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
}

.bottom-nav {
    position: fixed;
    bottom: 0;
    width: 100%;
    padding-top: 0.3rem;
    border-top: 1px solid #ddd;
    z-index: 1000;
    background-color: #ffffff;
    border-top-left-radius: 1.5rem;
    border-top-right-radius: 1.5rem;
    box-shadow: 0px 5px 7px rgba(0, 0, 0, 0.4);
}

.bottom-nav .button {
    flex-grow: 1;
    border: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0.3rem;
    margin: 0.5rem;
}

.bottom-nav-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    border: 2px solid black;
    border-radius: 50%;
    font-size: 1.5rem;
    color: #4A4A4A;
}

.bottom-nav-text {
    font-size: 0.8rem;
}

.custom-navbar {
    margin: 1rem;
    border-radius: 10px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    background-color: white;
}

.custom-navbar-2 {
    margin: 1rem;
    border-radius: 10px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    background-color: white;
}

.navbar-brand img {
    max-height: 50px;

}

.navbar-menu {
    align-items: center;
}

.hero {
    position: relative;
    overflow: hidden;
    margin: 1rem;
    height: 30%;
    border-radius: 10px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

.hero-body {
    padding: 0;
}

.hero img {

    object-fit: cover;
}

.dot {
    height: 15px;
    width: 15px;
    margin: 0 2px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
}

.active {
    background-color: #717171;
}

.fade {
    animation-name: fade;
    animation-duration: 1.5s;
}

.custom-hero-dynamic {
    height: 50vh;

}


.column-cs {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-size: 55%;
    padding: 0.4rem
}

.bottom-nav-icon-cs {
    margin-bottom: 5px;
}


@keyframes fade {
    from {
        opacity: .4
    }

    to {
        opacity: 1
    }
}
