@import url('https://fonts.googleapis.com/css2?family=Roboto+Condensed:wght@300;400;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.bg-theme {
    background-color: #FED202;
    color: white;
}

.text-theme {
    color: #FED202;
}

a {
    text-decoration: none !important;
    padding: 0 !important;
}

body {
    font-family: 'Roboto', sans-serif;
}

/* ---------header styling--------------- */

header {
    position: sticky;
    top: -1px;
    width: 100%;
    z-index: 1039;
    padding: 0 !important;
    font-family: 'Roboto Condensed', sans-serif;
    background-color: #fff;
    border-bottom: 1px solid #eadddd;
}

header.sticky_header {
    box-shadow: 0 5px 30px 0 rgba(0, 0, 0, .2);
}

.max-width {
    max-width: 2000px;
    margin: 0 auto;
}

.header i {
    color: #333;
}

.header a i {
    color: #333;
}

.header-top {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #d4d4d4;
    background-color: #ffd401;
    height: 40px;
    padding: 0 30px;
}

.header-top-left {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    gap: 10px;
    position: relative;
}

.header-top-left b,
.header-top-left span {
    font-size: 12px;
    color: #333;
}

.header-top-right {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 18px;
    gap: 15px;
}

.header-top-right a {
    color: #333;
    transition: all .2s ease;
}

.header-top-right a:hover {
    color: #fff;
    transform: translateY(-5px);
}

.header-info_item {
    display: flex;
    align-items: center;
    gap: 5px;
}

.header-info_item a {
    color: #333;
}

.header-btn {
    position: relative;
    text-align: center;
    cursor: pointer;
    color: #333;
    background: #FED202;
    border: 1px solid #FED202;
    display: inline-block;
    text-decoration: none;
    transition: all .3s ease-in;
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    padding: 12px 21px !important;
    position: relative;
    overflow: hidden;
    z-index: 2;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px, rgba(0, 0, 0, 0.06) 0px 2px 4px -1px;
}

.header-btn span {
    text-align: left;
    font-size: 18px;
    letter-spacing: 0px;
    opacity: 1;
    font-weight: 600;
}

.header-btn::after {
    content: "";
    width: 100%;
    height: 100%;
    background-color: #333;
    left: -100%;
    position: absolute;
    transition: all .3s cubic-bezier(.19, 1, .22, 1);
    z-index: -1;
}

.header-btn:hover::after {
    left: 0;
}

.header-btn:hover span,
.header-btn:hover i {
    color: #fff;
}

.logo-nav {
    width: 100%;
    height: 70px;
}

.golden-button {
    background-color: #FED202;
    color: white;
    border: none;
    padding: 10px;
    border-radius: 4px;
    cursor: pointer;
    border-radius: 30px;
}

.golden-button i {
    margin-right: 5px;
}

.navbar .container-fluid {
    padding-left: 30px;
    padding-right: 30px;
}


/* ---------banner styling--------------- */
.home-banner {
    background-color: #fff;
    padding: 40px 0 70px 0;
    font-family: 'Roboto Condensed', sans-serif;
}

.banner-content span {
    background-color: #FED202;
    color: #333;
    padding: 6px 20px;
    font-size: 18px;
    border-radius: 6px;
    display: inline-block;
    font-weight: 700;
    margin-bottom: 20px;
}

.banner-content h1 {
    font-size: 70px;
    color: #333;
    line-height: 80px;
    font-weight: 700;
}

.banner-content p {
    font-size: 20px;
    line-height: 26px;
    max-width: 500px;

}

.btn-dark {
    background-color: #FED202;
    outline: none;

}

.banner-right {
    width: 100%;
    /* text-align: center !important; */
    /* border-radius: 50%; */
    padding: 86px;
    height: 500px;
    box-shadow: #FED202 0px 20px 25px -5px, #FED202 0px 10px 10px -5px;
    margin-left: auto;
}

.banner-right img {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    object-fit: contain;
}


/* ---------dropdown styling--------------- */
.dropdown {
    border: 1px solid #d4d4d4;
    border-radius: 10px;
}

.dropdown-container-main {
    width: 80%;
    margin: auto;
}

.dropdown-container {
    width: 80%;
    padding: 5px;
    border: 2px solid #d4d4d4;
    border-radius: 10px;
    display: flex;
    justify-content: space-between;
    align-items: start;
    flex-wrap: wrap;
}

/* CSS for customizing pagination colors in Bootstrap 5 */
/* Change the background color of the active page */
.pagination .page-item.active .page-link {
    background-color: #FED202;
    /* Replace with your desired color */
    border-color: #FED202;
    /* Replace with your desired color (optional) */
}

/* Change the background color of the other pagination elements on hover */
.pagination .page-item:not(.active) .page-link:hover {
    background-color: #FED202;
    /* Replace with your desired color */
    border-color: #FED202;
    color: white;
    /* Replace with your desired color (optional) */
}

/* Change the text color of the pagination links */
.pagination .page-link {
    color: #FED202;
    /* Replace with your desired color */
}

