.hero-section {
  background: #eceff2;
}

.hero-swiper {
  position: relative;
}

.hero-swiper .swiper-slide {
  height: auto;
}

.hero-slide {
  align-items: center;
  background-position: center;
  background-size: cover;
  display: flex;
  min-height: clamp(460px, 44vw, 720px);
  position: relative;
}

.hero-slide::before {
  /*background: linear-gradient(90deg, rgba(245, 247, 250, .86) 0%, rgba(245, 247, 250, .42) 36%, rgba(245, 247, 250, 0) 72%);*/
  content: "";
  inset: 0;
  position: absolute;
}

.hero-slide-alt::before {
  background: linear-gradient(90deg, rgba(0, 0, 0, .62), rgba(0, 0, 0, .2) 56%, rgba(0, 0, 0, .1));
}

.hero-copy {
  max-width: 600px;
  padding: 70px 0 110px;
  position: relative;
  z-index: 1;
}

.hero-copy .eyebrow {
  color: var(--brand-dark);
  display: inline-block;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0;
  margin-bottom: 14px;
  text-transform: uppercase;
}

.hero-copy h1,
.hero-copy h2 {
  color: #050505;
  font-size: clamp(3rem, 7vw, 4rem);
  font-weight: 900;
  line-height: .9;
  margin: 0 0 18px;
}

.hero-slide-alt .hero-copy h2,
.hero-slide-alt .hero-copy .lead,
.hero-slide-alt .hero-copy p {
  color: #fff;
}

.hero-copy .lead {
  color: #111;
  font-size: clamp(1.5rem, 3vw, 2.8125rem);
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 28px;
}

.hero-copy p:not(.lead) {
  color: #42464c;
  font-size: 1.125rem;
  line-height: 1.65;
  margin-bottom: 36px;
  max-width: 560px;
}

.btn {
  border-radius: 4px;
  font-weight: 700;
  text-transform: uppercase;
}

.btn-brand {
  background: var(--brand);
  border-color: var(--brand);
  color: #fff;
  padding: 13px 0 13px 28px;
}

.btn-brand:hover,
.btn-brand:focus {
  background: var(--brand-dark);
  border-color: var(--brand-dark);
  color: #fff;
}

.btn-dark {
  background: var(--dark);
  border-color: var(--dark);
}

.btn-dark:hover,
.btn-dark:focus {
  background: var(--brand);
  border-color: var(--brand);
}

.btn-arrow {
  display: inline-flex;
  overflow: hidden;
}

.btn-arrow i {
  align-items: center;
  background: rgba(0, 0, 0, .82);
  display: inline-flex;
  justify-content: center;
  margin: -13px 0 -13px 18px;
  min-width: 48px;
  transition: background .25s ease, transform .25s ease;
}

.btn-sm.btn-arrow i {
  margin: -6px 0 -6px 14px;
  min-width: 36px;
}

.btn-arrow:hover i {
  background: #111;
  transform: translateX(4px);
}

.hero-pagination {
  bottom: 24px;
  left: 0;
  position: absolute;
  right: 0;
  text-align: center;
  z-index: 3;
}

.hero-pagination .swiper-pagination-bullet {
  background: #fff;
  border-radius: 50%;
  height: 13px;
  margin: 0 6px !important;
  opacity: 1;
  width: 13px;
}

.hero-pagination .swiper-pagination-bullet-active {
  background-color: var(--brand);
}

.orange-band {
  background: var(--brand);
  color: #fff;
  padding: 28px 0;
}

.orange-band h2 {
  font-size: clamp(1.75rem, 3vw, 2.625rem);
  font-weight: 900;
  margin: 0;
}

.orange-band p {
  font-size: 1rem;
  margin: 0;
  opacity: .86;
}

.section {
  padding: 78px 0;
}

.product-section {
  background:
    /*linear-gradient(135deg, rgba(255, 255, 255, .92), rgba(255, 255, 255, .9)),*/
    url("../images/products-strip.jpg") center / cover;
}

.product-row {
  position: relative;
}

.product-slider {
  position: relative;
}

.product-swiper {
  padding: 12px 4px 34px;
}

.product-track {
  align-items: stretch;
  display: flex;
}

.product-slide {
  height: auto;
}

.product-slider-btn {
  align-items: center;
  background: #222;
  border: 0;
  border-radius: 50%;
  box-shadow: 0 14px 34px rgba(0, 0, 0, .16);
  color: #fff;
  display: inline-flex;
  height: 48px;
  justify-content: center;
  opacity: .8;
  position: absolute;
  top: 42%;
  transform: translateY(-50%);
  transition: background .25s ease, opacity .25s ease, transform .25s ease;
  width: 48px;
  z-index: 3;
}

