@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');



* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Montserrat", Arial, Helvetica, sans-serif !important;
  overflow-x: hidden;
  width: 100%;
  position: relative;
  font-size: 16px;
}

::-webkit-scrollbar {
  display: none;
}

.container {
  position: relative;
}


.display-none {
  display: none !important;
}

.display-block {
  display: block !important;
}

.pointer-cursor {
  cursor: pointer !important;
}

.container {
  position: relative;
  z-index: 2;
}

a {
  position: relative;
  text-decoration: none !important;
}


h1,
h2,
h3,
h4,
h5,
h6,
p {
  position: relative;
}

input[type='number']::-webkit-inner-spin-button {
  display: none;
}

.sticky-top {
  position: fixed !important;
  animation: fadeInDown 0.6s linear;
}

.float-right {
  float: right;
}

.float-left {
  float: left;
}

/* --------------------------------------------------------------------------------------------------------------------------------- */


.hero-slider-section {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.hero-slider-section img {
  width: 100%;
  height: 900px;
  object-fit: cover;
}

@media(max-width:1200px) {
  .hero-slider-section img {
    width: 100%;
    height: 680px;
    object-fit: cover;
  }
}

@media(max-width:768px) {
  .hero-slider-section img {
    width: 100%;
    height: 560px;
    object-fit: cover;
    object-position: center;
  }
}

/* ------------------------------------------------------------------------------------------------------------------------------------ */

.section-title h2 {
  font-size: 42px;
  font-weight: 700;
  text-transform: uppercase;
  color: #000;

}

.section-title p.text {
  width: 80%;
  font-size: 17px;
  color: #000;
  line-height: 30px;
}

.section-title p.text strong {
  font-weight: 700;
  text-transform: capitalize;
}

.section-title.text-center p.text {
  margin: 0 auto 20px;
}


a.main-btn {
  padding: 12px 30px;
  background-color: #12309d;
  border-radius: 50px;
  color: #fff;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  transition: all 0.4s;
}

a.main-btn.dark-bg {
  background-color: #fff;
  color: #12309d;
}

a.main-btn:hover {
  background-color: #000;
  color: #fff;
}

a.main-btn.dark-bg:hover {
  background-color: #fff;
  color: #000;
}

a.main-btn svg {
  transition: all 0.4s;
}

a.main-btn:hover svg {
  transform: translateX(6px);
}

@media (max-width:1200px) {
  .section-title p.text {
    width: 95%;
  }
}

@media (max-width:768px) {
  .section-title p.text {
    width: 100%;
    font-size: 16px;
  }

  .section-title h2 {
    font-size: 38px;
    font-weight: 700;
    text-transform: uppercase;
    color: #000;

  }
}

/* ---------------------------------------------------------------------------------------------------------------------- */

.collection-section {
  padding: 80px 0;
  position: relative;
}

.collection-section .item-box {
  position: relative;
  overflow: hidden;
  height: 440px;
  width: 100%;
  transition: all 0.4s;
}

.collection-section .item-box:hover {
  box-shadow: rgba(0, 0, 0, 0.19) 0px 10px 20px, rgba(0, 0, 0, 0.23) 0px 6px 6px;
}

.collection-section .item-box a {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
}

.collection-section .item-box .img-box {
  width: 100%;
  height: 100%;
}

.collection-section .item-box .img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(80%);
  transition: all 0.4s;
}

.collection-section .item-box:hover .img-box img {
  filter: brightness(60%);
  transform: scale(1.1);
}

.collection-section .item-box .title {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 10px 10px;
  width: 100%;
}

.collection-section .item-box .title h4 {
  color: #fff;
  font-weight: 400;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 22px;
  transition: all 0.4s;
}

.collection-section .item-box .title h4 svg {
  transition: all 0.4s;
}

.collection-section .item-box:hover .title h4 {
  transform: translateX(8px);
}

