body {

    background-color: #f2f2f2 !important;
}

@import url('https://fonts.googleapis.com/css2?family=Rubik:wght@300;400;500;600;700;800;900&display=swap');

:root {
    --blue: #1e90ff;
    --fontHeading: 'Rubik', sans-serif;
}

* {
    font-family: var(--fontHeading);
}

.navbar>.container-fluid {
    display: block !important;
}

.dropdown-menu[data-bs-popper] {
    left: none !important;
}

.card {
    border: none !important;
}

.header .logo img {
    width: 100%;
}

.bg-blue {
    background-color: #232f3e;
}

.v-center {
    align-items: center;
}

ul {
    list-style: none;
    margin: 0;
    margin-bottom: 0px !important;
    padding: 0;
}

a {
    text-decoration: none;
}

/* header */
.headers {


    position: sticky;
    position: -webkit-sticky;
    top: 0px;
    z-index: 99;
    background-color: #fff;
    color: #000;
    border-bottom: 1px solid #686868;
    backdrop-filter: blur(14px);
}

.header .item-left {
    flex: 0 0 17%;
}

.header .logo a {
    font-size: 30px;
    color: #000000;
    font-weight: 700;
    text-decoration: none;
}

.header .item-center {
    flex: 0 0 66%;
}

.header .item-right {
    /* flex:0 0 17%; */
    display: flex;
    justify-content: flex-end;
}

.header .item-right a {
    text-decoration: none;
    font-size: 27px;
    color: #0dcaf0;
    display: inline-block;
    margin-left: 10px;
    transition: color 0.3s ease;
}

.header .menu>ul>li {
    display: inline-block;
    line-height: 37px;
    margin-left: 0px;
}

.header .menu>ul>li>a {
    font-size: 12px;
    font-weight: 400;
    color: rgb(255, 255, 255);
    position: relative;
    text-transform: uppercase;
    transition: color 0.3s ease;
    text-decoration: none;
    font-family: var(--fontHeading);
    padding: 10px 18px;
}

.header .menu>ul>li>a:hover {
    color: rgb(0, 0, 0) !important;
    /* padding: 14px 27px; */
    background-color: #00e4ff;
}

.header .menu>ul>li>a:active {
    color: rgb(0, 0, 0) !important;
    /* padding: 14px 27px; */
    background-color: #00e4ff !important;
}

.header .menu>ul>li .sub-menu {
    position: absolute;
    z-index: 500;
    background-color: rgb(255, 255, 255);
    backdrop-filter: blur(14px);
    box-shadow: -2px 2px 70px -25px rgba(0, 0, 0, 0.3);
    border: 3px solid white;
    padding: 20px 30px;
    transition: all 0.5s ease;
    margin-top: 25px;
    opacity: 0;
    visibility: hidden;
}

@media(min-width: 992px) {
    .header .menu>ul>li.menu-item-has-children:hover .sub-menu {
        margin-top: 0;
        visibility: visible;
        opacity: 1;
    }
}

.header .menu>ul>li .sub-menu>ul>li {
    line-height: 1;
}

.header .menu>ul>li .sub-menu>ul>li>a {
    display: inline-block;
    padding: 10px 0;
    font-size: 15px;
    color: rgb(255, 255, 255);
    transition: color 0.3s ease;
    text-decoration: none;
    text-transform: capitalize;
}

.header .menu>ul>li .single-column-menu {
    min-width: 280px;
    max-width: 350px;
}

.header .menu>ul>li .sub-menu.mega-menu>.list-item>ul>li {
    line-height: 1;
    display: block;
}

.header .menu>ul>li .sub-menu.mega-menu>.list-item>ul>li>a {
    padding: 10px 0;
    display: inline-block;
    font-size: 15px;
    color: rgb(0, 0, 0);
    transition: color 0.3s ease;
}

.header .menu>ul>li .sub-menu.mega-menu {
    left: 50%;
    transform: translateX(-50%);
}

.header .menu>ul>li .sub-menu.mega-menu-column-4 {
    max-width: 1100px;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    padding: 20px 15px;
}

.header .menu>ul>li .sub-menu.mega-menu-column-4>.list-item {
    flex: 0 0 25%;
    padding: 0 15px;
}

.header .menu>ul>li .sub-menu.mega-menu-column-4>.list-item .title {
    font-size: 16px;
    color: #00e4ff;
    font-weight: 500;
    line-height: 1;
    padding: 10px 0;
}

.header .menu>ul>li .sub-menu.mega-menu-column-4>.list-item.text-center .title {
    text-align: center;
}

