@import url('https://fonts.googleapis.com/css2?family=Aladin&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');
:root {
    --primary-font-family: "Inter", sans-serif;;
    --secondary-font-family: "Aladin", system-ui;
    --bs-body:#4D545A;
    --bs-white: #fff;
    --bs-black: #000000;
    --bs-primary: #0F4574;
    --bs-primary-hover: #022646;
    --bs-secondary: #A64AC9;
    --bs-secondary-hover: #8D2EB1;
    --bs-light: #FCF3FF;
    --red-color: #ff0000;
    --font-bootstrap-icon: 'bootstrap-icons';
}
body {
    font-family: var(--primary-font-family);
    font-size: 18px;
    color: var(--bs-body);
    line-height: 30px;
}
.btn {
    font-size: 16px;
    border-radius: 0;
    font-family: var(--primary-font-family);
    letter-spacing: 1px;
    padding: 0.8rem 1rem;
    transition: all ease-in 0.2s;
    font-weight: 400;
}
.btn-primary {
    color: #fff;
    background-color: var(--bs-primary);
    border-color: var(--bs-primary);
}
.btn-check:focus+.btn-primary, .btn-primary:focus {
    color: #fff;
    background-color: var(--bs-primary-hover);
    border-color: var(--bs-primary-hover);
    box-shadow: none;
}
.btn-primary:hover {
    color: #fff;
    background-color: var(--bs-primary-hover);
    border-color: var(--bs-primary-hover);
}
.btn.btnTheme {
    display: inline-flex;
    align-items: center;
    border-radius: 50px;
    padding: 5px 5px 4px 17px;
    letter-spacing: 1px;
    line-height: 0;
    transition: all ease-in 2s;
}
.btn.btnTheme:hover {
    background: var(--bs-primary-hover);
    padding-left: 20px;
}
.btn-primary span i {
    font-size: 38px;
    line-height: 1;
}
.btn-check:active+.btn-primary:focus, .btn-check:checked+.btn-primary:focus, 
.btn-primary.active:focus, .btn-primary:active:focus, 
.show>.btn-primary.dropdown-toggle:focus {
    box-shadow: none;
    background-color: var(--bs-primary-hover);
    border-color: var(--bs-primary-hover);
}
.btn-secondary {
    color: #fff;
    background-color: var(--bs-secondary);
    border-color: var(--bs-secondary);
}
.btn-check:focus+.btn-secondary, .btn-secondary:focus {
    color: #fff;
    background-color: var(--bs-secondary-hover);
    border-color: var(--bs-secondary-hover);
    box-shadow: none;
}
.btn-secondary:hover {
    color: #fff;
    background-color: var(--bs-secondary-hover);
    border-color: var(--bs-secondary-hover);
}
.btn-check:active+.btn-secondary:focus, .btn-check:checked+.btn-secondary:focus, .btn-secondary.active:focus, .btn-secondary:active:focus, .show>.btn-secondary.dropdown-toggle:focus {
    box-shadow: none;
}
.btn-outline-theme {
    color: var(--bs-theme);
    border-color: var(--bs-theme);
}
.btn-outline-theme:hover {
    color: #fff;
    background-color: var(--bs-theme-hover);
    border-color: var(--bs-theme-hover);
}
.btn-check:focus+.btn-outline-theme, .btn-outline-theme:focus, .btn-check:active+.btn-outline-theme:focus, .btn-check:checked+.btn-outline-theme:focus, .btn-outline-theme.active:focus, .btn-outline-theme.dropdown-toggle.show:focus, .btn-outline-theme:active:focus {
    box-shadow: none;
}
.btn-outline-primary {
    color: var(--bs-primary);
    border-color: var(--bs-primary);
}
.btn-outline-primary:hover {
    color: #fff;
    background-color: var(--bs-primary-hover);
    border-color: var(--bs-primary-hover);
}
.btn-check:focus+.btn-outline-primary, .btn-outline-primary:focus, .btn-check:active+.btn-outline-primary:focus, .btn-check:checked+.btn-outline-primary:focus, .btn-outline-primary.active:focus, .btn-outline-primary.dropdown-toggle.show:focus, .btn-outline-primary:active:focus {
    box-shadow: none;
}
.btn-outline-secondary {
    color: var(--bs-secondary);
    border-color: var(--bs-secondary);
}
.btn-outline-secondary:hover {
    color: #fff;
    background-color: var(--bs-secondary-hover);
    border-color: var(--bs-secondary-hover);
}
.btn-check:focus+.btn-outline-secondary, .btn-outline-secondary:focus, .btn-check:active+.btn-outline-secondary:focus, .btn-check:checked+.btn-outline-secondary:focus, .btn-outline-secondary.active:focus, .btn-outline-secondary.dropdown-toggle.show:focus, .btn-outline-secondary:active:focus {
    box-shadow: none;
}
a {
    color: var(--bs-black);
    text-decoration: none;
}
a, button{transition: all 0.6s !important;}
.fw-300 {
    font-weight: 300 !important;
}
.fw-400 {
    font-weight: 400 !important;
}
.fw-500 {
    font-weight: 500 !important;
}
.fw-600 {
    font-weight: 600 !important;
}
.fw-700 {
    font-weight: 700 !important;
}
.fw-800 {
    font-weight: 800 !important;
}
.fs-1 {
    font-size: 60px !important;
    font-family: var(--primary-font-family);
    color: var(--bs-primary);
}
.fs-2 {
    font-size: 60px;
}
.fs-3 {
    font-size: 36px;
}
.fs-4 {
    font-size: 28px;
}
.fs-5 {
    font-size: 24px;
}
.fs-6 {
    font-size: 20px;
}
h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
	font-family: var(--secondary-font-family);
	color:var(--bs-primary);
    letter-spacing: 1px;
    font-weight: normal;
}
h1 {
    font-size: 80px;
}
h2 {
    font-size: 60px;
}
h3 {
    font-size: 32px;
}
a {
    outline: none;
}
a:hover {
    text-decoration: none;
}
ul, ol {
    margin: 0;
    padding: 0;
}
ul li, ol li {
    list-style: none;
}