.collection-section .item-box .content {
  position: absolute;
  top: -10px;
  left: 0;
  padding: 30px 30px;
  background: linear-gradient(to bottom, #000, rgba(0, 0, 0, 0));
  transition: all 0.6s;
  opacity: 0;
  visibility: hidden;
}

.collection-section .item-box:hover .content {
  top: 0;
  opacity: 1;
  visibility: visible;
}

.collection-section .item-box .content p {
  color: #fff;
  font-size: 17px;
  line-height: 28px;
  letter-spacing: 1px;
}

@media (min-width:992px) and (max-width:1200px) {
  .collection-section .item-box {
    height: 360px;
  }

  .collection-section .item-box .content p {
    color: #fff;
    font-size: 16px;

  }

  .collection-section .item-box .content {
    padding: 20px 10px;
  }

  .collection-section .item-box .title h4 {
    font-size: 20px;
  }
}

@media (max-width:992px) {
  .collection-section .item-box {
    height: 360px;
    margin-bottom: 20px;
  }

  .collection-section .item-box .title h4 {
    font-size: 20px;
  }
}


/* --------------------------------------------------------------------------------------------------------------------- */

.about-section {
  padding: 80px 0;
  position: relative;
  background-color: #000;
  overflow: hidden;
}

.about-section span.tagline {
  color: #fff;
  text-transform: uppercase;
  display: inline-block;
  font-weight: 500;
  margin-bottom: 10px;
  font-size: 18px;
}

.about-section h2 {
  color: #fff;
  font-size: 46px;
  text-transform: uppercase;
  font-weight: 700;
}

.about-section p.text {
  color: #fff;
  line-height: 30px;
  letter-spacing: 1px;
  margin-top: 30px;
  margin-bottom: 30px;
}

.about-section .btn-group {
  margin-top: 30px;
}

.about-section .btn-group a {
  display: inline-block;
  padding: 8px 20px;
  background-color: #fff;
  color: #000;
  border: 2px solid #fff;
  text-transform: uppercase;
  font-weight: 600;
  transition: all 0.4s;
}

.about-section .btn-group a:nth-child(2n) {
  margin-left: 10px;
  background-color: #000;
  color: #fff;
}

.about-section .btn-group a:hover {
  background-color: #12309d;
  color: #fff;
  border-color: #12309d;
}

.about-section .right-content {
  padding-left: 40px;
}

.about-section .feature-box-wrapper {
  position: relative;
}

.about-section .feature-box-wrapper::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.2);
}

.about-section .feature-box-wrapper::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 1px;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.2);
}

.about-section .feature-box {
  text-align: center;
  padding: 40px 0;

}

.about-section .feature-box h4 {
  color: #fff;
  font-size: 20px;
  font-weight: 300;
}

.about-section .feature-box h4 span {
  font-size: 46px;
  font-weight: 700;
  display: inline-block;
  margin-right: 4px;
}

.about-section .feature-box p {
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  font-weight: 500;
}


@media (max-width:1200px) {

  .about-section span.tagline {
    font-size: 16px;
  }


  .about-section .right-content {
    padding-left: 10px;
  }

}

@media (max-width:992px) {
  .about-section h2 {
    color: #fff;
    font-size: 38px;
    text-transform: uppercase;
    font-weight: 700;
  }

  .about-section .right-content {
    padding-left: 0;
    margin-top: 40px;
  }

}

@media (max-width:568px) {

  .about-section .btn-group a {
    padding: 8px 10px;
  }

  .about-section .btn-group a:nth-child(2n) {
    margin-left: 4px;
  }

  .about-section .feature-box h4 span {
    font-size: 32px;
    font-weight: 500;
  }

  .about-section .feature-box p {
    font-size: 14px;
  }

  .about-section .feature-box h4 {
    color: #fff;
    font-size: 18px;
    font-weight: 300;
  }

}

/* --------------------------------------------------------------------------------------------------------------------- */


.top-product-section {
  padding: 80px 0 200px;
  position: relative;
  overflow: hidden;
}

.top-product-section .section-title span.sub-title {
  text-transform: uppercase;
  font-weight: 700;
  color: #12309d;

}

.top-product-section .product-box a {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
}

.top-product-section .product-box .img-box {
  width: 100%;
  height: 280px;
  overflow: hidden;
}

.top-product-section .product-box .img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.4s;
}

.top-product-section .product-box:hover .img-box img {
  transform: scale(1.1);
}

.top-product-section .product-box span.offer {
  position: absolute;
  top: 0;
  right: 0;
  padding: 4px 8px;
  text-transform: uppercase;
  font-weight: 700;
  background-color: #12309d;
  color: #fff;
  border-radius: 0 0 0 4px;
}

.top-product-section .product-box h4 {
  background-color: #12309d;
  margin-bottom: 0;
  color: #fff;
  padding: 14px 10px;
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
  transition: all 0.4s;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.top-product-section .product-box:hover h4 {
  background-color: #000;
  color: #fff;
}

.top-product-section .owl-nav button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);

}

.top-product-section .owl-nav button.owl-prev {
  left: 0;
}

.top-product-section .owl-nav button.owl-next {
  right: 0;
}

.top-product-section .owl-nav button svg {
  width: 20px;
  height: 20px;
  padding: 10px;
  border-radius: 50%;
  background-color: #fff;
  color: #12309d;
  transition: all 0.4s;

}

.top-product-section .owl-nav button svg:hover {
  transform: scale(1.2);
}

.top-product-section .owl-dots {
  text-align: center;
  margin-top: 40px;
  position: absolute;
  bottom: -80px;
  left: 50%;
  transform: translateX(-50%);
}