.header .menu>ul>li .sub-menu.mega-menu-column-4>.list-item img {
    max-width: 100%;
    width: 100%;
    vertical-align: middle;
    margin-top: 10px;
    height: 230px;
    object-fit: contain !important;
}

.header .menu>ul>li .sub-menu.mega-menu>.list-item>ul>li>a:hover,
.header .menu>ul>li .sub-menu>ul>li>a:hover,
.header .item-right a:hover,
.header .menu>ul>li:hover>a {
    color: #00e4ff;
}

/* banner section */
.banner-section {
    background-image: url('../img/banner.jpg');
    background-size: cover;
    background-position: center;
    height: 700px;
    width: 100%;
    display: block;
}

.mobile-menu-head,
.mobile-menu-trigger {
    display: none;
}

/*responsive*/
@media(max-width: 991px) {

    .header .item-center {
        order: 3;
        flex: 0 0 100%;
    }

    .header .item-left,
    .header .item-right {
        flex: 0 0 auto;
    }

    .v-center {
        justify-content: space-between;
    }

    .header .mobile-menu-trigger {
        display: flex;
        height: 30px;
        width: 30px;
        margin-left: 15px;
        cursor: pointer;
        align-items: center;
        justify-content: center;
    }

    .header .mobile-menu-trigger span {
        display: block;
        height: 2px;
        background-color: #efe8e8;
        width: 24px;
        position: relative;
    }

    .offcanvas {
        height: 100vh !important;
        color: black !important;
    }

    .header .mobile-menu-trigger span:before,
    .header .mobile-menu-trigger span:after {
        content: '';
        position: absolute;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: #f8f3f3;
    }

    .header .mobile-menu-trigger span:before {
        top: -6px;
    }

    .header .mobile-menu-trigger span:after {
        top: 6px;
    }

    .header .item-right {
        align-items: center;
    }

    .header .menu {
        position: fixed;
        width: 320px;
        background-color: #0e0d0deb;
        backdrop-filter: blur(14px);
        left: 0;
        top: 0;
        height: 100vh;
        overflow: hidden;
        transform: translate(-100%);
        transition: all 0.5s ease;
        z-index: 1099;
    }

    .header .menu.active {
        transform: translate(0%);
    }

    .header .menu>ul>li {
        line-height: 1;
        margin: 0;
        display: block;
    }

    .header .menu>ul>li>a {
        line-height: 50px;
        height: 50px;
        padding: 0 50px 0 15px;
        display: block;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    }

    .header .menu>ul>li>a i {
        position: absolute;
        height: 50px;
        width: 50px;
        top: 0;
        right: 0;
        text-align: center;
        line-height: 50px;
        transform: rotate(-90deg);
    }

    .header .menu .mobile-menu-head {
        display: flex;
        height: 50px;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
        justify-content: space-between;
        align-items: center;
        position: relative;
        z-index: 501;
        position: sticky;
        background-color: #13163e39;
        backdrop-filter: blur(14px);
        top: 0;
    }

    .header .menu .mobile-menu-head .go-back {
        height: 50px;
        width: 50px;
        border-right: 1px solid rgba(0, 0, 0, 0.1);
        cursor: pointer;
        line-height: 50px;
        text-align: center;
        color: white;
        font-size: 16px;
        display: none;
    }

    .header .menu .mobile-menu-head.active .go-back {
        display: block;
    }

    .header .menu .mobile-menu-head .current-menu-title {
        font-size: 15px;
        font-weight: 500;
        color: white;
    }

    .header .menu .mobile-menu-head .mobile-menu-close {
        height: 50px;
        width: 50px;
        border-left: 1px solid rgba(0, 0, 0, 0.1);
        cursor: pointer;
        line-height: 50px;
        text-align: center;
        color: white;
        font-size: 25px;
    }

    .menu-main {
        text-align: center !important;
    }

    .header .menu .menu-main {
        height: 100%;
        overflow-x: hidden;
        overflow-y: auto;

    }

    .header .menu>ul>li .sub-menu.mega-menu,
    .header .menu>ul>li .sub-menu {
        visibility: visible;
        opacity: 1;
        position: absolute;
        box-shadow: none;
        margin: 0;
        padding: 15px;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        padding-top: 65px;
        max-width: none;
        min-width: auto;
        display: none;
        transform: translateX(0%);
        overflow-y: auto;
    }

    .header .menu>ul>li .sub-menu.active {
        display: block;
    }

    @keyframes slideLeft {
        0% {
            opacity: 0;
            transform: translateX(100%);
        }

        100% {
            opacity: 1;
            transform: translateX(0%);
        }
    }

    @keyframes slideRight {
        0% {
            opacity: 1;
            transform: translateX(0%);
        }

        100% {
            opacity: 0;
            transform: translateX(100%);
        }
    }

    .header .menu>ul>li .sub-menu.mega-menu-column-4>.list-item img {
        margin-top: 0;
    }

    .header .menu>ul>li .sub-menu.mega-menu-column-4>.list-item.text-center .title {
        margin-bottom: 20px;
    }

    .header .menu>ul>li .sub-menu.mega-menu-column-4>.list-item.text-center:last-child .title {
        margin-bottom: 0px;
    }

    .header .menu>ul>li .sub-menu.mega-menu-column-4>.list-item {
        flex: 0 0 100%;
        padding: 0px;
    }

    .header .menu>ul>li .sub-menu>ul>li>a,
    .header .menu>ul>li .sub-menu.mega-menu>.list-item>ul>li>a {
        display: block;
    }

    .header .menu>ul>li .sub-menu.mega-menu>.list-item>ul {
        margin-bottom: 15px;
    }

    .menu-overlay {
        position: fixed;
        background-color: rgba(0, 0, 0, 0.5);
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        z-index: 1098;
        visibility: hidden;
        opacity: 0;
        transition: all 0.5s ease;
    }

    .menu-overlay.active {
        visibility: visible;
        opacity: 1;
    }

    .footer-logo {
        width: 100%;
    }
}





