:root {
    /**    --primary-color: #880000;
        --primary-hover-color: #ffffff;**/
        --secondary-color: #ffd800;
        --secondary-light-color: #939393;
        --background-color: #1C1C1D;
        --border-color: #dddddd;
    }
    
    body {
        font-family: 'Poppins', sans-serif;
        font-weight: 400;
        background: var(--primary-color);
        color: var(--primary-hover-color);
        font-size: 14px;
        line-height: 20px;
        width: 100%;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
    }
    
    h1,
    h2,
    h3,
    h4,
    h5,
    h6 {
        color: var(--primary-hover-color);
    }
    
    a {
        color: var(--primary-hover-color);
        text-decoration: none;
        transition: all 0.5s ease-in-out;
        -webkit-transition: all 0.5s ease-in-out;
    }
    
    a:hover {
        outline: none;
        text-decoration: none;
        color: #880000;
    }
    
    p {
        margin: 0 0 10px;
    }
    
    /* -----
    loader
    ----- */
    .loader {
        position: fixed;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        z-index: 999999;
        background-image: url(assets/images/ajax_loader.gif);
        background-position: 50% 50%;
        background-color: var(--primary-hover-color);
        background-repeat: no-repeat;
        opacity: .9;
    }
    /* -----
    .loader
    ----- */
    
    /* -----
    scrollToTop
    ----- */
    .scrollToTop {
        position: fixed;
        right: 20px;
        bottom: 20px;
        height: 50px;
        width: 50px;
        color: #fff;
        background: #930b0b;
        border-radius: 5px;
        font-size: 22px;
        line-height: 50px;
        text-align: center;
        z-index: 999;
        transition: all 0.5s ease;
        -webkit-transition: all 0.5s ease;
        -moz-transition: all 0.5s ease;
        -ms-transition: all 0.5s ease;
        -o-transition: all 0.5s ease;
        -webkit-box-shadow: 0 0 10px 5px rgb(255 255 255 / 50%);
        -moz-box-shadow: 0 0 10px 5px rgb(255 255 255 / 50%);
        -ms-box-shadow: 0 0 10px 5px rgb(255 255 255 / 50%);
        -o-box-shadow: 0 0 10px 5px rgb(255 255 255 / 50%);
        box-shadow: 0 0 10px 5px rgb(255 255 255 / 50%);
    }
    
    .scrollToTop:hover,
    .scrollToTop:focus {
        background: var(--primary-color);
        color: var(--primary-hover-color);
    }
    @media (max-width: 991px) {
        .scrollToTop {
            height: 40px;
            width: 40px;
            line-height: 40px;
        }
    }
    /* -----
    .scrollToTop
    ----- */
    
    /* ----- 
    Buttons
    ----- */
    .btn{
        font-size: 14px;
        transition: all 0.5s ease-in-out;
        -webkit-transition: all 0.5s ease-in-out;
    }
    .btn-link{
        color: var(--primary-color);
        text-decoration: none;
        transition: all 0.5s ease-in-out;
        -webkit-transition: all 0.5s ease-in-out;
    }
    .btn-default,
    .btn-info,
    .btn-primary {
        color: var(--primary-color);
        text-shadow: none;
        background-color: var(--secondary-color);
        background-image: none;
        background-repeat: unset;
        border: 2px solid var(--primary-hover-color);
        border-radius: 0;
        padding: 13px 20px;
        line-height: 20px;
        font-size: 18px;
        font-weight: 500;
        text-transform: capitalize;
        box-shadow: none;
        outline: none;
        transition: all 0.5s ease-in-out;
        -webkit-transition: all 0.5s ease-in-out;
        border-radius: 30px;
    }
    .btn-primary a {
        transition: all 0.5s ease-in-out;
        -webkit-transition: all 0.5s ease-in-out;
        color: var(--primary-color);
    }
    .btn-primary:focus a,
    .btn-primary:hover a {
        color: var(--primary-hover-color);
    }
    .btn-default:hover,
    .btn-info:hover,
    .btn-primary:hover,
    .btn-primary:focus,
    .btn-primary.active,
    .btn-primary:active,
    .btn-primary:active:focus {
         border-color: var(--primary-hover-color);
        background: var(--primary-color);
        color: var(--primary-hover-color);
        box-shadow: none;
    }
    .btn-danger {
        color: #fff;
        background-color: #dc3545;
        border-color: #dc3545;
        padding: 17px 15px;
        border: none;
        line-height: 1;
        border-radius: 0;
    }
    .btn,
    .btn:focus {
        outline: none;
        box-shadow: none;
    }
    /* ----- 
    .Buttons
    ----- */
    
    /* ----- 
    Header
    ----- */
    #top {
        background-color: var(--secondary-color);
    }
    .top-left {
        float: left;
        padding: 15px 0;
    }
    .contact-info {
        display: flex;
        align-items: center;
        font-weight: 600;
    }
    .contact-info a {
        display: flex;
        align-items: center;
        text-decoration: none;
            color: var(--primary-color);
    }
    .contact-info a i {
        /*color: var(--secondary-color);*/
        margin: 0 10px 0 0;
        font-size: 16px;
    }
    .top-right {
        display: flex;
        justify-content: end;
    }
    .top-right>div+div {
        margin: 0 0 0 25px;
    }
    .top-right .dropdown-toggle {
        line-height: 20px; 
        text-transform: capitalize; 
        border: none;
        padding: 15px 0;
    }
    #top .dropdown-toggle {
        display: flex;
        align-items: center;
        color: var(--primary-color);
        text-decoration: none;
        box-shadow: none;
        font-size: 14px;
        font-weight: 600;
    }
    header{
        background: var(--primary-hover-color);
    }
    header.header-fixed {
        background: #fff;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        -webkit-animation: fadeInDown 1s ease-out forwards;
        -moz-animation: fadeInDown 1s ease-out forwards;
        -o-animation: fadeInDown 1s ease-out forwards;
        animation: fadeInDown 1s ease-out forwards;
        z-index: 9;
        -webkit-box-shadow: 0 6px 12px rgb(0 0 0 / 8%);
        -moz-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.08);
        -o-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.08);
        box-shadow: 0 6px 12px rgb(0 0 0 / 8%);
    }
    #logo img {
        max-width: 242px;
    }
    #top .dropdown-toggle::after,
    header .dropdown-toggle::after {
        display: contents;
    }
    .top-right span.drop-text:after {
        content: ":";
        padding: 0 5px;
    }
    .top-right .dropdown-toggle i {
        font-size: 16px;
        vertical-align: middle;
        padding: 0 0 0 10px;
    }
    .top-right .dropdown-menu .btn-block,
    header .dropdown-menu .dropdown-item {
        display: block;
        border: none;
        padding: 5px 15px;
        width: 100%;
        text-align: left;
        font-size: 14px;
        color: var(--primary-hover-color);
        background: transparent;
    }
    .top-right .dropdown-menu .btn-block:hover,
    header .dropdown-menu .dropdown-item:hover {
        color: var(--secondary-color);
    }
    #themabilitySearch .btn-search button:hover,
    .header-right .dropdown .dropdown-toggle:hover{
        background: var(--secondary-color);
        color: var(--primary-color);
    }
    .header-inner {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 5px 0;
    }
    .header-right {
        display: flex;
        align-items: center;
    }
    .header-right .dropdown .dropdown-toggle {
        height: 40px;
        width: 40px;
        line-height: 40px;
        background: var(--primary-color);
        color: var(--primary-hover-color);
        padding: 0;
        border: none;
        border-radius: 50%;
        display: block;
        text-align: center;
        transition: all 0.5s ease-in-out;
        -webkit-transition: all 0.5s ease-in-out;
    }
    .header-right > div + div {
        margin-left: 15px;
    }
    #themabilitySearch {
        border: 1px solid var(--primary-color);
        border-radius: 50px;
    }
    #themabilitySearch input {
        border-radius: 50px;
        border: none;
        box-shadow: none;
        background: var(--primary-hover-color);
    }
    #themabilitySearch .btn-search button {
        background: var(--background-color);
        color: var(--primary-hover-color);
        border-radius: 0 50px 50px 0;
        padding: 9px 15px;
        line-height: inherit;
    }
    
    /* cart */
    #cart-total {
        background: var(--primary-hover-color);
        color: var(--primary-color);
        border-radius: 50%;
        padding: 0 3px;
        line-height: 15px;
        position: absolute;
        right: 0px;
        top: -5px;
        font-weight: 600;
        border: 1px solid var(--primary-color);
    }
    #cart .dropdown-menu {
        width: 300px;
        padding: 0;
        top: 100%;
        background: var(--primary-color);
        box-shadow: 0 7px 20px rgb(255 255 255 / 25%);
    }
    #cart .product-cart-thumb img {
        max-width: 80px;
        background: var(--background-color);
        border: 1px dashed var(--secondary-color);
    }
    #cart .dropdown-menu>li.cart-content-product .table>tbody>tr:hover .product-cart-thumb img {
        border-style: solid;
    }
    #cart .product-cart-close button {
        padding: 0;
        height: 20px;
        width: 20px;
    }
    #cart .dropdown-menu table td {
        color: var(--primary-hover-color);
        border: none;
        box-shadow: none;
    }
    #cart .dropdown-menu table tr {
        border: none;
    }
    #cart .dropdown-menu > li {
        margin: 0 15px;
    }
    #cart .dropdown-menu li+li {
        border-top: 1px solid #444;
        padding: 10px 0 10px 0;
    }
    #cart .dropdown-menu>li.cart-content-product .table>tbody>tr {
        margin-bottom: 15px;
        margin-top: 15px;
        padding-bottom: 15px;
        position: relative;
        border-bottom: 1px solid #444;
        display: block;
    }
    #cart .dropdown-menu>li.cart-content-product .table>tbody>tr:last-child {
        border-bottom: none;
        margin-bottom: 0;
        padding-bottom: 0;
    }
    #cart .dropdown-menu table td.product-cart-thumb {
        padding: 0;
    }
    #cart .dropdown-menu table td.product-cart-close {
        position: absolute;
        right: 0;
        top: 0;
    }
    #cart .dropdown-menu .product-cart-info {
        margin-top: 5px;
    }
    #cart .dropdown-menu table td strong {
        font-weight: 500;
    }
    #cart .product-cart-button .btn {
        font-size: 16px;
        padding: 8px 15px;
    }
    @media (max-width: 1199px) and (min-width: 992px) {
        .header-center {
            text-align: center;
            border-top: 1px solid var(--border-color);
        }
    }
    @media (max-width: 991px){
        .search-btn-outer {
            font-size: 18px;
            height: 40px;
            width: 40px;
            line-height: 40px;
            padding: 2px;
            background: var(--primary-color);
            color: var(--primary-hover-color);
            border: none;
            border-radius: 50%;
            text-align: center;
        }
        .search-btn-outer:hover{
            background: var(--secondary-color);
            color: var(--primary-color);
        }
        .header-search {
            display: none;
            position: absolute;
            right: 0;
            z-index: 1;
            -webkit-box-shadow: 0 6px 12px rgb(0 0 0 / 18%);
            box-shadow: 0 6px 12px rgb(0 0 0 / 18%);
            width: 250px;
            background: var(--primary-hover-color);
            border-radius: 50px;
            z-index: 11;
        }
        .search-content {
            position: relative;
        }
        .header-inner{
            padding: 15px 0;
        }
        .search-btn-outer.active i:before {
            content: "\e903";
        }
    }
    @media (max-width: 575px) {
        .top-right,
        .contact-info {
            justify-content: center;
        }
        .top-right .dropdown-toggle,
        .top-left {
            padding: 7px 0;
        }
        #top{
            padding: 7px 0;
        }
        .top-right>div+div {
            margin: 0 0 0 15px;
        }
    }
    @media (max-width: 480px) {
        #logo img {
            max-width: 200px;
        }
        .search-btn-outer,
        .header-right .dropdown .dropdown-toggle{
            height: 35px;
            width: 35px;
            line-height: 35px;
        }
        .header-right > div + div {
            margin-left: 5px;
        }
        .header-search{
            right: -30px;
        }
        #form-currency .dropdown-menu {
            left: 0;
            right: auto;
        }
    }
    /* ----- 
    .Header
    ----- */
    
    /* ----- 
    Page Title
    ----- */
    .page-title {
        position: relative;
        margin-bottom: 30px;
        text-align: center;
    }
    .page-title h3 {
        font-size: 30px;
        color: var(--primary-hover-color);
        text-transform: capitalize;
        margin: 0;
        padding-bottom: 20px;
        display: inline-block;
        position: relative;
    }
    .page-title h3:after,
    .page-title h3:before {
        content: "";
        background: var(--secondary-color);
        height: 2px;
        position: absolute;
        bottom: 5px;
        width: calc(50% - 10px);
    }
    .page-title h3:after{
        left: 0;
    }
    .page-title h3:before {
        right: 0;
    }
    .page-title .title-border {
        background: var(--secondary-color);
        height: 12px;
        width: 12px;
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        border-radius: 50%;
        margin: auto;
    }
    @media (max-width: 991px) {
        .page-title h3 {
            font-size: 20px;
        }
        .page-title{
            margin-bottom: 20px;
        }
    }
    /* ----- 
    .Page Title
    ----- */
    
    /* ----- 
    Testimonial
    ----- */
    .themability-testimonial-content {
        text-align: center;
        color: var(--primary-hover-color);
        background: #ffffff;
        padding: 90px 50px 50px;
        border: 1px solid var(--secondary-color);
        border-radius: 30px;
    }
    .themability-testimonial-images {
        margin-bottom: -75px;
    }
    .themability-testimonial-author {
        text-transform: capitalize;
        font-size: 22px;
        font-weight: 500;
        line-height: initial;
    }
    .themability-testimonial-customer {
        font-size: 18px;
        line-height: initial;
        margin: 10px 0;
    }
    .themability-testimonial-text {
        font-size: 16px;
        line-height: initial;
    }
    .themability-testimonial-text p{
        margin: 0;
    }
    .themability-testimonial-images img {
        width: 30%;
        max-width: 150px;
    }
    .testimonial-quotes {
        font-size: 30px;
        margin-top: 20px;
    }
    @media (max-width: 1199px){
        .themability-testimonial-content{
            padding: 90px 20px 30px;
        }
        .themability-testimonial-text {
            font-size: 14px;
        }
        .themability-testimonial-author {
            font-size: 18px;
        }
        .themability-testimonial-customer {
            font-size: 16px;
        }
    }
    @media (max-width: 991px){
        .themability-testimonial-content {
            padding: 90px 20px 20px;
        }
    }
    /* ----- 
    .Testimonial
    ----- */
    
    /* ----- 
    About
    ----- */
    .about_area .row {
        align-items: center;
    }
    .about_area_img {
        background: var(--background-color);
        border: 1px solid var(--secondary-color);
        border-radius: 30px;
        position: relative;
        overflow: hidden;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
    }
    .about_area_img img {
        border-radius: 30px;
    }
    .about_area .about_area_desc {
        font-size: 16px;
        line-height: 26px;
    }
    .about_area .about_area_desc p {
        margin-bottom: 20px;
    }
    .about_area .about_description {
        background: var(--secondary-color);
        border: 2px solid var(--primary-hover-color);
        color: var(--primary-color);
        display: flex;
        width: fit-content;
        align-items: center;
        padding: 20px;
        border-radius: 30px;
    }
    .about_area .about_btn {
        margin: 30px 0;
    }
    .about_area .about_description i {
        width: 100px;
        height: 100px;
        line-height: 100px;
        font-size: 50px;
        background: #fff;
        border-radius: 50%;
        color: var(--primary-hover-color);
        text-align: center;
        transform: rotate(-40deg);
        margin-right: 20px;
    }
    .about_description_inner h4 {
        color: var(--primary-color);
        font-weight: 600;
        font-size: 26px;
    }
    .about_description_inner .about_contact_phone {
        font-size: 18px;
        font-weight: 500;
        margin-top: 10px;
    }
    @media (max-width: 1399px) {
        .about_area .about_description{
            padding: 10px 20px;
        }
        .about_area .about_description i {
            width: 80px;
            height: 80px;
            line-height: 80px;
            font-size: 40px;
        }
        .about_description_inner h4{
            font-size: 20px;
        }
        .about_area .about_btn {
            margin: 15px 0;
        }
        .about_area .about_area_desc p {
            margin-bottom: 10px;
        }
        .about_area .about_area_desc {
            font-size: 14px;
            line-height: 24px;
        }
    }
    @media (max-width: 1199px) {
        .about_area_content {
            margin-top: 30px;
            text-align: center;
        }
        .about_area_content .page-title {
            text-align: center !important;
        }
        .about_area .about_description{
            margin: auto;
            text-align: left;
        }
    }
    @media (max-width: 480px) {
        .about_area .about_description i {
            width: 60px;
            height: 60px;
            line-height: 60px;
            font-size: 30px;
            margin: 0 0 10px 0;
        }
        .about_area .about_description {
            padding: 10px;
            display: block;
            text-align: center;
        }
        .about_description_inner h4,
        .about_description_inner .about_contact_phone {
            font-size: 16px;
        }
    }
    /* ----- 
    .About
    ----- */
    
    /* ----- 
    Services
    ----- */
    .service {
        text-align: center;
        background: #fff;
        color: var(--primary-hover-color);
        padding: 30px;
        margin-bottom: 30px;
        transition: 0.5s;
        border: 1px solid var(--background-color);
        transition: all 0.5s ease-in-out;
        -webkit-transition: all 0.5s ease-in-out;
        border-radius: 30px;
    }
    .service:hover {
        border-color: var(--secondary-color);
    }
    .service-content h4 {
        margin: 25px 0 0 0;
        font-size: 24px;
        text-transform: capitalize;
        color: var(--primary-hover-color);
    }
    .themability-service-images img {
        width: 100%;
    }
    .themability-service-images {
        background: var(--secondary-color);
        padding: 19px;
        max-width: 130px;
        max-height: 130px;
        margin: auto;
        border-radius: 50%;
        border: 2px solid var(--primary-hover-color);
    }
    .service-content .promo-desc {
        line-height: 26px;
        padding: 20px 0;
    }
    .service-content .promo-btn {
        background: var(--secondary-color);
        border: 2px solid var(--primary-hover-color);
        font-size: 18px;
        font-weight: 600;
        padding: 13px 20px;
        transition: all 0.5s ease-in-out;
        -webkit-transition: all 0.5s ease-in-out;
    }
    .service-content .promo-btn:hover {
        background: var(--primary-color);
        color: var(--primary-hover-color);
    }
    .service .themability-service-images img {
        display: block;
        transition: all 0.7s ease;
        -webkit-transition: all 0.7s ease;
        -moz-transition: all 0.7s ease;
        -ms-transition: all 0.7s ease;
        -o-transition: all 0.7s ease;
    }    
    .service:hover .themability-service-images img {
        -webkit-transform: rotateY(360deg);
        -moz-transform: rotateY(360deg);
        -o-transform: rotateY(360deg);
        -ms-transform: rotateY(360deg);
        transform: rotateY(360deg);
    }
    @media (max-width: 1199px) {
        .service{
            padding: 20px 15px;
        }
        .themability-service-images {
            max-width: 100px;
            max-height: 100px;
        }
        .service-content h4 {
            margin: 20px 0 0 0;
            font-size: 18px;
        }
        .service-content .promo-desc {
            padding: 10px 0 15px 0;
        }
        .service-content .promo-btn {
            padding: 10px 20px;
            font-size: 16px;
        }
    }
    @media (max-width: 991px) {
        .service{
            margin-bottom: 20px;
        }
    }
    /* ----- 
    .Services
    ----- */
    
    /* ----- 
    Start Next & Prev
    ----- */
    .owl-carousel .owl-nav {
        position: unset;
    }
    .owl-carousel .owl-nav > div {
        position: absolute;
        top: 50%;
        transform: translateY(-50%)
    }
    .owl-carousel .owl-nav .owl-prev,
    .owl-carousel .owl-nav .owl-next {
        height: 40px;
        width: 40px;
        background: var(--secondary-color);
        color: var(--primary-color);
        text-align: center;
        line-height: 36px;
        opacity: 0;
        font-size: 18px;
        transition: all 0.7s ease;
        border: 2px solid var(--primary-hover-color);
    }
    .owl-carousel:hover .owl-nav .owl-prev,
    .owl-carousel:hover .owl-nav .owl-next{
        opacity: 1;
    }
    .themability-slideshow .owl-carousel .owl-nav .owl-prev {
        left: 20px;
    }
    .themability-slideshow .owl-carousel .owl-nav .owl-next {
        right: 20px;
    }
    .owl-carousel .owl-nav .owl-prev {
        left: -20px;
    }
    .owl-carousel .owl-nav .owl-next {
        right: -20px;
    }
    .owl-carousel .owl-nav .owl-prev:hover,
    .owl-carousel .owl-nav .owl-next:hover {
        background: var(--primary-color);
        color: var(--primary-hover-color);
    }
    @media (max-width: 991px){
        .owl-carousel .owl-nav .owl-prev,
        .owl-carousel .owl-nav .owl-next {
            height: 30px;
            width: 30px;
            line-height: 28px;
        }
        .owl-carousel .owl-nav .owl-next {
            right: -15px;
        }
        .owl-carousel .owl-nav .owl-prev {
            left: -15px;
        }
    }
    /* ----- 
    .Start Next & Prev
    ----- */
    
    /* -----
    Zodiac
    ----- */
    .category-inner {
        /* justify-content: center; */
    }
    .images-hover.image img {
        width: 70%;
        border-radius: 100px;
        border: solid 2px #ffd800;
    }
    .category-thumb {
        margin-bottom: 30px;
        padding: 30px 20px 0px 20px;
        background: #ffffff;
        border: 1px dashed #666;
        text-align: center;
        position: relative;
        transition: all 0.5s ease-in-out;
        -webkit-transition: all 0.5s ease-in-out;
        border-radius: 30px;
        min-height: 220px;
    }
    .category-thumb .cat-title h4 a {
        text-transform: uppercase;
        text-align: center;
        font-size: 18px;
        font-weight: 500;
        color: #880000;
    }
    .advertise {
        text-align: center;
        padding: 10px;
    }
    .category-thumb .cat-title a:hover {
        color: var(--secondary-color);
    }
    .category-thumb:hover {
        border-style: solid;
        border-color: var(--secondary-color);
    }
    .category-thumb .category-date {
        font-size: 16px;
        margin-top: 15px;
    }
    @media (min-width: 1200px){
        .category-layout {
            /* width: 20%; */
        }
    }
    @media (max-width: 1399px){
        .category-thumb{
            padding: 20px 10px;
        }
    }
    @media (max-width: 991px){
        .category-thumb{
            margin-bottom: 20px;
        }
        .category-thumb .cat-title h4 a{
            font-size: 18px;
        }
        .category-thumb .category-date {
            font-size: 14px;
        }
    }
    @media (max-width: 575px) {
        .category-featured .category-layout {
            width: 50%;
        }    
    }
    /* -----
    .Zodiac
    ----- */
    
    /* -----
    Find Zodic
    ----- */
    .find-zodic {
        background: var(--background-color);
        padding: 30px 0;
    }
    .find-zodic .zodic-input {
        background: rgba(255 255 255/8%);
        box-shadow: none;
        border: none;
        color: rgb(238 238 238 / 50%);
        padding: 5px 20px;
        height: 60px;
        text-transform: uppercase;
        width: 100%;
    }
    .find-zodic .zodic-input::placeholder {
        color: rgb(238 238 238 / 50%);
    }
    .zodic-form .row {
        align-items: flex-end;
    }
    .zodic-form .zodic-submit {
        padding: 18px 50px;
        font-size: 20px;
    }
    .zodic-form .zodic-sub-heading {
        font-size: 20px;
        margin-bottom: 15px;
    }
    @media (max-width: 991px) {
        .find-zodic .zodic-input {
            height: 50px;
        }
        .zodic-form .zodic-sub-heading {
            margin-bottom: 10px;
            font-size: 16px;
        }
        .zodic-form-box {
            margin-bottom: 20px;
        }
        .zodic-form .zodic-submit {
            padding: 10px 25px;
            font-size: 16px;
        }
    }
    /* -----
    .Find Zodic
    ----- */
    
    /*-----
    Product
    -----*/
    .product-thumb {
        margin-bottom: 30px;
        text-align: center;
    }
    .product-thumb .image {
        position: relative;
        overflow: hidden;
        text-align: center;
        background: #fff;
        border: 1px dashed var(--secondary-color);
        transition: all 0.5s ease-in-out;
        -webkit-transition: all 0.5s ease-in-out;
        border-radius: 30px;
    }
    .product-thumb:hover .image {
        border-style: solid;
    }
    .product-thumb .caption {
        padding: 10px 0 0 0;
    }
    .product-thumb .button-group {
        position: absolute;
        bottom: -40px;
        left: 0;
        right: 0;
        opacity: 0;
        z-index: 1;
        transition: 0.5s;
    }
    .product-thumb:hover .button-group {   
        bottom: 10px;
        opacity: 1;
    }
    .product-thumb .button-group button {
        width: 40px;
        height: 40px;
        font-size: 16px;
        border: 1px solid var(--border-color);
        background-color: var(--primary-hover-color);
        padding: 0;
        color: var(--primary-color);
        margin: 0 3px;
        border-radius: 50%;
        transition: 0.7s;
    }
    .product-thumb .button-group button i {
        display: block;
        color: var(--primary-color);
    }
    .product-thumb .button-group button:hover {
        background-color: var(--secondary-color);
        text-decoration: none;
    }
    .product-thumb h4 {
        font-size: 16px;
        line-height: 20px;
        margin: 8px 0 0 0;
        text-transform: capitalize;
        display: inline-block;
        vertical-align: middle;
    }
    .product-thumb .rating {
        float: right;
    }
    .rating {
        margin: 8px 0 0 0;
        vertical-align: middle;
    }
    .rating span {
        font-size: 6px;
        width: 2em;
    }
    .rating i {
        font-size: 12px;
        color: #fec60f;
    }
    .rating span:hover i {
        font-weight: 600;
    }
    .product-thumb .price {
        margin: 8px 0 0 0;
    }
    .product-thumb .price-old {
        color: var(--secondary-light-color);
        text-decoration: line-through;
        margin-left: 5px;
    }
    .product-thumb .description {
        display: none;
    }
    .product-thumb .price-tax {
        display: none;
    }
    @media (max-width: 1199px) {
        .product-thumb h4 {
            display: block;
        }
        .product-thumb .rating {
            float: unset;
        }
        .product-thumb .caption{
            text-align: center;
        }
    }
    @media (max-width: 991px) {
        .product-thumb .button-group button {
            width: 30px;
            height: 30px;
            margin: 0;
            font-size: 14px;
        }
        .product-thumb .button-group {
            bottom: 10px;
            opacity: 1;
        }
        .product-thumb h4 {
            font-size: 14px;
            margin: 0;
        }
        .product-thumb {
            margin-bottom: 20px;
            padding: 0 1px;
        }
    }
    /*-----
    .Product
    -----*/
    
    /* -----
    Blog
    ----- */
    .blog-block .product-block-inner {
        position: relative;    
        overflow: hidden;
        margin-bottom: 30px;
    }
    .blog-carousel {
        margin-bottom: -30px;
    }
    .blog-left {
        position: relative;
    }
    .blog-image img {
        border-radius: 40px;
    }
    .blog-image .post_hover {
        position: absolute;
        text-align: center;
        left: 7px;
        margin: 0;
        top: -40px;
        opacity: 0;
        transition: all 0.3s ease 0s;
    }
    .product-block-inner:hover .blog-image .post_hover {
        top: 10px;
        opacity: 1;
        -webkit-opacity: 1;
        -moz-opacity: 1;
        -kkhtml-opacity: 1;
    }
    .post_hover .icon {
        display: inline-block;
        height: 40px;
        width: 40px;
        line-height: 40px;
        background: var(--secondary-color);
        color: var(--primary-color);
        font-size: 14px;
        transition: all 0.3s linear 0s;
        text-align: center;
        margin: 0 3px;
        border-radius: 50%;
        -webkit-border-radius: 50%;
        -khtml-border-radius: 50%;
    }
    .post_hover .icon:hover {
        background: var(--primary-color);
        color: var(--primary-hover-color);
    }
    .blog-date-comment .date-time {
        background: var(--secondary-color);
        color: var(--primary-color);
        border: 2px solid var(--primary-hover-color);
        padding: 13px 15px;
        position: absolute;
        top: -25px;
        left: 30px;
        z-index: 1;
        font-weight: 600;
        font-size: 18px;
    }
    .blog-date-comment a {
        color: var(--primary-hover-color);
    }
    .date-time i {
        margin: 0 7px 0 0;
    }
    .write-comment-count i {
        margin: 0 7px 0 0;
    }
    .blog-right {
        position: relative;
        background: #ffd800;
        padding: 30px;
        border-radius: 30px;
        margin-top: 10px;
    }
    .blog_title {
        font-size: 16px;
        font-weight: 500;
        margin: 0px 0 0 0;
        text-transform: uppercase;
        text-align: center;
    }
    .blog_title a:hover {
        color: #880000 !important;
    }
    .blog_title a {
        color: var(--primary-hover-color);
        text-decoration: none;
    }
    .blog_title a:hover{
        color: var(--secondary-color);
    }
    .blog-desc {
        line-height: 24px;
        margin: 10px 0 0 0;
        font-size: 14px;
    }
    .read-more {
        margin: 20px 0 0 0;
    }
    .read-more .btn-info {
        color: var(--primary-hover-color);
        outline: none;
        border: none;
        box-shadow: none;
        background: transparent;
        padding: 0;
        font-size: 16px;
        transition: 0.5s;
    }
    .read-more .btn-info i {
        vertical-align: middle;
        padding-left: 7px;
    }
    .read-more .btn-info:hover {
        color: #880000;
        background: transparent;
    }
    .read-more .btn-info:after {
        content: "";
        background: var(--primary-hover-color);
        height: 2px;
        width: 50%;
        display: block;
        transition: 0.5s;
        margin-top: 3px;
    }
    .read-more .btn-info:hover:after {
        width: 100%;
        background: var(--secondary-color);
    }
    @media (max-width: 991px) {
        .blog-right {
            padding: 30px 20px 20px;
        }
        .blog_title {
            font-size: 16px;
        }
        .blog-date-comment .date-time{
            top: -20px;
            left: 20px;
            font-size: 14px;
            padding: 8px 15px;
        }
        .blog-block .product-block-inner{
            margin-bottom: 20px;
        }
    }
    /* -----
    .Blog
    ----- */
    
    /*-----
     Newsletter Section 
    ----- */
    .news-info .page-title {
        font-size: 30px;
        text-align: left;
        margin: 0px 0 10px;
        color: #fff;
    }
    .news {
        background: url(assets/images/newsletter/newletter-bg.png) center center;
        background-size: cover;
        padding: 50px 0;
        position: relative;
        background: #880000;
    }
    .news .row {
        align-items: center;
    }
    .news-info {
        display: flex;
        align-items: center;
    }
    .news-info i {
        margin: 0 40px 0 0;
        background: var(--secondary-color);
        color: var(--primary-color);
        font-size: 40px;
        border-radius: 50%;
        height: 100px;
        width: 100px;
        line-height: 100px;
        text-align: center;
        display: block;
        border: 2px solid var(--primary-hover-color);
    }
    .news-description {
        color: #fff;
        font-size: 16px;
    }
    .newsletter-email-address {
        height: 50px;
        background: var(--primary-hover-color);
        border-radius: 100px;
        border: none;
        padding: 10px 15px;
        width: 100%;
        outline: none;
        background: #fff;
    }
    .newsletter-submit {
        border-radius: 100px;
        background: var(--secondary-color);
        color: var(--primary-color);
        padding: 10px 20px;
        font-size: 16px;
        font-weight: 600;
        border: 2px solid var(--secondary-color);
        transition: all 0.5s ease-in-out;
        -webkit-transition: all 0.5s ease-in-out;
    }
    .newsletter-submit:hover {
        background: var(--primary-color);
        color: var(--primary-hover-color);
        border-color: var(--primary-hover-color);
    }
    .subscribe-form {
        display: flex;
    }
    @media (max-width: 1399px) {
        .news-info i {
            margin: 0 20px 0 0;
            height: 80px;
            width: 80px;
            line-height: 80px;
            font-size: 34px;
        }
        .news-description {
            font-size: 14px;
        }
        .news-info .page-title {
            font-size: 26px;
        }    
    }
    @media (max-width: 1199px) {
        .subscribe-form {
            max-width: 500px;
            margin: auto;
        }
        .news-info {
            justify-content: center;
            margin-bottom: 20px;
        }
        .news{
            padding: 30px 0;
        }
        .news-info i {
            margin: 0 15px 0 0;
        }
    }
    @media (max-width: 480px) {
        .news-info {
            display: block;
            text-align: center;
        }
        .news-info .page-title {
            text-align: center;
            font-size: 20px;
        }
        .news-info i {
            margin: auto auto 10px auto;
        }
        .news {
            padding: 20px 0;
        }
    }
    /*-----
     .Newsletter Section 
    ----- */
    
    /*-----
     footer 
    ----- */
    .footer-main {
        padding-top: 50px;
        color: var(--primary-color);
        background: var(--secondary-color);
    }
    .follow-link h4,
    .footer-main h5 {
        font-size: 22px;
        font-weight: 600;
        text-transform: capitalize;
        margin: 0 0 10px 0;
        display: inline-block;
        position: relative;
        color: var(--primary-color);
        border-bottom: 2px solid var(--primary-color);
    }
    .follow-link h4{
        border-bottom: none;
        margin-bottom: 0;
    }
    .footer-top .position-footer-left ul li>div {
        display: flex;
        padding: 8px 0;
        font-size: 16px;
        color: var(--primary-color);
        align-items: baseline;
    }
    .footer-main .footer-links a::before {
        content: "";
        background: #000;
        height: 5px;
        width: 5px;
        display: inline-block;
        vertical-align: middle;
        margin: 0 10px;
    }
    .contact_title {
        padding: 0 10px 0 0;
        min-width: 42px;
        min-height: 42px;
        max-height: 42px;
        background-color: #8c0404;
        border-radius: 80px;
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 0;
        margin-right: 10px;
    }
    .footer-main .footer-logo img {
        max-width: 140px;
    }
    .footer-main a {
        padding: 8px 0;
        display: inline-block;
        text-decoration: none;
        font-size: 16px;
        color: var(--primary-color);
        transition: all 0.5s ease-in-out;
        -webkit-transition: all 0.5s ease-in-out;
    }
    .footer-main .footer-links a:hover::before,
    .footer-main a:hover {
        color: var(--primary-hover-color);
    }
    .footer-main .footer-logo p {
        font-size: 16px;
        color: var(--primary-color);
        line-height: initial;
    }
    .footer-main .footer-logo {
        margin-bottom: 20px;
    }
    .footer-main .social-media a {
        padding: 0;
        background: var(--primary-color);
        height: 40px;
        width: 40px;
        line-height: 40px;
        border-radius: 50%;
        text-align: center;
        font-size: 18px;
        transition: all 0.5s ease-in-out;
        -webkit-transition: all 0.5s ease-in-out;
    }
    .footer-main .social-media a:hover {
        background: var(--primary-hover-color);
        color: var(--primary-color);   
    }
    .footer-main .social-media a+a {
        margin: 0 0 0 6px;
    }
    .footer-main .copyright {
        padding: 30px 0;
        text-align: center;
        border-top: 2px solid var(--primary-color);
        margin: 30px 0 0 0;
        font-size: 16px;
        font-weight: 500;
        color: var(--primary-color);
    }
    .footer-top .contact_site a {
        padding: 0;
    }
    @media only screen and (max-width: 991px) {
        .toggled .toggle-open {
            position: absolute;
            right: 0;
        }
        .follow-link h4,
        .footer-main h5 {
            display: block;
            font-size: 18px;       
        }
        .footer-main h5{
            padding-bottom: 10px;
            border-bottom: 1px solid var(--background-color);
        }
        .footer-main .position-footer-right {
            text-align: center;
        }
        .footer-main .copyright {
            padding: 15px 0;
        }
        .footer-main {
            padding-top: 30px;
        }
        .footer-main .social-media a {
            height: 35px;
            width: 35px;
            line-height: 35px;
        }    
    }
    /*-----
     .footer 
    ----- */
    
    /* -----
    breadcrumb
    ----- */
    .breadcrumb-main {
        background: url(assets/images/breadcrumb1.png)no-repeat scroll center center;
        background-size: cover;
        text-align: center;
        padding: 60px 10px;
        font-size: 40px;
        font-weight: 600;
        color: var(--secondary-color);
        line-height: 1.5;
        margin-bottom: 50px;
    }
    .breadcrumb-main .page-title {
        text-transform: capitalize;
        font-size: 38px;
        font-weight: 600;
        margin: 0px 0 20px;
    }
    .breadcrumb {
        padding: 10px 20px;
        background: rgb(245 245 245 / 24%);
        border: 1px solid var(--primary-hover-color);
        border-radius: 0;
        justify-content: center;
        width: fit-content;
        margin: auto;
    }
    .breadcrumb>li {
        position: relative;
        font-size: 18px;
        font-weight: 400;
    }
    .breadcrumb a {
        position: relative;
        text-transform: capitalize;
        color: var(--primary-hover-color);
    }
    .breadcrumb>li:hover a {
        color: var(--secondary-color);
    }
    .breadcrumb>li+li {
        padding: 0 0 0 5px;
    }
    .breadcrumb>li:last-child a {
        color: var(--secondary-color);
    }
    .breadcrumb li+li a::before {
        content: "\f101";
        font-family: 'FontAwesome';
        padding: 0 8px 0 0;
        color: var(--primary-hover-color);
        display: inline-block;
        font-size: 14px;
    }
    @media (max-width: 991px){
        .breadcrumb-main{
            padding: 30px 10px;
            margin-bottom: 30px;
        }
        .breadcrumb-main .page-title{
            font-size: 26px;
            margin: 0px 0 15px;
        }
        .breadcrumb>li{
            font-size: 14px;
        }
        .breadcrumb {
            padding: 8px 20px;
        }
    }
    /* -----
    .breadcrumb
    ----- */
    
    /* -----
    About Page
    ----- */
    .about-choose .block_box {
        padding: 30px 15px 0 15px;
        background: #880000;
    }
    .about-choose-thumb {
        text-align: center;
        margin-bottom: 30px;
    }
    .about-choose-thumb .cat-title a {
        font-size: 20px;
        font-weight: 400;
        color: #fff;
    }
    
    .ab_imgB1{
        -webkit-animation:spin 15s linear infinite;
        -moz-animation:spin 15s linear infinite;
        animation:spin 15s linear infinite;
    }
    .ab_imgB2{
        -webkit-animation:spin 15s linear infinite;
        -moz-animation:spin 15s linear infinite;
        animation:spin 15s linear infinite;
    }
    @-moz-keyframes spin { 
        100% { -moz-transform: rotate(360deg); } 
    }
    @-webkit-keyframes spin { 
        100% { -webkit-transform: rotate(360deg); } 
    }
    @keyframes spin { 
        100% { 
            -webkit-transform: rotate(360deg); 
            transform:rotate(360deg); 
        } 
    }
    
    
    /* for Home Page about Image */
    /* Extra small devices (phones, 600px and down) */
    @media only screen and (max-width: 600px) {
        .ab_imgB2{
            position: absolute;
            z-index: 5;
            left: 2%;
           
        }
    }
    
    /* Small devices (portrait tablets and large phones, 600px and up) */
    @media only screen and (min-width: 600px) {
        .ab_imgB2{
            position: absolute;
            z-index: 5;
            left: 2%;
           
        }
    }
    
    /* Medium devices (landscape tablets, 768px and up) */
    @media only screen and (min-width: 768px) {
        .ab_imgB2{
            position: absolute;
            z-index: 5;
            left: 6%;
          
        }
    }
    
    /* Large devices (laptops/desktops, 992px and up) */
    @media only screen and (min-width: 992px) {
        .ab_imgB2{
            position: absolute;
            z-index: 5;
            left: 16%;
            /* top: 158%; */
           
        }
    }
    
    /* Extra large devices (large laptops and desktops, 1200px and up) */
    @media only screen and (min-width: 1200px) {
        .ab_imgB2 {
            position: absolute;
            z-index: 5;
            left: 0;
            top: 20px;
        }
    }
    
    /* for Home Page about Image */
    
    
    /* For About Page */
    
    /* Extra small devices (phones, 600px and down) */
    @media only screen and (max-width: 600px) {
        .ab_imgB1{
            position: absolute;
            z-index: 5;
            left: 2%;
           
        }
    }
    
    /* Small devices (portrait tablets and large phones, 600px and up) */
    @media only screen and (min-width: 600px) {
        .ab_imgB1{
            position: absolute;
            z-index: 5;
            left: 2%;
           
        }
    }
    
    /* Medium devices (landscape tablets, 768px and up) */
    @media only screen and (min-width: 768px) {
        .ab_imgB1{
            position: absolute;
            z-index: 5;
            left: 6%;
          
        }
    }
    
    /* Large devices (laptops/desktops, 992px and up) */
    @media only screen and (min-width: 992px) {
        .ab_imgB1{
            position: absolute;
            z-index: 5;
            left: 16%;
           
        }
    }
    
    /* Extra large devices (large laptops and desktops, 1200px and up) */
    @media only screen and (min-width: 1200px) {
        .ab_imgB1{
            position: absolute;
            z-index: 5;
            left: 6%;
            /* top:55%; */
        }
    }
    
    /* for About Page */
    
    
    
    .about-choose-thumb .counter {
        color: #fff;
        font-weight: 600;
        font-size: 30px;
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .about-choose-image {
        position: relative;
        max-width: 225px;
        margin: auto auto 30px auto;
        padding: 0 15px;
    }
    .about-choose-inner {
        justify-content: center;
    }
    @media (max-width: 1500px){
        .about-choose-thumb .cat-title a {
            font-size: 18px;
        }
        .about-choose-thumb .counter{
            font-size: 24px;
        }
    }
    @media (max-width: 1399px){
        .about-choose-image {
            margin: auto auto 10px auto;
        }
        .about-choose-thumb .cat-title a {
            font-size: 15px;
        }
    }
    @media (max-width: 575px){
        .about-choose-image {
            padding: 0;
            max-width: 200px;
        }
    }
    @media (max-width: 375px){
        .about-choose .about-choose-layout {
            width: 100%;
        }
    }
    /* -----
    .About Page
    ----- */
    
    /* -----
    Shop Page
    ----- */
    .product-filter .select-cat-sort .form-control {
        height: 50px;
        padding: 5px 35px 5px 15px;
        border: none;
        border-radius: 0;
        font-size: 16px;
        font-weight: 500;
    }
    .product-filter .select-cat-sort::after {
        font-family: 'fontawesome';
        content: '\f107';
        font-size: 16px;
        position: absolute;
        right: 10px;
        top: 15px;
        pointer-events: none;
        color: var(--primary-color);
    }
    .product-filter .sort-cat {
        display: inline-block;
        position: relative;
    }
    .product-filter {
        text-align: right;
        margin-bottom: 30px;
    }
    .pagination li {
        border-radius: 50%;
        margin-left: 10px;
        background: var(--primary-hover-color);
        color: var(--primary-color);
        height: 40px;
        width: 40px;
        line-height: 40px;
        text-align: center;
        font-size: 18px;
        font-weight: 500;
        cursor: pointer;
    }
    .pagination li.page-item.active,
    .pagination li:hover {
        background: var(--secondary-color);
    }
    .pagination-main {
        background: var(--background-color);
        padding: 10px 15px;
    }
    .pagination-main .text-left {
        line-height: 40px;
    }
    .pagination {
        justify-content: end;
        margin: 0;
    }
    @media (min-width: 1400px){
        .shop-page .product-layout {
            width: 20%;
        }
    }
    @media (max-width: 575px) and (min-width: 481px){
        .shop-page .product-layout {
            width: 33.33%;
        }
    }
    @media (max-width: 991px){
        .pagination-main > div> div {
            text-align: center !important;
        }
        .pagination {
            justify-content: center;
        }
        .pagination li{
            height: 35px;
            width: 35px;
            line-height: 35px;
        }
        .product-filter{
            margin-bottom: 20px;
        }
    }
    @media (max-width: 319px){
        .shop-page .product-layout {
            width: 100%;
        }
    }
    /* -----
    .Shop Page
    ----- */
    
    /* -----
    Product Page
    ----- */
    .pro-image {
        margin-bottom: 20px;
        background: var(--background-color);
    }
    #additional-carousel {
        padding: 0 80px;
    }
    #additional-carousel .image-additional {
        background: var(--background-color);
        margin: 0 10px;
        padding: 10px;
        border: 1px solid var(--background-color);
    }
    #additional-carousel .image-additional:hover{
        border-color: var(--secondary-color);
    }
    #additional-carousel.owl-carousel .owl-nav .owl-next {
        right: 0;
    }
    #additional-carousel.owl-carousel .owl-nav .owl-prev {
        left: 0;
    }
    .pro-deatil .product-right .product-title {
        font-size: 20px;
    }
    .pro-deatil .rating > * {
        display: inline-block;
        margin: 0 20px 0 0;
        color: var(--secondary-light-color);
        text-transform: capitalize;
    }
    .pro-deatil .rating {
        margin: 15px 0 0 0;
    }
    .pro-deatil .manufacturer-listpro {
        margin-top: 15px;
        line-height: 30px;
        font-size: 16px;
    }
    .pro-deatil .manufacturer-listpro .disc {   
        min-width: 150px;
        display: inline-block;
    }
    .pro-deatil .manufacturer-listpro .disc1 {
        color: var(--secondary-light-color);
    }
    .pro_page_description{
        color: var(--secondary-light-color);
        font-size: 16px;
        line-height: initial;
        margin-bottom: 30px;
    }
    .pro-deatil .pro_price {
        font-size: 20px;
    }
    .pro_page_price li.tax {
        color: var(--secondary-light-color);
    }
    .product-right .form-label {
        margin-bottom: 8px;
        font-weight: 500;
        font-size: 16px;
        min-width: 100px;
    }
    .product-right .product-size-option {
        display: inline-block;
    }
    .product-right .product-size-option span {
        height: 30px;
        width: 30px;
        line-height: 30px;
        display: inline-block;
        background: var(--primary-hover-color);
        color: var(--primary-color);
        text-align: center;
        font-size: 16px;
        font-weight: 500;
        transition: all 0.5s ease-in-out;
        -webkit-transition: all 0.5s ease-in-out;
    }
    .product-right .product-size-option span:hover {
        background: var(--secondary-color);
    }
    .pro-buttons .btn {
        color: var(--primary-hover-color);
        text-transform: uppercase;
        font-weight: 500;
        border: none;
        padding: 0;
        margin: 0 10px 10px 0;
    }
    .pro-buttons .btn:hover{
        color: var(--secondary-color);
    }
    .pro-buttons .btn i {
        background: var(--secondary-color);
        color: var(--primary-color) ;
        border-radius: 50%;
        padding: 8px;
        width: 30px;
        height: 30px;
        font-size: 14px;
        margin-right: 5px;
        display: inline-block;
        vertical-align: middle;
    }
    .product-btn-quantity {
        display: inline-flex;
    }
    .product-btn-quantity #input-quantity {
        width: auto;
        border: none;
        border-radius: 0;
        text-align: center;
        border-left: 1px solid var(--border-color);
        border-right: 1px solid var(--border-color);
    }
    .product-btn-quantity > button {
        height: 48px;
        width: 48px;
        border: none;
        background: var(--primary-hover-color);
        transition: all 0.5s ease-in-out;
        -webkit-transition: all 0.5s ease-in-out;
    }
    .product-btn-quantity > button:hover{
        background: var(--secondary-color);
    }
    .quantity-addcart > div {
        display: inline-block;
        margin: 0 10px 10px 0;
    }
    #myTab {
        background: var(--secondary-color);
        justify-content: center;
        border: none;
        margin-bottom: 30px;
    }
    #myTab .nav-item a {
        background: transparent;
        border: none;
        color: var(--primary-color);
        font-size: 16px;
        font-weight: bold;
        margin: 15px 20px;
        padding: 0;
    }
    .propage-tab  #tab-description {
        font-size: 14px;
        line-height: initial;
        color: var(--secondary-light-color);
    }
    #form-review {
        background: var(--background-color);
        padding: 30px;
    }
    #form-review .review-title {
        font-size: 20px;
        border-bottom: 2px solid var(--secondary-color);
        padding-bottom: 5px;
        display: inline-block;
        margin: 10px 0 20px;
    }
    #form-review .form-label {
        font-size: 16px;
    }
    #myTab .nav-item a.active::after,
    #myTab .nav-item a:hover::after {
        width: 85%;
    }
    #myTab .nav-item a::after {
        content: "";
        width: 0;
        height: 2px;
        display: block;
        background: var(--primary-color);
        position: absolute;
        bottom: 5px;
        margin: auto;
        left: 0;
        right: 0;
        transition: 0.5s;
    }
    #myTab .nav-item {
        position: relative;
    }
    @media (max-width: 991px) {
        #additional-carousel {
            padding: 0 30px;
        }
        #form-review {
            padding: 20px;
        }
    }
    @media (max-width: 767px){
        .product-right {
            margin-top: 30px;
        }
    }
    /* -----
    .Product Page
    ----- */
    
    /* -----
    Blog Page
    ----- */
    .single-blog .blog-description {
        margin-top: 30px;
    }
    .single-blog .blog_title_date {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    .single-blog .blog-desc {
        margin: 20px 0 0 0;
    }
    .single-blog .blog_title_date .blog_title {
        margin: 0;
    }
    .single-blog .block-title p {
        border: none;
        padding: 15px 20px;
        margin: 30px 0 0;
        font-weight: 600;
        background: var(--secondary-color);
        color: var(--primary-color);
        font-size: 18px;
    }
    .single-blog .comment-form-outer,
    .single-blog .view-comment {
        padding: 20px;
        background: var(--background-color);
    }
    .single-blog .comment-form-outer {
        padding: 50px;
    }
    .single-blog .user_icon {
        display: inline-block;
        vertical-align: middle;
    }
    .single-blog .user_icon i {
        width: 70px;
        height: 70px;
        line-height: 64px;
        font-size: 30px;
        text-align: center;
        border-radius: 50%;
        background: var(--primary-hover-color);
        margin: 0 15px 0 0;
        color: var(--secondary-color);
        border: 3px solid var(--secondary-color);
    }
    .single-blog .comment_info {
        display: inline-block;
        vertical-align: middle;
    }
    .single-blog .comment_info .name {
        margin-bottom: 5px;
    }
    .single-blog .comment_info .comment-text {
        color: var(--secondary-light-color);
    }
    .submitted {
        display: none;
        color: #72c02c;
        /*margin-top: -15px;*/
        margin-bottom: 15px;
    }
    @media (max-width: 991px){
        .single-blog .comment-form-outer {
            padding: 20px;
        }
        .single-blog .blog_title_date{
            display: block;
        }
        .single-blog .blog_title_date .date-time {
            margin-top: 15px;
        }
    }
    @media (max-width: 767px){
        .single-blog .comment_info {
            display: block;
            text-align: center;
        }
    
        .single-blog .user_icon i {
            margin: auto auto 10px auto;
        }
    
        .single-blog .user_icon {
            display: block;
            text-align: center;
        }
    }
    /* -----
    .Blog Page
    ----- */
    
    /* -----
    Contact Page
    ----- */
    .contact_page .contact-title {
        font-size: 22px;
        font-weight: 500;
        color: var(--primary-hover-color);
        border-bottom: 2px solid var(--secondary-color);
        line-height: 1;
        padding-bottom: 10px;
        margin-bottom: 20px;
    }
    .contact-left .panel {
        background: #eee;
        border: none;
        border-radius: 30px;
    }
    .contact-right form {
        padding: 30px;
        background: #eee;
        border-radius: 30px;
    }
    .contact-left .panel-body {
        padding: 20px;
    }
    .contact-left .panel-body>div {
        text-align: center;
    }
    .contact-left .panel-body>div img {
        display: unset;
    }
    .contact-left .panel-body>div+div {
        border-top: 1px solid var(--border-color);
        margin-top: 15px;
        padding-top: 15px;
    }
    .contact-left .panel-body>div>i {
        height: 30px;
        width: 30px;
        background: var(--secondary-color);
        color: var(--primary-hover-color);
        line-height: 30px;
        border-radius: 5px;
        margin: 0 0 10px;
    }
    .contact-left .store-title {
        font-size: 14px;
        text-transform: capitalize;
        font-weight: 500;
        margin: 0 0 7px;
    }
    .store-address .btn-info {
        margin-top: 10px;
    }
    /* -----
    .Contact Page
    ----- */
    
    /* -----
    Privacy Policy Page
    ----- */
    .html-content {
        padding: 30px;
        background: var(--background-color);
    }
    .html-content .title {
        font-size: 16px;
        margin: 0 0 15px;
        font-weight: 500;
        padding: 0 0 10px;
        line-height: 20px;
        border-bottom: 1px solid var(--border-color);
    }
    .html-content .description {
        color: var(--secondary-light-color);
        margin: 0 0 25px;
    }
    /* -----
    .Privacy Policy Page
    ----- */
    
    /* -----
    Account Page
    ----- */
    .well {
        padding: 20px;
        margin-bottom: 20px;
        background-color: var(--background-color);
    }
    .well .account-title {
        font-size: 22px;
        border-bottom: 2px solid var(--secondary-color);
        line-height: initial;
        margin-bottom: 20px;
        padding-bottom: 5px;
    }
    /* -----
    .Account Page
    ----- */
    
    /* -----
    Cart Page
    ----- */
    .cart-img img {
        max-width: 100px;
        background: var(--primary-color);
        border: none;
    }
    .cart-page .table>tbody {
        vertical-align: middle;
    }
    /* -----
    .Cart Page
    ----- */
    
    /* -----
    common css
    ----- */
    .main-content {
        min-height: 100vh;
    }
    .common-title {
        font-size: 20px;
        margin-bottom: 30px;
        border-bottom: 2px solid var(--secondary-color);
        padding-bottom: 10px;
    }
    .form-control {
        border-radius: 0;
        border: none;
        padding: 10px 15px;
        font-size: 14px;
        line-height: inherit;
    }
    .form-control:focus {
        box-shadow: none;
    }
    .dropdown-menu {
        margin: 0;
        border: none;
        border-top: 2px solid var(--secondary-color);
        border-radius: 0;
        padding: 8px 0;
        width: 200px;
        box-shadow: 0 6px 12px rgb(0 0 0 / 18%);
        right: 0;
        top: 100%;
        background: var(--primary-color);
        color: var(--primary-hover-color);
    }
    input {
        outline: none;
    }
    .mt-50 {
        margin: 50px 0 0 0;
    }
    .mt-20 {
        margin: 20px 0 0 0;
    }
    @media (min-width: 1551px) {
        .container {
            max-width: 1500px;
        }
    }
    .container,
    .row>* {
        padding-left: 15px;
        padding-right: 15px;
    }
    .row{
        margin-left: -15px;
        margin-right: -15px;
    }
    
    .table {
        font-size: 14px;
        background: var(--primary-color);
        border-color: #444;
        color: var(--primary-hover-color);
    }
    .table>:not(:last-child)>:last-child>* {
        border-color: #444;
    }
    
    @media (max-width: 991px) {
        .row>* {
            padding-left: 5px;
            padding-right: 5px;
        }
        .row{
            margin-left: -5px;
            margin-right: -5px;
        }
        .mt-50 {
            margin: 30px 0 0 0;
        }
        .mt-20{
            margin: 10px 0 0 0;
        }
    }
    /* -----
    .common css
    ----- */
    
    
    
    ul.themability_megamenu>li>.sub-menu {
        text-align: left;
        position: absolute;
        z-index: 11;
        display: none;
        box-shadow: 0 1px 5px rgb(0 0 0 / 11%);
        -moz-box-shadow: 0 1px 5px rgba(0, 0, 0, 0.11);
        -webkit-box-shadow: 0 3px 10px rgb(255 255 255 / 20%);
        border-radius: 0;
        background: #fff;
        border: solid 1px #eee;
        border-radius: 30px;
    }
    
    .themability_megamenu .menu-product-thumb .image {
        float: left;
        display: inline-block;
        min-width: 70px;
        max-width: 70px;
        margin-right: 5px;
        border: 1px dashed var(--secondary-color);
        background: #fff;
    }
    
    
    ul.themability_megamenu>li>.sub-menu {
        text-align: left;
        position: absolute;
        z-index: 11;
        display: none;
        box-shadow: 0 1px 5px rgb(0 0 0 / 11%);
        -moz-box-shadow: 0 1px 5px rgba(0, 0, 0, 0.11);
        -webkit-box-shadow: 0 3px 10px rgb(255 255 255 / 20%);
        border-radius: 0;
        background: #fff;
        border: solid 1px #eee;
        border-radius: 30px;
    }
    
    .themability_megamenu .menu-product-thumb .image {
        float: left;
        display: inline-block;
        min-width: 70px;
        max-width: 70px;
        margin-right: 5px;
        border: 1px dashed var(--secondary-color);
        background: #fff;
    }


    .mob-num {
        background: #9c1019;
        text-align: center;
        padding: 6px;
        border-bottom: 0px solid #fff;
    }
	.mob-num a {
        font-size: 30px;
        font-weight: 700;
        background: #fff;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        animation: 1s blinker linear infinite;
    }

	@keyframes blinker {
  from { opacity: 1.0; }
  to { opacity: 0.0; }
}
	
}
    
    @media (max-width: 991px) {
        .themability_megamenu-wrapper {
            position: fixed;
            top: 0px;
            left: 0;
            background-color: #ffffff !important;}
        }
    

/* Home Page Form */

.home-Page-form {
    background-color: #ffffff;
    border: 4px solid transparent;
    background: linear-gradient(white, white) padding-box, linear-gradient(169deg, #ffe44f, #910909) border-box;
    border-radius: 40px;
    border: 3px solid transparent;
    padding: 27px 20px  4px 20px;
    position: sticky;
    top: 0px;
    /* width: 300px; */
    /* height: 100vh; */
    padding: 20px;
    background-color: #597aa9;
    color: #597aa9;
    overflow: hidden;
}


textarea.wpcf7-form-control.wpcf7-textarea.user-message-here.form-control {
    max-height: 120px;
    border-bottom: 2px solid #eeee;
    border-left: 0;
    border-right: 0;
    border-top: 0;
}

.home .vc_row {
    transition: opacity .5s ease;
   overflow: visible !important;
}
.why-us-home {
   background-color: #9c1019;
   z-index:-2;
   border: 1px solid #a62830;
}


.form-heading h4 {
    font-size: 26px;
    line-height: 44px;
    text-transform: uppercase;
    color: #222222;
    font-weight: 400;
}

.form-heading h4 {
    font-size: 26px;
    line-height: 44px;
    text-transform: uppercase;
    color: #222222;
    font-weight: 400;
    margin: 0;
}

.form-heading h2 {
    font-size: 54px;
    line-height: 44px;
    text-transform: uppercase;
    color: #ffad03;
    font-weight: 700;
    /* background: -webkit-linear-gradient(45deg, #fbcde7, #d2c7f2 70%); */
    /* -webkit-background-clip: text; */
    /* -webkit-text-fill-color: transparent; */
    z-index: 0;
    position: relative;
    margin: 0;
}

.strok {
  width: fit-content;
  font-size: 54px;
  -webkit-text-fill-color: white;
  -webkit-text-stroke: 1px #eee;
  position: absolute;
  top: 26px;
  text-transform: uppercase;
  opacity: 0.4;
  z-index: 0;
  margin: 0;
  line-height: 1.2;
}

.text-yourname:before {
    content: '';
    position: absolute;
    background-image: url(assets/images/form-icon-1.png);
    width: 12px;
    height: 15px;
    right: 32px;
    margin-top: 20px;
    z-index: 0;
}

.text-youremail:before {
    content: '';
    position: absolute;
    background-image: url(assets/images/form-icon-2.png);
    width: 18px;
    height: 18px;
    right: 32px;
    margin-top: 17px;
    z-index: 0;
}


.text-yourphone:before {
    content: '';
    position: absolute;
    background-image: url(assets/images/form-icon-3.png);
    width: 18px;
    height: 18px;
    right: 32px;
    margin-top: 17px;
    z-index: 0;
}

.user-message-here:before {
    content: '';
    position: absolute;
    background-image: url(assets/images/form-icon-4.png);
    width: 16px;
    height: 16px;
    right: 32px;
    z-index: 0;
    margin-top: 85px;
}


textarea.wpcf7-form-control.wpcf7-textarea.user-message-here.form-control::placeholder {
    position: absolute;
    bottom: 11px;
}



.form-bottom-strok {
    width: fit-content;
    font-size: 54px;
    -webkit-text-fill-color: white;
    -webkit-text-stroke: 1px #f1f1f1;
    position: absolute;
    font-weight: 800;
    top: -35px;
    text-transform: uppercase;
    opacity: 0.4;
    z-index: 0;
    margin: 0;
}



.whats-app-btn a {
    font-size: 29px;
    line-height: 24px;
    text-transform: uppercase;
    color: #222222;
    font-weight: 700;
    text-decoration: none;
}

.home-submit {
    font-size: 14px;
    text-transform: uppercase;
    color: #ffffff;
    line-height: 33px;
    font-weight: 400;
    font-family: "Poppins";
    text-align: center;
    background-color: #ad2424;
    margin-top: 27px;
    border: 0;
    margin-bottom: 20px;
    width: 100%;
    border-radius: 40px;
}
.home-submit:hover {
    background-image: linear-gradient(150deg, #ffad03 0%, #ffac00 54%, #ffad03 100%);
    border: none;
}
textarea.user-message-here.form-control::placeholder {
    position: absolute;
    bottom: 11px;
}


.home-form-section input {
    border-bottom: 1px solid #eee;
    margin-bottom: 12px;
}

.home-form-section textarea {
    border-bottom: 1px solid #eee;
    height: 115px;
}

.form-heading {
    margin-bottom: 20px;
}

h2.heading {
    color: rgb(255 173 3);
    font-size: 54px;
    font-weight: bold;
    text-transform: uppercase;
    margin: 0;
    padding: 0;
    position: relative;
}

.footer-form-Strok {
    position: relative;
}

h4.sub-heading {
    font-size: 26px;
    text-transform: uppercase;
    color: #222222;
    font-weight: 400;
    font-family: "Poppins";
    margin: 0;
    z-index: 1;
    position: relative;
}
/*  Home Page Form End */

/* Sticky-bar */
.Slayout{
    position: relative;
    display: flex;
    /* overflow: hidden; */
  }

aside {
    position: relative;
    height: 100%;
    transition: 0.6s  ease auto;
  }
/* Sticky-bar */


/***************Privacy Policy*******************/

.disc-pg-div {padding:30px 0;}
.disc-pg-div p {font-size:15px; line-height:28px;}
.disc-pg-div h4 {
    margin: 0;
    font-size: 21px;
    font-weight: 500;
    color: #2f2f2f;
    padding-bottom: 10px;
    margin-bottom: 10px;
    border-bottom: 1px solid #eee;
    margin-top: 30px;
}
.disc-pg-div h5 {
    margin: 0;
    font-size: 25px;
    font-weight: bold;
    color: #3e0001;
    padding-bottom: 10px;
    margin-bottom: 10px;
    border-bottom: 1px solid #eee;
}
.disc-pg-div h6 {
    text-transform: capitalize;
   margin: 0;
    font-size: 25px;
    font-weight: bold;
    color: #3e0001;
    padding-bottom: 10px;
    margin-bottom: 10px;
    border-bottom: 1px solid #eee;
}
/***************Privacy Policy End*******************/






    .desktop-banner{display: block;}
    .mobile-banner{display: none;}
    .mobshow{display: none;}




    
     @media only screen and (min-width: 767px) and (max-width: 1023px){
    .desktop-banner{display: none !important;}
    .mobile-banner{display: block !important;}
    .mobshow{
        display: block;
    }
    
     }
    
    
    @media only screen and (min-width: 320px) and (max-width: 767px){    
    .desktop-banner{display: none !important;}
    .mobile-banner{display: block !important;}
    .mobshow{
        display: block;
    }

     }  


     /* footer-start */
     .contact_title i {
        color: #fff;
    }
.site{
    display: flex;
    padding: 8px 0;
    font-size: 16px;
    color: var(--primary-color);
    align-items: flex-start;
}
.phone{
    display: flex;
    padding: 8px 0;
    font-size: 16px;
    color: var(--primary-color);
    align-items: baseline;
}

.line {
    border-bottom: 1px solid #000000;
    padding-bottom: 10px;
    margin-bottom: 10px;
}
    /* footer-end */



.contact_icons{position: fixed;left: 50px;bottom: 19px;z-index: 999;width: 50px;text-align: center;}
.contact_icons a{width: 66px;height: 66px;border-radius: 100%;text-align: center;line-height: 43px;font-size: 24px;color: #fff;background: #edac15;box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.16), 0px 3px 10px rgba(0, 0, 0, 0.16);clear: both;margin-bottom: 0px;display: inline-block;}
.contact_icons a.whatsapp-icon{background: #2DC100;font-size: 47px;overflow: hidden;animation-duration: 1s;animation-timing-function: ease;animation-delay: 0s;animation-iteration-count: infinite;animation-direction: normal;animation-fill-mode: none;animation-play-state: running;animation-name: pulse2;color: #fff;}
a.whatsapp-icon i {
    margin-top: 10px;
}

@-webkit-keyframes pulse2 {
  0% {
    -webkit-box-shadow: 0 0 0 0 #2DC100;
            box-shadow: 0 0 0 0 #2DC100; }
  100% {
    -webkit-box-shadow: 0 0 0 20px rgba(21, 101, 192, 0);
            box-shadow: 0 0 0 20px rgba(21, 101, 192, 0); } }

@keyframes pulse2 {
  0% {
    -webkit-box-shadow: 0 0 0 0 #2DC100;
            box-shadow: 0 0 0 0 #2DC100; }
  100% {
    -webkit-box-shadow: 0 0 0 20px rgba(21, 101, 192, 0);
            box-shadow: 0 0 0 20px rgba(21, 101, 192, 0); } 
} 


.contact_mobile{position: fixed;right: 108px;bottom: 19px;z-index: 999;width: 49px;text-align: center;}
.contact_mobile a{width: 65px;height: 65px;border-radius: 100%;text-align: center;line-height: 51px;font-size: 24px;color: #fff !important;background: #edac15;box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.16), 0px 3px 10px rgba(0, 0, 0, 0.16);clear: both;margin-bottom: 0px;display: inline-block;}
.contact_mobile a.phone-icon{background: #0045e5;font-size: 33px;overflow: hidden;animation-duration: 1s;animation-timing-function: ease;animation-delay: 0s;animation-iteration-count: infinite;animation-direction: normal;animation-fill-mode: none;animation-play-state: running;animation-name: pulse3;color: #fff;padding-top: 8px;}
a.phone-icon i {
    /* margin-top: 16px; */
    /* transform: rotate(100deg); */
}

@-webkit-keyframes pulse3 {
  0% {
    -webkit-box-shadow: 0 0 0 0 #15d1be;
            box-shadow: 0 0 0 0 #15d1be; }
  100% {
    -webkit-box-shadow: 0 0 0 20px rgba(21, 101, 192, 0);
            box-shadow: 0 0 0 20px rgba(21, 101, 192, 0); } }

@keyframes pulse3 {
  0% {
    -webkit-box-shadow: 0 0 0 0 #15d1be;
    box-shadow: 0 0 0 0 #15d1be;
    }
  100% {
    -webkit-box-shadow: 0 0 0 20px rgba(21, 101, 192, 0);
            box-shadow: 0 0 0 20px rgba(21, 101, 192, 0); } 
} 


.follow-link {
    margin-bottom: 20px;
}

.disclamer {
    margin-top: 30px;
}

/*============ Updated Css ===========*/

.pandit-img {
    margin-bottom: 20px;
}

.pandit-img img {
    width: 100%;
    border-radius: 24px;
}


.home-choose .counter {
    width: 88px;
    margin: auto;
}


.home-choose .counter img {
    width: 100%;
}

.home-choose h4 {
    color: #fff;
    font-size: 20px;
    text-align: center;
}
.home-choose h2 {
    font-size: 24px;
    margin-top: 5px;
}

section.location-section {
    padding-top: 60px;
}

section.location-section h4 {
    font-size: 16px;
    font-weight: 400;
    margin-top: 20px;
    color: #930b0b;
    line-height: normal;
}

section.location-section .category-thumb {
    min-height: 372px;
}

h2.best-astrologer {
    text-align: center;
    color: #fff;
    margin-bottom: 40px;
}

.read-more-service {
    text-align: center;
}

.read-more-service a {
    display: inline-block;
    font-size: 16px;
    text-transform: uppercase;
    background: #930b0b;
    color: #fff;
    border-radius: 30px;
    padding: 10px 30px;
}