/* css for sticky header */
@keyframes slideDown {
    from {
        transform: translateY(-100%);
        /* transform: translateY(0); */
    }
    to {
        transform: translateY(0);
    }
}
.custom-radius {
    border-radius: 1rem !important;
}
.outer-container{position: relative;}
.page-header {
    position: relative;
    width: 100%;
    left: 0;
}
.page-header.is-sticky {
    top: 0;
    position: fixed;
    box-shadow: 0 5px 16px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    animation: slideDown 0.35s ease-out;
}
.topbar {
    padding:0 16px 5px;
    font-size: 16px;
    background-color: rgba(255, 255, 255, 0);
    color: var(--bs-white);
}
.topbar ul li a {
    font-weight: 400;
    letter-spacing: 1px;
    color:var(--bs-primary) !important;
    padding-right: var(--bs-navbar-nav-link-padding-x);
    padding-left: var(--bs-navbar-nav-link-padding-x);
}
.topbar ul li.active a,
.topbar ul li a:hover {
    font-weight: 400;
    letter-spacing: 1px;
    color: var(--bs-secondary) !important
}
.topbar ul li:last-child a {
    padding-right: 0;
}
.page-header.is-sticky .topbar{
    background-color: rgba(255, 255, 255, 1);
    padding:14px 16px;
    height: 60px;
}
.page-header.is-sticky .topbar a {
    color: var(--bs-primary);
}
/* .page-header.is-sticky .topbar a i {
    color: var(--bs-white);
} */
.header-social-links {
    margin-top: 5px;
}
.main-navbar {
    margin-top: 0rem;
}
.header-social-links a {
    font-size: 14px;
    margin-right: 10px;
    color: var(--bs-primary);
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    line-height: 1;
    border:1px solid var(--bs-primary);
    border-radius:50%;
}
.page-header.is-sticky .header-social-links a:hover,
.header-social-links a:hover{color: var(--bs-secondary);border: 1px solid var(--bs-secondary);}
.header-social-links span {
    margin-right: 10px;
    color: var(--bs-primary);
}
.page-header.is-sticky .header-social-links {
    margin-top: 0.1rem;
}
.page-header.is-sticky .header-social-links a {
    width: 26px;
    height: 26px;
    border-color: var(--bs-primary);
    font-size: 14px;
}
.page-header.is-sticky .main-navbar {
    margin-top: -5px;
}
.page-header.is-sticky .topbar a.nav-link {
    color: var(--bs-primary) !important;
}
.page-header.is-sticky .topbar li.active a.nav-link,
.page-header.is-sticky .topbar a.nav-link:hover {
    color: var(--bs-secondary) !important;
}
.page-header.is-sticky .header-social-links, .page-header.is-sticky .header-social-links a, .page-header.is-sticky .topbar span  {
    color: var(--bs-primary);
}
.page-header.is-sticky .topbar span i {
    color: var(--bs-white);
}
.btn-offcanva {
    font-size: 36px;
    color: var(--bs-primary-hover);
    /* color:yellow; */
    padding-top: 6px;
}
.owl-nav {
    text-align: center;
    display: flex;
    justify-content: center;
    margin-top: 20px;
}
.owl-carousel .owl-nav button.owl-next, .owl-carousel .owl-nav button.owl-prev {
    border: 1px solid var(--bs-primary);
    width: 45px;
    height: 45px;
    display: flex;
    padding-bottom: 5px;
    justify-content: center;
    align-items: center;
    margin: 0 5px;
    line-height:0;
    padding: 0;
    border-radius: 8px;
    background: var(--bs-secondary);
    border-color: var(--bs-secondary);
}
.owl-carousel .owl-nav button.owl-next:hover, .owl-carousel .owl-nav button.owl-prev:hover {
    
    background: var(--bs-primary);
    border-color: var(--bs-primary);
}
.owl-nav button span {
    font-size: 40px;
    line-height: 0;
    padding-bottom: 5px;
    color: var(--bs-white);
    font-weight: 300;
}
.mainNavbar {
    background-color: rgba(85, 101, 78, 0);
    padding: 6px 16px;
}
.companyBrand {
    background-color: var(--bs-white);
    padding:1rem;
    padding-top:0;
    border-bottom-left-radius: 25px;
    border-bottom-right-radius: 25px;
    max-width: 285px;
    text-align: center;
    position: absolute;
    left: auto;
    right: 0;
}
.companyBrand a img {
    max-width: 250px;
}
.homeSlider .carousel-item {
    /* min-height: 100vh; */
    overflow: hidden;
}
.homeSlider .carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
/* .homeSlider .carousel-item:before {
    content: '';
    background: rgb(0,0,0);
background: linear-gradient(180deg, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0) 30%);
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
} */
.homeSlider .carousel-item h1 {
    /* font-weight: 700; */
    color: var(--bs-white);
    font-weight: normal;
    font-size: 54px;
    line-height: 1.4;
}
.homeSlider .carousel-item .display-1 {
    font-size: 60px;
    font-family: var(--secondary-font-family);
    margin-top: 1rem;
    margin-bottom: 1.3rem;
    line-height: 1.1;
    /* font-weight: 600; */
}
.homeSlider .carousel-item p {
    font-size: 17px;
    font-weight: 500;
    letter-spacing: 1px;
}
.homeSlider .carousel-item .carousel-caption {
    bottom: 10px;
    height: 100%;
    display: flex;
    justify-content: start;
    flex-wrap: wrap;
    align-items: end;
    left: 20px;
    right: 20px;
    z-index: 3;
}