.top-product-section .owl-dots span {
  width: 12px;
  height: 12px;
  display: inline-block;
  background-color: rgba(0, 0, 0, 0.4);
  margin: 0 4px;
  border-radius: 50%;
  transition: all 0.4s;
}

.top-product-section .owl-dots .active span {
  width: 40px;
  border-radius: 50px;
  background-color: rgba(0, 0, 0, 1);
}

/* ------------------------------------------------------------------------------------------------------------------------ */

.kitchen-cta {
  position: relative;
  width: 100%;
  height: 100%;
  padding: 80px 0;
  overflow: hidden;
}

.kitchen-cta .img-box {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.kitchen-cta .img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.kitchen-cta.img-right .img-box img {
  object-position: center right;
}

.kitchen-cta .content-wrapper {
  padding: 80px 0;
  position: relative;
}

.kitchen-cta .content-wrapper h3 {
  font-size: 46px;
  line-height: 68px;
  text-transform: uppercase;
  font-weight: 400;
}

.kitchen-cta .content-wrapper h3 span {
  font-weight: 700;
  display: block;
}

.kitchen-cta .content-wrapper p {
  line-height: 28px;
  font-weight: 500;
}

.kitchen-cta .content-wrapper a {
  color: #12309d;
  display: flex;
  align-items: center;
  gap: 14px;
  font-weight: 600;
  text-transform: uppercase;

  transition: all 0.4s;
}

.kitchen-cta .content-wrapper a svg {
  transition: all 0.4s;
}

.kitchen-cta .content-wrapper a:hover svg {
  transform: translateX(6px);
}

.kitchen-cta .content-wrapper a:hover {
  color: #3863ff;
}

@media (max-width:992px) {
  .kitchen-cta .img-box img {
    object-position: center left;
  }
}

@media (max-width:568px) {
  .kitchen-cta {
    padding: 0px 0;
    position: relative;
  }

  .kitchen-cta::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to left, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.1));
    z-index: 1;
  }



  .kitchen-cta .img-box {
    width: 100%;
    height: 100%;
    position: absolute;
  }

  .kitchen-cta .img-box img {
    object-position: center left;
  }

  .kitchen-cta .content-wrapper h3 {
    font-size: 36px;
    line-height: 48px;
    text-transform: uppercase;
    font-weight: 400;
  }

}



/* --------------------------------------------------------------------------------------------------- */


.catalog-section {
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.catalog-section .left-content h2 {
  font-size: 42px;
  font-weight: 700;
  text-transform: uppercase;
  color: #000;
  margin-bottom: 20px;
}

.catalog-section .left-content p.text {
  line-height: 30px;
  color: #1d1d1d;
  margin-bottom: 30px;
}

.catalog-section a {
  padding: 14px 30px;
  background-color: #12309d;
  border-radius: 50px;
  color: #fff;
  text-transform: uppercase;
  display: flex;
  width: fit-content;
  margin-bottom: 30px;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  transition: all 0.4s;
}

.catalog-section a svg {
  transition: all 0.4s;
}

.catalog-section a:hover {
  background-color: #3863ff;
  box-shadow: rgba(0, 0, 0, 0.19) 0px 10px 20px, rgba(0, 0, 0, 0.23) 0px 6px 6px;
}

.catalog-section a:hover svg {
  transform: translateX(6px);
}

.catalog-section .img-box {
  position: relative;
  padding: 0 0 75% 0;
}

.catalog-section .img-box img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width:1200px) {
  .catalog-section a {
    margin-bottom: 25px;
  }
}

@media (max-width:568px) {
  .catalog-section .left-content h2 {
    font-size: 38px;
  }

}


/* ------------------------------------------------------------------------------------------------------ */


.partner-cta-section {
  padding: 80px 0;
  background: url(../img/background/partner-cta.webp) no-repeat center fixed;
  background-size: cover;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.partner-cta-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, #000, rgba(0, 0, 0, 0.5));
}

.partner-cta-section h4 {
  color: #fff;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 46px;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

@media (max-width:992px) {
  .partner-cta-section h4 {
    font-size: 38px;
  }
}

@media (max-width:568px) {
  .partner-cta-section h4 {
    font-size: 36px;
  }
}


/* ------------------------------------------------------------------------------------------------------------ */

.main-offer-cta {

  padding: 70px 0;
  position: relative;
  background: url(../img/background/offer-cta-bg.jpeg) no-repeat fixed center;
  background-size: cover;
  text-align: center;
}

.main-offer-cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, #000, rgba(0, 0, 0, 0.5));
}