.slideshow {
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    width: 100vw;
    height: 90vh;
    overflow: hidden;
}

.slideshow .slider {
    width: 100vw;
    height: 90vw;
    z-index: 2;
}

.slideshow .slider * {
    outline: none;
}

.slideshow .slider .item {
    height: 90vh;
    width: 100vw;
    position: relative;
    overflow: hidden;
    border: none;
}

.slideshow .slider .item .text {
    display: none;
}

.slideshow .slider .item img {
    min-width: 101%;
    min-height: 101%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.slideshow .slick-dots {
    position: fixed;
    z-index: 100;
    width: 40px;
    height: auto;
    bottom: auto;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    left: auto;
    color: #fff;
    display: block;
}

.slideshow .slick-dots li {
    display: block;
    width: 100%;
    height: auto;
}

.slideshow .slick-dots li button {
    position: relative;
    width: 20px;
    height: 15px;
    text-align: center;
}

.slideshow .slick-dots li button:before {
    content: "";
    background: #fff;
    color: #fff;
    height: 2px;
    width: 20px;
    border-radius: 0;
    position: absolute;
    top: 50%;
    right: 0;
    left: auto;
    transform: translateY(-50%);
    transition: all 0.3s ease-in-out;
    opacity: 0.6;
}

.slideshow .slick-dots li.slick-active button:before {
    width: 40px;
    opacity: 1;
}

.slideshow.slideshow-right {
    left: 0;
    z-index: 1;
    width: 50vw;
    pointer-events: none;
}

.slideshow.slideshow-right .slider {
    left: 0;
    position: absolute;
}

.slideshow-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    font-size: 80px;
    width: 100vw;
    text-align: center;
    color: #fff;
    font-family: "Roboto Condensed", sans-serif;
    font-weight: 100;
    pointer-events: none;
    text-transform: uppercase;
    letter-spacing: 20px;
    line-height: 0.8;
}

@media (max-width: 767px) {
    .slideshow-text {
        font-size: 40px;
    }

    .banner {
        min-height: 50vh !important;

    }

    .split-slideshow {
        height: 50vh;

    }

    .slideshow {
        height: 50vh;
    }

    .slideshow .slider {
        height: 50vh;
    }

    .slideshow .slider .item img {
        top: 50px;
    }
}



.navbar {
    /* height: 90px; */
    font-family: var(--fontHeading);
    text-transform: uppercase !important;
}

.navbar::before {
    content: "";
    height: 90px;
    background-color: #ffffff00;
    position: fixed;
    width: 100%;

    z-index: -1;
}

.navbar-brand img {
    filter: invert();
    width: 100%;
}

.lamp {
    background: linear-gradient(to right, rgb(194, 229, 156), rgb(100, 179, 244));

    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 5px;
}

.camera {
    background: linear-gradient(to right, rgb(66 108 120), rgb(31 50 73));
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 5px;
}

.hanglight {
    background: linear-gradient(to right, rgb(81 209 211), rgb(50 132 200));

    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 5px;
}

.banner {
    position: relative;
    top: 0px;
    left: 0px;
    min-height: 90vh;
    width: 100%;
}

.services {
    transform: scale(1);
    object-fit: contain;
}