.product-slider-btn:hover,
.product-slider-btn:focus {
  background: var(--brand);
  opacity: .8;
  transform: translateY(-50%) scale(1.08);
}

.product-slider-btn.swiper-button-disabled,
.product-slider-btn:disabled {
  cursor: default;
  opacity: .8;
}

.product-slider-btn.swiper-button-disabled:hover,
.product-slider-btn:disabled:hover {
  background: #222;
  opacity: .8;
  transform: translateY(-50%);
}

.product-slider-prev {
  left: -24px;
}

.product-slider-next {
  right: -24px;
}

.product-card {
  background: #f5f5f5;
  border: 1px solid var(--line);
  border-radius: 6px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, .05);
  height: 100%;
  overflow: hidden;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}

.featured-products .product-card img{
  aspect-ratio: 5 / 5;
}

.product-card:hover {
  border-color: rgba(246, 160, 0, .45);
  box-shadow: var(--shadow);
  transform: translateY(-10px);
}
.product-card .img-box{overflow: hidden}
.product-card img {
  aspect-ratio: 4 / 4;
  display: block;
  object-fit: cover;
  transition: transform .45s ease;
  width: 100%;
}



.product-card:hover img {
  transform: scale(1.06);
}

.product-card h3 {
  color: #383838;
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 6px;
  width: 100%;overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.product-card p {
  color: var(--muted);
  font-size: .9rem;
  line-height: 1.5;
  margin: 0;display: -webkit-box;overflow: hidden;
  -webkit-line-clamp:2;text-overflow: ellipsis; -webkit-box-orient: vertical;
  margin-bottom: .3rem;
}
.pro-title{padding: 1rem}
.about-section {
  background: url("../images/aboutbg.jpg") right center / cover no-repeat;
  min-height: 620px;
  overflow: hidden;
  position: relative;
}

.about-section::before {
  background: rgba(246, 160, 0, .2);
  content: "";
  inset: 0 50% 0 0;
  position: absolute;
  z-index: 0;
}

.about-section::after {
  background: linear-gradient(90deg, rgba(246, 160, 0, .18), rgba(0, 0, 0, .08));
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
  z-index: 0;
}

.about-section .container {
  min-height: 620px;
  position: relative;
  z-index: 1;
}

.about-copy {
  align-items: flex-start;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: min(680px, 50%);
  min-height: 620px;
  padding: 80px 15px 80px 0;
}

.about-copy span {
  display: inline-block;
  font-size: .875rem;
  margin-bottom: 26px;
  opacity: .8;
}

.about-copy h2 {
  font-size: clamp(1.9375rem, 4vw, 2.4rem);
  font-weight: 900;
  line-height: 1.18;
  margin-bottom: 30px;
  text-transform: uppercase;
}

.about-copy p {
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 38px;
  max-width: 660px;
  opacity: .92;
}

.section-title {
  margin: 0 auto 55px;
  max-width: 720px;
  text-align: center;
}

.section-title h2 {
  font-size: clamp(1.875rem, 4vw, 2.625rem);
  font-weight: 900;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.section-title p {
  color: #9a9a9a;
  margin: 0;
}

.choose-section {
  background: #fff;
  margin-bottom:28px;
}

.service-item {
  align-items: flex-start;
  display: flex;
  gap: 24px;
  height: 100%;
  padding: 10px;
  transition: transform .3s ease;
}

.service-item:hover {
  transform: translateY(-6px);
}

.service-icon {
  align-items: center;
  border-radius: 50%;
  color: #fff;
  display: inline-flex;
  flex: 0 0 90px;
  font-size: 2.125rem;
  height: 90px;
  justify-content: center;
  transition: transform .35s ease;
  width: 90px;
  border: solid 5px #ccc;
  background: #000;
}
.service-icon img{width: 50px;height: 50px;}
.service-box:nth-child(2) .service-icon{
  border: solid 5px #ffdfab!important;
  background: #ffa200;
}

.service-box:nth-child(3) .service-icon{
  border: solid 5px #ffdfab!important;
  background: #ffa200;
}

.service-item:hover .service-icon {
  transform: rotateY(180deg);
}

.service-icon.brand {
  background: var(--brand);
}

.service-icon.dark {
  background: #222;
}

.service-item h3 {
  font-size: clamp(1.375rem, 2.5vw, 1.875rem);
  font-weight: 900;
  margin-bottom: 12px;
}

.service-item p {
  color: var(--muted);
  font-size: .875rem;
  line-height: 1.7;
  margin: 0;
}

.feature-bg {
  background-position: center;
  background-size: cover;
  min-height: 355px;
  position: relative;
}
.feature-left{position: relative}


.feature-bg::before {
  background: rgba(0, 0, 0, .94);
  display: block;
  content: "";
  width: 100%;height: 8px;
  inset: 0;
  position: absolute;
}

.feature-bg .container {
  position: relative;
}

.feature-label {
  /*background: rgba(246, 160, 0, .92);*/
  background: url("../images/feature-float.png") no-repeat left top;
  color: #fff;
  max-width: 436px;
  min-height: 424px;
  padding: 58px 58px 84px;
  position: absolute;
  top:-10px
}

.feature-label::after {
  border-left: 105px solid transparent;
  border-right: 105px solid transparent;
  border-top: 54px solid rgba(246, 160, 0, .92);
  bottom: -54px;
  content: "";
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
  display: none;
}

.feature-label h2 {
  font-size: clamp(2.125rem, 4vw, 2.6rem);
  font-weight: 900;
  line-height: 1;
  margin-bottom: 24px;
}

.feature-label p {
  font-size: 1.0625rem;
  line-height: 1.5;
  margin-bottom: 36px;
  opacity: .9;
}

.featured-products {
  padding-top: 110px;
}

.news-section {
  background: #fff;
}

.news-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 6px;
  box-shadow: 0 12px 34px rgba(0, 0, 0, .06);
  height: 100%;
  overflow: hidden;
  transition: transform .3s ease, box-shadow .3s ease;
}

.news-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-9px);
}