.main-offer-cta span.offer {
  color: #fff;
  text-transform: uppercase;
  font-size: 20px;
  font-weight: 400;
  display: inline-block;
  margin-bottom: 20px;
}

.main-offer-cta h2 {
  color: #fff;
  text-transform: uppercase;
  font-size: 46px;
  font-weight: 300;
  margin-bottom: 25px;
}

.main-offer-cta h2 span {
  color: #0097b2;
  font-weight: 700;
}

.main-offer-cta p.text {
  color: rgba(255, 255, 255, 0.85);
  line-height: 30px;
  letter-spacing: 1px;
  font-size: 17px;
  margin-bottom: 26px;
}

.main-offer-cta p.text strong {
  text-transform: capitalize;
  font-weight: 600;
  color: #fff;
}

.main-offer-cta a.main-btn {
  border-radius: 2px;
  background-color: #fff;
  color: #000;
  border-color: #000;
  font-weight: 700;
}

@media (max-width:768px) {
  .main-offer-cta h2 {
    font-size: 38px;
  }

  .main-offer-cta span.offer {
    font-size: 18px;
  }

}

@media (max-width:568px) {
  .main-offer-cta h2 {
    font-size: 34px;
  }

  .main-offer-cta h2 span {
    font-weight: 600;
  }

  .main-offer-cta span.offer {
    font-size: 18px;
  }

}

/* -------------------------------------------------------------------------------------------------------------------------- */


.innerservice-header {
  padding: 200px 0 80px;
  background-color: #000;
  position: relative;
  overflow: hidden;
}

.innerservice-header .breadcrumb-box {
  margin-bottom: 30px;
}

.breadcrumb-box ul li {
  display: inline-block;
  margin: 0;
  padding: 0;
  font-size: 14px;
  font-weight: 600;
}

.breadcrumb-box ul li a {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-right: 1px;
  color: #fff;
  text-transform: capitalize;

}

.breadcrumb-box ul li.active {
  color: rgba(255, 255, 255, 0.75);
}

.breadcrumb-box ul li a:hover {
  text-decoration: underline !important;

}

.innerservice-header .heading {
  margin-bottom: 30px;
}

.innerservice-header .heading span.tagline {
  text-transform: uppercase;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.75);
  font-size: 20px;
}

.innerservice-header .heading h1 {
  color: #fff;
  text-transform: uppercase;
  font-size: 56px;
  font-weight: 400;
}

.innerservice-header .heading h1 span {
  font-weight: 700;
}

.innerservice-header .content p.text {
  color: #fff;
  line-height: 30px;
  letter-spacing: 1px;
}

.innerservice-header .content p.text span {
  font-weight: 600;
  text-transform: capitalize;
  color: #fff;
}

.innerservice-header .content ul li {
  color: #fff;
  margin-bottom: 10px;
  background-color: #111111;
  padding: 6px 14px;
  text-transform: capitalize;
  position: relative;
  transition: all 0.4s;
  font-weight: 700;
}

.innerservice-header .content ul li::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background-color: #12309d;
  transition: all 0.4s;
}

.innerservice-header .content ul li.active::before {
  width: 100%;
}

.innerservice-header .content ul li span {
  position: relative;
  pointer-events: none;
}

.innerservice-header .content ul li svg {
  margin-right: 6px;
}

.innerservice-header .right-content {
  position: relative;
  padding-left: 60px;
}

.innerservice-header .right-content .img-box {
  width: 100%;
  height: 460px;
}

.innerservice-header .right-content .img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width:1200px) {
  .innerservice-header .right-content {
    padding-left: 30px;
  }

  .innerservice-header .heading h1 {
    font-size: 48px;
  }

}

@media (max-width:992px) {
  .innerservice-header .right-content {
    padding-left: 0;
  }

  .innerservice-header .heading h1 {
    font-size: 38px;
  }
}

/* -------------------------------------------------------------------------------------------------------------------------------- */


.product-section {
  padding: 80px 0;
  position: relative;
}

.product-section .product-box {
  overflow: hidden;
  position: relative;
  transition: all 0.4s;
  margin-bottom: 30px;
}

.product-section .product-box:hover {
  box-shadow: rgba(0, 0, 0, 0.19) 0px 10px 20px, rgba(0, 0, 0, 0.23) 0px 6px 6px;
}

.product-section .product-box a {
  position: relative;
}

.product-section .product-box .img-box {
  width: 100%;
  height: 400px;
  overflow: hidden;
}

.product-section .product-box .img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.4s;
}

.product-section .product-box:hover .img-box img {
  transform: scale(1.1);
  filter: brightness(80%);
}

.product-section .product-box .title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 10px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  border-left: 1px solid rgba(0, 0, 0, 0.1);
  border-right: 1px solid rgba(0, 0, 0, 0.1);
  transition: all 0.4s;
  z-index: 1;
  position: relative;
}