/* Optionally, you can change the border color of the pagination links */
.pagination .page-link {
    border-color: #FED202;
    /* Replace with your desired color */
}

/* ---------card styling--------------- */

/* SECTION FILTER */
.filter-wrapper {
    padding: 70px 0;
    background-color: #F5F6FA;
}

.filter-wrapper_inner {
    max-width: 1370px;
    margin: 0 auto;
    border: 1px solid #E0E0E0;
    border-radius: 5px;
    padding: 40px 0;
}

.sec-heading h2 {
    font-size: 55px;
    line-height: 65px;
    color: #333;
    font-weight: 800;
    text-align: center;
    font-family: 'Roboto Condensed', sans-serif;
}

.sec-heading p {
    text-align: center;
    font-size: 20px;
    line-height: 25px;
}

.filters-container label {
    font-size: 19px;
    font-weight: 400;
    line-height: 25px;
    margin-bottom: 8px;
    padding-left: 2px;
    color: #000;
    font-family: 'Roboto Condensed', sans-serif;
}

.form-control {
    height: 50px;
    border: 1px solid #E0E0E0;
    background-color: #ffff;
    border-radius: 4px;
    padding-left: 20px;
}

.form-control:focus {
    box-shadow: none;
    outline: 1px solid #000;
}

.form-group {
    margin-bottom: 15px;
}

.theme-btn {
    font-size: 17px;
    line-height: 22px;
    background-color: #FED202;
    font-weight: 600;
    padding: 13px 35px;
    border: 0;
    border-radius: 6px;
}

.nothing-find {
    text-align: center;
    font-size: 30px;
    font-weight: 400;
    color: #333;
    font-family: 'Roboto Condensed', sans-serif;
}

.product-list-item {
    background: #FAFAFA;
    padding: 12px 15px;
    border-radius: 5px;
    margin-bottom: 15px;
}

.item_inner_body {
    display: flex;
    overflow: auto;
    gap: 10px;
}

.product-item-heading p {
    font-size: 19px;
    line-height: 21px;
    font-family: 'Roboto Condensed', sans-serif;
    color: #333;
    font-weight: 500;
    display: inline-flex;
    gap: 6px;
    border-bottom: 1px solid #333;
}

.product-item-heading i {
    color: #FED202;
}

.item-block>p {
    font-size: 14px;
    color: #333;
    font-weight: 600;
    margin-bottom: 3px;
}

.item-block-content span {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 15px;
    line-height: 20px;
    display: block;
}

.btn-close:focus {
    box-shadow: none;
    outline: 0;
}

.item_inner_body .item-block:nth-child(1) {
    width: 15%;
}

.item_inner_body .item-block:nth-child(2) {
    width: 13%;
}

.item_inner_body .item-block:nth-child(3) {
    width: 10%;

}

.item_inner_body .item-block:nth-child(4) {
    width: 20%;
}

.item_inner_body .item-block:nth-child(5) {
    width: 10%;
}

.item_inner_body .item-block:nth-child(6) {
    width: 10%;
}

.item_inner_body .item-block:nth-child(7) {
    width: 10%;
}

.item_inner_body .item-block:nth-child(8) {
    width: 10%;
}

.item_inner_body .item-block:nth-child(9) {
    width: 10%;
}

.item_inner_body .item-block:last-child {
    flex-grow: 1;
}

.item_inner_body .item-block:nth-last-child(2):not(:last-child) {
    width: 15%;
}

.modal-image-btn .theme-btn {
    font-size: 14px;
    padding: 12px 15px;
}

.modal-image-btn p {
    text-align: end;
}

.modal-header {
    border-bottom: 0;
}

.modal-title {
    font-size: 20px;
    line-height: 24px;
    font-family: 'Roboto Condensed', sans-serif;
    color: #333;
    font-weight: 500;
    display: inline-flex;
    gap: 6px;
    border-bottom: 1px solid #333;
}

.product-img-wrap img {
    max-width: 100%;
    max-height: 400px;
    width: 100%;
    height: 100%;
    padding-top: 10px;
    object-fit: contain;
    border-radius: 4px;
}

.h2 {
    font-size: 40px;
    line-height: 45px;
    color: #333;
    font-weight: 800;
    font-family: 'Roboto Condensed', sans-serif;
}

.filter-wrapper_inner .container {
    max-width: 1369px;
}

.bg-color-grad {
    background: #e3be10;
}

.h-50 {
    height: 50px !important;
}

.clear-filter {
    background-color: #e3be10;
    font-weight: 500;
    padding: 2px 5px !important;
    border-radius: 3px;
    display: inline-block;
}

@-webkit-keyframes pulse {
    0% {
        -moz-transform: scale(0.9);
        -ms-transform: scale(0.9);
        -webkit-transform: scale(0.9);
        transform: scale(0.9);
    }

    70% {
        -moz-transform: scale(1);
        -ms-transform: scale(1);
        -webkit-transform: scale(1);
        transform: scale(1);
        box-shadow: 0 0 0 50px rgba(90, 153, 212, 0);
    }

    100% {
        -moz-transform: scale(0.9);
        -ms-transform: scale(0.9);
        -webkit-transform: scale(0.9);
        transform: scale(0.9);
        box-shadow: 0 0 0 0 rgba(90, 153, 212, 0);
    }
}

