@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;
    background-color: rgb(35, 35, 35);
}

.float-right {
  float: right;
}

.float-left {
  float: left;
}

/* --------------------------------------------------------------------------------------------------------------------------------- */


.hero-slider-section {
  width: 100%;
  height: 900px;
  overflow: hidden;
}

.hero-slider-section img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


/* ------------------------------------------------------------------------------------------------------------------------------------ */

.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: #14a6a3;
  border-radius: 0px;
  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: #14a6a3;
    color: #fff;
}

a.main-btn:hover {
  background-color: #000;
  color: #fff;
}

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;
  }
}


/* --------------------------------------------------------------------------------------------------------------------- */


.kitchen-cta {
  position: relative;
  width: 100%;
  height: 100%;
  padding: 180px 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;
  padding-left: 60px;
}

.kitchen-cta .content-wrapper h3 {
    font-size: 28px;
    line-height: 40px;
    text-transform: uppercase;
    font-weight: 400;
}

.kitchen-cta .content-wrapper h3 span {
  font-weight: 700;
  display: block;
}
.kitchen-cta .content-wrapper p {
    line-height: 24px;
    font-size: 16px;
    font-weight: 400;
}
.kitchen-cta .content-wrapper a {
  color: #14a6a3;
  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: #14a6a3;
}
a:hover{
  color: #14a6a3;
}

@media (max-width:992px) {
  .kitchen-cta .img-box img {
    object-position: center left;
  }
}

@media (max-width:568px) {
  .kitchen-cta {
    padding: 0px 0;
  }

.kitchen-cta .content-wrapper {
    padding: 30px 0;
    color: #fff;
    padding-left: 23px;
}

  .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: 22px;
    line-height: 36px;
    text-transform: uppercase;
    font-weight: 700;
}

}



/* --------------------------------------------------------------------------------------------------- */


.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: #14a6a3;
    border-radius: 0px;
    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: #000;
  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/nuomi/kitchen-storage.webp) no-repeat center;
  background-size: cover; */
  position: relative;
  overflow: hidden;
  text-align: center;
  background-color: #000;
}

/* .partner-cta-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgb(31 163 144 / 48%);
} */

.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(https://img.interiorcompany.com/interior/webproduct/437638506881857136434.png?aio=w-1200;) 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: #fff;
  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;
}


@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: #fff;
  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: #14a6a3;
  font-size: 20px;
}

.innerservice-header .heading h1 {
  color: #000;
  text-transform: uppercase;
  font-size: 56px;
  font-weight: 400;
}

.innerservice-header .heading h1 span {
  font-weight: 700;
}

.innerservice-header .content p.text {
  color: #000;
  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: #14a6a3;
  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: 600px;
}

.innerservice-header .right-content .img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


/* -------------------------------------------------------------------------------------------------------------------------------- */


.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: #14a6a3;
}

.product-section .product-box .title h4 {
  margin-bottom: 0;
  font-size: 20px;
  font-weight: 600;
  color: #14a6a3;
  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: #14a6a3;
    text-transform: capitalize;
    transition: all 0.4s;

  }
  .innerservice-header .right-content {
    position: relative;
    /* padding-left: 60px; */
    padding: 21px 8px;
}
}


/* -------------------------------------------------------------------------------------------------------------------------- */

.innerpage-title {
  padding: 360px 0 40px;
  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: 38px;
  font-weight: 700;
  text-transform: uppercase;
}




/* ------------------------------------------------------------------------------------------------------------------------ */


.innercollection-section {
  padding: 80px 0;
  position: relative;
  /* overflow: hidden; */
}

.innercontent-heading span.sub-title {
  text-transform: uppercase;
  color: #14a6a3;
  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: 14px;
  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: #14a6a3;
  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: 700px;
}

.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: 560px;
  left: 0;
  width: 100%;
  z-index: 1;
}

.innerpage-video-title h1 {
  color: #fff;
  text-transform: uppercase;
  font-size: 24px;
  font-weight: 700;
}

.innerpage-video-title span.tagline {
  text-transform: uppercase;
  font-weight: 700;
  font-size: 28px;
  color: rgba(255, 255, 255, 0.3);
}