.product-section .product-box:hover .title {
  background-color: #12309d;
}

.product-section .product-box .title h4 {
  margin-bottom: 0;
  font-size: 20px;
  font-weight: 600;
  color: #12309d;
  text-transform: capitalize;
  transition: all 0.4s;

}

.product-section .product-box:hover .title h4 {
  color: #fff;
}

.product-section .product-box .btn-icon {
  position: relative;
  display: flex;
  align-items: center;
}

.product-section .product-box .btn-icon::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 18px;
  height: 2px;
  width: 25px;
  background-color: rgba(0, 0, 0, 0.23);
  transition: all 0.4s;
}

.product-section .product-box:hover .btn-icon::before {
  background-color: #fff;
  width: 40px;
}

.product-section .product-box .btn-icon svg {
  width: 18px;
  height: 18px;
  color: rgba(0, 0, 0, 0.23);
  transition: all 0.4s;
}

.product-section .product-box:hover .btn-icon svg {
  color: #fff;
}

.product-section .product-box .content {
  position: absolute;
  top: -30px;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background: linear-gradient(to bottom, #000, rgba(0, 0, 0, 0.4));
  z-index: 0;
  opacity: 0;
  visibility: 0;
  transition: all 0.4s;
}

.product-section .product-box .content p {
  color: #fff;
  font-size: 18px;
  text-transform: uppercase;
  font-weight: 700;
  text-decoration: none;
}

.product-section .product-box .content p svg {
  margin-left: 5px;
  animation: iconMove 1.2s infinite ease-in;
}

@keyframes iconMove {
  0% {
    transform: translateX(0);
    opacity: 0;
  }

  50% {
    transform: translateX(8px) scale(1.1);
    opacity: .7;
  }

  100% {
    transform: translateX(12px);
    opacity: 1;
  }
}

.product-section .product-box:hover .content {
  top: 0;
  opacity: 1;
  visibility: visible;
}

@media (max-width:1200px) {
  .product-section .product-box .img-box {
    width: 100%;
    height: 320px;
    overflow: hidden;
  }
}

@media (max-width:568px) {
  .product-section .product-box .title h4 {
    margin-bottom: 0;
    font-size: 18px;
    font-weight: 600;
    color: #12309d;
    text-transform: capitalize;
    transition: all 0.4s;

  }
}


/* -------------------------------------------------------------------------------------------------------------------------- */

.innerpage-title {
  padding: 250px 0 100px;
  position: relative;
  background: url(https://www.higoldeurope.eu/wp-content/uploads/2025/04/BL2.0-1.jpg) no-repeat center;
  background-size: cover;
  overflow: hidden;
}

.innerpage-title::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, #000, rgba(0, 0, 0, 0.4));
}

.innerpage-title .breadcrumb-box {
  margin-bottom: 20px;
  position: relative;
}

.innerpage-title .breadcrumb-box ul li {
  display: inline-block;
  margin: 0;
  padding: 0;
  font-size: 14px;
  font-weight: 600;
}

.innerpage-title .breadcrumb-box ul li a {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-right: 1px;
  color: #fff;
  text-transform: capitalize;

}

.innerpage-title .breadcrumb-box ul li.active {
  color: rgba(255, 255, 255, 0.75);
}

.innerpage-title .breadcrumb-box ul li a:hover {
  text-decoration: underline !important;
}

.innerpage-title h1 {
  color: #fff;
  font-size: 46px;
  font-weight: 700;
  text-transform: uppercase;
}




/* ------------------------------------------------------------------------------------------------------------------------ */


.innercollection-section {
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.innercontent-heading span.sub-title {
  text-transform: uppercase;
  color: #12309d;
  font-size: 20px;
  font-weight: 700;
}

.innercontent-heading h2 {
  text-transform: uppercase;
  font-size: 56px;
  font-weight: 700;
}

.innercontent-heading p.text {
  font-size: 17px;
  color: #1d1d1d;
  line-height: 30px;
}

.innercontent-heading p.text span {
  font-weight: 600;
}




.innercollection-section .item-box {
  position: relative;
  overflow: hidden;
  height: 400px;
  width: 100%;
  transition: all 0.4s;
  margin-bottom: 30px;
}

.innercollection-section .item-box:hover {
  box-shadow: rgba(0, 0, 0, 0.19) 0px 10px 20px, rgba(0, 0, 0, 0.23) 0px 6px 6px;
}

.innercollection-section .item-box a {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
}

.innercollection-section .item-box .img-box {
  width: 100%;
  height: 100%;
}

.innercollection-section .item-box .img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(80%);
  transition: all 0.4s;
}

.innercollection-section .item-box:hover .img-box img {
  filter: brightness(60%);
  transform: scale(1.1);
}

.innercollection-section .item-box .title {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 10px 10px;
  width: 100%;
}

.innercollection-section .item-box .title h4 {
  color: #fff;
  font-weight: 400;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 22px;
  transition: all 0.4s;
}

.innercollection-section .item-box .title h4 svg {
  transition: all 0.4s;
}

.innercollection-section .item-box:hover .title h4 {
  transform: translateX(8px);
}

.innercollection-section .item-box .content {
  position: absolute;
  top: -30px;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: linear-gradient(to bottom, #000, rgba(0, 0, 0, 0.2));
  transition: all 0.4s;
  opacity: 0;
  visibility: hidden;
}

.innercollection-section .item-box:hover .content {
  opacity: 1;
  visibility: visible;
  top: 0;
}

.innercollection-section .item-box .content p.btn-link {
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 0;
  font-weight: 700;
  padding: 4px 10px;
  text-decoration: none;
  margin-top: 5px;
  border-radius: 2px;
}

@media (max-width:1200px) {
  .innercollection-section .item-box {
    position: relative;
    overflow: hidden;
    height: 320px;
  }

}

@media (max-width:768px) {
  .innercontent-heading h2 {
    font-size: 46px;
  }

}

@media (max-width:568px) {
  .innercontent-heading h2 {
    font-size: 38px;
  }

}

/* ---------------------------------------------------------------------------------------------------------- */
.cta-box {
  padding: 40px 40px;
  text-align: center;
  position: relative;
}

.cta-box span.tagline {
  text-transform: uppercase;
  font-weight: 600;
  color: #12309d;
  font-size: 20px;
}

.cta-box h3 {
  text-transform: uppercase;
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 16px;
}

.cta-box p.text {
  margin-bottom: 26px;
  font-size: 18px;
  color: #1d1d1d;
  line-height: 32px;
  width: 80%;
  margin: 0 auto 26px;
}

.cta-box p.text span {
  font-weight: 500;
  text-transform: capitalize;
}


/* ---------------------------------------------------------------------------------------------------------------------------------- */



.innerpage-video-title {
  position: relative;
  overflow: hidden;
  height: 860px;
}

.innerpage-video-title .video-box {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.innerpage-video-title .video-box .thumbnail {
  width: 100%;
  height: 100%;
  position: relative;
}

.innerpage-video-title .video-box .thumbnail::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, #000, rgba(0, 0, 0, 0));
  z-index: 1;
}

.innerpage-video-title .video-box .thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(75%);
}

.innerpage-video-title .content {
  position: absolute;
  bottom: 60px;
  left: 0;
  width: 100%;
}

.innerpage-video-title .breadcrumb-box {
  position: absolute;
  top: 160px;
  left: 0;
  width: 100%;
  z-index: 1;
}

.innerpage-video-title h1 {
  color: #fff;
  text-transform: uppercase;
  font-size: 66px;
  font-weight: 700;
}

.innerpage-video-title span.tagline {
  text-transform: uppercase;
  font-weight: 700;
  font-size: 28px;
  color: #0097b2;
}

.innerpage-video-title .btn-group {
  margin-top: 20px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.innerpage-video-title .btn-group button {
  background: transparent;
  border: none;
  padding: 0;
}

.innerpage-video-title .btn-group button svg {
  width: 30px;
  height: 30px;
  padding: 20px;
  background-color: #fff;
  border: 3px solid #fff;
  color: #000;
  border-radius: 50%;
  animation: boxShadowAnime 1s infinite linear;
}


/* Box shadow animation */
@keyframes boxShadowAnime {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.1);
  }

  50% {
    box-shadow: 0 0 2px 5px rgba(255, 255, 255, 0.2);
  }

  100% {
    box-shadow: 0 0 4px 8px rgba(255, 255, 255, 0.3);
  }
}

