/* Slider */


/* Hero Section */
.hero-section {
    background-color: #2A7BB81A;
    padding-bottom: 20px;
    margin-bottom: 35px;
    padding-top: 125px !important;
}

/* Hero Slider */
.hero-slider {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
}

.hero-slide img {
    width: 100%;
    height: auto;
}

.hero-slider.desktop .hero-slide img {
    max-height: 600px;
    object-fit: cover;
}

.hero-slider.mob .hero-slide img {
    aspect-ratio: 400 / 450;
}

.slide-content {
    position: absolute;
    top: 50%;
    left: 50px;
    transform: translateY(-50%);
    color: white;
    max-width: 600px;
}

.slide-content h2 {
    font-size: 48px;
    margin-bottom: 20px;
}

.slide-content p {
    font-size: 18px;
    margin-bottom: 30px;
}

/* Navigation arrows */
.slick-next:before {
    content: '\f054';
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
}

.slick-prev:before {
    content: '\f053';
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
}

.slick-prev,
.slick-next {
    z-index: 100;
    width: 50px;
    height: 50px;
    background-color: #fff;
    box-shadow: 0px 4px 16px 0px #0000001A;
    transition: 0.3s ease;
    border-radius: 50%;
    border: solid 1px #222;
}

.slick-prev {
    left: 10px;
}

.slick-next {
    right: 10px;
}

.slick-prev:before,
.slick-next:before {
    color: var(--dark);
    opacity: 1;
}

.slick-next:focus,
.slick-next:hover,
.slick-prev:focus,
.slick-prev:hover {
    background-color: var(--secondary) !important;
    border: solid 1px var(--secondary);
}

/* Dots */

.slick-dots {
    bottom: 0 !important;
}

.slick-dots li {
    margin: 0 !important;
    margin-right: 4px !important;
}

.slick-dots li button:before {
    color: #FFFFFF80 !important;
    font-size: 14px !important;
}

.slick-dots li.slick-active button:before {
    opacity: 1 !important;
    color: #fff !important;
}


/* Categories Section Style */

/* .categories-wrapper::-webkit-scrollbar {
    height: 4px;
    background-color: #2222220D;
    width: 120px !important;
}


.categories-wrapper::-webkit-scrollbar-track {
    border-radius: 8px;
    box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.1);
}

.categories-wrapper::-webkit-scrollbar-thumb {
    background-color: var(--primary);
    border-radius: 8px;
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.3);
} */



/* Custom scrollbar styling */
.scrollbar-wrapper {
    position: relative;
    margin: 0 auto;
    width: 120px;
    height: 8px;
    background-color: #2222220D;
    border-radius: 3px;
    overflow: hidden;
}

.custom-scrollbar {
    height: 100%;
    background-color: var(--primary);
    border-radius: 8px;
    width: 20%;
    position: absolute;
    left: 0;
}


.categories-wrapper::-webkit-scrollbar {
    display: none;
}

.categories-wrapper {
    display: flex;
    align-items: flex-start;
    /* justify-content: space-between; */
    gap: 19px;
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    padding-bottom: 15px;
}

.cat-card-img {
    border: 1px solid var(--secondary);
    border-radius: 8px;
    padding: 5px;
    height: 160px;
    width: 160px;
    border-radius: 50%;
    background-color: #fff;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.categories-wrapper .cat-card-img img {
    max-width: 100%;
    height: 120px;
    object-fit: contain;
}

.cat-card h3 {
    text-transform: capitalize;
    font-weight: 500;
    font-size: 15px;
    line-height: 30px;
    color: var(--dark);
    margin-top: 5px;
    transition: 0.3s ease;
    max-width: 160px;
}

.cat-card:hover h3 {
    color: var(--primary);
}


/* Screens Section Style */

.screen-card {
    position: relative;
    z-index: 1;
}


.screen-card img {
    width: 100%;
    height: 100%;
    object-fit: fill;
}

.screen-card h3 {
    font-weight: 700;
    font-size: 32px;
    line-height: 38px;
    color: var(--dark);
}


.logo-scroller {
    background-color: #fff;
}

.logo-scroller img {
    display: block;
    max-width: 140px;
    height: 82px;
    object-fit: contain;
    margin: 0px auto;
}

/* Responsive  */

@media (max-width:992px) {
    .hero-section {
        padding-top: 102px !important;
    }
}