
#app #header .header-navbar{
    display: flex;
    justify-content: space-between;
    align-items: center;
}


#app #header .header-navbar .btn.navbar-toggle-btn{
    font-size: var(--font-size-lg);
    display: none;
}

#app #header .header-navbar .navbar-menu{
    padding: 10px;
}

#app #header .header-navbar .navbar-menu .item{
    display: inline-block;
    margin: 0 5px;
}


#app #header .header-navbar .navbar-menu .item .link{
    text-transform: capitalize;
    font-size: var(--font-size-base);
    font-weight: normal;
    text-decoration: none;
    transition: all 0.8s ease;
    color: var(--secondary-text-color);
    opacity: 0.8;
}

#app #header .header-navbar .navbar-menu .item .link.btn{
    background-color: var(--primary-bg-color);
    color: var(--primary-text-color);
    border-radius: 5px;
    text-transform: capitalize;

}

#app #header .header-navbar .navbar-menu .item .link.active{
    font-weight: var(--font-weight-bold);
}


#app #header .header-navbar .navbar-menu .item .link:hover{
   color: var(--primary-bg-color);
}

#app #header .header-navbar .navbar-menu .item .link.btn:hover{
   color: var(--primary-bg-color);
   background-color: transparent;
   border: 1px solid var(--primary-bg-color);
}


#app #header .header-navbar .img-fluid.logo-img{
    max-width: 150px;
    height: auto;
    max-height: 60px;
}

#app #main .slider.app-slider .slide,
#app #main .slider.app-slider{
    height: 600px;
    overflow: hidden;
}


#app #main .slider.app-slider .carousel .carousel-inner .carousel-item{
    position: relative;
    height: 600px;
}



#app #main .slider.app-slider .carousel .carousel-inner .carousel-item::before{
    content: '';
    background-color: rgba(0, 0, 0, 50%);
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    position: absolute;
}

#app #main .slider.app-slider .carousel .carousel-inner .carousel-item .img-fluid{
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: top;
    display: block;
}

#app #main .slider.app-slider .carousel .carousel-inner .carousel-item .banner-text-wrapper{
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    color: var(--body-bg-color);
    z-index: 2;
    text-align: center;
}



#app #main .slider.app-slider .carousel .carousel-inner .carousel-item .banner-text-wrapper .title{
    font-size: 35px;
    text-transform: capitalize;
    font-weight: bold;
    margin-bottom: 6px;
    padding: 6px;
}



#app #main .slider.app-slider .carousel .carousel-inner .carousel-item .banner-text-wrapper  .action-wrapper
{
    margin-top: 3rem;
}




#app #main .slider.app-slider .carousel .carousel-inner .carousel-item .banner-text-wrapper .menu-wrapper{
    margin: 0;
    padding: 0;
    list-style: none;
}


#app #main .slider.app-slider .carousel .carousel-inner .carousel-item .banner-text-wrapper .action-wrapper .menu-wrapper .item{
    display: inline-block;
    margin: 5px;
}


#app #main .slider.app-slider .carousel .carousel-inner .carousel-item .banner-text-wrapper .action-wrapper .menu-wrapper .item .link{
    color: inherit;
    text-decoration: none;
    text-transform: capitalize;
    font-size: 18px;
    border: 1px solid var(--primary-bg-color);
    padding: 10px 15px;
    transition: all 0.5s ease;
    color: var(--white-color);
}


#app #main .slider.app-slider .carousel .carousel-inner .carousel-item .banner-text-wrapper .action-wrapper .menu-wrapper .item:nth-child(1) .link
{
    background-color: var(--primary-bg-color);
    border: 1px solid var(--primary-bg-color);
    color: var(--primary-text-color);
}


#main .svc-section .title{
    text-transform: capitalize;
    font-size: var(--font-size-md);
    font-weight: var(--font-weight-bold);
    margin-bottom: 1.5rem;
    text-align: center;
    color: var(--primary-bg-color);
}

#main .svc-section .svc-wrapper.grid
{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    justify-content: center;
    grid-row-gap: 25px;
    grid-column-gap: 25px;
}

#main .svc-section .svc-wrapper.grid .card{
    border: none;
    border-radius: 0;
    text-align: center;
}

#main .svc-section .svc-wrapper.grid .card .card-body i{
    font-size: var(--font-size-xxl);
    margin-bottom: 15px;
}

#main .svc-section .svc-wrapper.grid .card.yellow .card-body i{
    color: var(--yellow);
}