.btn-toggle {
    position: relative;
    padding-left: 45px;

}
.btn-toggle i {
    font-size: 40px;
    position: absolute;
    left: 0;
    top: -7px;
    line-height: 0;
}
#features {
    margin-top:2rem;
}
.sliderFooter {
    position: absolute;
    background-color: var(--bs-white);
    width: 200px;
    margin: 0 auto;
    z-index: 1;
    height: 60px;
    margin-top: -30px;
    left: 50%;
    margin-left: -100px;
    border-radius: 70px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
}
.sliderFooter .carousel-control-prev, .sliderFooter .carousel-control-next {
    opacity: 1;
}
.sliderFooter .carousel-control-prev {
    left: 50px;
}
.sliderFooter .carousel-control-next {
    right: 50px;
}
.sliderFooter .carousel-control-prev .bi, .sliderFooter .carousel-control-next .bi {
    font-size: 36px;
    color: var(--bs-secondary);
}
.block-header small {
    font-size: 18px;
    text-transform: uppercase;
    color: var(--bs-secondary);
}
.expBlock {
    background-color: var(--bs-secondary);
    color: var(--bs-white);
    font-size: 80px;
    font-weight: 800;
    line-height: 1.1;
    text-align: center;
    position: relative;
    margin-left: 130px;
    margin-bottom: 20px;
    padding: 0.3rem 1rem 1rem;
    border-bottom-left-radius: 16px;
}
.expBlock::before {
    content: '';
    width: 100px;
    height: 150px;
    background: url(../images/cutting-img.png) no-repeat top left;
    background-size: 143px;
    position: absolute;
    left: -100px;
    top: -27px;
}
.expBlock small {
    display: block;
    font-size: 16px;
    font-weight: 500;
}
.feature-bg {
    background: #fffbf5 url(../images/featurebg.png) repeat top left;
    background-size: 100%;
    padding: 3.5rem 0;
}
.feature-bg .card {
    background: none;
    border-radius: 16px;
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.050);
    /* height: 100%; */
}
.feature-card figure {
    border:2px dashed #f1f1f1;
    border-radius: 20px;
    overflow: hidden;
}
.feature-card figure img {
    transform: scale(1);
    transition: all ease-in 0.5s;
}
.feature-card:hover figure img {
    transform: scale(1.1);
}
.feature-card .card-body {
    background-color: var(--bs-white);
    border-radius: 20px;
    /* height: 100%; */
}
.feature-card .card-body h3 {
    color: var(--bs-secondary);
    font-size: 28px;
    /* height: 80px; */
    line-height: 1.1;
    margin-bottom: 16px;
}
.feature-card .card-body p {
    display: -webkit-box;
  line-clamp: 2;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.featuredRow .col:nth-child(2)  {
    margin-top: 100px;
}
.featuredRow .col:nth-child(4), .featuredRow .col:nth-child(6)  {
    margin-top: -50px;
}

.featuredRow .col a {
    font-size: 40px;
    color: var(--bs-primary);
    transition: all ease-in 0.2s;
}
.featuredRow .col a:hover, .featuredRow .col a:active, .featuredRow .col a:focus {
    color: var(--bs-secondary);
}
#learnMe h4 {
    font-size: 50px;
    color: var(--bs-black);
    position: relative;
    padding-bottom: 1.5rem;
    margin-bottom: 1.5rem;
}
#learnMe h4:before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 180px;
    height: 4px;
    border-radius: 4px;
    background-color: var(--bs-secondary);
}
#learnMe .display-4 {
    color: #FCF3FF;
    background-color: #FCF3FF;
    text-shadow: -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000, 1px 1px 0 #000;
    font-weight: 900;
    opacity: 0.6;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
}
#learnMe .container {
    background-color: #f6f7f7;
}
#latestBlog .blogDateTime {
    background-color: var(--bs-secondary);
    border-radius: 10px;
    color: var(--bs-white);
    margin-top: -50px;
    margin-left: 1rem;
    margin-bottom: 1.2rem;
    padding: 0.5rem 1rem;
    position: relative;
}
#latestBlog .blogDateTime .dDate {
    font-size: 50px;
    line-height: 1.1;
    font-family: var(--secondary-font-family);
}
#latestBlog .readMore,
#latestBlog a.readMore {
    font-size: 40px;
    color: var(--bs-primary);
}
#latestBlog a.readMore:hover {
    color: var(--bs-secondary);
}
#latestBlog .blogDateTime .dDate small {
    font-size: 18px;
    line-height: 1.1;
    font-family: var(--primary-font-family);
}
#latestBlog .blogDateTime hr {
    width: 50%;
    margin: 8px auto;
}
#latestBlog .blogDateTime .dTime small {
    font-size: 16px;
    font-family: var(--primary-font-family);
}
#latestBlog h5 {
    font-size: 25px;
    margin-bottom: 16px;
}
#latestBlog .card {
    border-radius: 16px;
    border-color: rgba(0, 0, 0, .080);
}
#latestBlog .card .card-body {
    padding: 6px;
}
#latestBlog .card .card-body img {
    border-radius: 10px;
}
#latestBlog .card .card-body p {
    display: -webkit-box;
    line-clamp: 3;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 0;
    color: var(--bs-body);
}
#latestBlog .item {
    height: 100%;
} 
.innerBanner {
    height: 300px;
    /* background-color: var(--bs-secondary); */
    display: flex;
    justify-content: center;
    align-items: end;
    text-align: center;
    width: 100%;
    padding-bottom: 30px;
    /* padding-right: 130px; */
    padding-right: 40px;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
}
.innerBanner .container {
    position: relative;
    z-index: 2;
}
.innerBanner:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: var(--bs-secondary);
    opacity: 0.8;
    background: rgb(82,36,99);
    background: -moz-linear-gradient(0deg, rgba(82,36,99,1) 0%, rgba(166,74,201,1) 100%);
    background: -webkit-linear-gradient(0deg, rgba(82,36,99,1) 0%, rgba(166,74,201,1) 100%);
    background: linear-gradient(0deg, rgba(82,36,99,1) 0%, rgba(166,74,201,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#522463",endColorstr="#a64ac9",GradientType=1);
}
.socialIcon {
    display: flex;
    margin-top: 16px;
}
.socialIcon a {
    width: 30px;
    height: 30px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border:1px solid var(--bs-secondary);
    border-radius: 50%;
    margin-right: 5px;
    color: var(--bs-secondary);
}
.aboutList li {
    margin-bottom: 0.8rem;
    position: relative;
    padding-left: 26px;
}
.aboutList li i {
    position: absolute;
    left: 0;
    top: 1px;
    font-size: 22px;
    color: var(--bs-secondary);
}
.aboutList li:last-child {
    margin-bottom: 0;
}
.newsLetter input[type="email"], .tnp-subscription  form input.tnp-email {
    display: inline-block;
    width: 100%;
    padding: 22px 36px;
    margin: 8px 0;
    border: 1px solid #ccc;
    box-sizing: border-box;
    height: 70px;
    margin-top: 18px;
    border-radius: 50px;
    border: none;
    box-shadow: 0 20px 30px 0 rgba(0, 0, 0, 0.06);
}
.tnp-subscription  form input.tnp-email  {
    background-color: var(--bs-white);
    padding-right: 170px;
}
div.tnp-subscription, form.tnp-subscription, form.tnp-profile {
    max-width: 100% !important;
}
div.tnp-subscription form {
    position: relative;
}
.tnp-subscription div.tnp-field.tnp-field-button, .tnp-profile div.tnp-field.tnp-field-button {
    position: absolute;
    right: 0;
    top: 0;
    width: 130px;
}
.tnp-subscription div.tnp-field.tnp-field-button {
    width: 100%;
    
}
.tnp-subscription div.tnp-field.tnp-field-button .tnp-submit {
font-size: 16px;
  right: 10px;
  display: inline-block;
  font-weight: 600;
  padding:16px 32px;
  border-radius:40px;
  border:none;
  cursor: pointer;
  background-color: var(--bs-primary);
  color: #fff;
  margin-top: 27px;
  letter-spacing: 2px;
}
input,
input::-webkit-input-placeholder {
    font-size: 16px;
    line-height: 3;

}
.bt {
    position: absolute;
    font-size: 16px;
    right: 6px;
    display: inline-block;
    font-weight: 600;
    padding: 16px 32px;
    border-radius: 40px;
    /* Only necessary for .btn */
    border: none;
    cursor: pointer;
    background-color: var(--bs-primary);
    color: #fff;
    margin-top: 10px;
    letter-spacing: 2px;
}
.offcanvas-header {
    position: relative;
}
.offcanvas-header .btn-close {
    margin: 0;
    position: absolute;
    left: 80%;
}
.offcanvas-body li {
    border-bottom: 1px solid #EAEAEA;
    padding: 10px 5px;
}
.offcanvas-body li.current_page_item a,
.offcanvas-body li a:hover{
    color: var(--bs-secondary);
}
.offcanvas-header .companyBrand {
    padding: 0;
}
.offcanvasLogo{
    margin-left: 5px;
}
.offcanvas-body li .sub-menu{
/*     display: none; */
}
.offcanvas-body li .sub-menu li {
    border-top: 1px solid #EAEAEA;
    border-bottom: none;
}
.offcanvas-body li .sub-menu li a{
    color: var(--bs-black) !important;
    padding-left: 10px;
}
.offcanvas-body li .sub-menu li a:hover,
.offcanvas-body li .sub-menu li.current-menu-item a{
    color: var(--bs-secondary) !important;
}
.offcanvas-body li.menu-item-has-children{
    padding-bottom: 0;
}
.offcanvas-body li .sub-menu.show{display: block;}
#menu-sidebar-menu .dropdown-toggle{position: relative;}
#menu-sidebar-menu .dropdown-toggle::after{
    position: absolute;
    top: 24px;
    right: 10px;
    font-size: 24px;
    cursor: pointer;
    z-index: -1;
}
#menu-sidebar-menu .dropdown-toggle:hover:after {
    border-top-color: var(--bs-secondary);
}
#menu-sidebar-menu .dropdown-toggle a{
    display: block;
    padding-bottom: 10px;
}
#menu-sidebar-menu .dropdown-toggle .sub-menu.show a{
    padding-bottom: 0px;
}
/*----- Patterning page css -----  */
.PostWrpp {
    border-bottom: 2px dashed var(--bs-primary);
    padding-bottom: 30px;
    margin: 0 12px 15px;
}
.PostWrapper{
    display: flex;
}
.PostThumbs {
    height: 380px;
    margin-bottom: 0;
    border: 1px solid var(--bs-primary);
    /* clip-path: polygon(0 5%, 100% 0%, 100% 100%, 0% 95%);
        -webkit-clip-path:
            polygon(0 5%, 100% 0%, 100% 100%, 0% 95%); */
}
.PostThumbs img{
    height: 100%;
    width: 100%;
    object-fit: cover;
    border-radius: 2px;
}
.PontInfo {
    background:#fff;
    margin:0 0px 0 -80px;
    margin-top: 0px;
    padding: 20px;
    padding-bottom: 60px;
    position: relative;
    height: 80%;
    margin-top: 10%;
    box-shadow: 3px 3px 7px #cccccc94;
  border-radius:10px;
}
.PostWrapper img{max-width: 100%;}
.PontInfo p {
    display: -webkit-box;
    line-clamp: 3;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 30px;
}
.PontInfo h4 a {
    color: var(--bs-primary);
}
/* .PontInfo .RedBtn a{
    color: var(--bs-primary);
    transition: all 0.8s;
}
.PontInfo .RedBtn a:hover{
    padding-left: 5px;
    color: var(--bs-secondary);
} */
.RedBtn a {
    transition: all 1s;
    padding: 7px 17px;
    border-radius: 30px;
    min-width: 45px;
    height: 45px;
    overflow: hidden;
    text-align: center;
}

.RedBtn a .bi {
    font-size: 20px;
    position: relative;
    top: 0px;
    left: 10px;
    transition: all 1s;
}

.RedBtn a span {
    transition: all 1s;
    display: inline-block;
    margin-left: -115px;
    position: relative;
    top: -3px;
}

.RedBtn a:hover {
    font-size: 16px;
    margin-left: 0px;
}

.RedBtn a:hover span {
    font-size: 16px;
    margin-left: 0px;
}