.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;
  }

}

/* ----------------------------------------------------------------------------------------------------------------------- */

.modal-backdrop {
  background-color: rgba(0, 0, 0, 1);

}

.modal-backdrop.show {
  opacity: .8;
}

.video-modal .modal-dialog {
  min-width: 60%;
  z-index: 998;

}

.video-modal .modal-body {
  padding: 0;
  border: 1px solid #fff;
}

.video-modal .btn-close {
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  position: absolute;
  top: 10px;
  right: 10px;
  padding: 10px 10px;
  background-color: rgba(0, 0, 0, 0.6);
  width: fit-content;
  z-index: 1;
  text-transform: uppercase;
  font-weight: 700;
  color: #fff;
  opacity: 1;
}

.video-modal .video-box {
  width: 100%;
  height: 100%;
  overflow: hidden;

}

.video-modal .video-box video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: flex;
}


/* ----------------------------------------------------------------------------------------------------------------------------------- */
.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: auto;
    overflow: hidden;
    /* position: sticky; */
    top: 100px;
}

.productsingle-detail .img-box img {
    
    width: 564px;
    height: 705px;
    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;
}
/* //custom slider */


.slideshow-container {
  position: relative;
 max-width: 100%;
 height: 100vh;
  overflow: hidden;
 
  box-shadow: 0 0 40px rgba(0, 20, 60, 0.6);
}

.slidee {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 1.5s ease;
}

.slidee.active {
  opacity: 1;
  pointer-events: auto;
  z-index: 1;
}

.slidee img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.1);
  filter: grayscale(100%) contrast(1.2) brightness(0.85)
    drop-shadow(0 0 15px rgba(0, 80, 255, 0.15)) hue-rotate(200deg)
    saturate(1.2);
  transition: transform 7s ease, opacity 2s ease;
  will-change: transform, opacity;
}

/* hover zoom effect for desktop */
@media (hover: hover) and (pointer: fine) {
  .slidee.active img:hover {
    transform: scale(1.15) rotateZ(0.2deg);
  }
}

.overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 30, 70, 0.7),
    rgba(0, 10, 20, 0.2)
  );
  z-index: 1;
}

.caption {
  position: absolute;
  bottom: 40px;
  left: 40px;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(1.2rem, 3vw, 1.8rem);
  letter-spacing: 0.5px;
  opacity: 0;
  transform: translateY(10px);
  transition: all 1s ease 0.5s;
  z-index: 2;
  text-shadow: 0 0 15px rgba(0, 8, 49, 0.7);
}

.slidee.active .caption {
  opacity: 1;
  transform: translateY(0);
}

/* navigation */
.prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: #b0d4ff;
    font-size: 2rem;
    /* padding: 14px; */
    /* border-radius: 50%; */
    /* background: rgba(30, 50, 90, 0.15); */
    /* backdrop-filter: blur(4px); */
    transition: all 0.3s ease;
    opacity: 0.1;
    z-index: 3;
    user-select: none;
    box-shadow: 0 0 20px rgba(0, 100, 255, 0.1);
}
.prev:hover,
.next:hover {
  opacity: 0.5;
 
}

.prev {
  left: 15px;
}
.next {
  right: 15px;
}