#main .svc-section .svc-wrapper.grid .card.green .card-body i{
    color: var(--success);
}


#main .svc-section .svc-wrapper.grid .card.red .card-body i{
    color: var(--danger);
}


#main .svc-section .svc-wrapper.grid .card.blue .card-body i{
    color: var(--blue);
}



#main .svc-section .svc-wrapper.grid .card .card-body .title{
    font-size: var(--font-size-base);
    font-weight: var(--font-weight-bold);
    text-transform: capitalize;
    opacity: 0.7;
    margin-bottom: 0;
    padding: 10px 0;
    color: var(--secondary-text-color);
}


#main .svc-section .svc-wrapper.grid .card .card-body .text{
    font-size: var(--font-size-sm);
}

#main .hero-section .row{
    align-items: center;
}

#main .hero-section .title{
    font-size: var( --font-size-xl);
    text-transform: capitalize;
    font-weight: bold;
    margin-bottom: 5px;
    margin-bottom: 8px;
}


#main .hero-section .title.small{
    font-size: var(--font-size-sm);
    color: var(--primary-bg-color);
    margin-bottom: 6px;
}

#main .hero-section .text{
    font-size: var(--font-size-sm);
    margin-bottom: 0;
    line-height: 25px;
}

#main .hero-section .article-content{
    margin-left: 25px;
}

#main .hero-section .support-menu
{
    margin-top: 2rem;
}

#main .hero-section .support-menu li{
    padding: 6px 0;
    font-size: var(--font-size-sm);
    text-transform: capitalize;
}

#main .hero-section .support-menu li::before{
    content: '\f058';
    font-family: 'font awesome 6 free';
    font-weight: 900;
    margin-right: 8px;
    font-size: var(--font-size-md);
    color: var(--primary-bg-color);
}


#main .hero-section .link{
    background-color: var(--primary-bg-color);
    color: var(--primary-text-color);
    transition: all 0.5s ease;
    padding: 6px 15px;
    min-width: 120px;
    text-transform: capitalize;
    font-weight: bold;
    border-radius: 0;
    text-decoration: none;
    margin-top: 1.5rem;
}

#main .hero-section .img-fluid{
    transition: all 1s ease;
    min-height: 450px;
}

#main .hero-section .img-fluid:hover{
    transform: scale(1.01);
}


#main .service-section .title{
    font-size: var(--font-size-md);
    font-weight: bold;
    margin-bottom: 10px;
    text-align: center;
    text-transform: capitalize;
    color: var(--primary-bg-color);
}

#main .service-section .text{
    width: 80%;
    display: block;
    margin: auto;
    text-align: center;
    margin-bottom: 1rem;
}

#main .service-section .card,
#main .service-section .card .card-header,
#main .service-section .card .card-body,
#main .service-section .card .card-footer{
    border-radius: 0;
    background-color: var(--secondary-bg-color);
     border: none;
}


#main .service-section .card{
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}


#main .service-section .svc-card-wrapper .card-grid{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-row-gap: 25px;
    grid-column-gap: 25px;
    max-width: 1200px;
    margin: auto;
    margin-top: 2rem;
}

#main .service-section .card{
    width: 100%;
    transition: all 1s ease;
    position: relative;
}

#main .service-section .card::before,
#main .service-section .card::after{
    content: '';
    position: absolute;
    height: 3px;
    background-color: var(--primary-bg-color);
    bottom: 0;
      transition: all 0.7s ease;
}




#main .service-section .card::before
{
    width: 50%;
    left: 0;
}

#main .service-section .card::after{
    width: 55%;
    right: 0;
}


#main .service-section .card:hover::before {
    left: 50%; /* Moves to the center */
    width: 0;  /* Collapses the left side */
}

#main .service-section .card:hover::after {
    right: 50%; /* Moves to the center */
    width: 0;  /* Collapses the right side */
}



#main .service-section .card:hover{
    transform: translateY(-5px);
    border-bottom: transparent;
}

#main .service-section .card .card-header{
    padding: 0;
    height: 300px;
    position: relative;
}

#main .service-section .card .card-header::after{
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    left: 0;
    z-index: 1;
    background-color: rgba(0, 0, 0, 50%);
}

#main .service-section .card .card-header .img-fluid{
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;
}

#main .service-section .card .card-body .title{
    color: var(--secondary-text-color);
    font-weight: bold;
    font-size: var(--font-size-md);
    margin: 8px 0;
    text-align: center;
}