.RedBtn a:hover .bi {
    left: 5px;
}
.share {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  color: #FFF;
  background-color: var(--bs-primary);
  text-align: center;
  line-height: 45px;
  font-size: 20px;
  cursor: pointer;
  margin-bottom: 15px;
  transition: background-color 0.4s;
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.28);
  margin: 0 0 0 auto;
}
.share.active {
  background-color: var(--bs-secondary);
}
.share.active:before {
  content: "\F659";
  font-family: var(--font-bootstrap-icon);
}
.share.active .bi.bi-share {
  font-size: 0;
}
.share-wrapper{position: relative;}
.share-wrapper .share.active + .social li {
  transform: scale(1);
}
.share-wrapper .share.active + .social li:hover {
  transform: scale(1.1);
}
.share-wrapper ul.social {
    width: 100%;
  opacity: 0;
  visibility: hidden;
  list-style-type: none;
  padding: 0;
  margin: 0;
  transform: translate(-3rem, 3rem);
  transition: visibility 0.4s, opacity 0.4s, -webkit-transform 0.4s;
}
.share-wrapper ul.social.active {
  opacity: 1;
  visibility: visible;
  transform: translate(0);
  padding: 10px;
}
.share-wrapper ul.social li {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: #FFF;
  background-color: #FFF;
  text-align: center;
  line-height: 2.1;
  font-size: 20px;
  cursor: pointer;
  margin-bottom: 15px;
  box-shadow: 0.5px 0.87px 4px 0 rgba(0, 0, 0, 0.3);
  transition: all 0.4s;
  margin-right: 10px;
}
.share-wrapper ul.social li:hover{background: #9e46be27;}
.share-wrapper ul.social li .facebook {
  color: #3A589E;
}
.share-wrapper ul.social li .twitter {
  color: #5FA9DD;
}
.share-wrapper ul.social li .linkedin {
  color: #0D77B7;
}
.share-wrapper ul.social li .google {
  color: #DF4B38;
}
.share-wrapper ul.social li .pinterest {
  color: #CD2129;
}
.share-wrapper ul.social li .youtube {
  color: #CF2227;
}
.share-wrapper ul.social li .instagram {
  color: #305C85;
}
.share-wrapper .social {
    display: flex;
    position: absolute;
    background:
        #fff;
}
.DtlPics2 {
    display: flex;
}
.DtlPics2 img{
    width: 100%;
    max-height: 400px;
    border-radius: 15px;
}
.DtlPics img{
    width: 100%;
    border-radius: 15px;
}
.DtlPics2 figure:nth-child(2){
    margin-left: 20px;
}
.tipsList {
    padding-top: 20px;
}
.tipsList li{
    position: relative;
    padding-left: 30px;
    display: flex;
    padding-bottom: 10px;
}
.tipsList li::before{
    position: absolute;
    content: '\F270';
    left: 0;
    top: 0;
    font-family: var(--font-bootstrap-icon);
    color: var(--bs-primary);
    font-size: 20px;
}
.VideoBox {border-radius: 15px;overflow: hidden;}
/* ----- Footer ----- */
.footer-top {
    background: #001D36 url(../images/footerbg.png) no-repeat center;
    background-size: contain;
    color: var(--bs-white);
    padding: 3rem 1rem;
}
.footer-top a {
    color: var(--bs-white);
    font-size: 14px;
}
.footer-top li.active a,
.footer-top a:hover {
    color: #E9AEFF;
}
.footer-top h5 {
    font-size: 22px;
    color: var(--bs-white);
}
.footer-logo {
    background-color: var(--bs-white);
    border-radius: 10px;
    padding: 0.5rem;
    display: inline-block;
    margin-bottom: 1.2rem;
}
.footer-logo img {
    width: 170px;
}
.footer-quickLink ul li {
    margin-bottom: 0.2rem;
}
.footerContactInfo>div {
    padding-left:30px
}
.footerContactInfo>div i {
    position: absolute;
    left: 0;
    top: 1px;
}
.footerSocialWrapper .footerSocialLinks {
    display: flex;
}
.footerSocialLinks a {
    width: 30px;
    height:30px;
    border: 1px solid #fff;
    border-radius: 50%;
    margin-right: 10px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}
.footerSocialLinks a:hover {
    border: 1px solid #E9AEFF;
}
.footerCopyright {
    background-color: var(--bs-black);
    color: var(--bs-white);
    font-size: 14px;
    font-weight: 300;
}
.footerCopyright a {
    color: var(--bs-white);
}
body {
    overflow-x: hidden;
}
.offCanvasVitalHand {
    background: var(--bs-primary);
}
.offcanvasLogo {
    overflow: hidden;
}
.offcanvasLogo img {
    max-width: 310px;
    margin-left: -16px;
}
.offCanvasVitalHand ul li {
    display: block;
}
.offCanvasVitalHand ul li a {
    color: var(--bs-white);
    padding: 0.8rem 0;
    display: block;
    font-size: 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all ease-in 0.2s;
}
.offCanvasVitalHand ul li a:hover {
    background-color: var(--bs-secondary);
    padding-left: 10px;
    border-color: transparent;
}
.offCanvasVitalHand .btn-close {
    background: none;
    font-size: 30px;
    color:#fff !important;
    opacity: 1;
}
.offCanvasVitalHand .btn-close:focus, .offCanvasVitalHand .btn-close:active {
    box-shadow: none;
}
.breadcrumb .breadcrumb-item, .breadcrumb .breadcrumb-item a {
    color: var(--bs-white);
    font-size: 18px;
    letter-spacing: 1px;
}
.breadcrumb .breadcrumb-item:before {
    color: var(--bs-white);
}
.card-body {
    color: var(--bs-body) !important;
}
.videoOuter {
    border-radius: 20px;
    overflow: hidden;
}
.videoOuter .aboutVideo {
    margin-bottom: -15px;
}
.aboutVideo video {
    width: 100%;
    height: 100%;
}
video {
    object-fit: fill;
}

.letsDapContainer {
    background: rgb(82,36,99);
    background: -moz-linear-gradient(0deg, rgba(82,36,99,1) 0%, rgba(166,74,201,1) 100%);
    background: -webkit-linear-gradient(0deg, rgba(82,36,99,1) 0%, rgba(166,74,201,1) 100%);
    background: linear-gradient(0deg, rgba(82,36,99,1) 0%, rgba(166,74,201,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#522463",endColorstr="#a64ac9",GradientType=1);
}

.lg-video video {
    width: 100%;
    margin-bottom: -12px;
}
.videoBg {
    background: url(../images/videobg.jpg) no-repeat center;
    background-size: cover;
    border-radius: 20px;
    padding: 3.2rem 0;
}
.lg-video {
    border-radius: 20px;
    overflow: hidden;
}

/* ---- new Css ---- */
.IdoBox{
    box-shadow: inset 0 0 10px rgba(0, 0, 0, .2);
    border-radius: 10px;
    height: 100%;
    padding: 20px;
    transition: all 0.8s;
}
.IdoBox:hover{
    box-shadow: inset 0 0 10px rgba(255, 25, 244, 0.2);
}
.IdoBox figure{
    margin: 25px 0 20px;
    height: 350px;
    border-radius: 1rem;
    overflow: hidden;
}
.IdoBox figure img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.8s;
}
.IdoBox:hover figure img{
    transform: scale(1.1);
}
.dropdown-menu.show {
    position: relative !important;
    transform: translate(0) !important;
    border: none;
    padding: 0;
}
.submenu{
    padding-left: 0 !important;
    padding-right: 0 !important;
}
.submenu a{
    padding-left: 5px !important;
    padding-right: 5px !important;
}
.SubParrent {
    display: inline-block;
    width: calc(100% - 50px);
}
.submenu span{
    border-left: 1px solid #ccc;
    padding-left: 6px;
    font-size: 24px; 
    cursor: pointer;
    display: inline-block;
    width: 25px;
}
.submenu .dropdown-menu li:first-child{
    border-top: 1px solid #EAEAEA;
    
}
.submenu .dropdown-menu li:last-child{
    border-bottom: 1px solid transparent !important;
    margin-bottom: -10px;
}
.submenu .dropdown-menu a{
    padding-left: 10px !important;
    padding-right: 10px !important;
}

.offcanvas-header .companyBrand{
    width: 180px;
    position: inherit;
}
.offcanvas-header .companyBrand img{
    width: 100%;
}
#latestBlog .owl-stage{display: flex;}
#latestBlog .card{height: 100%;}
.page-header.sticky-top.is-sticky .companyBrand{padding-top: 0;}
.page-header.sticky-top.is-sticky .companyBrand{max-width: 230px;}
.page-header.sticky-top.is-sticky .companyBrand a img {max-width: 100%;}
.DiscriptionBox{width: 85%;}
.ReadMore{width: 15%; text-align: end;}

/* ----- Contact page css ----- */
sup{color: var(--red-color);}
.ContPic {
    padding: 25px;
    border-radius: 10px;
    background: rgb(82, 36, 99);
    background: -moz-linear-gradient(0deg, rgba(82, 36, 99, 1) 0%, rgba(166, 74, 201, 1) 100%);
    background: -webkit-linear-gradient(0deg, rgba(82, 36, 99, 1) 0%, rgba(166, 74, 201, 1) 100%);
    background: linear-gradient(0deg, rgba(82, 36, 99, 1) 0%, rgba(166, 74, 201, 1) 100%);
}
.ContactLeft label{
    padding-left: 5px;
    padding-bottom: 3px;
    color: #626262;
}
.ContactLeft .form-control{
    -webkit-appearance: auto;
    -moz-appearance: auto;
    appearance: auto;
    padding: 12px 10px;
    margin-bottom: 15px;
}
.ContactLeft .form-control:focus{
    border: 1px solid #e2a1fa;
    background: rgb(255, 255, 255, 0.8);
    box-shadow: inherit;
}
.ContactLeft h3 {
    font-size: 35px;
    margin-bottom: 10px;
}
.ContactLeft .btn-primary{
    font-size: 16px;
    font-weight: 300;
    border-radius: 30px;
}
.ContactLeft .btn-primary i{
    font-size: 16px;
}
.quicklyContLeft {
    padding-right: 20px;
}
.quicklyCont {
    display: flex;
    border: 1px dotted var(--bs-light);
    padding: 15px;
    border-radius: 5px;
    transition: all 0.8s;
    margin-bottom: 20px;
}
.quicklyCont:hover {
    background: var(--bs-primary);
}
.quicklyCont a {
    width: 100%;
    display: flex;
    align-items: center;
    color: var(--bs-white);
}
.quicklyCont:last-child a {
    width: 40px;
    height: 40px;
    display: inline-block;
    color: var(--bs-white);
}
.quicklyCont:last-child a i{
    font-size: 20px;
}
.quicklyCont:last-child a:hover{
    color: #E9AEFF;
    transform: scale(1.1);
}
.quicklyCont:last-child:hover {
    background: transparent;
}
.quicklyCont {
    color: var(--bs-white);
}
.quicklyCont span {
    display: block;
    width: calc(100% - 50px);
}
.quicklyCont i {
    font-size: 22px;
    background: var(--theme-primary-hover);
    width: 40px;
    display: inline-block;
    height: 40px;
    color: var(--white-color);
    border-radius: 50%;
    line-height: 40px;
    text-align: center;
    margin-right: 10px;
}
.MapBox{
    padding: 20px 0;
}
.MapBox iframe{
    border-radius: 20px;
}
/* ----- Blog page Css ----- */
#latestBlog .card-body figure{
    overflow: hidden;
    border-radius: 10px;
}
#latestBlog .card-body img{
    transition: all 0.8s;
}
#latestBlog .card-body:hover img{
    transform: scale(1.1);
}
.BlogThumbs{
    height: 350px;
}
.BlogThumbs img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.PagiNav nav{
    margin-top: 20px;
    display: flex;
    justify-content: center;
}
.PagiNav nav a{
    color: var(--bs-black);
}
.PagiNav nav .pagination{
    --bs-pagination-padding-x: 01rem;
}
.PagiNav nav .active>.page-link,
.page-link.active{
    background: var(--bs-secondary-hover);
    border-color: var(--bs-secondary-hover);
}
.whatwedoBox{
    padding-top: 40px;
    -webkit-background: linear-gradient(180deg, rgba(0, 0, 0, 0.05) 0%, rgba(0, 0, 0, 0) 3%);
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.05) 0%, rgba(0, 0, 0, 0) 3%);
}
#latestBlog .blog-about .blogDateTime .dDate{font-size: 35px;}
#latestBlog .blog-about .card-body img{
    height: 250px;
    width: 100%;
    object-fit: cover;
}
#latestBlog .blog-about .blogDateTime{
    margin-bottom: .5rem;
}
#latestBlog .blog-about h5 {
    font-size: 22px;
    display: -webkit-box;
    line-clamp: 2;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
