.c-item {
    height: 680px;
}

.c-img {
    height: 100%;
    object-fit: cover;
    filter: brightness(0.85);
}

header .main-bar-wraper .main-bar {
    background-color: #f0f7ff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.navbar-nav a {
    transition: all 0.3s ease-in-out;
}
.navbar-nav a {
    position: relative;
}

.navbar-nav a::after {
    content: "";
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--bs-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease-in-out;
}

.navbar-nav a:hover::after {
    transform: scaleX(1);
}

.navbar-nav a.active {
    color: var(--bs-primary) !important;
    border-bottom: 3px solid var(--bs-primary);
    font-weight: bold;
    transition: all 0.3s ease-in-out;
}

.header-nav.w3menu .nav > li > a {
    color: var(--white);
    font-size: 13px;
}

.btn-fixed-bottom-right {
    position: fixed;
    bottom: 20px;
    right: 20px;
}

.btn-fixed-bottom-left {
    position: fixed;
    bottom: 20px;
    left: 20px;
}
.btn-icon {
    justify-content: center;
    z-index: 1;
}
.btn-icon-md {
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

.btn-icon-lg {
    width: 60px;
    height: 60px;
    border-radius: 50%;
}

.btn-icon-success {
    background-color: var(--bs-success);
    color: #FFF;
}

.btn-icon-success:hover {
    background-color: #026056;
    color: #FFF;
}

.input-search {
    display: flex;
    align-items: center;
    justify-content: space-around;
    position: relative;
    border-color: var(--bs-primary);
    background: #E2F0F9;
    border-radius: 28px;
    transition: all 0.3s ease;
    &&:hover {
        box-shadow: 0 0 5px rgba(0,189,224,0.8);
    }
}


.input-search input {
    background: #E2F0F9 !important;
    &&:focus {
        outline: 0 !important;
        background: #E2F0F9 !important;
    }
}

.cursor-pointer {
    cursor: pointer;
}

.input-search .fa-circle-xmark {
    display: none;
}
