body {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
    font-family: "DM Sans", sans-serif !important;
    scroll-behavior: smooth;
    overflow-x: hidden !important;
    /* padding-top:100px ; */

}

html {
    scroll-behavior: smooth;
    overflow-x: hidden !important;
    scroll-padding-top: 100px !important;
}

p {
    font-family: "DM Sans", sans-serif !important;
    font-size: 16px !important;
    color: var(--dark-light) !important;
}


:root {
    --primary-color: #DB1516;
    --secondary-color: #FFEBEB;
    --card-bg: #F2EDE7;
    --primary-font: 'DM Sans', sans-serif;
    --secondary-font: 'Playfair', serif;
    --dark-text: #171717;
    --dark-light: #555555;
}

/* --------------- */
/* Navbar section */

/* --------------- */
/* Navbar section */

.nav {
    width: 100%;
    height: 100px;
    position: fixed;
    line-height: 100px;
    text-align: center;
    z-index: 1000;
}


.nav div.logo {
    float: left;
    width: auto;
    height: auto;
    padding-left: 0rem;
}

.nav div.main_list {
    height: 65px;
    float: right;
}

.nav div.main_list ul {
    width: 100%;
    height: 65px;
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav div.main_list ul li {
    width: auto;
    height: 65px;
    padding: 0;
    padding-right: 3rem;
}


.nav div.main_list ul li a {
    text-decoration: none;
    color: #fff;
    line-height: 28px;
    font-size: 17px;
    /* font-weight: 500; */
    font-family: var(--primary-font);
}

.nav div.main_list ul li a:hover {
    color: var(--dark-text);
}
.affix div.main_list ul li a:hover {
    color: var(--primary-color);
}

/* .nav .active {
    color: var(--primary-color) !important;
} */


.navTrigger {
    display: none;
}

.nav {
    padding-bottom: 20px;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
}


/* Media qurey section */

@media screen and (min-width: 768px) and (max-width: 1024px) {
    .container {
        margin: 0;
    }
}

@media screen and (max-width: 768px) {

    .navTrigger {
        display: block;
    }

    .nav div.logo {
    margin-left: 15px;
  }
    .nav div.main_list {
        width: 100%;
        height: 0;
        overflow: hidden;
    }

    .nav div.show_list {
        height: auto;
        display: none;
    }

    .nav div.main_list ul {
        flex-direction: column;
        width: 100%;
        height: 100vh;
        right: 0;
        left: 0;
        bottom: 0;
        background-color: #fff;
        /*same background color of navbar*/
        background-position: center top;
    }

    .nav div.main_list ul li {
        width: 100%;
        text-align: center;
    }

    .nav div.main_list ul li a {
        text-align: center;
        width: 100%;
        font-size: 20px;
        padding: 0px;
        color: var(--dark-text);
    }

    .nav div.media_button {
        display: block;
    }
}


/* Animation */


/* Inspiration taken from Dicson https://codemyui.com/simple-hamburger-menu-x-mark-animation/ */

.navTrigger {
    cursor: pointer;
    width: 30px;
    height: 25px;
    margin: auto;
    position: absolute;
    right: 30px;
    top: 0;
    bottom: 0;
}

.navTrigger i {
    background-color: #fff;
    border-radius: 2px;
    content: "";
    display: block;
    width: 100%;
    height: 2px;
}

.affix .navTrigger i {
    background: var(--primary-color);
}

.affix div.main_list ul li a {
    color: var(--dark-text);
}

.navTrigger i:nth-child(1) {
    -webkit-animation: outT 0.8s backwards;
    animation: outT 0.8s backwards;
    -webkit-animation-direction: reverse;
    animation-direction: reverse;
}

.navTrigger i:nth-child(2) {
    margin: 5px 0;
    -webkit-animation: outM 0.8s backwards;
    animation: outM 0.8s backwards;
    -webkit-animation-direction: reverse;
    animation-direction: reverse;
    width: 60%;
}

.navTrigger i:nth-child(3) {
    -webkit-animation: outBtm 0.8s backwards;
    animation: outBtm 0.8s backwards;
    -webkit-animation-direction: reverse;
    animation-direction: reverse;
}

.navTrigger.active i:nth-child(1) {
    -webkit-animation: inT 0.8s forwards;
    animation: inT 0.8s forwards;
    height: 4px;
}

.navTrigger.active i:nth-child(2) {
    -webkit-animation: inM 0.8s forwards;
    animation: inM 0.8s forwards;
    width: 100%;
    height: 4px;
}

.navTrigger.active i:nth-child(3) {
    -webkit-animation: inBtm 0.8s forwards;
    animation: inBtm 0.8s forwards;
    height: 4px;

}

@-webkit-keyframes inM {
    50% {
        -webkit-transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(45deg);
    }
}

@keyframes inM {
    50% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(45deg);
    }
}