.hanglight:hover .services {
    transform: scale(1.4);
    transition: 0.5s all ease-in-out;

}

.lamp:hover .services {
    transform: scale(1.4);
    transition: 0.5s all ease-in-out;

}

.camera:hover .services {
    transform: scale(1.4);
    transition: 0.5s all ease-in-out;

}


/* 
        .card {
    width: 300px;
    min-width: 300px;
    height:auto;
    background:#fff;
    border-radius:30px;
    position:relative;
    z-index:10;
    margin:25px;
    min-height:356px;
    cursor:pointer;
    transition: all .25s ease;
    box-shadow: 0px 0px 0px 0px rgba(0,0,0, .08);
  } */
.card {
    background-color: rgba(255, 255, 255, 0);
    border-radius: 10px;
}

.card img {
    border-radius: 10px;
    height: 150px;
    /* object-fit: cover; */
    object-fit: contain;
}

.card-title {
    color: rgb(81 209 211);
}

.card:hover {
    transform: translate(0, -20px);
    box-shadow: 0px 17px 35px 0px rgba(0, 0, 0, .07);

    transition: all 0.2s linear;
}

footer {
    background: #2a2e32;
}

.card-text * {
    color: rgb(0, 0, 0);
}

/*
  .card h4 {
    position:absolute;
    left: 0;
    top: 0;
    padding: 15px;
  }
  
  .card i {
    position:absolute;
    right: 0;
    top: 0;
    padding: 15px;
    font-size:1.4rem;
    line-height:3.2rem;
  }
  
  .card .card-text {
    padding: 20px;
  }
  
  p {
    font-size: .8rem;
    opacity: .6;
    margin-top: 10px;
  }
  
  .card .card-img { 
    display:flex;
    align-items: center;
    justify-content:center;
    transition: all .35s ease-out;
  }
  
  .card img {
    height:200px;
    width: 200px;
    object-fit: contain;
  }
  
  
  
  .card-content {
    display:flex;
    align-items:center;
    justify-content:flex-start;
    width:100%;
    overflow:auto;
    padding-top: 50px;
    /* padding-left:60px; */
/* padding-right: 50px;
    scroll-behavior:smooth; */
/* } */

/* .card-content::-webkit-scrollbar {
     height:0px;
  }
  
  .card-content:after {
    content:'';
    display:block;
    min-width:20px;
    height:100px;
    position:relative;
  }
  
  .btnss{
    min-width:60px;
    margin:auto 30px;
    height:60px;
    border-radius:20px;
    background:#fff;
    border:0px;
    outline:none;
    cursor:pointer;
    z-index:9999;
    box-shadow: 0px 0px 0px 0px rgba(0,0,0,.08);
    transition: all .25s ease;
  }
  
  .btn:hover{
    box-shadow: 0px 17px 35px 0px rgba(0,0,0,.07);
  }
  
  .btn i {
    font-size:1.2rem;
  }
  
  .sliderss {
    display:flex;
   
    justify-content:center;
    background:rgb(242,243,248);
    width:100%;
    height:70vh;
    overflow:hidden;
  } */

/* .slider:after {
    content:'';
    left:98px;
    height:90vh;
    position:absolute;
    width:150px;
    z-index:100;
    background: linear-gradient(90deg, rgb(242,243,248) 0%,rgba(242,243,248,0)  100%);
    pointer-event:none;
  }
  
  .slider:before {
    content:'';
    right:98px;
    height:90vh;
    position:absolute;
    width:150px;
    z-index:100;
    background: linear-gradient(90deg, rgba(242,243,248,0) 0%,rgba(242,243,248,1)  100%);
    pointer-event:none;
  } */
.cards {
    width: 360px !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
}

.card-wrapper {
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
}

.card-img-top {
    width: 300px;
    height: 300px;

}

.card-body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

}

.banner {
    overflow-x: hidden !important;
}

body {
    background-color: white;
}



/* --- general --- */
.heroimg {
    position: relative;
}

.heroimg div {
    position: absolute;
    top: 40%;
    width: 100%;
}

h1 {
    font-size: 6vw;
    line-height: 1.125;
    text-align: center;
    color: #000;
}

main {
    padding: 1% 0;
    position: relative;
}

main div {
    margin: 0 auto;
    max-width: 90%;
    width: 720px;
    height: 100%;
}

/* --- zoom --- */
.heroImg {
    overflow: hidden;
    padding-bottom: 60%;
    background-image: url(./aboutuslaptop.png);
    background-size: 30% 30%;
    background-position: top center;
    background-repeat: no-repeat;
}