/* ----- blog Detail ----- */
.BlogsWrapper{padding: 70px 0;}
.BlogDetails .figure-full img {
    border-radius: 15px;
    margin-bottom: 30px;
    margin-top: 10px;
    box-shadow: 0 5px 7px var(--bs-body);
    width: 100%;
    max-height: 680px;
    object-fit: cover;
}
.card-profile.DateBox {
    width: 80%;
    margin: 0 auto;
    text-align: center;
    background: var(--bs-primary);
    padding: 10px;
    border-radius: 5px;
    margin-top: -50px;
    margin-bottom: 50px;
    box-shadow: 0 5px 7px var(--bs-body);
    position: relative;
}
.card-profile.DateBox p{
    color: var(--bs-light);
}
.BlogDtRight {
    background: rgb(82, 36, 99);
    background: -moz-linear-gradient(0deg, rgba(82, 36, 99, 1) 0%, rgba(166, 74, 201, 1) 100%);
    background: -webkit-linear-gradient(0deg, rgba(82, 36, 99, 1) 0%, rgba(166, 74, 201, 1) 100%);
    background: linear-gradient(0deg, rgba(82, 36, 99, 1) 0%, rgba(166, 74, 201, 1) 100%);
    padding: 30px 20px;
    border-radius: 10px;
}
.recent-blogs {
    background: #fff;
    border-radius: 10px;
    margin-bottom: 30px;
    box-shadow: 0 0 10px var(--bs-body);
}
.recent-blogs .blog-sm-img {
    width: 70px;
    height: 80px;
    display: inline-block;
}
.recent-blogs .blog-sm-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: 1px solid var(--bs-secondary);
    border-radius: 10px;
    padding: 1px;
}
.recent-blogs p {
    padding-bottom: 0;
}
.recent-blogs h3 span {
    color: var(--theme-primary);
}
.recent-blogs ul {
    padding: 0;
}
.recent-blogs ul li {
    border-bottom: 1px solid #e6e6e6;
    padding-bottom: 1rem;
    list-style-type: none;
    line-height: 1.4;
    padding: 10px;
    transition: all 0.8s;
}
.recent-blogs li:hover {
    background: #808e782e;
}
.recent-blogs ul li:last-child {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
}
.PrsInfo img {
    float: left;
    width: 150px;
    height: 180px;
    object-fit: cover;
    margin-right: 14px;
    margin-top: 7px;
    border-radius: 10px;
    padding: 1px;
    border: 1px solid var(--bs-secondary);
}
.DetailRight.sticky-top.topSpace {
    padding-top: 80px;
    transition: all 0.8s;
    z-index: 1;
}
.blDate {font-size: 16px; color: var(--bs-body);}
.blDate i{font-size: 16px; color: #9569A6;}
.TopPg{
    background: #ccc;
    padding: 20px;
}
.TopPg {
    background: #fdf6ff;
    padding: 20px;
    border-radius: 5px;
    margin-bottom: 20px;
}
.SubscribeBox input{
    width: 100%;
    border: var(--bs-border-width) solid var(--bs-border-color);
    border-radius: var(--bs-border-radius);
    padding: 5px 10px;
    margin-bottom: 15px;
}
.SubscribeBox .btn.btn-primary {
    font-size: 16px;
    border-radius: 30px;
    width: 150px;
    margin: 0 auto;
    display: block;
}
.SearchItems input:focus,
.SubscribeBox input:focus-visible {
    border:1px solid #e2a1fa;
    background: rgb(255, 255, 255, 0.8);
    box-shadow: inherit;
    outline: none;
}
/* ----- Wearable Technology ----- */
.PageCat{
    transition: all 0.8s;
   
}
.PageCat figure{
    height: 350px;
    position: relative;
    overflow: hidden;
    border-radius: 1rem;
}
/* .PageCat figure::before{
    -webkit-background: linear-gradient(180deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0) 50%);
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0) 50%);
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    border-radius: 1rem;
} */
.PageCat img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.PageCat h4{
    color: var(--bs-white);
    height: 60px;
}
.TextInfo{
    position: absolute;
    bottom: -70px;
    color: var(--bs-white);
    padding: 50px 15px 20px;
    transition: all 0.8s;
    width: 100%;
    text-align: center;
    -webkit-background: linear-gradient(0deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0) 100%);
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0) 100%);
    border-radius: 1rem;
}
.PageCat:hover .TextInfo{
    bottom: 0px;
}
.CatTxt{
    text-align: center;
    width: 62%;
    margin: 40px auto;
}
/* ----- Store page Css ----- */
.ProductPic {
    width: 100%;
    height: 280px;
    padding: 0px;
}
.ProductPic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.ProductPic img+img {
    opacity: 0;
}
.ProductsList a:hover img+img {
    opacity: 1;
}
.ProductsList a {
    display: block;
    border: 1px solid #0f457461;
    height: 100%;
    border-radius: 18px;
    box-shadow: 0 0 5px #0f457478;
}
.ProductsList a:hover {
    border: 1px solid #a0106461;
    box-shadow: 0 0 5px #a0106461;
}
.ProductsList figure {
    display: grid;
    border-radius: 1rem;
    overflow: hidden;
    cursor: pointer;
}

