@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&display=swap');

* {
  margin: 0 !important;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
  /*list-style: none;*/
  text-decoration: none;
  font-family: "Plus Jakarta Sans", sans-serif !important;
}

p {
  color: white;
}

a {
  text-decoration: none !important;
  color: white;
}

.navbg {
  background: rgba(0, 0, 0, 0.603);
  backdrop-filter: blur(5px);
}

.navbar-toggler {
  border: none !important;
  box-shadow: none !important;
}

.logo-img {
  width: 160px;
}

.container {
  min-width: 1600px;
}

.video-parent {
  width: 100%;
  height: 550px;
}

.hero-section {
  background: url('../img/herobg.webp');
  background-repeat: no-repeat;
  background-position: center;
  width: 100%;
  height: 550px;
}

.after-element {
  position: relative;
}

.after-element::after {
  content: "";
  background: white;
  width: 30%;
  height: 6px;
  position: absolute;
  bottom: 0;
  left: 0%;
  margin: -20px 0px;
}

.overly {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(0, 0, 0, 0.703);
  z-index: 1;
}

.text-overly {
  padding: 0px 10px;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 40px;
}

.blu-section {
  border-radius: 0px 0px 10px 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 10px;
  background: #0091cf;
  padding: 35px 20px;
}

.btn-section {
  display: flex;
  justify-content: center;
  gap: 20px;
  align-items: center;
}

.view-btn {
  font-size: 14px;
  background: white;
  white-space: nowrap;
  border: none;
  padding: 8px 20px;
  color: black;
  position: relative;
  transition: 0.5s ease;
  cursor: pointer;
  box-shadow: 0px 0px 0px white;
  transition: 0.3s ease-in-out;
}

.view-btn::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 0;
  background-color: #009cff;
  transition: 0.5s ease;
}

.view-btn:hover {
  z-index: 1;
  color: white;
  transition-delay: 0.5s;
  box-shadow: 3px 3px 0px white;
}

.view-btn:hover::before {
  width: 100%;
}

.view-btn::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 0;
  width: 100%;
  background-color: #009cff;
  transition: 0.4s ease;
  z-index: -1;
}

.view-btn:hover::after {
  height: 100%;
  transition-delay: 0.4s;
  color: aliceblue;
}