.news-image {
  overflow: hidden;
  position: relative;
}

.news-image img {
  aspect-ratio: 16 / 10;
  display: block;
  object-fit: cover;
  transition: transform .45s ease;
  width: 100%;
}

.news-card:hover .news-image img {
  transform: scale(1.08);
}

.news-image span {
  align-items: center;
  background: var(--brand);
  border-radius: 50%;
  bottom: 16px;
  color: #fff;
  display: inline-flex;
  height: 34px;
  justify-content: center;
  position: absolute;
  right: 16px;
  transition: transform .3s ease, background .3s ease;
  width: 34px;
}

.news-card:hover .news-image span {
  background: #111;
  transform: translateX(5px);
}

.news-body {
  padding: 24px;
}

.news-body h3 {
  font-size: 1.2rem;
  font-weight: 800;
  line-height: 1.45;
  margin-bottom: 18px;
  display: -webkit-box;overflow: hidden;
  -webkit-line-clamp:2;text-overflow: ellipsis; -webkit-box-orient: vertical
}

.news-body time {
  color: #8b8f94;
  display: block;
  font-size: .8125rem;
  margin-bottom: 14px;
}

.news-body p {
  color: var(--muted);
  font-size: .95rem;
  line-height: 1.7;
  margin: 0;
  display: -webkit-box;overflow: hidden;
  -webkit-line-clamp:2;text-overflow: ellipsis; -webkit-box-orient: vertical
}

.message-wrap {
  background: linear-gradient(#fff 0 50%, #1f1f1f 50% 100%);
  padding: 35px 0 0;
}

.message-panel {
  background-position: center;
  background-size: cover;
  border-radius: 6px;
  box-shadow: var(--shadow);
  overflow: hidden;
  padding: 36px 56px 46px;
  position: relative;
}

.message-panel::before {
  /*background: rgba(246, 160, 0, .88);*/
  content: "";
  inset: 0;
  position: absolute;
}

.message-panel > * {
  position: relative;
  z-index: 1;
}

.message-title {
  color: #fff;
  margin-bottom: 22px;
  text-align: center;
}

.message-title span {
  font-size: .8125rem;
  opacity: .84;
}

.message-title h2 {
  font-size: clamp(1.75rem, 4vw, 2.625rem);
  font-weight: 900;
  margin: 0;
}

.form-control {
  border: 0;
  border-radius: 3px;
  font-size: .875rem;
  min-height: 44px;
}

.form-control:focus {
  box-shadow: 0 0 0 .22rem rgba(32, 33, 36, .18);
}

.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity .75s ease, transform .75s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1200px) {
  .about-section::before {
    background: rgba(246, 160, 0, .9);
    content: "";
    inset: 0 50% 0 0;
    position: absolute;
    z-index: 0;
  }
  .about-copy h2{font-size: 2rem}

}

