/* Custom CSS Navbar GW */
.navbar-custom .navbar-brand.logo-image img {
    filter: brightness(0.7) contrast(1.2) !important;
    width: auto !important;
	height: 3.2rem !important;
}

.navbar-custom {
	background-color: rgba(255, 255, 255, 0.6) !important;
}

.navbar-custom .nav-item .nav-link {
	color: #52799f !important;
}

.navbar-custom .nav-item .nav-link:hover,
.navbar-custom .nav-item .nav-link.active {
	color: #14bf98 !important;
}

.navbar-custom .dropdown-menu {
	background-color: #fff;
}

.navbar-custom .dropdown-item {
	color: #52799f !important;
}

.navbar-custom .dropdown-item:hover {
	background-color: #ebebeb !important;
}

.navbar-custom .dropdown-item:hover .item-text {
	color: #14bf98 !important;
}

.navbar-custom .dropdown-items-divide-hr {
	background-color: #b5bcc4 !important;
}

.navbar-custom.top-nav-collapse .nav-item .nav-link {
    color: #52799f !important;
}

/* Custom CSS Home Hero GW */
.headers {
    position: relative;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.headers .bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

/* Custom CSS Lightbox GW */
.product-slider {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.product-slider .swiper-slide {
    text-align: center;
}

.product-slider .swiper-button-next,
.product-slider .swiper-button-prev {
    color: #00c9db;
}

.product-slider .swiper-pagination-bullet-active {
    background: #00c9db;
}

.lightbox-basic .swiper-container {
    margin-bottom: 1.5rem;
}

/* Custom CSS WhatsApp Float GW */
.whatsapp-float {
    position: fixed;
	right: 0.75rem;
	bottom: 0.75rem;
    z-index: 999;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    text-align: center;
    font-size: 26px;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.3);
    transition: background-color 0.3s;
}

.whatsapp-float:hover {
    background-color: #20b955;
    text-decoration: none;
    color: white;
}

.whatsapp-float i {
    line-height: 50px;
}