.vid-set {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.heading-1 {
  font-size: 4rem;
  color: white;
  line-height: 4.2rem;
  word-spacing: -2px;
  font-weight: 600;
}

.gift-set {
  position: absolute;
  top: 0px;
  right: 30px;
  animation: giftBox 2s infinite alternate-reverse;
}

@keyframes giftBox {
  0% {
    transform: rotate(17deg) scale(1);
  }

  100% {
    transform: rotate(25deg) scale(1.3);
  }
}

.decor-1 {
  position: absolute;
  top: -40px;
  right: 10px;
  z-index: 1;
  width: 80px;
}

.heroBox {
  height: 500px;
  min-width: 300px;
  position: relative;
}

.heroLine {
  width: 100%;
}

.placeholder-img {
  position: absolute;
  bottom: 70px;
  left: 50%;
  width: 70%;
  transform: translate(-50%, 0px);
  animation: rotating 5s linear infinite;
}

/*@keyframes rotating {*/
/*    0% {*/
/*        transform: translate(-50%, 0px) rotate(0deg);*/
/*    }*/

/*    100% {*/
/*        transform: translate(-50%, 0px) rotate(360deg);*/
/*    }*/
/*}*/

.heroTwo {
  transform: rotate(180deg);
}

.decor-2-set {
  position: absolute;
  bottom: 10px;
  left: 10px;
  width: 100px !important;
}

.decor-3 {
  position: absolute;
  right: 30px;
  top: -90px;
  width: 70px;
  animation: rotating2 15s linear infinite;
}

@keyframes rotating2 {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.input-set {
  width: 100%;
  border: none;
  background: transparent;
  padding: 10px 20px;
}

.input-set:focus {
  outline: none;
}

.search-set {
  position: absolute;
  justify-content: center;
  align-items: center;
  gap: 5px;
  top: 50%;
  right: 10px;
  transform: translate(0%, -50%);
  border: none;
  background: transparent;
}

.nav-tabs .nav-btns {
  border-bottom: 2px solid transparent !important;
  padding: 10px 20px;
}

.nav-tabs .nav-btns.active {
  border-bottom: 2px solid black !important;
}

.product-card {
  height: 290px;
  flex: none;
  border-radius: 15px 15px 0px 0px;
  border: 1.4px solid black;
  background: white;
  width: 340px;
  padding: 10px 0px;
  position: relative;
}

.product-card img {
  height: 200px;
  width: 100%;
  object-fit: contain;
  border-bottom: 1.4px solid black;
}

.product-card button {
  border: none;
  background: transparent;
  position: absolute;
  top: 10px;
  right: 10px;
}

.product-card p {
  font-size: 13px;
  color: black;
}

.product-card-2 {
  flex: none;
  overflow: hidden;
  border-radius: 5px 5px 0px 0px;
  border: 1.4px solid black;
  background: white;
  padding: 0px 0px 10px 0px;
  position: relative;
}

.product-card-2 img {
  min-height: 100px;
  max-height: 200px;
  width: 100%;
  object-fit: cover;
  border-bottom: 1.4px solid black;
}

.product-card-2 button {
  border: none;
  background: transparent;
  position: absolute;
  top: 10px;
  right: 10px;

}

.product-card-2 p {
  font-size: 13px;
  color: black;
}

.product-card-2 .tool-tip svg {
  width: 40px;
}

.tool-tip {
  transition: 0.3s ease-in-out;
  z-index:1;
}

.tool-tip:hover {
  transform: translateY(-4px) scale(1.05);
}

.buyBtn {
  white-space: nowrap;
  padding: 5px 10px;
  border: 1.5px solid black;
  border-radius: 10px;
  color: black !important;
  font-size: 14px;
  font-weight: 600;
}

.pagination-btn {
  font-size: 14px;
  font-weight: 700;
  padding: 5px 15px;
  border: 1.5px solid black;
  border-radius: 5px;
  background: transparent;
  white-space: nowrap;
}

.page-decor-set {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(0, -50%);
  width: 80px !important;
}

.bg-set {
  background: url('../img/gradient-bg.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.bg-set-2 {
  background: url('../img/about-bg.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 400px;
}

.input-set2:focus {
  outline: none;
}

.input-set2::placeholder {
  color: white;
}

.signUp-Btn {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 5px 15px;
  border: 1.5px solid white;
  color: white;
  border-radius: 5px;
  background: transparent;
  white-space: nowrap;
}

.drawer-set {
  max-width: 590px;
  height: 400px;
  padding: 30px 20px;
  overflow: hidden;
}

.drawer-set img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: 0.4s ease-in-out;
}

.drawer-set:hover img {
  transform:scale(1.3);
}

.decor-4 {
  position: absolute;
  left: 0;
  bottom: -60px;
  width: 50px !important;
}

.hoverSelect {
  border-radius: 10px;
  background: transparent;
  transition: 0.3s ease-in-out;
  cursor: default;
  padding: 10px 15px;
}

.hoverSelect:hover {
  padding: 10px 15px;
  border-radius: 10px;
  background: linear-gradient(93.5deg, #4DB2C4 -5.94%, #50B3A0 120.26%);
}

.hoverSelect:hover h5,
.hoverSelect:hover p {
  color: white !important;
}

.uk-slider-items li img {
  opacity: 0.4;
}

.suitcase-img {
  max-width: 400px;
  width: 100%;
}

/* .uk-panel {
    display: flex;
    justify-content: center;
    align-items: center !important;
} */

.testimonial-card {
  height: 250px;
  width: 100%;
  border: 2px solid white;
  border-radius: 20px;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  flex-direction: column;
  padding: 10px 20px;
  user-select:none;
}

.testimonial-card img {
  width: 50px;
}

.testimonial-card p {
  text-align: justify;
}

.faq-img {
  max-width: 500px;
  width: 100%;
}

.accordion-button:focus {
  box-shadow: none !important;
}

.accordion-button:not(.collapsed) {
  background: transparent !important;
  color: black !important;
  box-shadow: none !important;
}

.accordion-button::after {
  background-image: url('../img/plus.svg') !important;
  background-size: contain;
  background-repeat: no-repeat;
}

.accordion-item {
  border: none !important;
}

.video-box {
  height: 350px;
  max-width: 400px;
  width: 100%;
  position: relative;
}

.video-box video {
  width: 100%;
  height: 210px;
  aspect-ratio: 16/9;
  object-fit: cover;
  position: relative;
  filter: brightness(0.6);
}

.video-text {
  display: flex;
  justify-content: start;
  align-items: start;
  flex-direction: column;
  gap: 10px;
  padding: 10px 20px;
}

.video-box p {
  color: black;
  text-align: center;
}

.video-box h5 {
  font-weight: 600;
  text-align: center;
}

.play-btn {
  background: transparent;
  border: none;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -130%);
}

.video-box button {
  display: none;
  transition: 0.3s ease-in-out;
}

.video-box:hover button {
  display: block;
}

.footerLinks p {
  color: #1A202C;
}

.footerLinks a {
  display: block;
  color: #1A202C !important;
  font-weight: 600;
  padding: 6px 0px;
  font-size: 14px;
}

.copyright p,
.copyright a {
  color: #1A202C !important;
  font-size: 14px;
  font-weight: 600;
}

.product-btn-2 {
  padding: 10px 20px;
  border: 1.8px solid black;
  font-weight: 600;
  border-radius: 30px;
}

.product-btn-2 a {
  font-size: 14px;
  color: black !important;
}

.product-btn-2 a img {
  transition: 0.4s ease-in-out;
}

.product-btn-2:hover a img {
  transform: scale(1.2);
}

.uk-light .uk-dotnav>*>* {
  background: #525252 !important;
}

.uk-light .uk-dotnav>.uk-active>* {
  background: #ab1e14 !important;
}

.uk-margin {
  margin-bottom: 30px !important;
}

.tool-tip {
  position: relative;
}

.tool-tip::after {
  content: "Send Enquiry";
  color: white;
  font-weight: 600;
  background: #29a71a;
  padding: 6px 10px;
  border-radius: 20px;
  white-space: nowrap;
  font-size: 10px;
  position: absolute;
  top: 7px;
  left: -80px;
  z-index: 1;
  opacity: 0;
  pointer-events: none;
  transition: 0.3s ease-in-out;
}

.tool-tip:hover::after {
  opacity: 1;
  left: -90px;
}

.mob-rotate {
  transform: translate(-50%, 0px) rotate(180deg);
}

.offcanvas-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.offcanvas-body ul {
  margin-left: 0;
}

.offcanvas-body a {
  display: flex;
  justify-content: start;
  flex-direction: column;
  align-items: start;
  color: black !important;
  padding: 20px 0px;
  font-weight: 500;
  border-bottom: 1.5px solid black;
}

.overly-set {
  position: relative;
  overflow: hidden;
}

.overly-set::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.269);
  height: 100%;
  width: 100%;
}

.img-set {
  max-width: 400px;
  width: 100%;
}

.card-div {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.card-div img {
    height: 400px;
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    object-position: center;
}

.decor-5 img {
  width: 50px;
  position: absolute;
  bottom: 30px;
  right: 0;
}
.industry-tumb {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 220px;
  position: relative;
  overflow: hidden;
  background: #f0f0f0;
}

.industry-tumb img {
    width: 100% !important;
    max-height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    object-position: center;
    object-fit: cover !important;
    aspect-ratio: 4 / 3 !important;
    transition: 0.3s linear;
}


/*.industry-tumb img {*/
/*    width: 100% !important;*/
/*    max-height: 100%;*/
/*    position: absolute;*/
/*    top: 0;*/
/*    left: 0;*/
/*    object-position: center;*/
/*    object-fit: contain !important;*/
/*    aspect-ratio: 4 / 3 !important;*/
/*    transition: 0.3s linear;*/
/*    mix-blend-mode: darken;*/
/*}*/
    
.industry-tumb:hover img {
  transform: scale(1.1);
}


.product-card-new {
  max-width: 480px;
  width: 100%;
  position: relative;
  box-shadow: 0 2px 7px #dfdfdf;
  margin: 50px auto;
  background: #fafafa;
}

.badge {
  position: absolute;
  left: 0;
  top: 20px;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 700;
  background: red;
  color: #fff;
  padding: 7px 10px;
  z-index:1;
}

.product-tumb {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 220px;
  /*padding: 40px;*/
  padding:20px;
  background: #f0f0f0;
}

.product-tumb img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  aspect-ratio: 4/3;
  transition: 0.3s linear;
  mix-blend-mode: darken;
}

.product-tumb:hover img {
  transform: scale(1.1);
}
.height-set{
    height: 205px;
}
.product-details {
  padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    
}

.product-catagory {
  display: block;
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
  color: #ccc;
  margin-bottom: 5px !important;
}

.product-details h6 a {
  font-weight: 700;
  display: block;
  margin-bottom: 10px !important;
  text-transform: uppercase;
  color: #363636;
  text-decoration: none !important;
  transition: 0.3s;
  display: -webkit-box;
-webkit-line-clamp: 2;
-webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
  
}

.product-details h6 a:hover {
  color: #fbb72c;
}

.product-details p {
  font-size: 14px;
  line-height: 22px;
  margin-bottom: 10px !important;
  color: #999;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.product-bottom-details {
  overflow: hidden;
  border-top: 1px solid #eee;
  padding-top: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}

.product-bottom-details a,
.product-bottom-details div {
  flex: none;
}

.product-bottom-details a {
  font-size: 13px;
  font-weight: 500;
  border: 1.5px solid black;
  padding: 5px 10px;
  color: black !important;
  transition: 0.3s ease-in-out;
}

.product-bottom-details a:hover {
  color: #fbb72c !important;
}

.product-card-new {
  position: relative;
}

.product-card-new button {
  border: none;
  background: transparent;
  position: absolute;
  top: 15px;
  right: 15px;
}
.c-bttn__morph{
  width: 60px;
  fill: #29a71a !important;
}
.bottom-border{
    position:relative;
}
.bottom-border::after{
    content:'';
    width:60px;
    height:2.5px;
    background:black;
    position:absolute;
    bottom:-5px;
    left:0;
}
.gallery-img{
    transition:0.3s ease-in;
}
.gallery-img:hover{
    filter: brightness(0.5);
}
.page-link:focus{
    box-shadow:none !important;
}

.uk-slider-items.faded-img li img{
    aspect-ratio:1/1;
    width:120px;
    object-fit:contain;
    object-position:center;
}

.product_images li img{
    aspect-ratio:4/5;
    width:100%;
    object-fit:cover;
    border-radius:10px;
    user-select:none;
}

.product_images li video{
    background:#e7e5e5;
    aspect-ratio:4/5;
    width:100%;
    object-fit:contain;
    border-radius:10px;
    user-select:none;
}