@-webkit-keyframes outM {
    50% {
        -webkit-transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(45deg);
    }
}

@keyframes outM {
    50% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(45deg);
    }
}

@-webkit-keyframes inT {
    0% {
        -webkit-transform: translateY(0px) rotate(0deg);
    }

    50% {
        -webkit-transform: translateY(9px) rotate(0deg);
    }

    100% {
        -webkit-transform: translateY(9px) rotate(135deg);
    }
}

@keyframes inT {
    0% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(9px) rotate(0deg);
    }

    100% {
        transform: translateY(9px) rotate(135deg);
    }
}

@-webkit-keyframes outT {
    0% {
        -webkit-transform: translateY(0px) rotate(0deg);
    }

    50% {
        -webkit-transform: translateY(9px) rotate(0deg);
    }

    100% {
        -webkit-transform: translateY(9px) rotate(135deg);
    }
}

@keyframes outT {
    0% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(9px) rotate(0deg);
    }

    100% {
        transform: translateY(9px) rotate(135deg);
    }
}

@-webkit-keyframes inBtm {
    0% {
        -webkit-transform: translateY(0px) rotate(0deg);
    }

    50% {
        -webkit-transform: translateY(-9px) rotate(0deg);
    }

    100% {
        -webkit-transform: translateY(-9px) rotate(135deg);
    }
}

@keyframes inBtm {
    0% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-9px) rotate(0deg);
    }

    100% {
        transform: translateY(-9px) rotate(135deg);
    }
}

@-webkit-keyframes outBtm {
    0% {
        -webkit-transform: translateY(0px) rotate(0deg);
    }

    50% {
        -webkit-transform: translateY(-9px) rotate(0deg);
    }

    100% {
        -webkit-transform: translateY(-9px) rotate(135deg);
    }
}

@keyframes outBtm {
    0% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-9px) rotate(0deg);
    }

    100% {
        transform: translateY(-9px) rotate(135deg);
    }
}

.logo-red {
    display: none;
    transition: all 0.3s ease;
}

.affix .logo-red {
    display: inline-flex;
    transition: all 0.3s ease;
}

.affix .logo-white {
    display: none;
    transition: all 0.3s ease;
}

.affix {
    padding: 0;
    background: #fff;
    box-shadow: 0px 0px 10px 0px #0000000f;
    transition: all 0.3s ease;
}


.sub_page div.main_list ul li a {
    color: var(--primary-color);
}

.show_list ul li a {
    color: var(--dark-text) !important;
}



/* ========== HERO SECTION ============ */

/* .hero_section {
    height: 100vh;
    position: relative;
} */
.hero_slider{
    height: 100vh;
    /* position: relative; */
}
.slider-single{
    position: relative;
}

.slider-single img {
    height: 100vh;
    object-fit: cover;
    width: 100%;

}