/* indicator dots */
.dots-container {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 3;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active {
  background: rgba(255, 255, 255, 0.8);
  transform: scale(1.3);
}

.dot:hover {
  background: rgba(255, 255, 255, 0.6);
}

@media (max-width: 600px) {
  .caption {
    bottom: 20px;
    left: 20px;
    font-size: 1rem;
  }
  .prev,
  .next {
    font-size: 1.6rem;
    padding: 10px;
  }
  .slideshow-container {
    position: relative;
    max-width: 100%;
    aspect-ratio: 16/9;
    height: 650px;
}
}


/* //image content slider */
.containers {
  position: relative;
  overflow: hidden;
  width: 100vw;
  height: 100vh;
}
.sidebar {
    height: 100%;
    width: 40%;
    position: absolute;
    top: 0;
    left: 0;
    transition: transform 0.5s ease-in-out;
}

.sidebar > div {
    height: 100%;
    width: 100%;
    display: flex;
    padding: 40px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.sidebar h1 {
  font-size: 40px;
  margin-bottom: 10px;
  margin-top: -30px;
  text-align: center;
}

.main-slide {
    height: 100%;
    position: absolute;
    top: 0;
    left: 40%;
    width: 60%;
    transition: transform 0.5s ease-in-out;
}
.main-slide > div {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  height: 100%;
  width: 100%;
}

button {
  background-color: #fff;
  border: none;
  color: #aaa;
  cursor: pointer;
  font-size: 16px;
  padding: 15px;
}

button:hover {
  color: #222;
}

button:focus {
  outline: none;
}

.containers .controls button {
    position: absolute;
    left: 40%;
    top: 50%;
    z-index: 100;
}

.containers .controls .down-button {
  transform: translateX(-100%);
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
}

.containers .controls .up-button {
  transform: translateY(-100%);
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
}
@media (max-width: 600px) {
  .sidebar {
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    transition: transform 0.5s ease-in-out;
}
.main-slide {
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    transition: transform 0.5s ease-in-out;
}
.containers .controls button {
    position: absolute;
    left: 70%;
    top: 61%;
    z-index: 100;
}
.containers {
    position: relative;
    overflow: hidden;
    width: 100vw;
    height: 96vh;
}
}

label {
    display: inline-block;
    color: #14a6a3;
}
.form-control:focus {
    color: #212529;
    background-color: #fff;
    border-color: #14a6a3;
    outline: 0;
    box-shadow: 0 0 0 .25rem #14a6a3;
}

.page-item.active .page-link {
    z-index: 3;
    color: #fff;
    background-color: #14a6a3;
    border-color: #14a6a3;
}
.page-link {
    position: relative;
    display: block;
    color: #14a6a3;
    text-decoration: none;
    background-color: #fff;
    border: 1px solid #dee2e6;
    transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}
@media (min-width: 1080px) {
.ss {
    position: relative;
    inset: 0;
    background: linear-gradient(to top, #fff, #f5f5f53d);
    z-index: 1;
    padding-left: 140px;
}
}
 

/* Image */
.spec-image img {
    max-width: 100%;
    border-radius: 6px;
}

/* Table Style */
.spec-table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}



@media (max-width: 767px) {
    .spec-table-wrap {
        border: 1px solid #eee;
        border-radius: 8px;
    }
    .spec-table {
    min-width: 900px; /* prevents column squeeze */
}
}

.spec-table {
    background: #fff;
    border-radius: 6px;
    overflow: hidden;
}

.spec-table thead th {
    background: #c7d6de;
    color: #000;
    font-weight: 600;
    font-size: 14px;
    border: none;
    padding: 14px 16px;
}

.spec-table tbody td {
    font-size: 14px;
    padding: 14px 16px;
    border-top: 1px solid #e5e5e5;
}

.spec-table tbody tr:nth-child(even) {
    background: #f7f7f7;
}
/* accordins */


.feature-image img {
    width: 100%;
    border-radius: 6px;
    height: 700px;
    object-fit: cover;
}
/* Accordion Styling */
.feature-accordion .accordion-item {
    border: none;
    margin-bottom: 15px;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0,0,0,0.06);
}

.feature-accordion .accordion-button {
    background: #fff;
    font-weight: 700;
    font-size: 25px;
    color: #1a6a63;
    padding: 28px 29px;
    border-left: 4px solid #1a6a63;
}
.feature-accordion .accordion-button:not(.collapsed) {
    background: #f2f6f5;
    color: #1a6a63;
}

.feature-accordion .accordion-body {
    background: #fff;
    font-size: 14px;
    color: #555;
    padding: 18px 20px;
}
.info-cta-section {
    background: #efefef;
}
@media (max-width: 400px) {
  .feature-image img {
    
    height: 400px;
    object-fit: cover;
}
.productsingle-detail .img-box img {
    width: 564px;
    height: 405px;
    object-fit: cover;
}
.productsingle-detail .img-box2 img {
    width: 350px;
    height: 400px;
    margin: 5px;
    object-fit: cover;
}
.productsingle-detail .img-box3 img {
    width: 350px;
    padding: 19px;
   
}
}
.productsingle-detail .img-box2 img {
    width: 350px;
    padding: 19px;
    height: 400px;
    object-fit: cover;
}
.productsingle-detail .img-box3 img {
    width: 100%;
    padding: 19px;
  
}
/* Title */
.info-title {
    font-size: 36px;
    font-weight: 600;
    color: #444;
}

/* Icon boxes */
.info-box {
    display: inline-block;
    text-decoration: none;
    color: #4aa39a;
    transition: 0.3s ease;
}

.info-box i {
    font-size: 40px;
    margin-bottom: 8px;
    display: block;
}

.info-box span {
    display: block;
    font-size: 14px;
    letter-spacing: 1px;
    color: #666;
}

/* Hover */
.info-box:hover {
    transform: translateY(-4px);
    color: #1a6a63;
}

.info-box:hover span {
    color: #1a6a63;
}
.info-box svg {
    font-size: 30px;
}
.feature-showcase {
    background: #f3f4f5;
}

/* Divider line */
.divider-line {
    height: 1px;
    background: #cfcfcf;
    width: 100%;
}

/* Card */
.feature-card {
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-4px);
}

