:root{
	--primary:#FC9628;
	--secondary:#0A0260;
	--mute:#444444;
	--light:#F4F4F4;
    --white:#ffff;
    --font1:'Poppins', sans-serif !important;
    --font2:"Sora", sans-serif !important;
    --font3:"Allison", cursive !important;
}
body{
    margin: 0;
    font-family: var(--font1) !important;
    font-size: 16px;
    line-height: 140%;
    overflow-x: hidden;
}
a {
    color: var(--secondary);
    text-decoration: none !important;
    transition: all 0.4s;
}
a:hover {
    color: var(--primary);
    text-decoration: none;
}
ul{
    margin: 0;
    padding: 0;
    list-style: none;
}
p {
    font-family:  var(--font1) !important;
    font-size: 16px;
    font-weight: 400;
    line-height: 150%;
}
h1,h2,h3,h4,h5,h6{
    font-family: var(--font2);
}
p:last-child {
    margin-bottom: 0;
}
::selection {
    color: var(--white);
    background: var(--primary);
}
img {
    max-width: 100%;
    width: auto;
    height: auto;
    z-index: 1;
}
.btn.btn-dark:focus {
  background-color: #1c1f2300;
  box-shadow: none;
  border-color: #1c1f2300;
}
.bg-light{
    background-color: var(--light) !important;
}
.pre-loader {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    visibility: visible;
    transition: all 0.5s;
}
.loaded .pre-loader{
    visibility: hidden;
}
.pre-loader .papper-slide {
    height: 16.66vh;
    width: 100%;
    position: relative;
}
.pre-loader .papper-slide:before {
    width: 100%;
    height:100%;
    background: #0A0260;
    content: '';
    left: 0;
    top: 0;
    position: absolute;
    transition: all 1s;
    transition-delay: 0.5s;
}
.pre-loader img {
    position: absolute;
    left: 50%;
    top: 50%;
    translate: -50% -50%;
    animation: loader-img 2s infinite ease-in-out;
    transition: all 0.5s;
}
.loaded .pre-loader img{
    scale: 0.8;
    opacity: 0;
}
.loaded .pre-loader .papper-slide:before {
    height: 0;
}
@keyframes loader-img{
    0%{
        transform: scale(0.8);
    }
    50%{
        transform: scale(1);
    }
    100%{
        transform: scale(0.8);
    }
}
html .container {
    max-width: 1320px;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
}
section {
    padding-top: 100px;
    padding-bottom: 100px;
    position: relative;
}
html .btn {
   display: inline-flex;
   gap: 3px;
   font-size: 16px;
   font-weight: 500;
   color: var(--secondary);
   text-transform: uppercase;
   text-align: center;
   transition: all 0.5s;
   background-color: transparent;
   border: 0px;
   padding: 0px;
}
html .btn span.text,
html .btn span.icon{
    display: inline-block;
    transform: skew(-25deg);
    transition: all 0.5s;
}
html .btn span.text .content,
html .btn span.icon .icon-content{
    display: inline-block;
    transform: skew(25deg);
    transition: all 0.5s;
}
html .btn span.text{
    background-color: var(--primary);
    padding: 10px 26px;
}
html .btn span.icon{
    background-color: var(--white);
    color: var(--secondary);
    padding: 10px 13px;
}
html .btn:hover{
    color: var(--secondary);
    background-color: transparent;
}
html .btn:hover span.text,
html .btn:hover span.icon{
    transform: skew(25deg);
}
html .btn:hover span.text .content,
html .btn:hover span.icon .icon-content{
    transform: skew(-25deg);
}
html .btn.btn-dark span.icon{
    background-color: var(--secondary);
    color: var(--white);
}
.title h3{
    font-size: 58px;
    font-weight: 300;
    color: var(--secondary);
    margin-bottom: 0px;
}
.title h3 span{
    font-weight: 800;
}
body .main {
    display: flex;
    width: 100%;
}
body .main .main_wrap {
    flex-grow: 1;
    z-index: 0;
    /* overflow: hidden; */
}
.main .side_bar {
    padding: 20px 15px;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: sticky;
    top: 0px;
    z-index: 1;
    width: 100px;
    min-width: 100px;
}
.side_bar .logo img{
    transition: all 0.5s;
}
.side_bar .logo img:hover{
    transform: scale(0.9);
}
.side_bar .social_media_wrap {
    margin: 20px 0;
    flex-grow: 1;
    display: flex;
    align-items: center;
}
.side_bar .social_medial_ul {
    display: flex;
    gap: 30px;
    writing-mode: vertical-lr;
    transform: rotate(180deg);
}
.social_medial_ul li:hover > a,
.social_medial_ul li.active > a{
    color: var(--primary);
}
.social_medial_ul a {
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 1.28px;
}
.social_medial_ul li.menu-parent{
    position: relative;
}
.social_medial_ul li.menu-parent:after {
    content: "";
    display: inline-block;
    border-right: 2px solid;
    border-bottom: 2px solid;
    border-color: var(--secondary);
    border-radius: 3px;
    transform: rotate(136deg);
    width: 8px;
    height: 8px;
    transition: all 0.5s;
}
.social_medial_ul li.menu-parent.active::after {
    border-color: var(--primary);
}
.social_medial_ul li.menu-parent:hover:after{
    border-color: var(--primary);
}
.social_medial_ul li.menu-parent:hover .sub-menu{
    opacity: 1;
    visibility: visible;
    transform: rotate(90deg) translateY(0px);
}
.social_medial_ul li.menu-parent .sub-menu {
    width: auto;
    height: 230px;
    padding: 12px;
    background-color: var(--white);
    position: absolute;
    right: 40px;
    top: -15px;
    box-shadow: 0px 4px 14px 0px #0A026014;
    border: 1px solid #0A02600F;
    border-radius: 10px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s;
    transform: rotate(90deg) translateY(30px);
}
.sub-menu ul li{
    margin-bottom: 4px;
}
.sub-menu ul a {
    text-transform: none;
    letter-spacing: 0px;
    padding: 15px 0;
    display: block;
    font-size: 15px;
    line-height: 36px;
}
.side_bar .contact_info_ul li{
    height: 38px;
    width: 38px;
    background-color: var(--light);
    margin-bottom: 14px;
    border-radius: 6px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.5s;
}
.side_bar .contact_info_ul li:hover{
    background-color: var(--secondary);
    color: var(--white);
}
.side_bar .contact_info_ul li:hover a{
    color: var(--white);
}
.main .dropdown {
    padding: 0px 24px;
    height: 48px;
    border-radius: 50px;
    background-color: #413b85;
    backdrop-filter: blur(34px);
    top: 40px;
    right: 40px;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--white);
    font-size: 15px;
    font-weight: 500;
    text-transform: uppercase;
    position: fixed;
    transition: all 0.5s;
}
.main .dropdown button.btn{
    background-color: transparent;
    color: var(--white);
}
.main .dropdown button.btn:focus{
    box-shadow: none;
}
.main .dropdown .dropdown-toggle::after{
    width: 10px;
    height: 10px;
    background-image: url('data:image/svg+xml,<svg width="13" height="6" viewBox="0 0 13 6" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M12 1C12 1 7.94925 5 6.5 5C5.05061 5 1 1 1 1" stroke="white" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>');
    background-size: contain;
    background-repeat: no-repeat;
    border: 0px;
    margin: auto;
    margin-left: 12px;
}
.dropdown .dropdown-menu.show{
    transform: translate(0px, 52px) !important;
}
.banner_sec_wrap{
    padding:20px 20px 20px 0;
}
.banner_sec {
    border-radius: 10px;
    background-image: url(../images/banner-bg.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    text-align: center;
    counter-reset: carousel-counter-box;
    overflow: hidden;
    padding:60px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: calc(100vh - 40px);
    width: auto;
}
.masked-image {
    width: 100%;
    height: 100%;
    background: url('../images/paper-img.png') center/cover no-repeat;
    mask-image: radial-gradient(
        circle at calc(var(--x) - 64px) calc(var(--y) - 17px),
        rgba(0, 0, 0, 1) 0px,
        rgba(0, 0, 0, 0.7) 60px,
        rgba(0, 0, 0, 0.5) 70px,
        rgba(0, 0, 0, 0.3) 80px,
        rgba(0, 0, 0, 0) 100px
     );
    -webkit-mask-image: radial-gradient(
        circle at calc(var(--x) - 64px) calc(var(--y) - 17px),
        rgba(0, 0, 0, 1) 0px,
        rgba(0, 0, 0, 0.7) 60px,
        rgba(0, 0, 0, 0.5) 70px,
        rgba(0, 0, 0, 0.3) 80px,
        rgba(0, 0, 0, 0) 100px
     );
     -webkit-mask-repeat: no-repeat;
     mask-repeat: no-repeat;
     position: absolute;
     opacity: 0;
    }
.banner_sec:hover .masked-image   {
    opacity: 1;
}
.banner_carousel .item h4{
    font-size: 40px;
    font-weight: 400;
    color: var(--primary);
    font-family: var(--font3);
}
.banner_carousel .item h3{
    font-size: 60px;
    font-weight: 600;
    color: var(--white);
    max-width: 912px;
    width: 100%;
    margin: 0px auto;
}
.banner_carousel .item .image{
    position: relative;
}
.banner_carousel .item .image:before {
    position: absolute;
    content: "";
    height: 100%;
    width: 60%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.1) 100%);
   clip-path: polygon(13% 0, 87% 0, 100% 100%, 0% 100%);
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
}
.banner_carousel .item img{
    width: auto;
    margin: 0px auto;
}
.banner_carousel .item a.btn {
    margin: 42px auto 0px;
}
.banner_carousel .owl-dots {
    position: absolute;
    top: 0;
    right: 35px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    bottom: 0;
    justify-content: center;
}
.banner_carousel .owl-dots .owl-dot{
    font-size: 16px;
    font-weight: 400;
    color: var(--white);
    transition: all 0.5s;
}
.banner_carousel .owl-dots .owl-dot.active {
    font-size: 33px;
    font-weight: 700;
    color: var(--primary);
    font-family: var(--font2);
}
.banner_carousel .owl-dots .owl-dot:before{
    counter-increment: carousel-counter-box;
    content: counter(carousel-counter-box, decimal-leading-zero);
}
.banner_carousel .owl-dots .owl-dot:after{
    position: absolute;
    content: "";
    width: 0px;
    height: 2px;
    margin-top: 8px;
    transform: translateX(10px);
    background-color: var(--primary);
    visibility: hidden;
    transition: all 0.5s;
}
.banner_carousel .owl-dots .owl-dot.active:after{
    width: 40px;
    visibility: visible;
}
.banner_carousel .owl-item.active .item h4{
    -webkit-animation-delay: 0.5s;
    animation-delay: 0.5s;
    -webkit-animation-duration: 0.8s;
    animation-duration: 0.8s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-name: fadeInUp2;
    animation-name: fadeInUp2;
}
.banner_carousel .owl-item.active .item h3{
    -webkit-animation-delay: 0.8s;
    animation-delay: 0.8s;
    -webkit-animation-duration: 0.8s;
    animation-duration: 0.8s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-name: fadeInUp2;
    animation-name: fadeInUp2;
}
.banner_carousel .owl-item.active .item .image{
    -webkit-animation-delay: 1.1s;
    animation-delay: 1.1s;
    -webkit-animation-duration: 0.8s;
    animation-duration: 0.8s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-name: fadeInUp2;
    animation-name: fadeInUp2;
  }