.hero-caption {
    /* bottom: 52%; */
    bottom: 40%;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.hero-caption h1 {
    color: #fff;
    font-size: 80px;
    font-weight: 600;
    text-align: center;
    margin-bottom: -20px;
}
.i-hero{
    color: #fff;
    font-size: 80px;
    font-weight: 600;
    text-align: center;
    align-items: center;
    font-style: italic;
    font-family: var(--secondary-font);
}


.italic-cls {
    font-style: italic;
    font-family: var(--secondary-font);
}

.hero-discription {
    position: absolute;
    bottom: 5%;
    width: 1300px;
    max-width: 1440px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.hero-discription p {
    color: #fff !important;
    font-size: 16px;
    width: 700px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
}

.hero-btn {
    padding: 10px 20px;
    font-size: 18px;
    border-radius: 50px;
    border: none;
    background: #ffffff50;
    color: #fff;
    transition: all 0.3s ease 0s;
}

.hero-btn:hover {
    background: var(--primary-color);
    color: #fff;
    transition: all 0.3s ease 0s;
    transform: translateY(-5px);
    box-shadow: 0px 5px 10px 0px #00000040;
}
.slider-single .hero-mob{
    display: none;
}

/* ========== HERO SECTION ============ */


/* =========== HOME CATEGORIES ============ */

.home-categories {
    padding: 70px 0px;
}

.home-categories a{
    text-decoration: none !important;
    color: #000;
}
.home-categories a:hover{
    color: #000;
}

.sub_title {
    font-size: 50px;
    font-weight: 500;
    margin-bottom: 20px;
}

.sub_title .italic-cls {
    color: var(--dark-light);
}

.align-cntr {
    display: flex;
    align-items: center;
    height: 100%;
}

.justify-cntr {
    display: flex;
    justify-content: center;
}

.all_cntr {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%;
}

.category_box {
    height: calc(100% - 10px);
}

.category_card {
    height: 330px;
    width: 100%;
    background: #f5f5f5;
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 30px;
}

.category_card img {
    height: 100%;
    width: 100%;
    object-fit: contain;
    transition: all 0.3s ease;
}

.category_card img:hover {
    transform: translate(0px, -10px);
    transition: all 0.3s ease;
    filter: drop-shadow(0px 30px 7px rgba(0, 0, 0, 0.134));
}

.product_title {
    font-size: 18px;
}

.category_box .product_title {
    padding-top: 15px;
    text-align: center;
}

/* =========== HOME CATEGORIES ============ */

.featured-products {
    padding: 70px 0px;
    background-color: #f9f9f9;
}
.products-page {
    padding: 70px 0px;
}

.product_box {
    padding: 20px;
    background: #fff;
    height: calc(100% - 20px);
    border-radius: 25px;
    margin-bottom: 20px;
    box-shadow: 0px 4px 10px rgba(122, 122, 122, 0.104);
}

.product_card {
    height: 315px;
    width: 100%;
    /* background: var(--card-bg); */
    background-color: #fff;
    /* border-radius: 20px; */
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
    position: relative;
    border-bottom: 1px solid #ededed;

}
.product_card img {
    height: 100%;
    width: 100%;
    object-fit: contain;
}

.product_box .product_title {
    padding-top: 15px;
    /* text-align: center; */
    margin-bottom: 15px;
    font-size: 15px;
    text-transform: capitalize;
}

.product_code {
    background: var(--primary-color);
    padding: 5px 10px;
    border-radius: 20px;
    color: #fff;
    font-size: 13px;
    position: absolute;
    top: 10px;
    right: 10px;
    text-transform: uppercase;
}

.primary_button {
    padding: 10px 20px;
    border-radius: 50px;
    border: none;
    background: var(--primary-color);
    color: #fff;
    transition: all 0.3s ease 0s;
    font-size: 18px;
}

.primary_button:hover {
    background: #000;
    color: #fff;
    transition: all 0.3s ease 0s;
    transform: translateY(-5px);
    box-shadow: 0px 5px 10px 0px #00000040;
}
.enquiry-bottom{
height: 50px;
}
.product_price{
    margin-bottom: 0px;
    font-size: 18px !important;
    font-weight: 600;
    /* color: var(--primary-color) !important; */
    color: #0b0b0b !important;
}
.enquiry{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.enquiry img {
    transition: all 0.3s ease 0s;
    border-radius: 50px;
}
.enquiry img:hover{
    transform: translateY(-5px);
    box-shadow: 0px 5px 10px 0px #00000040;
    transition: all 0.3s ease 0s;
}

/* ========= what-we-do ========= */

.what-we-do {
    padding: 100px 0px 110px;
    background: url(../images/whatwe.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}
#what-we-do{
    background-color: #f9f9f9;
}
.we-do_image{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}
.we-do_image img{
    width: 80%;
    object-fit: contain;
    filter: drop-shadow(0px 10px 7px rgba(0, 0, 0, 0.054));
}

.wedo-list {
    padding: 0;
    list-style: none;
    margin-bottom: 30px;
}

.wedo-list li {
    display: flex;
    align-items: flex-start;
}

.wedo-list li::before {
    content: "\2713";
    color: var(--primary-color);
    margin-right: 10px;
    font-size: 18px;
    line-height: 1.5;
}

/* ========= what-we-do ========= */


/* ========= Home Testimonials ========= */

.home_testimonial {
    padding: 70px 0px 100px 0px;
    background: url(../images/testi_bg.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.sub_title_white {
    font-size: 50px;
    font-weight: 500;
    margin-bottom: 20px;
    color: #fff;
}

.sub_title_white .italic-cls {
    color: #fff;
}

.testmonial_box {
    padding: 30px;
    background: #fff;
    border-radius: 10px;
}
.testmonial_box p{
    font-size: 16px;
    font-weight: 500;
    color: var(--dark-text) !important;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    line-clamp: 5;
    -webkit-box-orient: vertical;

}

.testi-img{
display: flex;
align-items: center;
}
.testi-img img{
    border-radius: 50%;
    width: 50px;
    height: 50px;
    object-fit: cover;
margin-right: 15px;
}
.testi_name{
    display: flex;
    flex-direction: column;
}
.testi_name span{
    font-size: 16px;
    font-weight: 500;
}
.testi_name .italic-cls{
    color: var(--dark-light) !important;
}
.testi-slider .slick-slide{
    margin: 0px 10px;
}
.testi-slider .slick-dots li {
    position: relative;

    display: inline-block;

    width: 10px;
    height: 10px;
    margin: 0 3px;
    padding: 0;

    cursor: pointer;

    background-color: #ffffff69;
    border-radius: 50px;
}

.testi-slider .slick-dots li.slick-active {
    width: 20px;
    height: 10px;
    background: #ffffffc5;
}

.testi-slider .slick-dots li button:before {
    font-family: 'slick';
    font-size: 6px;
    line-height: 10px;

    position: absolute;
    top: 0;
    left: 0;

    width: 10px;
    height: 10px;

    content: '';
    text-align: center;

    opacity: .25;
    color: black;

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.testi-slider .slick-dots {
    bottom: -20%;
}
/* ========= Home Testimonials ========= */
/* ========= Home BLOGS ========= */
.home_blogs{
    padding: 70px 0px;
    background-color: #f9f9f9;
}
.home_blogs a{
    text-decoration: none;
    color: #fff;
}
.line{
width: 100%;
height: 1px;
background: #777777;
}
.blog_box{
    width: 100%;
    height: 250px !important;
    padding: 0px;
    overflow: hidden;
    border-radius: 20px;
    margin-bottom: 20px;
    position: relative;
}
.blog_img{
    width: 100%;
    border-radius: 10px;
    height: 100%;
}
.blog_img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease 0s;
}
.blog_box:hover img{
    transform: scale(1.1);
    transition: all 0.3s ease 0s;
}
.blog-overlay{
position: absolute;
bottom: 0;
left: 50%;
transform: translateX(-50%);
background: linear-gradient(0deg, rgba(0, 0, 0, 0.923) 0%, rgba(255, 0, 0, 0) 100%);
transition: all 0.3s ease 0s;
padding: 20% 25px 30px 25px;
width: 100%;
color: #fff !important;
}
.blog-overlay p{
    color: #fff !important;
    font-size: 18px !important;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
}

.white-btn {
    padding: 8px 17px;
    font-size: 16px;
    border-radius: 50px;
    border: none;
    background: #ffffff50;
    color: #fff;
    transition: all 0.3s ease 0s;
}

.white-btn:hover {
    background: var(--primary-color);
    color: #fff;
    transition: all 0.3s ease 0s;
    transform: translateY(-5px);
    box-shadow: 0px 5px 10px 0px #00000040;
}
.blog_big{
    height: calc(100% - 20px) !important;
}
/* ========= Home BLOGS ========= */


/* ========= Our Clients ========= */
.our-clients{
    padding: 70px 0px;
}

  :root {
    --marquee-width: 100%;
    --marquee-height: 120px;
    --marquee-elements-displayed: 5;
    --marquee-speed: 15s;
  }

  .marquee {
    width: var(--marquee-width);
    height: var(--marquee-height);
    color: #000;
    overflow: hidden;
    position: relative;
    background: #fff;
    margin-top: 20px !important;
  }

  .marquee-content {
    list-style: none;
    height: 100%;
    display: flex;
    flex-wrap: nowrap;
    gap: 40px;
    animation: marquee-scroll var(--marquee-speed) linear infinite;
  }

  @keyframes marquee-scroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); } /* Moves only half of the duplicated content */
  }

  .marquee-content li {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    width: auto;
    font-size: calc(var(--marquee-height)*3/4);
    white-space: nowrap;
  }

  .marquee-content li img {
    max-width: 150px;
    max-height: 120px;
  }

  @media (max-width: 600px) {
    :root { --marquee-elements-displayed: 3; }
  }

  @media (max-width: 500px) {
    :root { --marquee-elements-displayed: 2; }
  }
/* ========= Our Clients ========= */



/* ========= FOOTER ========= */
.footer{
    padding: 70px 0px 0px 0px;
    background-color: #000;
}
.footer_head{
    color: #fff;
    font-size: 18px;
}
.footer_links{
    list-style: none;
    padding: 0px;
    margin: 0px;
}
.footer_links li{
    color: #808080;
    font-size: 16px;
    padding: 6px 0px;
}
.footer_links li a{
    color: #808080;
    text-decoration: none;
    transition: all 0.3s ease 0s;
}
.footer_links li a:hover{
    color: var(--primary-color);
    opacity: 0.8;
    transition: all 0.3s ease 0s;
}
.copy-right{
    display: flex;
    justify-content: space-between;
    color: #fff;
    opacity: .9;
    font-size: 14px;
    margin-top: 40px;
    padding-top: 30px;
    padding-bottom: 30px;
    border-top: 1px solid #ffffff51;

}
.copy-right a{
    color: #fff;
    opacity: .9;
    text-decoration: none;
}
.copy-right a:hover{
    color: var(--primary-color);
    opacity: 0.8;
}

.footer_social {
    margin-top: 30px;
    display: flex;
}

.footer_social ul {
    padding: 0px;
}

.footer_social li {
    list-style: none;
    margin-right: 15px;
    float: left;
}

.footer_social li i {
    font-size: 20px;
    height: 34px;
    width: 34px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #fff;
    box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.118);
    transition: all .3s ease 0s;
}
.footer_social li a{
    text-decoration: none;
    color: var(--primary-color);
}

.footer_social li i:hover {
    background:#363636;
    transition: all .3s ease 0s;

}
/* ========= FOOTER ========= */


/* ------ floating ------ */
.whatsapp{
    position: fixed;
    bottom: 18%;
    right: 15px;
}
.whatsapp i {
        background-color: #25d366;
        height: 50px;
        width: 50px;
        border-radius: 50px;
        line-height: 50px;
        text-align: center;
        color: #fff;
        font-size: 25px;
    }
    .call{
        position: fixed;
        bottom: 10%;
        right: 15px;
    }
.call i {
      background-color: #0084ff;
      height: 50px;
        width: 50px;
        border-radius: 50px;
        line-height: 50px;
        text-align: center;
        color: #fff;
        font-size: 25px;
  }

/* ========= ABOUT PAGE ========= */

.inner-banner{
    height: 350px;
    width: 100%;
    position: relative;
}
.inner-banner img{
    width: 100%;
    object-fit: cover;
    height: 100%;
}
.inner-banner-caption{
    position: absolute;
    top: 60%;
    left: 50%;
    transform: translate(-50%, -50% );
    color: #ffffff;
    font-size: 65px;
}
.about-page1{
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 20px;
    margin-bottom: 20px;
    box-shadow: 0px 4px 20px 0px #00000022;
}
.about-page2{
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0px 4px 20px 0px #00000022;
}
.about-company{
    padding: 80px 0px;
}

.abt-content{
    padding: 30px 40px;
}
.our-story{
    padding: 70px 0px;
    background: #f9f9f9;
}
.count_number h2{
    font-size: 45px;
    margin-bottom: 0px;
}
.count_number .italic-cls{
    font-size: 25px;
    margin-bottom: 0px;
}
.our-story-img{
    height: 200px;
    width: 100%;
    object-fit: cover;
    border-radius: 20px;
    margin: 30px 0px;
}
.story_box{
    padding: 15px 20px;
    border: 1px solid #0000004e;
    margin: 20px 0px;
    border-radius: 30px;
    display: flex;
    align-items: center;
}
.story_box p{
    margin-bottom: 0px;
}
.story_box img{
    margin-right: 20px;
}
.story_title{
    font-size: 18px;
}
.box-black{
    background-color: #000000;
}
.box-black .story_title{
    color: #ffffff;
}
.box-black p{
    color: #777777 !important;
}

.mission-vision{
    padding: 70px 0px;
}
.vision-img{
   width: 100%;
   height: 250px;
   object-fit: cover;
   border-radius: 20px;
}
.mission-img{
   width: 100%;
   height: 250px;
   object-fit: cover;
   border-radius: 20px;
}

.our-team{
    padding: 70px 0px;
    background: #f9f9f9;
}

.team_box{
    margin-bottom: 40px;
}
.team_card{
    height: 350px;
    width: 100%;
    object-fit: cover;
    border-radius: 30px;
    overflow: hidden;
}
.team_card img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    transition: all ease-in-out 0.3s;
}
.team_card:hover img{
    transform: scale(1.1);
    cursor: pointer;
    border-radius: 20px;
    filter: grayscale(0%);
    transition: all ease-in-out 0.3s;
}
.team_title{
    font-size: 23px;
    margin-top: 10px;
    text-align: center;
    margin-bottom: 0px;
    font-weight: 400;
}
.team_desc{
    font-size: 15px !important;
    text-align: center;
    color: #777777 !important;
    font-weight: 400 !important;
}