/* Image */
.feature-img img {
    width: 100%;
    border-radius: 6px;
    margin-bottom: 20px;
}

/* Content */
.feature-content h3 {
    font-size: 20px;
    letter-spacing: 1px;
    font-weight: 600;
    color: #2f3a35;
    margin-bottom: 10px;
}
.feature-content {
    padding: 20px 0px 20px 0px;
}
.feature-content p {
    font-size: 14px;
    color: #777;
    line-height: 1.7;
}
.product-desc-table {
    background: #f3f4f5;
}

/* Table base */
.desc-table {
    background: #fff;
    margin-bottom: 0;
    border-radius: 4px;
    overflow: hidden;
}

/* Header */
.desc-table thead th {
    background: #c9d8df;
    color: #333;
    font-weight: 600;
    padding: 14px 18px;
    border: none;
    font-size: 14px;
}

/* Body */
.desc-table tbody td {
    padding: 14px 18px;
    border-top: 1px solid #e5e5e5;
    font-size: 14px;
    color: #444;
}

/* Alternate row color */
.desc-table tbody tr:nth-child(even) {
    background: #f7f7f7;
}

/* Description column width */
.desc-table td:first-child {
    width: 55%;
}
/* .technologies-section {
    background: #f2f2f2;
} */

/* Title */
.tech-title {
    font-size: 32px;
    font-weight: 600;
    letter-spacing: 1px;
    color: #444;
}

/* Wrapper */
.tech-wrapper {
    position: relative;
}

/* Each item */
.tech-item {
    padding: 30px 25px;
    position: relative;
}

/* Vertical divider */
.tech-item:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 20%;
    height: 60%;
    width: 1px;
    background: #cfcfcf;
}

/* Icon circle */
.tech-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 20px;
    background: #666;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tech-icon svg {
    font-size: 50px;
}

/* Text */
.tech-item p {
    font-size: 14px;
    color: #666;
    line-height: 1.7;
}

/* Mobile */
@media (max-width: 991px) {
    .tech-item::after {
        display: none;
    }
}
.similar-product-slider .owl-nav button {
    position: absolute;
    top: -70px;
    right: 0;
    width: 40px;
    height: 40px;
    background: #000 !important;
    color: #fff !important;
    border-radius: 50%;
}

.similar-product-slider .owl-nav .owl-prev {
    right: 50px;
}

/* //category css */