/* ---------footer styling--------------- */
.footer {
    background: #222222;
    color: white;
    padding: 50px 0;
    width: 100%;
    font-family: 'Roboto Condensed', sans-serif;
}

.footer-heading {
    font-size: 40px;
    line-height: 45px;
    padding: 5px 0;
    margin-bottom: 20px;
    font-family: 'Roboto Condensed', sans-serif;
    border-bottom: 2px solid #fff;
    display: inline-block;
}

.footer-logo {
    width: 93px;
    display: block;
    background: #fff;
    padding: 9px !important;
    height: 88px;
    border-radius: 4px;
    text-align: center;
    margin: 0;
    line-height: 0;
}

.logo-nav {
    width: 70px;
    height: 70px;
    object-fit: contain;
}

.footer-list {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: start;
    gap: 15px;
}

.footer-list-item {
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.footer-list-item a {
    color: #fff;
}

.footer-social {
    display: flex;
    justify-content: start;
    align-items: center;
    font-size: 30px;
    gap: 15px;
    max-width: 500px;
    margin-right: auto;
}

.email-input {
    background-color: transparent;
    border: none;
    border-bottom: 1px solid white;
    color: white;
    padding-bottom: 4px;
    outline: none;
}

.email-input::placeholder {
    color: white;
}

.email {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
}

/* ----------------Media Queries------------ */


@media (min-width: 992px) {

    .modal-lg,
    .modal-xl {
        max-width: 600px;
    }
}





@media only screen and (max-width:1370px) {
    .filter-wrapper_inner {
        max-width: 100%;
        margin: 0 15px;
    }
}

@media only screen and (max-width:1200px) {
    .filter-wrapper_inner .container {
        max-width: 100%;
    }
}

@media only screen and (max-width:1024px) {
    .home-banner .row {
        flex-direction: column;
    }

    .home-banner .row .col-lg-6 {
        width: 100%;
    }

    .home-banner .banner-content {
        text-align: center;
    }

    .banner-content p {
        margin: 0 auto;
    }

    .banner-right {
        margin: 0 auto;
    }

    .item_inner_body {
        flex-wrap: wrap;
    }

    .product-list-item_inner .item_inner_body .item-block {
        width: 49%;
    }

    .item_inner_body .item-block:nth-last-child(2):not(:last-child) {
        width: 49%;
    }

    .item_inner_body .item-block:last-child {
        flex-grow: unset;
    }

    .item_inner_body .item-block:last-child .item-block-content {
        text-align: start !important;
    }

    .modal-image-btn p {
        text-align: start;
    }

    .modal-image-btn .theme-btn {
        padding: 5px 20px;
        border-radius: 4px;
    }
}

@media only screen and (max-width:1010px) {
    .header-top {
        display: none;
    }
}

@media only screen and (max-width:768px) {
    .banner-content h1 {
        font-size: 50px;
        line-height: 75px;
    }

    .navbar .container-fluid {
        padding: 10px 15px;
    }

    header .navbar {
        padding: 0;
    }
}

@media only screen and (max-width:600px) {
    .banner-right {
        width: 100%;
        /* height: auto; */
    }

    .h2 {
        font-size: 30px;
    }

    .sec-heading h2 {
        font-size: 35px;
        line-height: 48px;
    }
}

@media only screen and (max-width:500px) {
    .banner-content h1 {
        font-size: 35px;
        line-height: 55px;
    }

    .banner-content p {
        font-size: 17px;
        line-height: 25px;
        max-width: 400px;
    }

    .banner-right {
        width: 300px;
        /* height: 300px; */
        padding: 65px;
    }

    .banner-content span {
        padding: 3px 20px;
        font-size: 15px;
        border-radius: 4px;
        font-weight: 500;
    }

    .header-btn {
        border-radius: 4px;
        padding: 10px 13px !important;
    }

    .header-btn span {
        font-size: 15px;
    }

    .footer-heading {
        font-size: 30px;
        line-height: 55px;
    }
}

@media only screen and (max-width:475px) {
    .product-item-heading p {
        font-size: 16px;
        line-height: 23px;
    }

    .modal-title {
        font-size: 16px;
        align-items: center;
    }

    .modal-title i {
        font-size: 12px;
    }
}

@media (max-width: 425px) {
    .logo-nav {
        width: 100%;
        height: 50px;
    }

    .sec-heading h2 {
        font-size: 26px;
        line-height: 37px;
    }

    .product-list-item_inner .item_inner_body .item-block {
        width: 100%;
    }

    .item_inner_body .item-block:nth-last-child(2):not(:last-child) {
        width: 100%;
    }
}

@media (max-width: 350px) {
    .banner-content h1 {
        font-size: 28px;
        line-height: 49px;
    }
}

@media (max-width: 320px) {}