@media (max-width: 1024px) {
    .zoom {
        overflow: hidden;
        padding-bottom: 60%;
    }
}





#news-slider {
    margin-top: 10px;
}

#desk-slider {
    margin-top: 10px;
}

#news-sliderss {
    margin-top: 10px;
}

.post-slide {
    /* height: 380px; */
    background: white;
    margin: 20px 15px 20px;
    border-radius: 15px;
    padding-top: 1px;
    position: relative;
    /* box-shadow: 0px 14px 22px -9px #bbcbd8; */
}

.post-slide .post-img {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    margin: -12px -10px 8px 15px;
    margin-left: -10px;
    /* background-color: #000000;
      background-color: #182b3a;
      background-color: #2b4162;
      background-image: linear-gradient(315deg, #2b4162 0%, #12100e 74%); */


}

.post-slide .post-img img {
    width: 100%;
    height: 190px;
    border-radius: 10px;
    object-fit: contain !important;
    transform: scale(0.8);
    transition: transform 0.1s linear;
}

.post-slide:hover .post-img img {
    transform: scale(0.9);
}

.card-text {
    font-size: 12px;
}

.post-slide .over-layer {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    /* background: linear-gradient(-45deg, rgba(6,190,244,0.75) 0%, rgba(45,112,253,0.6) 100%); */
    transition: all 0.50s linear;
}

.post-slide:hover .over-layer {
    opacity: 1;
    text-decoration: none;
}

.post-slide .over-layer i {
    position: relative;
    top: 45%;
    text-align: center;
    display: block;
    color: #fff;
    font-size: 25px;
}

.fa-cart-arrow-down {
    color: #000 !important;
    box-shadow: 0px 10px 20px -10px #1376c5 !important;
}

.fa-cart-arrow-down:hover {
    color: #00e4ff !important;
}

.fa-cart-arrow-down:active {
    color: #00e4ff !important;
}

.post-slide .post-content {
    max-height: 100%;
    height: 194px;
    padding: 2px 20px;
    border-radius: 15px;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
}

.post-slide .post-title a {
    font-size: 13px !important;
    font-weight: 600;
    color: #232f3e;
    display: inline-block;
    text-transform: uppercase;
    transition: all 0.3s ease 0s;
}

.cart-text {
    font-size: 14px !important;
    font-weight: bold;
    color: #232f3e;
    display: inline-block;
    text-transform: uppercase;
    transition: all 0.3s ease 0s;
    text-align: start;
}

.cart-price-text {
    font-size: 14px !important;
    font-weight: 400;
    color: #000000;
    display: inline-block;
    text-transform: uppercase;
    transition: all 0.3s ease 0s;
    text-align: start;
}

#news-slider .card-title {
    font-size: 13px !important;
    font-weight: bold;
    color: #272727;
    display: inline-block;
    text-transform: uppercase;
    transition: all 0.3s ease 0s;
}

#desk-slider .card-title {
    font-size: 13px !important;
    font-weight: bold;
    color: #272727;
    display: inline-block;
    text-transform: uppercase;
    transition: all 0.3s ease 0s;
}

#news-sliderss .card-title {
    font-size: 13px !important;
    font-weight: bold;
    color: #2f2f2f;
    display: inline-block;
    text-transform: uppercase;
    transition: all 0.3s ease 0s;
}

#gaming-slider .card-title {
    font-size: 13px !important;
    font-weight: bold;
    color: #181818;
    display: inline-block;
    text-transform: uppercase;
    transition: all 0.3s ease 0s;
}

#laptop-new .card-title {
    font-size: 13px !important;
    font-weight: bold;
    color: #383838;
    display: inline-block;
    text-transform: uppercase;
    transition: all 0.3s ease 0s;
}

#firesafety .card-title {
    font-size: 13px !important;
    font-weight: bold;
    color: #21E6EA;
    display: inline-block;
    text-transform: uppercase;
    transition: all 0.3s ease 0s;
}

#Cameras .card-title {
    font-size: 13px !important;
    font-weight: bold;
    color: #21E6EA;
    display: inline-block;
    text-transform: uppercase;
    transition: all 0.3s ease 0s;
}

#Biometrics .card-title {
    font-size: 13px !important;
    font-weight: bold;
    color: #21E6EA;
    display: inline-block;
    text-transform: uppercase;
    transition: all 0.3s ease 0s;
}

/* .post-slide .post-title a:hover{
      text-decoration: none;
      color:#3498db;
  } */
.post-slide .post-description {
    line-height: 24px;
    color: #808080;
    margin-bottom: 25px;
}

.post-slide .post-date {
    color: #a9a9a9;
    font-size: 14px;
}