@media (max-width: 1199.98px) {


  .about-copy {
    padding-left: 0;
  }

  .product-slider-prev {
    left: -8px;
  }

  .product-slider-next {
    right: -8px;
  }
}
@media (max-width: 1024px) {
.about-copy h2 {
  font-size:1.8rem;
  font-weight: 900;
  line-height: 1.18;
  margin-bottom: 30px;
  text-transform: uppercase;
}
}

@media (max-width: 991.98px) {
  .product-slider-btn {
    height: 42px;
    width: 42px;
  }

  .hero-slide {
    min-height: 590px;
  }

  .hero-slide::before {
    background: linear-gradient(90deg, rgba(245, 247, 250, .95), rgba(245, 247, 250, .6));

  }

  .hero-slide-alt::before {
    background: rgba(0, 0, 0, .58);
  }

  .hero-copy {
    padding: 72px 0 110px;
  }

  .about-section,
  .about-section .container,
  .about-copy {
    min-height: auto;
  }

  .about-section::before {
    inset: 0 35% 0 0;
  }

  .about-copy {
    max-width: 68%;
    padding: 70px 28px;
  }

  .feature-label {
    margin-left: 0;
    background: rgba(246, 160, 0, .92);
    position: relative;
  }
  .feature-label::after{display: block}
}

@media (max-width: 767.98px) {
  .section {
    padding: 20px 0;
  }

  .hero-slide {
    background-position: 60% center;
    min-height: 530px;
  }

  .hero-copy h1,
  .hero-copy h2 {
    font-size: 3rem;
  }

  .hero-copy .lead {
    font-size: 1.5rem;
  }

  .hero-copy p:not(.lead) {
    font-size: .9375rem;
  }

  .orange-band {
    padding: 24px 0;
  }

  .about-section {
    background-position: 68% center;
  }

  .about-section::before {
    inset: 0;
  }

  .about-section::after {
    background: rgba(0, 0, 0, .08);
  }

  .about-copy {
    max-width: 100%;
    padding: 58px 0;
  }

  .product-card h3,
  .news-body h3 {
    font-size: 1rem;
  }

  .product-swiper {
    padding-bottom: 28px;
  }

  .service-item {
    gap: 18px;
  }

  .service-icon {
    flex-basis: 58px;
    font-size: 1.6875rem;
    height: 58px;
    width: 58px;
  }

  .feature-bg {
    min-height: auto;
  }

  .feature-label {
    max-width: none;
    min-height: 200px;
    padding: 24px 34px 30px;
  }
  .feature-label p{margin-bottom: 10px}
  .message-panel {
    padding: 32px 22px 36px;
  }
}

@media (max-width: 991px) {
  .hero-slide {
    background-position: 63% center;
    min-height: 510px;
  }

  .hero-copy {
    max-width: 86%;
  }

  .btn-brand {
    padding-left: 20px;
  }

  .btn-arrow i {
    margin-left: 14px;
    min-width: 42px;
  }

  .product-card img {
    aspect-ratio: 1 / 1.14;
  }

  .product-swiper {
    padding-left: 2px;
    padding-right: 2px;
  }

  .product-slider-prev {
    left: 2px;
  }

  .product-slider-next {
    right: 2px;
  }

  .product-card .p-3 {
    padding: 13px !important;
  }

  .product-card p {
    font-size: .75rem;
  }

  .service-item {
    align-items: flex-start;
  }

  .message-wrap {
    padding-top: 18px;
  }
  .about-copy h2{font-size: 1.4rem;line-height: 1.5;margin-bottom: 8px}
  .about-copy p{font-size:.9rem;line-height: 1.6;margin-bottom: 20px;        display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp:4 ;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical}
  .section-title{margin:10px auto 25px}
  .choose-section .reveal{border-bottom: solid 1px #dedede}
  .news-body p {
    color: var(--muted);
    font-size: .875rem;
    line-height: 1.7;
    margin: 0;
    display: -webkit-box;overflow: hidden;
    -webkit-line-clamp:2;text-overflow: ellipsis; -webkit-box-orient: vertical
  }
  .news-body h3 {font-size: 1.1rem;margin-bottom: 8px}
  .news-body time{margin-bottom: 5px}
  .choose-section .reveal:first-child{border-bottom: none}
  .service-icon{
  border: solid 5px #ccc;
  background: #000;
}
.service-icon img{width:35px;height: 35px;}
.service-box:nth-child(2) .service-icon{
  border: solid 5px #ffdfab!important;
  background: #ffa200;
}

.service-box:nth-child(3) .service-icon{
  border: solid 5px #ffdfab!important;
  background: #ffa200;
}
  .service-item p{line-height: 1.5;padding-bottom: 10px}
}