.sectiom-slides {
  height: 100vh;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.main {
  position: relative;
  width: 100%;
  height: 100%;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
}

.itemm {
  width: 200px;
  height: 300px;
  list-style-type: none;
  position: absolute;
  top: 80%;
  transform: translateY(-50%);
  z-index: 1;
  cursor: pointer;
  background-size: cover;
  background-position-x: center;
  border-radius: 20px;
  box-shadow: 0 20px 30px rgba(255, 255, 255, 0.3) inset;
  transition: transform 0.1s, left 0.75s, top 0.75s, width 0.75s, height 0.75s;

  &:nth-child(1),
  &:nth-child(2) {
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    transform: none;
    border-radius: 0;
    box-shadow: none;
    opacity: 1;
  }

  &:nth-child(3) {
    left: 50%;
  }
  &:nth-child(4) {
    left: calc(50% + 220px);
  }
  &:nth-child(5) {
    left: calc(50% + 440px);
  }
  &:nth-child(6) {
    left: calc(50% + 660px);
    opacity: 0;
  }
}

.contentt {
  width: min(60vw, 480px);
  position: absolute;
  top: 50%;
  left: 3rem;
  transform: translateY(-50%);
  
  color: white;
  text-shadow: 0 3px 8px rgba(0, 0, 0, 0.5);
  opacity: 0;
  display: none;

 & .titlee {
    text-transform: uppercase;
    font-size: 3rem;
}

& .descriptionn {
    line-height: 1.7;
    margin: 1rem 0 1.5rem;
    font-size: 1.2rem;
}
  & button {
    width: fit-content;
    background-color: rgba(0, 0, 0, 0.1);
    color: white;
    border: 2px solid white;
    border-radius: 0.25rem;
    padding: 0.75rem;
    cursor: pointer;
  }
  button:hover {
    width: fit-content;
    background-color: #14a6a3;
    color: white;
    border: 1px solid white;
  transition: all 0.4s; 
    border-radius: 0.55rem;
    padding: 0.85rem;
    cursor: pointer;
  }
}

.itemm:nth-of-type(2) .contentt {
  display: block;
  animation: show 0.75s ease-in-out 0.3s forwards;
}

@keyframes show {
  0% {
    filter: blur(5px);
    transform: translateY(calc(-50% + 75px));
  }
  100% {
    opacity: 1;
    filter: blur(0);
  }
}

.navv {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  user-select: none;
  visibility: hidden;

  & .btn {
    background-color: rgba(255, 255, 255, 0.5);
    color: rgba(0, 0, 0, 0.7);
    border: 2px solid rgba(0, 0, 0, 0.6);
    margin: 0 0.25rem;
    padding: 0.75rem;
    border-radius: 50%;
    cursor: pointer;

    &:hover {
      background-color: rgba(255, 255, 255, 0.3);
    }
  }
}

@media (width > 650px) and (width < 900px) {
  .contentt {
    & .titlee {
      font-size: 1.7rem;
    }
    & .descriptionn {
      font-size: 0.9rem;
    }
    & button {
      font-size: 0.7rem;
    }
  }
  .itemm {
    width: 160px;
    height: 270px;

    &:nth-child(3) {
      left: 50%;
    }
    &:nth-child(4) {
      left: calc(50% + 170px);
    }
    &:nth-child(5) {
      left: calc(50% + 340px);
    }
    &:nth-child(6) {
      left: calc(50% + 510px);
      opacity: 0;
    }
  }
}

@media (width < 650px) {
  .contentt {
    & .titlee {
      font-size: 1.4rem;
    }
    & .descriptionn {
      font-size: 0.95rem;
    }
    & button {
      font-size: 0.9rem;
    }
  }
  .itemm {
    width: 130px;
    height: 220px;

    &:nth-child(3) {
      left: 50%;
    }
    &:nth-child(4) {
      left: calc(50% + 140px);
    }
    &:nth-child(5) {
      left: calc(50% + 280px);
    }
    &:nth-child(6) {
      left: calc(50% + 420px);
      opacity: 0;
    }
  }
}

.hero-slider-section {
    position: relative;
}

.hero-slider-section img {
    height: 100vh;
    object-fit: cover;
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    text-align: center;
    color: #fff;
    max-width: 700px;
    padding: 30px 40px;
    background: rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(6px);
    border-radius: 12px;
}

.hero-content h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 15px;
}

.hero-content p {
    font-size: 18px;
    margin-bottom: 25px;
}

.hero-content .btn {
    padding: 12px 30px;
    font-size: 16px;
}
.feature-content svg {
    height: 20px;
    width: 30px;
}