@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300..700&family=Wix+Madefor+Display:wght@400..800&display=swap');

*,
body {
    color: #282828;
    font-family: "Wix Madefor Display", sans-serif;
    /* font-family: "Space Grotesk", sans-serif; */
}

:root {
    --teal: #84CBC8;
    --black: #282828;
    --light: #F0F0F0;
    --mute: #797979;
    --light-500: #f0f0f0;
}

.txt-teal {
    color: var(--teal);
}

.txt-light {
    color: var(--light);
}

.txt-mute {
    color: var(--mute);
}

.bg-light-500 {
    background-color: var(--light-500);
}

.bg-dark {
    background-color: var(--black);
}

.font-14 {
    font-size: 14px;
}

/*******Header Css*******/
.navbar-nav .nav-link {
    font-size: 16px;
    line-height: 26px;
    font-weight: 500;
    transition: 0.5s;
    color: #000;
}

    .navbar-nav .nav-link:hover {
        color: var(--teal);
    }

.sticky-header {
    position: sticky;
    top: -100px;
    transition: top 0.3s ease-in-out;
    z-index: 1021;
}

    .sticky-header.sticky {
        top: 0;
        background-color: rgb(240 240 255 / 70%) !important;
        backdrop-filter: saturate(180%) blur(12px);
        -webkit-backdrop-filter: saturate(180%) blur(12px);
    }

    .sticky-header.animate {
        transition: top 0.5s ease-in-out;
    }

a {
    text-decoration: none;
}

.login-btn {
    font-size: 16px;
    color: #000;
    transition: 0.5s;
}

    .login-btn:hover span {
        color: var(--teal);
    }

.mob_btn_div {
    position: absolute;
    bottom: 30px;
    width: 90%;
}

button:focus:not(:focus-visible),
.form-control:focus {
    box-shadow: none;
}

.footer-title {
    font-size: 24px;
    font-family: "Space Grotesk", sans-serif;
}

.footer-link a {
    font-family: "Space Grotesk", sans-serif;
    font-size: 20px;
    color: #f0f0f0;
    display: block;
    width: fit-content;
    transition: 0.3s;
}

    .footer-link a:hover {
        color: var(--teal);
        padding-left: 3px;
    }

.scroll-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: var(--teal);
    color: #fff;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    cursor: pointer;
    transition: 0.5s;
    /* transition: opacity 0.3s ease-in-out; */
    opacity: 0;
    z-index: 2;
}

    .scroll-to-top:hover {
        bottom: 24px;
    }

    .scroll-to-top.show {
        opacity: 1;
    }

.cm-padding {
    padding: 0 3.5%;
}

/************/

.bg-img {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.banner-title {
    font-size: 46px;
    font-weight: bold;
}

.banner-desc {
    font-size: 20px;
}

.swiper-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 30px;
}

.slide-quick-view {
    position: absolute;
    bottom: 0;
    left: 0;
    background-color: #ffffff9c;
    width: 100%;
    text-align: center;
    padding: 10px 0;
    font-size: 14px;
    font-weight: 600;
    opacity: 0;
    transform: translateY(50%);
    transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

.content-box:hover .slide-quick-view {
    opacity: 1;
    transform: translateY(0);
}

/* .swiper-img.two,
.content-box:hover .swiper-img.one {
    display: none;
} */
.content-box {
    width: 100%;
    height: 200px;
    object-fit: cover;
    overflow: hidden;
}

.swiper-img.two {
    display: none;
}

.swiper-slide p {
    margin-bottom: 0;
}

/* .content-box:hover .swiper-img.two {
    display: block;
} */

.category-grid img {
    border-radius: 30px;
    height: 250px;
    object-fit: cover;
}

.mt-n10 {
    margin-top: -10px;
}

.social-icon a {
    padding: 10px;
    display: inline-block;
    transition: 0.3s;
}

    .social-icon a:hover {
        transform: scale(1.09);
    }

.testimonial-card img {
    height: 80px;
    width: 80px;
    object-fit: cover;
    border-radius: 60px;
}

.newsletter-form .form-control {
    background-color: transparent;
    border: 0;
    border-bottom: 1px solid #fff;
    border-radius: 0;
    color: #fff;
}

    .newsletter-form .form-control::placeholder {
        color: #fff;
    }

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    margin: 0;
}

.nl-btn {
    background-color: var(--teal);
    border: 1px solid var(--teal);
    padding: 10px;
    display: block;
    width: 100%;
    color: #000;
    border-radius: 8px;
    text-align: center;
    font-weight: bold;
    font-size: 14px;
    transition: 0.5s;
}

    .nl-btn:hover {
        color: #fff;
        background-color: transparent;
    }

.cm-dropdown {
    padding: 5px 10px 5px 30px;
    border-radius: 18px;
    font-weight: 600;
}

.dropdown-icon {
    position: absolute;
    left: 10px;
    top: 5px;
}

section {
    overflow: hidden;
}

.overlay {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(180deg, #0000009e, #0000009e);
    border-radius: 1rem;
}

/*** NBA ******/
.cat-highlight {
    height: 100%;
    margin: auto;
    border-radius: 14px;
    padding: 10px 0;
}

    .cat-highlight h2 {
        color: #fff;
        font-weight: bold;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 0;
    }

.cat-link {
    color: var(--mute);
    font-size: 14px;
    font-weight: 500;
    transition: 0.5s;
}

    .cat-link:hover {
        color: var(--teal);
    }

@media (min-width: 1200px) {

    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl,
    .container-xxl {
        max-width: 1120px;
    }

    .swiper-button-prev {
        left: -30px;
    }

    .swiper-button-next {
        right: -30px;
    }

        .swiper-button-prev:after,
        .swiper-button-next:after {
            font-size: 24px;
            color: #000;
        }
}

@media (max-width: 991px) {
    .category-grid img {
        height: 190px;
    }

    .social-icon a {
        padding: 5px;
    }
}

@media (max-width: 767px) {
    .cat-highlight {
        width: 60px;
    }
}