.annual-objective{
    padding: 70px 0px;
    background: #000000;
}
.annual-box{
margin-bottom: 20px;
padding: 10px;
}

.annual_title{
    font-size: 16px;
    /* text-align: center; */
    margin-top: 10px;
    margin-bottom: 0px;
    color: #ffffff;
    margin-bottom: 10px;
}

.annual {
    list-style: none;
    padding: 0;
    margin: 0;
    color: #7a7a7a;
}

.annual li {
    display: flex;
    align-items: flex-start;
}

.annual li::before {
    content: "\2713";
    color: var(--primary-color);
    margin-right: 10px;
    font-size: 18px;
    line-height: 1.5;
}


/* ========= Products ========= */
.categories-page {
    padding: 70px 0px 0px;
}
.categories-page .category_box {
    height: calc(100% - 10px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #fff;
    border-radius: 15px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.067);
}
.categories-page .category_card {
    height: 100px;
    width: 40%;
    background: #f5f5f5;
    border-radius: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px;
}
.category_content{
    width: 100%;
}
.category_content .product_title{
    font-size: 17px;
    font-weight: 600;
}
/* ========= Products ========= */


/* ========= Contact ========= */

.contact_section{
    padding: 70px 0px;
    background: #fff;
    border-radius: 40px;
    position: relative;
    overflow: hidden;
}
.contact_form{
    padding: 0px 10px;

}