.innerpage-video-title .btn-group a {
  color: #fff;
  padding: 10px 20px;
  border: 2px solid #fff;
  border-radius: 50px;
  text-transform: uppercase;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background-color: rgba(0, 0, 0, 0.7);
  transition: all 0.4s;
  box-shadow: rgba(0, 0, 0, 0.7) 0px 5px 15px;
}

.innerpage-video-title .btn-group a svg {
  transition: all 0.4s;
}

.innerpage-video-title .btn-group a:hover {
  background-color: #fff;
  color: #000;
}

.innerpage-video-title .btn-group a:hover svg {
  transform: translateX(5px);
}


@media (max-width:1200px) {
  .innerpage-video-title .content {
    padding: 300px 0 180px;

  }
}

@media (max-width:992px) {
  .innerpage-video-title .content {
    padding: 260px 0 100px;

  }
}

@media (max-width:568px) {
  .innerpage-video-title .content {
    padding: 220px 0 80px;

  }

  .innerpage-video-title h1 {
    font-size: 46px;
  }

}

/* ----------------------------------------------------------------------------------------------------------------------- */


/* ----------------------------------------------------------------------------------------------------------------------------------- */
.productsingle-detail {
  padding: 80px 0;
  position: relative;
}

.productsingle-detail h2.title {
  color: #000;
  text-transform: capitalize;
  font-weight: 700;

  margin-bottom: 20px;
  font-size: 38px;
}

