.background-theme {
    /*background: #f6f6f6 !important;*/
    /*background: linear-gradient(90deg, rgb(208 224 231) 0%, rgb(217 217 217) 50%, rgba(237, 221, 83, 1) 100%);*/
    background: #f4d03f;
}

/* for desktop devices */
@media only screen and (min-width: 768px) {
    .mobile-banner {
        display: none;
    }
}

/* for mobile devices */
@media only screen and (max-width: 767px) {
    .desktop-banner {
        display: none;
    }

    .mobile-banner {
        /* width: 400px !important; */
        width: 100% !important;
        min-width: 400px !important;
        height: 200px !important;
    }

    .mainheading>h1 {
        font-size: 30px !important;
    }

    .mobile_top {
        display: grid;
        grid-template-columns: repeat(1, 1fr) !important;
    }
    
    .blog-detail .blog-detail-main .blog-detail-main-heading .image{
        width: 100%!important;
    }
}

.mainheading>h1 {
    font-size: 35px;
}

/* Tab Bar Men,Women and Kids */
.genderTab {
    justify-content: space-evenly;
}

ul.genderTab>li {
    width: 30%;
}

ul.genderTab>li>button {
    width: 100%;
    font-size: 20px;
}

.nav .nav-item button.active {
    background-color: transparent;
    color: var(--bs-danger) !important;
}

.nav .nav-item button.active::after {
    content: "";
    border-bottom: 4px solid var(--bs-danger);
    width: 100%;
    position: absolute;
    left: 0;
    bottom: -1px;
    border-radius: 5px 5px 0 0;
}


.product-entry-images {
    position: relative;
    overflow: hidden;
    width: 100%;
    padding-top: 100%;

}

.product-entry-images img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    transition: opacity 1s ease-in-out;
    opacity: 0;
    background: white !important;
}

.product-entry-images img.active {
    opacity: 1;
}


.portfolioInfoPP_item {
    position: absolute;
    width: 100%;
    height: 100%;
    bottom: 0;
    left: 0;
    z-index: 2;
    /* padding: 100px 54px; */
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
}

.work-gallery {
    position: relative;
}