.contact_form input, .contact_form textarea{
    padding: 15px;
    background:#f3f3f3;
    border-radius: 10px;
    border: none;
    margin-bottom: 20px;
    width: 100%;
    outline: none;

}

.add_box{
    padding: 15px 20px;
    border: 1px solid #0000004e;
    margin: 10px 0px;
    border-radius: 20px;
    display: flex;
    align-items: center;
}
.add_box h5{
    font-size: 23px;
}
.add_box p{
    margin-bottom: 0px;
}
.add_box img{
    margin-right: 20px;
}

.add_box-black{
    background-color: #000000;
}
.add_box-black h5{
    font-size: 23px;
    color: #ffffff;
}
.add_box-black .story_title{
    color: #ffffff;
}
.add_box-black p{
    color: #777777 !important;
}
.contact_section iframe{
    border-radius: 20px;
    border: 1px solid #0000004e !important;
}
.add_box a{
    color: var(--dark-light);
    text-decoration: none !important;
    transition: all ease-in-out 0.3s;
}
.add_box a:hover{
    color: var(--primary-color);
    text-decoration: none !important;
    transition: all ease-in-out 0.3s;
}
.add_box-black a{
    color: #777777;
}

/* ========= Contact ========= */
/* ========= BLOGS ========= */
.blog-page{
    padding: 70px 0px;
}