.ProductsList figure>* {
    grid-area: 1/1;
    transition: 1s;
}
.ProductsList figure figcaption {
    display: grid;
    align-items: end;
    font-family: sans-serif;
    font-size: 2.3rem;
    font-weight: bold;
    color: #0000;
    padding: .75rem;
    background: var(--c, #0009);
    clip-path: inset(0 var(--_i, 100%) 0 0);
    mask: linear-gradient(#000 0 0), linear-gradient(#000 0 0);
    -webkit-mask: linear-gradient(#000 0 0), linear-gradient(#000 0 0);
}

.ProductsList figure:hover figcaption {
    --_i: 0%;
}

.ProductsList a:hover img {
    transform: scale(1.2);
}

@supports not (-webkit-mask-clip: text) {
    figure figcaption {
        mask: none;
        -webkit-mask: none;
        color: #fff;
    }
}
.BluorngBox .col {
    border-right: 1px solid #e6e6e6cc;
}
.InfoBox {
    padding: 0 15px;
    text-align: center;
}
.InfoBox .Proprice{
    padding: 8px 0 15px 0;
    font-size: 18px;
    font-weight: 500;
}
.InfoBox h5 {
    display: -webkit-box;
    line-clamp: 2;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 50px;
}
.ProductsList a:hover h5 {
    color: var(--bs-secondary-hover);
}
.ProductsList a:hover .InfoBox .Proprice {
    color: var(--bs-primary);
}
/* ----- Product details css ----- */
.ProductDetails{padding-top: 70px; padding-bottom: 20px;}
.flickity-enabled {
    position: relative;
}
.flickity-enabled:focus {
    outline: none;
}
.flickity-viewport {
    overflow: hidden;
    position: relative;
    height: 100%;
}
.flickity-slider {
    position: absolute;
    width: 100%;
    height: 100%;
}
.flickity-enabled.is-draggable {
    -webkit-tap-highlight-color: transparent;
    tap-highlight-color: transparent;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.flickity-enabled.is-draggable .flickity-viewport {
    cursor: move;
    cursor: -webkit-grab;
    cursor: grab;
}
.flickity-enabled.is-draggable .flickity-viewport.is-pointer-down {
    cursor: -webkit-grabbing;
    cursor: grabbing;
}
.flickity-prev-next-button {
    position: absolute;
    top: 50%;
    width: 44px;
    height: 44px;
    border: none;
    border-radius: 50%;
    background: var(--bs-primary);
    /* background: hsla(0, 0%, 100%, 0.75); */
    cursor: pointer;
    /* vertically center */
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}
.flickity-prev-next-button:hover {
    background: var(--bs-secondary);
}
.flickity-prev-next-button:focus {
    outline: none;
    box-shadow: 0 0 0 2px var(--primary-bg);
}
.flickity-prev-next-button:active {
    opacity: 0.6;
}
.flickity-prev-next-button.previous {
    left: 10px;
}
.flickity-prev-next-button.next {
    right: 10px;
}
.flickity-prev-next-button:disabled {
    opacity: 0.3;
    cursor: auto;
}
.flickity-prev-next-button svg {
    position: absolute;
    left: 25%;
    top: 25%;
    width: 50%;
    height: 50%;
}
.flickity-prev-next-button .arrow {
    fill: var(--bs-white);
}
.carousel-main {
    margin-bottom: 8px;
}
.carousel-cell {
    width: 100%;
    height: 650px;
    margin-right: 8px;
    border-radius: 10px;
}
.carousel-nav .carousel-cell {
    height: 100px;
    width: 100px;
}
.carousel-nav .carousel-cell img {
    border: 2px solid transparent;
    height: 100px;
    width: 100px;
    border-radius: 10px;
}
.carousel-nav .carousel-cell.is-selected img {
    border: 1px solid var(--bs-secondary);
}
.carousel-main img {
    display: block;
    margin: 0 auto;
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 10px;
}
.number-input{margin-right: 2px;}
.number-input input[type="number"] {
    -webkit-appearance: textfield;
    -moz-appearance: textfield;
    appearance: textfield;
    
}
.number-input input[type=number]::-webkit-inner-spin-button,
.number-input input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
}
.number-input {
    /* border: 1px solid var(--links-color); */
    display: inline-flex;
    border-radius: 30px;
}
.number-input,
.number-input * {
    box-sizing: border-box;
}
.number-input button {
    outline: none;
    appearance: none;
    -webkit-appearance: none;
    border: none;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    cursor: pointer;
    margin: 0;
    position: relative;
    background: var(--bs-primary);
}
.number-input button:hover{background: var(--bs-secondary);}
.number-input button:after {
    display: inline-block;
    position: absolute;
    font-family: var(--font-bootstrap-icon);
    content: '\F4FE';
    font-size: 28px;
    transform: translate(-50%, -50%) rotate(180deg);
    color: var(--bs-white);
}
.number-input button.minus{border-radius: 30px 0 0 30px; margin-bottom: 10px;}
.number-input button.plus{border-radius: 0 30px 30px 0;}
.number-input button.minus:after {
    content: '\F2EA';
    color: var(--bs-white);
}
.number-input button.plus:after {
    content: '\F4FE';
    color: var(--bs-white);
}

.number-input input[type=number] {
    max-width: 3.5rem;
    padding: .5rem;
    /* border: solid #ddd;
    border-width: 0 2px; */
    border: none;
    font-size: 1.2rem;
    height: 3rem;
    font-weight: 500;
    text-align: center;
    border: 1px solid var(--bs-primary);
}
.number-input input[type=number]:focus-visible {
    box-shadow: none;
    outline: none;
}
.ProductsDtlRight .Proprice{font-size: 25px; font-weight: 600;padding: 15px 0 10px; color: #000;}
.RealtyTest{display: flex; padding: 15px 0;flex-flow: wrap;}
.RealtyTest li{
    position: relative;
    color: var(--theme-color);
    font-size: 18px;
    font-weight: 500;
    padding-right: 20px;
    padding-left: 17px;
}
.RealtyTest li::before{
    position: absolute;
    content: '';
    width: 10px;
    height: 10px;
    left: 0;
    border-radius: 50%;
    background: var(--links-color);
    top: 8px;
}
.WishlistList{
    padding: 25px 0 15px 0;
}
.WishlistList a{
    color: var(--theme-color);
    font-size: 16px;
    border-bottom: 1px solid #ccc;
}
.WishlistList a:hover{
    color: var(--bs-secondary);
    border-bottom: 1px solid transparent;
}
.DescriptionNav{margin-top: 50px;}
.ContaintWrapp {
    padding: 30px 20px;
}
.DescriptionNav button {
    color: var(--theme-color);
}
.DescriptionNav button:hover {
    border-color: transparent !important;
}
.DescriptionNav button.active {
    color: var(--bs-secondary) !important;
    border-color: var(--bs-secondary) !important;
    border-bottom: 1px solid transparent !important;
    font-weight: 500;
}
.NewsletterWrapp {
    background: #e1ffce;
    padding: 0;
}
.NewsletterLeft{
    text-align: center;
    padding: 50px 0;
    margin-left: 50px;
    /* border-left: 2px solid #F4CDB3; */
    border-width: 2px;
    border-style: solid;
    border-image: linear-gradient(to bottom,  #FE721C , rgba(0, 0, 0, 0)) 1 100%;
    border-right: none;
}
.NewsletterRight{
    display: flex;
    flex-flow: wrap; 
}
.NewsletterRight input{
    width: calc(100% - 180px);
    margin-right: 20px;
    border-radius: 30px;
    padding: 14px 20px;
}
.NewsletterLeft .bi-envelope-paper {
    font-size: 50px;
    color: var(--links-color);
}
.Minicart {
    position: relative;
    padding-right: 25px !important;
}
.Minicart span {
    position: absolute;
    font-size: 14px;
    width: 22px;
    height: 22px;
    background: var(--primary-bg);
    color: var(--white-color);
    border-radius: 50%;
    text-align: center;
    line-height: 22px;
    margin-top: -4px;
    margin-left: -2px;
}
.ActionIcons .btn-primary{
    border-radius: 30px;
    position: relative;
    top: 6px;
    padding: 0.7rem 1rem;
}
.MaterialsBox{
    padding-top: 10px;
}
.MaterialsBox .accordion-header span{
    display: inline-block;
    padding-left: 15px;
    font-size: 18px;
    letter-spacing: 1px;
}
.MaterialsBox .accordion-button:not(.collapsed) {
    background-color: #cfe2ff4a;
}
.MaterialsBox .accordion-button:focus {
    box-shadow: none;
}
.share-wrapper.SdBox .social {
    position: relative;
}
.share-wrapper.SdBox .social li{margin-bottom: 0; line-height: 20px;}
/* ----- Courses Pages css ----- */
.CoursesBox {
    border: 1px dashed var(--bs-secondary);
    padding: 20px;
    border-radius: 15px; 
    transition: all 0.8s;
    margin-bottom: 30px;
    }
.CoursesBox:hover {
    border: 1px dashed var(--bs-primary);
    padding: 20px;
    border-radius: 15px; 
    background: #fafcff;
    }
.CoursesBox figure{
    width: 100%;
    height: 260px;
    padding: 20px;
    text-align: center;
    }
.CoursesBox p{
    display: -webkit-box;
    line-clamp: 3;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    color: var(--bs-body);
    }
.CoursesBox span{
    color: var(--bs-secondary-hover);
    }
.CoursesBox strong{
    color: var(--bs-primary);
    }
.CoursesBox h4{
    padding-bottom: 15px;
    }
.CoursesBox figure img{
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: all 0.8s;
    transform: perspective(500px) translate3d(10px, 0, 20px) rotateY(20deg);
    }
.CoursesBox:hover figure img{
    transform: perspective(500px) translate3d(10px, 0, 10px) rotateY(0deg);
    }
.LearnInfo img{max-width: 100%; border-radius: 20px;}
.FormWrapper{width: 90%;}
.FormWrapper input{
    margin-bottom: 20px;
    padding: 15px 10px;
}
.FormWrapper button{
    border-radius: 30px;
    padding-left: 30px;
    padding-right: 30px;
}

.SubscribeBox .tnp-subscription div.tnp-field.tnp-field-button{position: inherit; margin-bottom: 0;text-align: center !important;}
.SubscribeBox .tnp-subscription div.tnp-field.tnp-field-button .tnp-submit{
    margin-top: 0;
    font-weight: 500;
}
.SubscribeBox .tnp-subscription form input.tnp-email{
    width: 100%;
    border: var(--bs-border-width) solid var(--bs-border-color);
    border-radius: var(--bs-border-radius);
    padding: 5px 10px;
    margin-bottom: 0px;
    box-shadow: inherit;
}
.SubscribeBox .tnp-subscription form input.tnp-email:focus-visible {
    border: 1px solid #e2a1fa;
    background: rgb(255, 255, 255, 0.8);
    box-shadow: inherit;
    outline: none;
}
.woocommerce.columns-3 .allproducts { float: left; }
.woocommerce-ordering .orderby {
    font-size: 16px;
    font-weight: 300;
    background: transparent;
    border: 1px solid #f1f1f1;
    padding: 10px;
    border-radius: 5px;
    cursor: pointer; 
}
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit.alt,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button.alt,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button.alt,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button.alt,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce #respond input#submit.alt,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce a.button.alt,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce button.button.alt,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce input.button.alt{
    background-color: var(--bs-primary) !important;
    border-radius: 30px;
    padding: 1.05rem 2rem;
    font-size: 16px;
    font-weight: 400;    
    align-items: center;
}
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit.alt:hover,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button.alt:hover,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button.alt:hover,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button.alt:hover,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce #respond input#submit.alt:hover,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce a.button.alt:hover,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce button.button.alt:hover,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce input.button.alt:hover{
    background-color: var(--bs-primary-hover) !important;
}
.woocommerce .woocommerce-error .button,
.woocommerce .woocommerce-info .button,
.woocommerce .woocommerce-message .button,
.woocommerce-page .woocommerce-error .button,
.woocommerce-page .woocommerce-info .button,
.woocommerce-page .woocommerce-message .button{
    background: var(--bs-primary);
    color: var(--bs-white);
    border-radius: 10px;
    border: none;
    font-weight: 400;
    font-size: 16px;
    padding: 15px 20px;
}
.single_add_to_cart_button{
    position: relative !important;
    top: 30px !important;
}
.quantity label {
    display: block; 
}
/* .woocommerce div.product .woocommerce-tabs ul.tabs li {
    border: 1px solid transparent !important;
    background-color: transparent !important;
} */
.woocommerce .quantity .qty {
    width: 7em !important;
    text-align: center;
    border-radius: 30px;
    border: navajowhite;
    background: #0f4574;
    color: #fff;
    margin-right: 10px;
    font-weight: bold; }
.woocommerce div.product div.images .flex-control-thumbs{display: flex;}
.woocommerce div.product div.images .flex-control-thumbs li{margin: 3px;}
.woocommerce div.product .woocommerce-tabs ul.tabs li{
    background: transparent !important;
    border-color: transparent !important;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li.active{
    color: var(--bs-secondary) !important;
    border: 1px solid var(--bs-secondary) !important;
    border-bottom: 1px solid transparent !important;
    background: var(--bs-white) !important;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li a{font-weight: 500 !important;}
.woocommerce div.product div.images .flex-control-thumbs li {
    width: 100px !important;
    margin: 3px !important;
}
.woocommerce div.product div.images .flex-control-thumbs li img.flex-active{
    border: 1px solid var(--bs-secondary);
    border-radius: 10px;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li:before,
.woocommerce div.product .woocommerce-tabs ul.tabs li::after{display: none;}
.woocommerce div.product .woocommerce-tabs ul.tabs::before {
    border-bottom: 1px solid var(--bs-secondary) !important;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li.active::after,
.woocommerce div.product .woocommerce-tabs ul.tabs li.active:before {
    border-color: var(--bs-secondary) !important;
    display: block !important;
}
.wc-block-grid .wc-block-grid__products .wc-block-grid__product{
    flex: 1 0 20% !important;
    max-width: 20% !important;
}
.wc-block-grid__product .wc-block-grid__product-image{
    width: 100%;
    height: 280px;
    padding: 0px; 
    display: grid;
    border-radius: 1rem;
    overflow: hidden;
    cursor: pointer;
}
.wc-block-grid__product .wc-block-grid__product-image img{
    transition: all 1s;
    border-radius: 1rem;
}
.wc-block-cart-item__wrap .wc-block-components-product-name {
    border-color: transparent;
    box-shadow: none;
    font-size: 16px;
    display: block;
    width: 70%;
    max-width: 70% !important;
    padding-right: 30px; 
}
.wc-block-components-product-metadata { display: none; }
.wc-block-cart-item__wrap .wc-block-components-product-name:hover{
    border-color: transparent;
    box-shadow: none;
    color: var(--bs-secondary);
}
.wc-block-cart-item__wrap {
    display: flex; 
}
.wc-block-cart-item__prices {
    padding-right: 20px; }
.wc-block-cart-item__total-price-and-sale-badge-wrapper .wc-block-components-product-price__value{font-weight: 700;}
.wc-block-cart-item__quantity{
    text-align: center; }
.wc-block-cart-item__remove-link{color: var(--bs-secondary) !important;}
.wc-block-cart-item__image a {
    border: none;
    box-shadow: none; 
    transition: all 0.5s;
}
.wc-block-cart-item__image a:hover,
.wc-block-cart-item__image a img:hover {
    transform: scale(1) !important;
    box-shadow: none !important;
    border: none !important;
}
.wc-block-components-quantity-selector .wc-block-components-quantity-selector__button:focus{
    box-shadow: none !important;
}
.wc-block-components-quantity-selector .wc-block-components-quantity-selector__button{
    background: var(--bs-primary) !important;
    color: var(--bs-white) !important;
    opacity: 1 !important;
}
.wc-block-components-quantity-selector .wc-block-components-quantity-selector__button:hover{
    background: var(--bs-secondary) !important;
    color: var(--bs-white) !important;
}
.wc-block-components-button:not(.is-link){background: var(--bs-primary) !important; color: var(--bs-white);}
.wc-block-components-button:not(.is-link):hover{background: var(--bs-secondary); color: var(--bs-white);}
.wc-block-checkout__actions_row a {
    display: inline-block;
    padding: 15px 50px; }
.wc-block-components-checkout-return-to-cart-button svg{left: 20px !important;}
.wc-block-components-button.wp-element-button.wc-block-components-checkout-place-order-button.contained {
    border-radius: 20px; border: none !important;}
.wc-block-components-button.wp-element-button.wc-block-components-checkout-place-order-button.contained:hover {
    background: var(--bs-secondary) !important; }
.wc-block-components-button.wp-element-button.wc-block-components-totals-coupon__button.contained {
    border: none !important;
    border-radius: 6px;     }
.product_meta {
    margin-top: 10px;
    margin-bottom: 15px;     
}
.RelatedWrapper h2 {margin-bottom: 25px; }
.ppcp-place-order-description { text-align: left !important; }
.wc-block-checkout__terms.wc-block-checkout__terms--with-separator{padding-top: 20px !important;}

i.bi.bi-cart {
    font-size: 24px;
}

#menu-header-menu.navbar-nav .menu-item ul.sub-menu{
	display:none;
	position:relative;
}
#menu-header-menu.navbar-nav .menu-item:hover ul.sub-menu {
	display:block;
}
#menu-header-menu.navbar-nav .menu-item ul.sub-menu{
	position: absolute;
	right: 0;
	padding: 10px;
	background-color: #fff;
	top: 100%;
	border-bottom-left-radius: 10px;
	border-bottom-right-radius: 10px;
}
#menu-header-menu.navbar-nav .menu-item ul.sub-menu .menu-item {
	font-size:16px;
	padding: 0.2rem 0;
	color:var(--bs-primary) !important;
}
/* blogfilter*/
.filter-buttons {
    list-style: none;
    display: flex;
    gap: 10px;
    padding: 0;
    margin: 20px;
}
.filter-buttons li {
    cursor: pointer;
    padding: 8px 16px;
    background: #eee;
    border-radius: 5px;
}
.filter-buttons li.active {
    background: #333;
    color: white;
}
.post-item {
    margin-bottom: 20px;
    padding: 10px;
    border-bottom: 1px solid #ccc;
}
/* ----- Responsive ----- */
@media only screen and (max-width: 1650.98px) {


}
@media only screen and (max-width: 1499.98px) {
body {font-size: 16px;line-height: 26px;}
.companyBrand a img {max-width: 190px;}
.homeSlider .carousel-item .display-1 {font-size: 36px;}
.homeSlider .carousel-item h1 {line-height: 1.4;font-size: 36px;}
h2 {font-size: 60px;}
.offcanvas-header .btn-close {left: 80%;}
.expBlock{margin-left: 90px;}
.single_add_to_cart_button {top: 26px !important; }
}
@media only screen and (max-width: 1400.98px) {
.ProductPic {height: 210px;}
.topbar ul li a {
    padding-right: 5px;
    padding-left: 5px;
    white-space: nowrap;
	padding-top: 1.4rem;
    padding-bottom: 1.4rem;
}
}

@media only screen and (max-width: 1298.98px) {
.companyBrand a img {max-width: 190px;}
.offcanvas-header .btn-close {left: 80%;}
}
@media only screen and (max-width: 1199.98px) {
.topbar .container{max-width: 95%;}
.companyBrand{width: 150px;}
.companyBrand img{width: 100%;}
.header-social-links span{display: none;}
.homeSlider .carousel-item .display-1 {font-size: 25px;}
.homeSlider .carousel-item p {font-size: 14px;}
.navbar-expand-lg .navbar-nav .nav-link{padding-left: 5px; padding-right: 5px;}
.main-navbar{margin-top: 1.5rem;}
.header-social-links {margin-top: 2rem;}
.homeSlider .carousel-item img{height: 400px;}
.offcanvas-header .btn-close {left: 80%;}
.expBlock {margin-left: 20px;}
.CatTxt {width: 80%;}
.PageCat h4 {height: 80px;}
.ProductPic {height: 220px;}
}
@media only screen and (max-width: 991.98px) {
.offcanvas-header .btn-close {left: 85%;}
#learnMe h4,
#learnMe .display-4,
h2 {font-size: 30px;}
.featuredRow .col:nth-child(2),
.featuredRow .col:nth-child(4),
.featuredRow .col:nth-child(6) {margin-top: 1.5rem;}
.expBlock{font-size: 40px;}
.expBlock {margin-left: 50px;}
#latestBlog .blog-about .blogDateTime .dDate,
#latestBlog .blogDateTime .dDate{font-size: 35px;}
/* #features .card-body figure{height: 200px;}
#features .card-body .img-fluid{height: 200px;} */
.DetailRight.sticky-top.topSpace {padding-top: 0;}
.PrsInfo img {width: 130px;height: 130px;}
.CatTxt {width: 100%;}
.PageCat h4 {height: 60px;}
.ProductPic {height: 200px; margin-bottom: 30px;}
.ProductsDtlRight h3{font-size: 22px;}
}
@media only screen and (max-width: 767.98px) {
.companyBrand{margin: 0;}
.homeSlider .carousel-item img{height: 100%;}
.offcanvas-header .btn-close {left: 80%;}
h2 {font-size: 26px;}
.featuredRow .col:nth-child(2), .featuredRow .col:nth-child(4), .featuredRow .col:nth-child(6) {margin-top: 1rem;}
#learnMe .container {padding-left: 20px !important;padding-right: 20px !important;}
#latestBlog .blog-about .blogDateTime .dDate,
#latestBlog .blogDateTime .dDate {font-size: 30px;}
#latestBlog .blogDateTime .dDate small {font-size: 16px;}
.FooterCol {margin-bottom: 20px;}
.DiscriptionBox{width: 80%;}
.ReadMore{width: 20%;}
.feature-bg{padding-top: 25px !important; padding-bottom: 25px !important;}
.expBlock {margin-left: 50px;}
.des.how-de br {display: none;}
.MaterialsBox {margin-bottom: 30px; }
.ProductPic img {height: 100% !important;object-fit: contain; }
.ProductPic {margin-bottom: 20px;}
.ProductsDtlRight h3{font-size: 18px;}
}
@media only screen and (max-width: 575.98px) {
.header-social-links a {color: var(--bs-black);border: 1px solid var(--bs-black);}
.FollowUs{flex-flow: wrap;}
.header-social-links span {display: block;width: 100%;margin-bottom: 10px;}
h2 {font-size: 22px;}
.btn-offcanva{padding-top: 0;margin-top: -10px;}
.page-header.is-sticky .main-navbar {margin-right: 0px;}
.page-header.is-sticky .btn-offcanva {margin-top: 10px;padding-top: 8;}
.footerCopyright div{flex-flow: wrap;}
.copyrightText,
.designBy{width: 100%;}
.SubscribeForm{flex-flow: wrap;}
.SubscribeForm .bt{position: inherit; width: 170px; margin: 10px auto 0;}
.ProductPic {height: auto;}
.RelatedProducts .ProductPic {height: 240px;}
.tnp-subscription div.tnp-field.tnp-field-button,
.tnp-profile div.tnp-field.tnp-field-button{position: inherit;width: 170px;margin: 0px auto 0;}
.tnp-subscription div.tnp-field.tnp-field-button .tnp-submit{margin-top: 0;}
.newsLetter input[type="email"],
.tnp-subscription form input.tnp-email{height: 60px; padding: 10px 20px;}
.RelatedWrapper .ProductPic img+img{display: none;}
.RelatedWrapper .mb-5.allproducts{margin-bottom: 0 !important;}
#menu-footer-menu { column-count: 2; }
.position-relative br { display: none; }
.RelatedWrapper .ProductPic img {height: 300px !important;object-fit: contain;}
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit.alt,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button.alt,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button.alt,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button.alt,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce #respond input#submit.alt,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce a.button.alt,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce button.button.alt,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce input.button.alt{padding: 1.05rem 1rem;}
.woocommerce .quantity .qty {width: 6em !important;}
.innerBanner {height: 250px;}
.wc-block-cart-item__wrap .wc-block-components-product-name{font-size: 14px;width: 200px; padding-right: 15px;}
.wc-block-components-main.wc-block-cart__main.wp-block-woocommerce-cart-items-block {width: 100%;overflow: auto; }
.wc-block-components-quantity-selector{width: 90px;}
.wc-block-cart-item__prices {padding-right: 15px;}
.is-medium table.wc-block-cart-items .wc-block-cart-items__row .wc-block-cart-item__quantity,
.is-mobile table.wc-block-cart-items .wc-block-cart-items__row .wc-block-cart-item__quantity,
.is-small table.wc-block-cart-items .wc-block-cart-items__row .wc-block-cart-item__quantity {-ms-grid-row-align: start;align-self: start;}
.button.wc-forward {display: block !important;width: 200px;margin: 0 auto !important;float: none !important;margin-top: 10px !important; }
}

@media only screen and (max-width: 479.98px) {
.companyBrand {padding: .5rem;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;max-width: 110px;margin: 0;}
.homeSlider .carousel-item .display-1 {font-size: 20px;}
.homeSlider .carousel-item img {height: 370px;}
.RelatedProducts .ProductPic {height: 180px;}
.topbar .container {max-width: 100%;}
.companyBrand {width: 120px;}
.tabs.wc-tabs {display: flex; }
.tabs.wc-tabs li a{white-space: nowrap;}
.innerBanner {height: 200px;}

}