/* State and City block css */
    .location-box{
        border: 1px solid #000;
        border-radius: 10px;
        padding: 5px 0px;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-bottom: 10px;
        box-shadow: 2px 2px #000;
    }
    
    .location-box:hover {
        background: #786026;
        color: #fff;
    }
    
    .location-box > small {
       font-size: 15px;
       text-align: center;
    }
    
    /*Header Search CSS*/
        .searchResults {
            position: absolute;
            background: #fff;
            width: 100%;
            z-index: 999;
            padding: 0px;
            opacity: 0;
            border-radius: 10px;
            /* visibility: hidden; */
        }

        .result-active {
            padding: 10px !important;
            opacity: 1 !important;
        }

        .result-item {
            display: flex;
            align-items: center;
            padding: 10px 0;
            transition: 0.2s;
            border-bottom: 1px solid #c7c7c7;
        }

        .result-item:hover {
            background: #f9f9f9;
        }

        .result-item img {
            width: 40px;
            height: 40px;
            object-fit: cover;
            border-radius: 5px;
            margin-right: 10px;
        }

        .result-item a {
            text-decoration: none;
            color: #333;
            font-weight: 500;
        }

        .result-item span {
            display: block;
        }
    
    /*Header Search CSS END*/
    
    
    /* Inquery Popup Modal */
        /* Modal Overlay */
        .modal.popUp-modal {
            display: none;
            position: fixed;
            z-index: 9999;
            /* higher z-index to be above everything */
            left: 0;
            top: 0;
            width: 100vw;
            height: 100vh;
            overflow: hidden;
            background-color: rgba(0, 0, 0, 0.7);
        }

        /* Modal Content */
        .popUp-modal .modal-content {
            background-color: #063232;
            background: url('../images/resource/classy-fabric.png'), linear-gradient(to right, #063232, #093939);
            background-blend-mode: overlay;
            margin: 5% auto;
            padding: 30px;
            border-radius: 12px;
            max-width: 550px;
            width: 90%;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            color: white;
            position: relative;
            animation: fadeIn 0.3s ease-out;
        }


        /* Close Button */
        .popUp-modal .close-btn {
            position: absolute;
            top: 12px;
            right: 16px;
            color: white;
            font-size: 28px;
            font-weight: bold;
            cursor: pointer;
        }

        /* Header */
        .popUp-modal .form-header {
            text-align: center;
            margin-bottom: 20px;
        }

        .popUp-modal .form-header h2 {
            margin: 0 0 10px 0;
            font-size: 26px;
            color: #ffffff;
            line-height: 35px;
        }

        .popUp-modal .form-header p {
            font-size: 17px;
            color: var(--theme-color2);
            text-transform: capitalize;
            line-height: 1;
        }

        /* Input Group */
        .popUp-modal .input-group {
            display: flex;
            align-items: center;
            background: #ffffff1a;
            margin-bottom: 15px;
            border-radius: 8px;
            padding: 2px 15px;
            transition: background 0.3s ease;
        }

        .popUp-modal .input-group i {
            color: var(--theme-color2);
            margin-right: 10px;
            font-size: 15px;
        }

        .popUp-modal .input-group input,
        .popUp-modal .input-group textarea {
            flex: 1;
            padding: 0 6px;
            height: 50px;
            background: transparent;
            border: none;
            outline: none;
            color: white;
            font-size: 16px;
        }

        .popUp-modal .input-group input::placeholder,
        .popUp-modal .input-group textarea::placeholder {
            color: #ddd;
        }

        .popUp-modal .input-group textarea {
            padding: 12px 6px;
        }

        .popUp-modal .textarea-group {
            align-items: flex-start;
        }

        .popUp-modal .textarea-group i {
            position: relative;
            top: 19px;
        }

        .theme-btn {
            font-size: 16px;
            font-weight: 500;
            position: relative;
            padding: 10px 35px;
            margin-bottom: 0px;
            display: inline-flex;
            justify-content: center;
            align-items: center;
            gap: 10px;
            text-decoration: none;
            border-radius: 40px;
            border-color: transparent;
        }

        .theme-btn.bg-theme {
            background-color: #f3b926;
            color: #fff;
        }

        /* Submit Button */
        .theme-btn.bg-green {
            background-color: #13a012 !important;
            color: #ffffff;
            padding: 15px 40px;
        }

        /* Animation */
        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: scale(0.95);
            }

            to {
                opacity: 1;
                transform: scale(1);
            }
        }

        /* Responsive Modal */
        @media (max-width: 767px) {
            .popUp-modal .modal-content {
                margin: 10% auto;
                padding: 20px;
                width: 90%;
            }
            
            .theme-btn.bg-theme{
                margin-bottom: 10px;
                width: 100%;
            }
        }

        .link-effect {
            position: relative;
            overflow: hidden;
            display: block;
            height: 26px;
            line-height: 1.66
        }

        .link-effect .effect-1 {
            display: block;
            height: 100%;
            position: relative;
            top: 0%;
            transition: .3s
        }

        .link-effect:hover .effect-1 {
            top: -100%
        }
    
    .border-50 {
            border-radius: 50px !important;
        }

        .contact-img {
            position: relative;
            overflow: hidden;
            display: inline-block;
            border-radius: 10px;
        }

        .contact-img::before {
            position: absolute;
            content: "";
            width: 100%;
            height: 100%;
            background: none;
            left: 0;
            bottom: 0;
            background-image: linear-gradient(0deg, rgb(9, 73, 73) 0%, rgb(9, 73, 73) 10%, rgba(9, 73, 73, 0) 58%, rgba(9, 73, 73, 0) 100%);
            z-index: 9;
        }

        .contact-img .contact-info {
            position: absolute;
            left: 35px;
            bottom: 35px;
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-pack: center;
            -ms-flex-pack: center;
            justify-content: center;
            -webkit-box-align: center;
            -ms-flex-align: center;
            align-items: center;
            justify-content: flex-start;
            gap: 10px;
            z-index: 10;
        }

        .contact-img .contact-info .icon {
            font-size: 34px;
            color: #13a012;
        }

        .contact-img .contact-info .number {
            font-size: 20px;
            color: #fff;
            font-weight: 500;
        }
        
        
        /* Google Review Rating */
        .google-review h5 {
            font-size: 25px;
            font-weight: bold;
        }

        .google-review ul {
            list-style: none;
            display: flex;
            justify-content: center;
            padding-left: 0;
        }

        .google-review ul li i {
            font-size: 30px;
            color: #f6bb06;
        }

        h5.new-subheading {
            font-family: cursive;
            font-size: 28px;
        }

        /* Google Review Slider */
        .g-review-widget {
            background: #f4f4f4;
            padding: 15px;
            margin: 0 10px;
            border-radius: 10px;
        }

        .g-review-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .g-review-header-left {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 10px;
        }

        .g-review-header-left .avatar {
            width: 40px;
            height: 40px;
            background: #c2185b;
            border-radius: 50%;
            color: #fff;
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 20px;
            font-weight: bold;
        }

        .header-name {
            line-height: 16px;
        }

        .custom-seperator {
            background: #e72e77;
            height: 1px;
            width: 40%;
            margin: 15px auto;
        }

        .g-review-content ul {
            list-style: none;
            display: flex;
            color: #f6bb06;
            padding-left: 0px;
            margin-bottom: 0px;
            margin-top: 10px;
        }
        
        /*Home Mobile Slider */
        @media only screen and (max-width: 767px) {
            .slider-women .wrap-slider {
                height: 200px;
            }
        }
        
        /* footer-top */
        .info-box {
            display: flex;
            align-items: flex-start;
            gap: 15px;
            margin-bottom: 15px;
        }

        .icon-box {
            background: #f6bb06;
            padding: 20px;
            border-radius: 50px;
            color: #fff;
            margin-top: 5px;
        }

        .icon-box>i {
            font-size: 16px;
        }

        .icon-info>h5 {
            font-weight: bolder;
            margin-bottom: 0px;
            font-size: 28px;
        }

        .icon-info>h6 {
            font-size: 22px;
            font-weight: bold;
        }
        .icon-info>p {
            font-size: 18px;
        }

        .icon-info>a {
            font-size: 17px;
            text-transform: uppercase;
            text-decoration: underline;
            padding: 15px 0;
        }
        
        
        
        
         /* heading seperator */
        .heading-divider {
          display: inline-block;
          position: relative;
          border-bottom: 4px solid #7e6c3a;
          width: 90px;
          height: 4px;
          border-radius: 50px;
        }
        
        .heading-divider:after {
          content: '';
          position: absolute;
          left: 0;
          top: -1px;
          height: 6px;
          width: 15px;
          border-radius: 0px;
          background-color: #000;
          -webkit-animation: heading-move 5s infinite linear;
          animation: heading-move 5s infinite linear;
        }
        
        @-webkit-keyframes heading-move {
          0% {
            transform: translateX(-1px);
          }
          50% {
            transform: translateX(75px);
          }
          100% {
            transform: translateX(-1px);
          }
        }
        
        @keyframes heading-move {
          0% {
            transform: translateX(-1px);
          }
          50% {
            transform: translateX(75px);
          }
          100% {
            transform: translateX(-1px);
          }
        }
        
        .home-bg-section {
            background: #d7ccca!important;
        }
        
        .divider-sep{
            color: #5d4035;
            border-width: 3px;
            opacity: .5;
            margin: 0px!important;
        }