.post-slide .post-date i {
    font-size: 30px;
    margin-right: 8px;
    color: #CFDACE;
    margin-top: 10PX;
}

.post-slide .post-date i:hover {

    color: #ff0000;
}

.post-slide .read-more {
    padding: 7px 9px;
    float: right;
    font-size: 10px;
    background: #0a0a0b;
    margin: 10px;
    color: #ffffff;
    box-shadow: 0px 10px 20px -10px #1376c5;
    border-radius: 25px;
    text-transform: uppercase;
}

.post-slide .read-more:hover {
    background: #3498db;
    text-decoration: none;
    color: #fff;
}

.owl-controls .owl-buttons {
    text-align: center;
    margin-top: 20px;
}

.owl-controls .owl-buttons .owl-prev {
    background: #fff;
    position: absolute;
    top: -13%;
    left: 15px;
    padding: 0 18px 0 15px;
    border-radius: 50px;
    box-shadow: 3px 14px 25px -10px #92b4d0;
    transition: background 0.5s ease 0s;
}

.owl-controls .owl-buttons .owl-next {
    background: #fff;
    position: absolute;
    top: -13%;
    right: 15px;
    padding: 0 15px 0 18px;
    border-radius: 50px;
    box-shadow: -3px 14px 25px -10px #92b4d0;
    transition: background 0.5s ease 0s;
}

.owl-controls .owl-buttons .owl-prev:after,
.owl-controls .owl-buttons .owl-next:after {
    content: "<";
    font-family: FontAwesome;
    color: #333;
    font-weight: 900;
    font-size: 20px;
}

.owl-controls .owl-buttons .owl-next:after {
    content: ">";
}

@media only screen and (max-width:1280px) {
    .post-slide .post-content {
        padding: 0px 15px 25px 15px;
    }
}


.post-slide .post-title a {
    color: #232f3e;
}

.post-content ul li {
    color: rgb(0, 0, 0);
    font-size: 11px;
}

.owl-buttons {
    display: none;
}












/* Defines the width of the carousel and centers it on the page */
.slick-carousel {
    margin: 0 auto;
    width: 1000px;
}

/* The width of each slide */
.slick-slide {
    width: auto;
}

/* Color of the arrows */
.slick-next::before,
.slick-prev::before {
    color: turquoise;
}

img {
    width: 100%;
    height: 100%;
}

.carousel .carousel-control-prev-icon {
    /* change fill="currentColor" to %23fff to make it white  */
    background-image: url('data:image/svg+xml,<svg class="bi bi-camera" width="1em" height="1em" viewBox="0 0 20 20" fill="%23fff " xmlns="http://www.w3.org/2000/svg"><path d="M11 7c-1.657 0-4 1.343-4 3a4 4 0 014-4v1z"/><path fill-rule="evenodd" d="M16.333 5h-2.015A5.97 5.97 0 0011 4a5.972 5.972 0 00-3.318 1H3.667C2.747 5 2 5.746 2 6.667v6.666C2 14.253 2.746 15 3.667 15h4.015c.95.632 2.091 1 3.318 1a5.973 5.973 0 003.318-1h2.015c.92 0 1.667-.746 1.667-1.667V6.667C18 5.747 17.254 5 16.333 5zM3.5 7a.5.5 0 100-1 .5.5 0 000 1zm7.5 8a5 5 0 100-10 5 5 0 000 10z" clip-rule="evenodd"/><path d="M4 5a1 1 0 011-1h1a1 1 0 010 2H5a1 1 0 01-1-1z"/></svg>');
}

.carousel .carousel-control-next-icon {
    /* change fill="currentColor" to %23fff to make it white  */
    background-image: url('data:image/svg+xml,<svg class="bi bi-bootstrap-fill" viewBox="0 0 20 20" fill="%23fff" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" d="M6.002 2a4 4 0 00-4 4v8a4 4 0 004 4h8a4 4 0 004-4V6a4 4 0 00-4-4h-8zm1.06 12h3.475c1.804 0 2.888-.908 2.888-2.396 0-1.102-.761-1.916-1.904-2.034v-.1c.832-.14 1.482-.93 1.482-1.816 0-1.3-.955-2.11-2.543-2.11H7.063V14zm1.313-4.875V6.658h1.78c.974 0 1.542.457 1.542 1.237 0 .802-.604 1.23-1.764 1.23H8.375zm0 3.762h1.898c1.184 0 1.81-.48 1.81-1.377 0-.885-.65-1.348-1.886-1.348H8.375v2.725z" clip-rule="evenodd"/></svg>');
}