.productsingle-detail p.text {
  font-size: 17px;
  color: rgba(0, 0, 0, 0.7);
  line-height: 30px;
}

.productsingle-detail p.text span {
  color: rgba(0, 0, 0, 0.7);
  font-weight: 500;
  text-transform: capitalize;
}

.productsingle-detail p.text strong {
  text-transform: capitalize;
  font-weight: 600;
  color: rgba(0, 0, 0, 0.8);
}

.productsingle-detail p.text a {
  color: #111111;
  text-decoration: underline !important;
  font-weight: 600;
  text-transform: capitalize;
}

.productsingle-detail h6 {
  font-weight: 600;
  text-transform: capitalize;
  font-size: 22px;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.productsingle-detail h6::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 2px;
  background-color: #111111;
}

.productsingle-detail ul.feature-list li {
  margin-bottom: 10px;
  color: rgba(0, 0, 0, 0.6);
  font-size: 17px;
  font-weight: 500;
}

.productsingle-detail ul.feature-list li strong {
  font-weight: 600;
  text-transform: capitalize;
  color: rgba(0, 0, 0, 0.8);
}

.productsingle-detail ul.feature-list li:hover {
  color: #000;
}

.productsingle-detail ul.feature-list li:hover strong {
  color: #000;
}

.productsingle-detail .img-box {
  width: 100%;
  height: 500px;
  overflow: hidden;
  position: sticky;
  top: 100px;
}

.productsingle-detail .img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


.popular-search-box {
  padding: 20px 0;
  position: relative;
  margin-top: 40px;
  border-top: 2px solid rgba(0, 0, 0, 0.1);
}

.popular-search-box h4 {
  text-transform: capitalize;
  font-weight: 700;
  font-size: 20px;
}

.popular-search-box h4 img {
  width: 66px;
}

.popular-search-box p.text {
  font-size: 17px;
  color: rgba(0, 0, 0, 0.7);
  line-height: 30px;
}

/* -------------------------------------------------------------------------------------------------------------------- */

.product-gallery {
  padding: 80px 0;
  position: relative;
  background-color: rgba(0, 0, 0, 0.1);
}

.product-gallery .img-slider-navigation {
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 10px;
}

.product-gallery .swiper-button-prev {
  position: relative;
  top: 0;
  margin-top: 0;
  right: 0;
  left: 0;
  width: auto;
}

.product-gallery .swiper-button-prev::after {
  display: none;
}

.product-gallery .swiper-button-next {
  position: relative;
  top: 0;
  margin-top: 0;
  right: 0;
  left: 0;
  width: auto;
}

.product-gallery .swiper-button-next::after {
  display: none;
}

.product-gallery .img-slider-navigation svg {
  width: 30px;
  height: 30px;
  padding: 16px;
  background-color: rgba(255, 255, 255, 0.75);
  border-radius: 50%;
  color: #000;
}

.product-gallery .img-box {
  width: 100%;
  height: 400px;
  overflow: hidden;
  position: relative;
}

.product-gallery .img-box a {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
}

.product-gallery .img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: opacity(.5);
  transition: all 0.4s;
}

.product-gallery .img-box .icon {
  position: absolute;
  top: 50%;
  right: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: all 0.4s;
}

.product-gallery .img-box:hover .icon {
  opacity: 1;
}

.product-gallery .img-box .icon svg {
  width: 16px;
  height: 16px;
  color: #fff;
  z-index: 2;
}

.product-gallery .swiper-slide-active .img-box img {
  filter: opacity(1);
}

.product-gallery .img-box:hover img {
  filter: opacity(1);
  transform: scale(1.1);
}

@media (max-width:1200px) {
  .product-gallery .img-box {
    width: 100%;
    height: 300px;
    overflow: hidden;
  }
}

/* ---------------------------------------------------------------------------------------------------------------------------------- */


.innercontact-page {
  padding: 80px 0;
  position: relative;
}

.innercontact-page .item-box {
  margin-bottom: 30px;
  position: relative;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  padding-bottom: 20px;
}

.innercontact-page h6 {
  text-transform: uppercase;
  font-weight: 700;
  font-size: 22px;
  margin-bottom: 0;
}

