footer {
    background-color: #eee
}

#copyrights {
    background-color: #ddd;
    font-size: 13px;
    font-style: italic;
    font-weight: 400;
    line-height: 17px
}

/* Navbar styling */
.navbar-collapse {
    flex-basis: auto;
}

.navbar-nav {
    width: 100%;
    justify-content: center;
    gap: 2rem;
}

.navbar-nav .nav-link {
    text-transform: uppercase;
    font-weight: 500;
    font-size: 0.95rem;
    padding-left: 0 !important;
    padding-right: 0 !important;
}

/* Mobile menu styling */
@media (max-width: 991px) {
    .navbar-collapse {
        padding-top: 1rem;
        padding-bottom: 1rem;
    }

    .navbar-nav {
        flex-direction: column;
        gap: 1rem;
    }

    .dropdown-menu {
        position: static;
        float: none;
        width: 100%;
        margin-top: 0.5rem;
        border: none;
        box-shadow: none;
        padding: 0.5rem 0 0.5rem 1rem;
    }
}

/* Hover dropdowns */
.navbar-nav .dropdown:hover>.dropdown-menu {
    display: block;
}

.wrapper.bg-soft-primary {
    background-color: #f5f5f5
}

.swiper-container {
    position: relative
}

.swiper {
    overflow: visible
}

.swiper-slide {
    height: auto
}

figure.rounded {
    position: relative;
    overflow: hidden;
    border-radius: 0.4rem;
    margin: 0
}

figure.rounded img {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 3/2;
    object-fit: cover;
    max-height: 350px
}

figure {
    position: relative
}

.swiper-button {
    background: rgba(255, 255, 255, .7);
    color: #333;
    border: 0;
    box-shadow: 0 .25rem .75rem rgba(30, 34, 40, .02);
    width: 2.2rem;
    height: 2.2rem;
    border-radius: 100%;
    transition: all .2s ease-in-out;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center
}

.swiper-button:hover {
    background: rgba(255, 255, 255, .9)
}

.swiper-button:focus {
    outline: 0
}

.swiper-button:after {
    font-family: FontAwesome;
    font-size: 1rem;
    font-weight: bold
}

.swiper-button-prev {
    left: 1rem
}

.swiper-button-prev:after {
    content: "\f053"
}

.swiper-button-next {
    right: 1rem
}

.swiper-button-next:after {
    content: "\f054"
}

.swiper-button.swiper-button-disabled {
    background: rgba(255, 255, 255, .7)
}