.card-body {
    align-items: start;
}

.counter-part ul li span {
    font-size: 44px;
    color: dark;
}






#main {
    display: flex;
    overflow: hidden;
    height: 100vh;
    width: 100%;
}

#main .part {
    flex: 1;
}

#main .part .section {
    width: 100%;
    height: 100vh;
    position: relative;
    overflow: hidden;
}

#main .part .section img {
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    position: absolute;
    left: var(--x);
    pointer-events: none;
}

.cursor {
    width: var(--size);
    height: var(--size);
    border-radius: 50%;
    background: white;
    position: absolute;
    z-index: 999;
    pointer-events: none;
    mix-blend-mode: difference;
}

.cursor-f {
    width: var(--size);
    height: var(--size);
    position: absolute;
    top: 0;
    left: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='47' height='47' viewBox='0 0 47 47' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M42.4202 42.4202C38.8403 46 33.3594 46 23.5 46C13.6406 46 8.15966 46 4.57983 42.4202C1 38.8403 1 33.3594 1 23.5C1 13.6406 1 8.15966 4.57983 4.57983C8.15966 1 13.6406 1 23.5 1C33.3594 1 38.8403 1 42.4202 4.57983C46 8.15966 46 13.6406 46 23.5C46 33.3594 46 38.8403 42.4202 42.4202Z' stroke='white'/%3E%3C/svg%3E%0A");
    background-size: cover;
    mix-blend-mode: difference;
    pointer-events: none;
    opacity: 0.5;
}

.buttons {
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
}

.buttons button {
    border: none;
    background-size: contain;
    background: url("data:image/svg+xml,%3Csvg width='10' height='29' viewBox='0 0 10 29' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M9 0V27L1 17.4857' stroke='white' stroke-width='2' /%3E%3C/svg%3E%0A") no-repeat;
    background-position: center;
    width: 10px;
    height: 30px;
    display: block;
    margin: 20px 0;
    padding: 0 15px;
    transition-duration: 0.6s;
}

.buttons button.next {
    transform: scaleY(-1);
}

.buttons button.prev:active {
    transform: translateY(8px);
}

.buttons button.next:active {
    transform: scaleY(-1) translateY(8px);
}

#main h1 {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    right: 0;
    margin: auto;
    z-index: 1;
    color: rgb(255, 255, 255);
    font-weight: 600;
    -webkit-text-stroke: 1px white;
    text-align: center;
    font-size: 5.6em;

    /* mix-blend-mode: overlay; */
    pointer-events: none;
}

.content {
    width: 90%;
    position: absolute;
    bottom: 20px;
    text-align: center;
    left: 0;
    right: 0;
    margin: auto;
    color: white;
    z-index: 99;
    font-size: 0.8em;
}

.content p {
    margin: 0.5em auto;
}

.content kbd {
    width: 15px;
    height: 15px;
    border: 1px solid white;
    display: inline-block;
    border-radius: 3px;
    font-size: 0.9em;
    vertical-align: text-top;
}

.content a {
    color: rgba(227, 227, 227, 0.78);
    text-decoration: none;
    border-bottom: 1px solid currentColor;
}

.content a:hover {
    padding-bottom: 1px;
}

.brand-section {
    background: url(./assets/home/brandback.webp);
    background-position: center;
    background-repeat: repeat-x;
    background-size: cover;
    background-attachment: fixed;
    padding-top: 100px;
    padding-bottom: 100px;
}

.logos-image {
    height: 100px;
    /* background:rgb(255, 255, 255);
    border:1px solid lightgray;
    border-radius:20px; */
    /* backdrop-filter: blur(20px); */
}

.logos-image img {
    object-fit: contain;
    padding-top: 10px;
    height: 80px;



}

.aboutus {
    margin-top: 120px;
}


input:focus {
    outline-offset: -2px;
}

.offcanvas-header {
    width: 100%;
}

.offcanvas-footer {
    width: 100%;
}


#submitsearch {
    border: 1px solid rgb(138, 134, 134);
    margin-left: -82px;
    padding: 5px;
    border-radius: 19px;
    cursor: pointer;
    padding-left: 10px;
    padding-right: 8px;
    padding-top: 4px;

    display: none;
    box-shadow: 0 0 1px black;
    margin-right: 110px;
}

#searchInput {
    width: 18%;

    border: 1px solid #000;
    border-radius: 30px;
    font-size: 16px;
    background-color: white;
    background-image: url('https://cdn2.iconfinder.com/data/icons/ios-7-icons/50/search-24.png');

    background-position: 10px 7px;
    background-repeat: no-repeat;
    padding: 8px 20px 8px 40px;
    -webkit-transition: width 0.8s ease-in-out;
    transition: width 0.8s ease-in-out;
    outline: none;
    opacity: 0.9;

}