.innercontact-page h6 svg {
  width: 14px;
  height: 14px;
  padding: 8px;
  border-radius: 50%;
  border: 2px solid #1d1d1d;
}

.innercontact-page .item-box p.text {
  font-weight: 600;
  color: rgba(0, 0, 0, 0.4);
}

.innercontact-page .item-box a {
  display: flex;
  margin-bottom: 10px;
  gap: 10px;
  font-size: 20px;
  font-weight: 600;
  color: #000;
}

.innercontact-page .item-box a svg {
  width: 14px;
  height: 14px;
  padding: 6px;
  border: 2px solid #1d1d1d;
  border-radius: 50%;
}

.innercontact-page .item-box ul li {
  text-transform: capitalize;
  font-weight: 500;
  color: rgba(0, 0, 0, 0.6);
}

.innercontact-page .contact-form {
  padding-left: 40px;
}

.innercontact-page .form-container {
  padding: 30px;
  border-radius: 10px;
  background-color: #000;

}

.innercontact-page .form-container h4 {
  color: #fff;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 30px;

}

.innercontact-page .form-container .form-group {
  margin-bottom: 20px;
}

.innercontact-page .form-container label {
  text-transform: uppercase;
  color: #fff;
  font-weight: 400;
  margin-bottom: 5px;
}

.innercontact-page .form-container .form-control {
  padding: 10px 20px;
  border-radius: 0;
  box-shadow: none;
  color: #000;
}

.innercontact-page .form-container button {
  padding: 6px 16px;
  background-color: #fff;
  color: #000;
  text-transform: uppercase;
  font-weight: 600;
  border-radius: 0;
  border: 2px solid #fff;
  box-shadow: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 17px;
  transition: all 0.4s;
}

.innercontact-page .form-container button:hover {
  background-color: #000;
  color: #fff;
}


@media (max-width:992px) {
  .innercontact-page .contact-form {
    padding-left: 0;
  }
}

@media (max-width:568px) {
  .innercontact-page .form-container {
    padding: 30px 10px;
    border-radius: 10px;
    background-color: #000;

  }
}


/* -------------------------------------------------------------------------------------------------- */

.popup-modal .modal-content {
  background-color: #000;
  border: 1px solid rgba(255, 255, 255, 0.3);

}

.popup-modal .btn-close {
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  position: absolute;
  top: 10px;
  right: 10px;
  padding: 1px 3px;
  font-size: 14px;
  background-color: rgba(0, 0, 0, 0.6);
  width: fit-content;
  z-index: 1;
  text-transform: uppercase;
  font-weight: 700;
  color: #fff;
  opacity: 1;
}

.popup-modal h4 {
  color: #fff;
  text-transform: uppercase;
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 22px;
  font-weight: 700;
}

.popup-modal .form-group {
  margin-bottom: 16px;
}

.popup-modal label {
  color: #fff;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 6px;
}

.popup-modal .form-control {
  padding: 4px 14px;
  border-radius: 0;
  box-shadow: none;
  border: none;
}

.popup-modal button {
  border-radius: 0;
  box-shadow: none;
  border: none;
  background-color: #fff;
  color: #000;
  font-weight: 600;
  text-transform: uppercase;
}

/* ------------------------------------------------------------------------------------------------------------------------ */

.inner-about .feature-box {
  text-align: center;
  padding: 40px 0;
  border: 2px solid rgba(255, 255, 255, 0.1);




}

.inner-about .feature-box h4 {
  color: #0097b2;
  font-size: 20px;
  font-weight: 700;
}

.inner-about .feature-box h4 span {

  font-size: 46px;
  font-weight: 700;
}

.inner-about .feature-box p {
  text-transform: uppercase;
  color: #fff;
}

@media (max-width:1200px) {
  .inner-about .feature-box h4 span {

    font-size: 38px;
    font-weight: 700;
  }

  .inner-about .feature-box p {
    text-transform: uppercase;
    color: #fff;
    font-size: 14px;
  }
}



/* -------------------------------------------------------------------------------------------------------------------- */


.team-section {
  padding: 80px 0;
  position: relative;
  overflow: hidden;
  background-color: rgba(0, 0, 0, 0.1);
}

.team-section .item-box {
  position: relative;
  width: 100%;
  height: 400px;
  overflow: hidden;
}

.team-section .item-box .img-box {
  width: 100%;
  height: 100%;
  position: relative;
}

.team-section .item-box .img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
}
.team-section .item-box p{
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  text-transform: uppercase;
  font-weight: 700;
  padding: 6px 10px;
  width: 80%;
  background-color: #1d1d1d;
  color: #fff;
  transition: all 0.4s;
}
.team-section .item-box:hover p{
  bottom: 15px;
}