.blog-details{
    padding: 70px 0px;
}
.blog-open{
    padding: 20px 20px 40px;
    background: #ffffff;
    border-radius: 35px;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.10);
    height: calc(100% - 20px);
}
.open_img{
    border-radius: 20px;
    width: 100%;
    height: 350px;
    object-fit: cover;
    margin-bottom: 20px;
}
.blog-open .blog_box{
    height: 150px !important;
}
.blog-open .blog-overlay {
    padding: 5% 25px 0px 25px;
}
.blog-open h4{
    text-align: center;
    font-size: 25px;
    margin-bottom: 10px;
}
.blog-more .white-btn{
    display: none;
}

.blog-more a{
text-decoration: none !important;
}
/* ========= BLOGS ========= */

/*  tabs  */

ul.tabs {
	margin: 0;
	padding: 0;
	float: left;
	list-style: none;
	width: 100%;
}
ul.tabs li {
	float: left;
	margin: 0;
	border-left: none;
	overflow: hidden;
	position: relative;
    padding: 0px 10px;
    width: 25%;
}
ul.tabs li a {
	text-decoration: none;
	color: #000;
	border-radius:5px;
	display: block;
	font-size: 1.2em;
	border: 1px solid #fff;
	outline: none;
}

ul.tabs.category_box{
	border-bottom: 1px solid transparent;
}
ul.tabs li.active .category_box{
	border-bottom: 1px solid var(--primary-color) !important;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.10);
    transition: all ease-in-out 0.3s;
}
ul.tabs li.active .product_title{
	color: var(--primary-color);
    transition: all ease-in-out 0.3s;
}
ul.tabs li .category_box:hover{
	border-bottom: 1px solid var(--primary-color);
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.10);
    transition: all ease-in-out 0.3s;
}
ul.tabs li .category_box:hover .product_title{
	color: var(--primary-color);
    transition: all ease-in-out 0.3s;
}
.tab_container {
	border-top: none;
	clear: both;
	float: left;
	width: 100%;
	background: #fff;
    margin-top: 40px !important;
    margin-bottom: 30px !important;
	-moz-border-radius-bottomright: 5px;
	-khtml-border-radius-bottomright: 5px;
	-webkit-border-bottom-right-radius: 5px;
	-moz-border-radius-bottomleft: 5px;
	-khtml-border-radius-bottomleft: 5px;
	-webkit-border-bottom-left-radius: 5px;
}
.tab_content {
	font-size: 15px;
}
.tab_content h3 {
	font-weight: normal;
	padding-bottom: 10px;
	border-bottom: 1px dashed #ddd;
	font-size: 30px;
}
@media screen and (max-width: 768px) {
    .tabs li{
        padding: 0px 4px !important;
    }
    .tabs .category_box{
        height: 170px;
        border-radius: 10px;
    }
}

/* ========= Product Popup ========= */
.modal-body{
    padding: 2rem !important;
}
.modal-body img {
    max-width: 100%;
    height: 500px;
    object-fit: contain;
}
@media screen and (max-width: 768px) {
    .modal-body img {
        height: 350px;
    }
}
#modalProductCode{
    background: var(--primary-color) !important;
    padding: 5px 10px;
    border-radius: 20px;
    color: #fff !important;
    font-size: 13px;
    text-transform: uppercase;
    display: table;
    margin: 0 auto;
}
.modal-title{
    font-size: 18px !important;
    text-transform: capitalize !important;
}
.modal-content {
    border-radius: 20px !important;
}
.modal-backdrop {
    opacity: 0.8 !important;

}