.searchInputWrapper {
    position: relative;
    border: 1px solid lightgray;
    border-radius: 20px;
}

.searchInput {
    width: 100%;
    height: 2rem;
    padding: 0 1rem;
    border-radius: 2rem;
    border: none;
    transition: transform 0.1s ease-in-out;
}

::placeholder {
    color: #a1a1a1;
}

/* hide the placeholder text on focus */
:focus::placeholder {
    text-indent: -999px
}

.searchInput:focus {
    outline: 1px solid lightgray;
    transition: all 0.1s ease-in-out;
}

.searchInputWrapper .resultBox {
    padding: 0;
    opacity: 0;
    pointer-events: none;
    max-height: 280px;
    overflow-y: auto;
}

.searchInputWrapper.active .resultBox {
    padding: 10px 8px;
    opacity: 1;
    position: absolute;
    width: 100%;
    background: white;
    pointer-events: auto;
    border-radius: 20px;
    z-index: 9999;
}

.resultBox li {
    list-style: none;
    padding: 8px 12px;
    display: none;
    width: 100%;
    cursor: default;
    border-radius: 3px;
}

.searchInputWrapper.active .resultBox li {
    display: block;
}

.resultBox li:hover {
    background: #efefef;
}

a {
    text-decoration: none !important;
}

.searchInputWrapper .icon {
    position: absolute;
    right: 0px;
    top: 0px;
    height: 55px;
    width: 55px;
    text-align: center;
    line-height: 55px;
    font-size: 20px;
    color: #644bff;
    cursor: pointer;
}

.searchInputIcon {
    position: absolute;
    right: 0.8rem;
    top: 0.5rem;
    color: #a1a1a1;
    transition: all 0.1s ease-in-out;
}

.container:focus-within>.searchInputWrapper>.searchInputIcon {
    right: 0.2rem;
}

.footer-logo {
    width: 50%;
    height: 85px;
    object-fit: contain;
}



.singleproduct {
    padding-top: 70px;
    padding-bottom: 170px;
}


.offer-slide {
    width: 100%;
    height: 300px;
}

.offer-slide img {
    height: 200px !important;
}

.Ni-bgone {
    background-color: #ff4e00;
    background-image: linear-gradient(315deg, #ff4e00 0%, #ec9f05 74%);

}

.Ni-bgtwo {
    background-color: #2a2a72;
    background-image: linear-gradient(315deg, #2a2a72 0%, #009ffd 74%);
}

.Ni-bgthree {
    background-color: #1b8b00;
    background-image: linear-gradient(314deg, #1b8b00 0%, #a2d240 74%);
}

.offer-slide {
    width: 100%;
    height: 400px;
}

.offer-slide img {
    height: 400px !important;
    object-fit: center;
}

.text-cyan {
    color: #00e4ff;

}

.btn-cyan {
    background-color: #00e4ff;
    color: #000000;
    display: inline-block;
    /* background: #f4990b; */
    border-radius: 5px;
    color: #132246;
    padding: 6px 10px;
    font-weight: 300;
    font-size: 14PX;
    border: 0px;

}

.text-cyan :hover {
    color: #015869;
}

.likebutton {
    color: red !important;
    font-size: 25px;
    cursor: pointer;
    transition: 0.5s all ease-in-out;
}

.likebutton:hover {
    color: rgb(239, 239, 239) !important;
    font-size: 25px;
}

.likebutton:active {
    color: rgb(24, 209, 212) !important;
    font-size: 25px;
}

.submit-btn:hover {
    color: #1c1f23;
    background-color: #fff;
    border-color: #1a1e2147;
}

.services-button:hover {
    background-color: rgb(24, 209, 212) !important;
}

/* .carousel-inner{
    height: 537px !important;
  } */
/* .carousel-item{
    height: 100%;
  } */
.carousel-item img {
    height: 100%;
    object-fit: contain;

}

.features {
    background-color: #ffffff;

    padding: 20px;
}

.features img {
    width: 100%;
    height: 46px;
    object-fit: contain;
    filter: hue-rotate(103deg);
}

.features h6 {
    padding-top: 10px;
}

.header {
    color: black !important;
}

.btn {
    font-size: 13px !important;
}

.eye-view-icon {
    font-size: 22px;
}

.mini-cart {
    font-size: 12px;
    width: 27px;
    padding-right: 4px;
}

.head-button {
    border: 1px solid black;
}