#main .service-section .card .card-body .text{
    width: 100%;
    padding: 14px 0;
}

#main .bg-slider.fixed
{
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    min-height: 550px;
    position: relative;
}

#main .bg-slider.fixed::after{
    content:  '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 50%);
    z-index: 1;
}


#main .bg-slider.fixed .content{
    position: absolute;
    top: 50%;
    left: 50%;
    max-width: 700px;
    transform: translate(-50%, -50%);
    color: var(--white-color);
    z-index: 11;
    padding: 15px 20px;
    background-color: rgba(0, 0, 0, 80%);
}

#main .bg-slider.fixed .content .title{
    font-size: var(--font-size-xxl);
    margin-bottom: 15px;
    text-align: center;
}

#main .bg-slider.fixed .content .text{
    font-size: var(--font-size-base);
    margin: 0;
    text-align: center;
}

#main .connect{
    background-color: var(--primary-bg-color);
    width: 100%;
    height: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
}

#main .connect .row{
    align-items: center;
}


#main .connect .text{
    font-size: var(--font-size-xxl);
    color: var(--primary-text-color);
    margin-bottom: 0;
}


#main .connect .link.connect-with-us{
    border: 2px solid var(--white-color);
    text-decoration: none;
    color: var(--white-color);
    background-color: transparent;
    padding: 8px;
    border-radius: 0;
    transition: all 0.5s ease;
    font-size: var(--large-font-size);
    text-transform: capitalize;
}

#main .connect .link.connect-with-us:hover{
    color: var(--accent-color);
    background-color: var(--white-color);
}


#footer{
    background-color: var(--primary-bg-color);
    color: var(--primary-color) !important;
    padding: 20px 6px;
}

#footer .footer-row{
    display: flex;
    flex-direction: row;
    align-items: center;
}


#footer .footer-row .column.fs{
    flex-grow: 1;
    flex: 1;
}

#footer .footer-row .column.fs .row{
    display: flex;
    flex-direction: row;
    justify-content: space-around;
}


#footer .footer-row .column.fs .row .title{
    text-transform: capitalize;
    font-weight: bold;
    font-size: 16px;
    color: var(--primary-text-color);
    padding: 10px 2px;
}



#footer .footer-row .column.fs .row .menu-item{
    list-style: none;
    padding: 0;
    margin: 0;
}

#footer .footer-row .column.fs .row .menu-item .item .link{
    text-decoration: none;
    font-size: 14px;
    display: block;
    width: 100%;
    color: var(--primary-text-color);
    text-transform: capitalize;
    padding: 3px 2px;
    transition: all 0.5s ease;
}


#footer .footer-row .column.fs .row .menu-item .item .link:hover{
    opacity: 0.9;
}


#footer .footer-row .column.ls{
    max-width: 30%;
    padding: 8px;
}


#footer .footer-row .column.ls .title{
    font-size: 20px;
    text-transform: uppercase;
    font-weight: bold;
    padding: 6px 0;
    margin-bottom: 0;
    color: var(--primary-text-color);
}


#footer .footer-row .column.ls .text{
    font-size: 14px;
    margin-bottom: 15px;
    font-weight: normal;
    color: var(--primary-text-color);
}

#footer .footer-row .column.ls .icon-wrapper{
    padding: 6px 0;
}

#footer .footer-row .column.ls .icon-wrapper a{
    text-decoration: none;
    color: var(--primary-text-color);
    margin:4px;
    font-size: 18px;
}

#footer .footer-row .column.ls .icon-wrapper a:hover{
    opacity: 0.8;
}

#footer .footer-row .column.ls .link.btn{
    font-size: 15px;
    text-decoration: none;
    text-transform: capitalize;
    font-weight: bold;
    padding: 8px;
    background-color: rgb(3, 3, 31);
    color: var(--white);
    margin: 10px 0;
    transition: all 0.3s ease;
}


#footer .footer-row .column.ls .link.btn .icon{
    margin-right: 8px;
}

#footer .footer-row .column.ls .link.btn:hover{
    text-decoration: underline;
}

#footer .lw-footer-wrapper{
    padding: 15px 0;
    border-top: 1px solid var(--primary-border-color);
    margin-top: 20px;
}

#footer .lw-footer-wrapper .text{
    margin-bottom: 0;
    font-size: 13px;
    text-align: center;
    color: var(--primary-text-color);
}