.banner_carousel .owl-item.active .item .btnwrap{
    -webkit-animation-delay: 1.4s;
    animation-delay: 1.4s;
    -webkit-animation-duration: 0.8s;
    animation-duration: 0.8s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-name: fadeInUp2;
    animation-name: fadeInUp2;
  }
  @keyframes fadeInUp2 {
    0% {
      opacity: 0;
      -webkit-transform: translateY(20px);
      -ms-transform: translateY(20px);
      transform: translateY(20px);
    }
    100% {
      opacity: 1;
      -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
      transform: translateY(0);
    }
  }
.welcome_text_sec{
    background-color: var(--light);
}
.welcome_text_wrap .image{
    margin-right: -60px;
}
.welcome_text_wrap a.btn{
    margin-top: 10px;
}
.welcome_text_wrap .content_wrap{
    margin-top: 60px;
}
.welcome_text_wrap .welcome_text_box{
    padding-bottom: 20px;
    border-bottom: 1px solid #DCDCDC;
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}
.welcome_text_wrap .welcome_text_box:last-child{
    margin-bottom: 0px;
    border-bottom: 0px;
}
.welcome_text_box .icon{
    height: 80px;
    width: 80px;
}
.welcome_text_box .content h4 {
    font-size: 24px;
    font-weight: 600;
    color: var(--secondary);
    margin-bottom: 6px;
}
.welcome_text_box .content p {
    font-size: 14px;
    color: var(--mute);
    max-width: 300px;
    width: 100%;
    text-align: left;
}
.our_product_sec{
    counter-reset: counter-box;
}
.our_product_sec .container {
    padding: 0 40px;
    max-width: 100%;
}
.our_product_sec .our_product_slide_image{
    position: absolute;
    top: -30px;
    right: 15%;
}
.our_product_wrap .title{
    margin-bottom: 40px;
}
.product_wrap .product_box{
    padding: 60px 40px;
    border-bottom: 1px solid #E2E2E2;
    display: flex;
    gap: 30px;
    align-items: center;
    position: relative;
}
.product_wrap .product_box:last-child{
    border-bottom: 0px;
}
.product_wrap .product_box:hover:before{
    opacity: 1;
}
.product_wrap .product_box:before{
    position: absolute;
    content: "";
    width: 40px;
    height: 100%;
    top: 0;
    left: -40px;
    background-color: var(--secondary);
    transition: all 0.5s;
    opacity: 0;
}
.product_wrap .product_box:after{
    position: absolute;
    content: "";
    height: 100%;
    width: 60%;
    top: 0;
    left: 0;
    background-color: var(--primary);
    z-index: -1;
    transition: all 0.5s;
    opacity: 0;
}
.product_wrap .product_box:hover:after{
    width: 100%;
    opacity: 1;
}
.product_box_link{
    display: block;
    position: absolute;
    left:0;
    right:0;
    top:0;
    bottom:0;
    z-index: 2;
}
.product_box h3{
    font-size: 40px;
    font-weight: 400;
    color: var(--primary);
    margin-bottom: 0px;
}
.product_box h3:before{
    counter-increment: counter-box;
    content: counter(counter-box, decimal-leading-zero) ". ";
}
.product_wrap .product_box:hover h3,
.product_wrap .product_box:hover h4,
.product_wrap .product_box:hover p{
    color: var(--white);
}
.product_box h4{
    font-size: 40px;
    font-weight: 400;
    color: var(--secondary);
    max-width: 310px;
    width: 100%;
     transition: all 0.5s;
}
.product_box p{
    font-size: 18px;
    color: var(--mute);
    max-width: 290px;
    width: 100%;
    margin-bottom: 0px;
    transition: all 0.5s;
}
.product_box .image{
    position: absolute;
    right: 50px;
}
.product_box .image img{
    transition: all 0.5s;
    transform: scale(0);
}
.product_wrap .product_box:hover .image img{
    transform: scale(1);
}
footer{
    background-color: var(--secondary);
    position: relative;
    display: flex;
}
footer .container-fluid {
    width: auto;
    flex-grow: 1;
}
footer .footer_wrap {
    padding: 0px 100px;
}
footer .footer_image img{
    height: 100%;
}
footer h3{
    font-size: 22px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 16px;
}
footer p{
    font-size: 15px;
    font-weight: 400;
    color: var(--white);
}
footer a{
    color: var(--white);
    transition: all 0.5s;
}
footer .footer_top{
    padding-top: 50px;
}
.footer_top p {
    margin-bottom: 20px;
    max-width: 360px;
    width: 100%;
}
.footer_top ul.social_media path{
	fill: white;
}
.footer_top ul.social_media{
    display: flex;
    gap: 6px;
    margin-bottom: 20px;
}
.footer_top ul.social_media a{
    height: 40px;
    width: 40px;
    border-radius: 20px;
    background-color: #FFFFFF0F;
    display: flex;
    justify-content: center;
    align-items: center;
}
.footer_top ul.social_media a:hover{
    background-color: var(--primary);
}
.footer_top ul.links li{
    position: relative;
    padding-left: 22px;
    transition: all 0.5s;
    margin-bottom: 10px;
}
.footer_top ul.links li:before{
    position: absolute;
    content: "";
    width: 15px;
    height: 10px;
    top: 5px;
    left: 0;
    background-image: url('data:image/svg+xml,<svg width="15" height="10" viewBox="0 0 15 10" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M0 9.5L3.84981 5L0 0.500001L10.6145 0.5L14.4643 5L10.6145 9.5L0 9.5Z" fill="%23FC9628"/></svg>');
    background-size: contain;
    background-repeat: no-repeat;
}
.footer_top ul.contact_info li {
    margin-bottom: 12px;
    font-size: 15px;
    line-height: 160%;
    display: flex;
    align-items: center;
    gap: 12px;
}
.footer_top ul.contact_info li:first-child{
    align-items: start;
}
.footer_top ul.contact_info li:last-child{
    margin-bottom: 0px;
}
.footer_top ul.contact_info li .icon {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 11px;
    background: #FFFFFF0F;
    border-radius: 50px;
}
.footer_bottom{
    padding: 20px 0px;
    border-top: 1px solid #FFFFFF1F;
}
.footer_top  div.address-text{
    max-width: 300px;
    width: 100%;
}
.footer_bottom .heart-animation svg, .heart-animation .fa {
    color: var(--primary);
    margin: 0 3px;
    font-size: 10px;
    animation: pound .35s infinite alternate;
    -webkit-animation: pound .35s infinite alternate;
    width: 12px;
    height: auto;
}
@keyframes pound {
    to {
        transform: scale(1.1)
    }
}
.scrollToTop {
    width: 50px;
    height: 50px;
    position: fixed;
    bottom: 40px;
    border-radius: 55px;
    right: 18px;
    line-height: 40px;
    color: #fff;
    text-align: center;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
    box-shadow: 0 3px 5px 0 rgba(0, 0, 0, 0.15);
    opacity: 0;
    background-color: var(--primary);
    z-index: 9;
    padding: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: scale(0.8) translateY(40px);
}
.sticky .scrollToTop {
    opacity: 1;
    transform: scale(1) translateY(0);
}
.scrollToTop:hover {
    background-color: var(--secondary);
    color: var(--white);
}
iframe#\:1\.container,.VIpgJd-ZVi9od-aZ2wEe-wOHMyf.VIpgJd-ZVi9od-aZ2wEe-wOHMyf-ti6hGc {
    display: none;
}
.skiptranslate.goog-te-gadget {
    font-size: 0;
    display: flex !important;
}
.skiptranslate.goog-te-gadget a {
    display: none;
}
.skiptranslate {
    display: none !important;
}
body.loaded {
    top: 0 !important;
}
.gtranslate_wrap {
    top: 40px;
    right: 40px;
    position: fixed;
    z-index: 999;
    display: flex;
    align-items: center;
    gap: 23px;
}
.gtranslate_wrap .h_icn a{
    background-color: #2A2374;
    height: 40px;
    width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    color: var(--white);
}
.gtranslate_wrap .h_icn a:hover{
    background-color: var(--primary);
}
.gtranslate_wrap .goog-te-gadget .goog-te-combo {
    padding: 0px 24px;
    height: 40px;
    border-radius: 50px;
    background-color: #413b85;
    backdrop-filter: blur(34px);
    z-index: 1;
    gap: 12px;
    color: var(--white);
    font-size: 16px;
    font-weight: 500;
    transition: all 0.5s;
    border: 0;
    outline: none;
    margin: 0;
    cursor: pointer;
    width: 210px;
    appearance: none;
    background-image: url('data:image/svg+xml,<svg width="14" height="8" viewBox="0 0 14 8" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M1 1L7 7L13 1" stroke="white" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>');
    background-repeat: no-repeat;
    background-position: right 24px center;
    background-size: 10px 12px;
}
.inner_banner_sec_wrap{
    padding: 20px 20px 20px 0px;
}
.inner_banner {
    border-radius: 10px;
    padding: 74px 0px;
    background-image: url(../images/inner-banner-img.png);
    background-size: cover;
    background-repeat: no-repeat;
}
.inner_banner h3{
    font-size: 50px;
    font-weight: 600;
    color: var(--white);
    text-align: center;
}
.inner_banner .breadcrumb{
    justify-content: center;
    color: var(--white);
    gap: 20px;
}
.breadcrumb-item+.breadcrumb-item::before{
    content: "";
    height: 12px;
    width: 12px;
    background-image: url('data:image/svg+xml,<svg width="6" height="10" viewBox="0 0 6 10" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M1 9L5 5L1 1" stroke="white" stroke-linecap="round" stroke-linejoin="round"/></svg>');
    background-repeat: no-repeat;
    background-size: contain;
    margin-top: 5px;
    margin-right: 20px;
}
.inner_banner .breadcrumb li,
.inner_banner .breadcrumb li a{
    color: var(--white);
}
.inner_banner .breadcrumb li a:hover{
    color: var(--primary);
}
.about_us_content_sec{
   background: linear-gradient(180deg, #F4F4F4 0%, #FFFFFF 100%);
}
.about_us_content_wrap .title{
    position: sticky;
    top: 120px;
}
.about_us_content_wrap .title h2{
    font-size: 56px;
    font-weight: 400;
    color: var(--secondary);
    max-width: 610px;
    width: 100%;
}
.about_us_content_wrap p {
    max-width: 600px;
    width: 100%;
    color: var(--mute);
}
.about_us_content_wrap h5{
    font-size: 16px;
    font-weight: 700;
    color: var(--mute);
    margin-bottom: 15px;
}
.about_us_content_wrap ul li{
    margin-bottom: 7px;
    padding-left: 18px;
    color: var(--mute);
    position: relative;
}
.about_us_content_wrap ul li:before{
    position: absolute;
    content: "";
    height: 8px;
    width: 8px;
    border-radius: 50%;
    background-color: var(--secondary);
    left: 0;
    top: 6px;
}
.feature_wrap .feature_icon_box{
    padding: 30px;
    background-color: #F3F3F6;
    transform: translateY(0px);
    height: 100%;
    transition: all 0.5s;
}
.feature_wrap .feature_icon_box:hover{
     transform: translateY(-10px);
}
.feature_icon_box .icon{
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
}
.feature_icon_box h3{
    font-size: 24px;
    font-weight: 600;
    color: var(--secondary);
    margin-bottom: 10px;
}
.feature_icon_box p {
    font-size: 14px;
    color: var(--mute);
    margin-bottom: 0px;
    max-width: 222px;
    width: 100%;
}
.product_list_box{
    text-align: center;
}
.product_list_box .image{
    height: 350px;
    margin: 0px 18px;
    /*padding: 40px;*/
    padding: 10px;
    position: relative;
    transition: all 0.5s;
}
.product_list_box .image a:before{
    position: absolute;
    content: "";
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    background-color: #F8F8FD;
    transition: all 0.5s;
}
.product_list_box:hover .image a::before{
    background-color: var(--primary);
}
.product_list_box img{
    filter: drop-shadow(0px 19.86px 28.13px #0000002E);
    height: 100%;
    object-fit: contain;
    transition: all 0.5s;
}
.product_list_box:hover img{
    transform: scale(0.9);
}
.product_list_box .content{
    background-color: var(--secondary);
    padding: 34px 0px 20px;
    margin-top: -20px;
}
.product_list_box h3{
    font-size: 21px;
    font-weight: 400;
    color: var(--white);
    margin-bottom: 0px;
}
.product_list_box h3 a{
    color: var(--white);
    transition: all 0.5s;
}
.product_list_box:hover h3 a{
    color: var(--primary);
}
.icon-box .icon-box-content p {
    font-size: 16px;
    line-height: 120%;
    color:#444444;
    margin-bottom: 4px;
}
.icon-box .icon-box-content a{
    font-weight: 500;
    font-size: 20px;
    line-height: 120%;
    color: var(--secondary);
}
.icon-box .icon-box-content a:hover{
    color: var(--primary);
}
.icon-box .icon-box-icon {
    height: 46px;
    width: 46px;
    min-width: 46px;
    background-color: #F3F3F6;
    color: var(--secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    margin-bottom: 12px;
}
.git_section .title h3 {
    margin-bottom: 40px;
    font-size: 40px;
}
.bg-light{
    background-color: #EEEEEE;
}
.git_section .bg-light{
    border: 1px solid #2B2A291A;
    border-radius: 20px;
    padding: 24px 20px;
}
section.git_section .container {
    max-width: 1245px;
}
.git_section h4 {
    margin-bottom: 0;
    font-weight: 700;
    font-size: 22px;
    line-height: 130%;
    color: var(--primary);
}
ul.social_icon {
    display: flex;
    align-items: center;
    gap: 10px;
}
ul.social_icon a {
    background-color: var(--light);
    height: 55px;
    width: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    color: var(--secondary);
}
ul.social_icon a:hover{
    background-color: var(--secondary);
    color: var(--white);
}
html .form-control {
    border: 0;
    border-bottom: 1px solid #46413F1A;
    background: transparent;
    padding: 0;
    height: 46px;
    line-height: normal;
    color: #46413F;
    font-size: 16px;
    border-radius: 0;
    box-shadow: none;
    outline: none;
}
html textarea.form-control {
    height: 96px;
    resize: none;
    padding-top: 10px;
}
html .form-control:focus {
    color: #46413F;
    background-color: transparent;
    border-color: #46413F;
    outline: 0;
    box-shadow:none;
}
.send_msg_box button {
    margin-top: 10px;
}
section.git_section > .container > .row.gx-5 {
    --bs-gutter-x: 70px;
}
section.git_section {
    padding-top: 60px;
}
.git_section .border-end {
    border-color: #2B2A291A !important;
}
.product_detail_section table {
    width: 100%;
    margin-bottom: 26px;
    border: 1px solid #2B2A291F;
	text-align:center;
}
.product_detail_section table thead th {
    background: #FFD8AE;
    font-weight: 500;
    text-transform: uppercase;
	text-align: center;
}
.product_detail_section table tr > * {
    padding: 7.5px 10px;
    border-right: 1px solid #2B2A2924;
    font-size: 13px;
    color: #2B2A29;
    border-bottom: 2px solid #2B2A291F;
}
.product_detail_section table tr td:nth-child(1) {
	background: #FFD8AE;
	font-weight: bold;
}
.product_detail_section ul {
    margin-bottom: 30px;
}
.product_detail_section ul li {
    margin: 0px 0 10px;
    color: #2B2A29;
    font-size: 16px;
    line-height: 140%;
    padding-left: 18px;
    position: relative;
}
.product_detail_section ul li:last-child{
    margin-bottom: 0;
}
.product_detail_section ul li::before {
    width: 8px;
    height: 8px;
    content: '';
    left: 0;
    top: 6px;
    position: absolute;
    background-color: var(--secondary);
    border-radius: 50px;
}
.product_detail_section .row.gx-5 {
    --bs-gutter-x: 98px;
}
body:has(.product_detail_section) .inner-banner .row.gx-5 {
    --bs-gutter-x: 98px;
}
section.product_detail_section {
    padding-top: 50px;
    z-index: 0;
    background-color: var(--light);
    padding-bottom: 150px;
}
.product-gallery .item a > img {
    transition: all 0.5s;
    object-fit: contain;
    height: 100%;
}
.product-gallery .item:hover  a > img{
    transform: scale(1.1);
}
.product-gallery .item .icon {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s;
    z-index: 2;
}
.product-gallery .item .icon img {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 12px;
    width: 48px;
    height: 48px;
    background: rgba(0, 0, 0, 0.26);
    border-radius: 50px;
    transform: scale(1.2);
    transition: all 0.4s;
}
.product-gallery .item:hover .icon {
    background: rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5.5px);
    opacity: 1;
}
.product-gallery .item:hover .icon  img{
    transform: scale(1);
}
.product_g_big {
    border-radius: 10px;
    margin-bottom: 10px;
    overflow: hidden;
}
.product_g_thumbs .item {
    height: 126px;
    margin-left: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    position: relative;
    overflow: hidden;
    padding: 10px;
    background-color: var(--white);
}
.product_g_thumbs .owl-item.active.current .item {
    border: 1px solid var(--secondary);
}
.product_g_thumbs {
    transform: translateX(-7px);
}
section.product_detail_section .btn-wrp{
    display: flex;
    align-items: center;
    gap: 16px;
}
section.product_detail_section .btn-wrp .btn{
    border: 1px solid #2B2A29;
    color: var(--white);
    box-shadow: 0px 4px 0px 0px #2B2A29;
}
section.product_detail_section .btn-wrp .btn:hover{
    box-shadow: unset;
}
.btn-wrp .btn .btn-wave::before {
    width: 36rem;
    height: 36rem;
    top: 71px;
    animation: about-btn 3s infinite linear;
    background-image: url('data:image/svg+xml,<svg width="233" height="93" viewBox="0 0 233 93" fill="none" xmlns="http://www.w3.org/2000/svg"><g clip-path="url(%23clip0_2193_24)"><path d="M-25.0537 5.02655C7.20301 -7.54102 7.20301 17.5941 39.4597 5.02655C71.7164 -7.54102 71.7164 17.5941 103.973 5.02655C136.23 -7.54102 136.23 17.5941 168.487 5.02655C200.743 -7.54102 200.743 17.5941 233 5.02655V92.9995H-25.0537V-7.54102V5.02655Z" fill="black"/></g><defs><clipPath id="clip0_2193_24"><rect width="233" height="93" fill="white"/></clipPath></defs></svg>');
    left: -76px;
    background-size: contain;
    transition: all 2s;
}
.btn-wrp .btn:hover .btn-wave::before {
    top: -15px;
}
.btn-wrp .btn .btn-wave::after {
    display: none;
}
.btn-wrp .btn:hover .btn-wave {
    transform: translateY(-3rem);
    top: 0;
}
section.product_detail_section .btn.btn-outline {
    background: transparent;
    border: 1px solid var(--primary);
    color: var(--primary);
    box-shadow: 0px 4px 0px 0px var(--primary);
}
section.product_detail_section .btn.btn-outline:hover{
    color: var(--white);
}
section.product_detail_section .btn span{
    align-items: center;
}
section.product_detail_section .btn-wave:after,
section.product_detail_section .btn-wave:before {
    width: 18rem;
    height: 18rem;
}
html body .product-gallery .owl-carousel .owl-nav  button {
    height: 36px;
    width: 36px;
    background-color: var(--white);
    border: 1px solid #0A02601A;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    position: absolute;
    top: 0;
    bottom: 0;
    transition: all 0.4s;
    margin: auto;
    border-radius: 100px;
}
html body .product-gallery .owl-carousel .owl-nav  button:hover{
    background-color: var(--primary);
}
div#bigpic .owl-nav {
    display: none;
}
.fancybox__thumbs {
    display: none;
}
html body .product-gallery .owl-carousel .owl-nav  button:hover svg {
    filter: brightness(0) invert(1);
}
html body .product-gallery .owl-carousel .owl-nav button.owl-next {
    transform: scale(-1);
    left: auto;
    right: -20px;
}
.product_detail_section .btnwrap {
    display: flex;
    gap: 20px;
}
.product-gallery #bigpic .item > a {
    height: 530px;
    background-color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 25px;
}
.product_slider_col {
    position: sticky;
    top: 20px;
}
.product_detail_section .btnwrap .btn {
    box-shadow: none;
    background-color: transparent;
    border-color: transparent;
}
/* inquiry via email modal box */
html .modal-body {
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: radial-gradient(100% 100% at 4% 3%, #dd0000 0%, transparent), radial-gradient(100% 100% at var(--g2-1-x-position) var(--g2-1-y-position), #e52d34 -32%, transparent), radial-gradient(100% 100% at var(--g2-2-x-position) var(--g2-2-y-position), #69004b 0%, transparent), #000000;
    animation-name: g-2;
    animation-iteration-count: infinite;
    animation-duration: 10s;
    transition-timing-function: ease-in-out;
    position: relative;
}
html .btn-close {
    background: transparent;
    width: 30px;
    height: 30px;
    position: absolute;
    right: 0;
    top: 0;
    margin: 30px;
    transition: none;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99;
    opacity: 1 !important;
    box-shadow: none !important;
}
.form-box {
    padding: 30px 40px;
    width: 600px;
    max-width: 100%;
    margin-left: auto;
    background:var(--primary);
    box-shadow: 0px 4px 24px 0px rgba(0, 0, 0, 0.02);
    border-radius: 10px;
}
.form-box h2 {
    text-align: center;
    font-size: 34px;
    margin-bottom: 30px;
    color: var(--secondary);
    font-family: var(--font2);
}
.form-box label {
    font-weight: 500;
    font-size: 15px;
    line-height: 120%;
    color: rgba(21, 21, 21, 1);
    margin-bottom: 8px;
}
.form-box .form-control{
    padding: 12px 22px;
    height: 48px;
    background: var(--white);
    border-radius: 6px;
    font-size: 15px;
}
.form-box .form-control:focus{
    background-color: var(--white);
    border: 0px;
}
.form-box textarea.form-control {
    min-height: 90px;
    resize: none;
}
.form-field label em {
    font-style: normal;
    color: #D62B39;
}
.modal-fullscreen .modal-content{
    background-image: url('../images/banner-bg.png');
    background-repeat: no-repeat;
    background-size: cover;
}
html .form-box button span.text {
    background-color: var(--secondary);
}
html .form-box button:hover,
html .form-box button {
    color: var(--white);
}
.bottom_shape {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
}
section.prdct_uses {
    padding-top: 20px;
}
section.prdct_uses .title {
    margin-bottom: 40px;
}
section.prdct_uses .title h3 {
    font-weight: 600;
    font-size: 38px;
    font-family: var(--font2);
}
.prdct_box {
    border: 2px solid #F3F3F6;
    padding: 10px;
    background: #FFFFFF;
    height: 100%;
}
.prdct_box .image {
    height: 210px;
    width: 100%;
    display: block;
    background-color: var(--light);
    position: relative;
    transition: all 0.4s;
    padding: 20px;
}
.prdct_box:hover .image img{
    transform: scale(0.9);
}
.prdct_box .image img{
    height: 100%;
    width: 100%;
    object-fit: contain;
    transition: all 0.4s;
}
.prdct_box .content {
    padding: 12px 10px;
}
.prdct_box .content h4 {
    font-weight: 600;
    font-size: 18px;
    line-height: 140%;
    margin-bottom: 6px;
}
.prdct_box .content p {
    font-weight: 400;
    font-size: 14px;
    color: #444444;
    line-height: 150%;
}
.prdct_box .image:before {
    content: "";
    height: 40px;
    width: 40px;
    background-color: var(--primary);
    display: inline-block;
    clip-path: polygon(100% 0%, 0% 100%, 100% 100%);
    position: absolute;
    bottom: 0;
    right: 0;
    transition: all 0.4s;
}
.prdct_box:hover .image:before{
    clip-path: polygon(100% 20%, 20% 100%, 100% 100%);
}
html .btn-dark.btn_w span.text {
    background-color: var(--secondary);
}
html .btn-dark.btn_w{
    color: var(--white);
}
html .btn-dark.btn_w span.icon{
    background-color: var(--primary);
}
.pre-loader2 {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    visibility: visible;
    transition: all 0.5s;
    transition-delay: 3s;
}
.loaded .pre-loader2{
    visibility: hidden;
}
.pre-loader2 .loader-logo {
    position: absolute;
    left: 50%;
    top: 50%;
    translate: -50% -50%;
    animation: loader-img 2s infinite ease-in-out;
    transition: all 0.5s;
}
.loaded .pre-loader2 .loader-logo{
    scale: 0.8;
    opacity: 0;
}
.pre-loader2 .papper-slide-img {
    margin: 0 -10px;
    transition: all 1s;
    transition-delay: 0.5s;
}
.loaded .pre-loader2 .papper-slide-img {
    transition: all 1.5s;
    transition-delay: 0.5s;
    transform: translateY(-110%);
}
.s-inr-bnr .title h3 {
    font-size: 110px;
    font-weight: 200;
    font-family: var(--font2);
    text-align: left;
}
.s-inr-bnr .title h3 span{
    font-weight: 400;
}
.s-inr-bnr p{
    font-size: 16px;
    line-height: 160%;
    color: var(--white);
    margin-bottom: 17px;
}
.s-inr-bnr .arrow {
    margin-bottom: 50px;
    margin-right: 30px;
}
em {
    color: red;
    font-style: normal;
}
/* Product Gallery css */
.grid-sizer, 
.grid-item {
    float: left;
    width: 25%;
    -webkit-transition: all 0s;
    -moz-transition: all 0s;
    -ms-transition: all 0s;
    transition: all 0s;
}
.gallery .grid-item {
    padding: 3px;
}
.gallery-box {
    position: relative;
    margin: 0;
    border-radius: 10px;
    overflow: hidden;
}
.gallery-box .img{
	overflow:hidden;
	position:relative;
}
.gallery-box .img:before{
	content:"";
	display:block;
	background:var(--secondary);
	position:absolute;
	left:0;
	right:0;
	top:0;
	bottom:0;
	opacity:0;
	transition:all 0.5s;
	z-index:1;
}
.gallery-box:hover .img:before{
	opacity:0.7;
}
.gallery-box .img:after{
	content:"";
	display:block;
	background:url("../images/zoom-in.png") no-repeat center center;
	filter:brightness(0) invert(1);
	transform:scale(1.5);
	background-size:40px auto;
	position:absolute;
	left:0;
	right:0;
	top:0;
	bottom:0;
	opacity:0;
	transition:all 0.5s;
	z-index:1;
}
.gallery-box:hover .img:after{
	opacity:1;
	transform:scale(1);
}
.gallery-box .img img{
	display:block;
	transition:all 0.5s;
}
.gallery-box:hover img{
	-webkit-transform:scale(1.1);
	transform:scale(1.1);
}

.welcome_text_sec .content_wrap .image iframe {
    height: 500px;
    width: 100%;
    pointer-events: none;
}
@media (max-width:767px){
	.grid-sizer, 
	.grid-item {
		width: 50%;
	}
    .welcome_text_sec .content_wrap .image iframe {
        height: 230px;
    }
}
@media (min-width:768px) and (max-width:991px){
	.grid-sizer, 
	.grid-item {
		width: 33.33%;
	}
    .welcome_text_sec .content_wrap .image iframe {
        height: 410px;
    }
}
/* Product Gallery css */