@charset "UTF-8";
* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0;
  margin: 0;
  scroll-behavior: smooth;
  scroll-margin-top: 80px;
}

body {
  font-family: "Inter", sans-serif;
  overflow-x: hidden;
}

.container {
  width: 1170px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  margin: 0 auto;
}

.container-full {
  padding: 60px 0 70px;
  /*  overflow-x: hidden; */
}

/* section {
  padding: 0;
  margin: 60px 0 70px;
} */
.title h2 {
  background: url(../assets/images/bdr-btm1.png) no-repeat center bottom;
  font-weight: 700;
  padding-bottom: 55px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  font-size: 55px;
  line-height: 60px;
  color: #000;
}
.title h2 span {
  color: #fc5706;
  display: block;
}
.title p {
  margin: 0 auto;
  text-align: center;
  margin-top: 20px;
  font-size: 18px;
  line-height: 26px;
}

/*  ----------------------- buttons ---------------------  */
.btn-box {
  display: inline-block;
  max-width: 485px;
  width: 100%;
  text-align: center;
}
.btn-box.centered {
  display: block;
  margin: 0 auto;
  margin-top: 50px;
}
.btn-box.text-dark .btn-text {
  color: black;
}
.btn-box .btn-box-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 5px;
  width: 100%;
  color: #fff;
  font-size: 23px;
  line-height: 72px;
  height: 72px;
  border-radius: 6px;
  font-weight: 700;
  text-shadow: 2px 2px 2px #178924;
  margin-top: 5px;
  text-transform: uppercase;
  text-decoration: none;
  overflow: hidden;
  background: rgb(52, 189, 1);
  background: -webkit-gradient(linear, left top, left bottom, from(rgb(52, 189, 1)), color-stop(49%, rgb(23, 180, 0)), to(rgb(8, 175, 0)));
  background: linear-gradient(180deg, rgb(52, 189, 1) 0%, rgb(23, 180, 0) 49%, rgb(8, 175, 0) 100%);
}
.btn-box .btn-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 7px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: white;
  margin-top: 12px;
}
.btn-box .btn-text span {
  color: #f00;
}
.btn-box .btn-text .btn-text1:before {
  display: inline-block;
  vertical-align: middle;
  margin: -2px 5px 0 0;
  width: 9px;
  height: 9px;
  background: #6fb620;
  border-radius: 50%;
  content: "";
  -webkit-animation: fade 1s ease-in-out infinite;
          animation: fade 1s ease-in-out infinite;
}
.btn-box .btn-text p {
  display: inline-block;
  vertical-align: top;
  padding: 0 8px;
  letter-spacing: 0.3px;
}
.btn-box .btn-text .btn-text2 img {
  margin: -4px 3px 0 0;
  -webkit-animation: rotate 2.5s ease-in-out forwards infinite;
          animation: rotate 2.5s ease-in-out forwards infinite;
}

.pulse {
  animation-name: pulse;
  -webkit-animation-name: pulse;
  animation-duration: 1.7s;
  -webkit-animation-duration: 1.7s;
  animation-iteration-count: infinite;
  -webkit-animation-iteration-count: infinite;
}

/* -----------------------  animations ----------------------- */
@-webkit-keyframes pulse {
  0% {
    -webkit-transform: scale(0.9);
            transform: scale(0.9);
  }
  50% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    -webkit-transform: scale(0.9);
            transform: scale(0.9);
  }
}
@keyframes pulse {
  0% {
    -webkit-transform: scale(0.9);
            transform: scale(0.9);
  }
  50% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    -webkit-transform: scale(0.9);
            transform: scale(0.9);
  }
}
@-webkit-keyframes fade {
  0% {
    opacity: 100%;
  }
  50% {
    opacity: 30%;
  }
  70% {
    opacity: 100%;
  }
  100% {
    opacity: 100%;
  }
}
@keyframes fade {
  0% {
    opacity: 100%;
  }
  50% {
    opacity: 30%;
  }
  70% {
    opacity: 100%;
  }
  100% {
    opacity: 100%;
  }
}
@-webkit-keyframes rotate {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  50% {
    -webkit-transform: rotate(180deg);
            transform: rotate(180deg);
  }
  100% {
    -webkit-transform: rotate(180deg);
            transform: rotate(180deg);
  }
}
@keyframes rotate {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  50% {
    -webkit-transform: rotate(180deg);
            transform: rotate(180deg);
  }
  100% {
    -webkit-transform: rotate(180deg);
            transform: rotate(180deg);
  }
}
@-webkit-keyframes headerScrolled {
  0% {
    top: -100px;
  }
  100% {
    top: 0;
  }
}
@keyframes headerScrolled {
  0% {
    top: -100px;
  }
  100% {
    top: 0;
  }
}
/* ------------------- Header ------------------- */
.header-position {
  height: 85px;
}

header {
  background: #282828;
  background-color: transparent;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 1000;
  position: relative;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
header .header-top {
  background: #f00;
  color: #fff;
  font-weight: 600;
  padding: 4px 20px;
  width: 100%;
}
header .header-top p {
  text-align: center;
  line-height: normal;
}
header .header-top p span {
  color: #ffea00;
}
header.scrolled {
  position: fixed;
  top: 0;
  height: 108px;
  background-color: #282828;
  width: 100%;
  left: 0;
  -webkit-animation: 0.3s headerScrolled forwards;
          animation: 0.3s headerScrolled forwards;
}
header.scrolled .header-inner {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
header #menu-control {
  display: none;
  width: 30px;
  height: 30px;
}
header .header-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  padding: 20px;
}
header .logo {
  max-width: 174px;
  width: 100%;
}
header nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 20px;
}
header nav a {
  font-size: 18px;
  line-height: 24px;
  color: #fff;
  letter-spacing: 1px;
  text-decoration: none;
}
header nav a.active-section, header nav a:hover {
  color: #fc5706;
}

/* ------------------- Hero ------------------- */
.hero {
  position: relative;
  background: url(../assets/images/sec1.jpg) center top repeat;
  margin-top: -85px;
  padding-top: 85px;
  padding-bottom: 30px;
  overflow: hidden;
}
.hero:after {
  content: "";
  position: absolute;
  background: url(../assets/images/s1-top.jpg) center top repeat-x;
  background-size: cover;
  height: 546px;
  left: 0;
  right: 0;
  top: 0;
  z-index: 3;
}
.hero .hero-strip {
  width: 100%;
  background: #f15f17;
  padding: 6px 0;
  position: relative;
  z-index: 5;
  text-align: center;
  margin-bottom: 28px;
  margin-top: 25px;
}
.hero .hero-strip p {
  font-size: 17px;
  line-height: 22px;
  color: #fff;
  font-weight: 500;
  margin: 0 auto;
}
.hero .hero-main {
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.hero .hero-main-img {
  width: 100%;
  position: relative;
  z-index: 2;
  margin-top: 50px;
}
.hero .hero-main-img img {
  position: absolute;
  right: -60px;
  top: -165px;
  width: 754px;
}
.hero .hero-main-content .hero-rating {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 10px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  row-gap: 1px;
}
.hero .hero-main-content .hero-rating p {
  color: white;
}
.hero .hero-main-content .hero-rating img {
  height: 16px;
}
.hero .hero-main-content .hero-main-strip {
  position: relative;
  width: calc(100% + 150px);
  margin-left: -150px;
  margin-top: 22px;
}
.hero .hero-main-content .hero-main-strip .strip-icn {
  position: absolute;
  left: 140px;
  top: 50%;
  margin-top: -42px;
  z-index: 1;
}
.hero .hero-main-content .hero-main-strip .hero-main-strip-tx1 {
  font-size: 24px;
  line-height: 26px;
  font-weight: 800;
  color: #000;
  background: #f15f17;
  padding: 10px 6px;
  position: relative;
  padding-left: 230px;
}
.hero .hero-main-content .hero-main-strip .hero-main-strip-tx1:after {
  content: "";
  position: absolute;
  background: #f15f17;
  right: -1000%;
  width: 1000%;
  top: 0px;
  bottom: 0;
}
.hero .hero-main-content .hero-main-strip .hero-main-strip-tx2 {
  font-size: 18px;
  line-height: 20px;
  background: #0d0d0d;
  border-bottom: 1px solid #f15f17;
  padding: 15px 10px;
  position: relative;
  color: #fff;
  padding-left: 230px;
  letter-spacing: 0.5px;
}
.hero .hero-main-content .hero-main-strip .hero-main-strip-tx2:after {
  content: "";
  position: absolute;
  background: #0d0d0d;
  border-bottom: 1px solid #f15f17;
  right: -1000%;
  width: 1000%;
  top: 0px;
  bottom: -1px;
}
.hero .hero-main-content h1 {
  font-size: 55px;
  line-height: 66px;
  font-weight: 700;
  color: #fff;
  margin-top: 15px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}
.hero .hero-main-content h1 span {
  color: #fc5706;
}
.hero .hero-main-content .hero-mobile {
  display: none;
}
.hero .hero-main-content .hero-list {
  width: 100%;
  position: relative;
  margin-top: 20px;
  list-style-type: none;
}
.hero .hero-main-content .hero-list li {
  float: left;
  width: 100%;
  position: relative;
  margin: 10px 0;
  padding-left: 75px;
}
.hero .hero-main-content .hero-list li h3 {
  font-size: 17px;
  line-height: 20px;
  color: #fc5706;
  font-weight: 700;
  text-transform: uppercase;
}
.hero .hero-main-content .hero-list li p {
  font-size: 17px;
  line-height: 28px;
  font-weight: 500;
  color: #fff;
  margin-top: 2px;
}
.hero .hero-main-content .hero-list li .hero-list-icon {
  position: absolute;
  left: 0;
  top: 0;
}

/* -------------------  Banner -------------------  */
.promo-banner {
  display: none;
  padding: 15px 0 10px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: url("../assets/images/bg.png") no-repeat left top, #100f0f;
  background-size: contain;
  background-position: left;
}
.promo-banner .promo-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 25px;
}
.promo-banner .promo-content .promo-title {
  font-size: 69px;
  font-style: italic;
  font-weight: 700;
  line-height: 82.8px;
  text-align: left;
  text-underline-position: from-font;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
  color: #fff;
  font-size: clamp(1.288rem, -0.874rem + 5vw, 4.313rem) !important;
}
.promo-banner .promo-content .promo-sale {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 clamp(0.406rem, -1.35rem + 3.305vw, 1.625rem);
  background: -webkit-gradient(linear, left top, right top, color-stop(8.91%, rgb(255, 223, 0)), to(rgb(236, 134, 0)));
  background: linear-gradient(90deg, rgb(255, 223, 0) 8.91%, rgb(236, 134, 0) 100%);
  line-height: 120%;
  color: black;
  border-radius: 4px;
  font-weight: 700;
  font-size: clamp(1.313rem, -0.398rem + 3.22vw, 2.5rem);
  line-height: 120%;
}
.promo-banner .promo-content .promo-show-tab,
.promo-banner .promo-content .promo-show-mob,
.promo-banner .promo-content .promo-title-mob,
.promo-banner .promo-content .promo-mob-sale-box {
  display: none;
}
.promo-banner .promo-content .promo-discount .promo-up-to {
  color: #ffdf00;
  font-size: clamp(0.75rem, 0.21rem + 1.017vw, 1.125rem);
  font-style: italic;
  font-weight: 700;
  line-height: normal;
}
.promo-banner .promo-content .promo-discount .promo-up-to .promo-up-to-code {
  color: #000;
  background: #acf4a1;
  background-color: #acf4a1;
  border-radius: 5px;
  padding: 4px clamp(0.094rem, -0.401rem + 0.932vw, 0.438rem);
  font-family: Inter;
  font-size: clamp(0.75rem, 0.48rem + 0.508vw, 0.938rem);
  font-style: normal;
  font-weight: 700;
  line-height: 20px;
  font-family: "Poppins", sans-serif;
}
.promo-banner .promo-content .promo-discount .promo-percent {
  font-size: 68px;
  font-style: italic;
  font-weight: 700;
  text-align: left;
  text-underline-position: from-font;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
  color: #ffdf00;
  position: relative;
}
.promo-banner .promo-content .promo-countdown {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.promo-banner .promo-content .promo-countdown .promo-title-mob {
  display: none;
}
.promo-banner .promo-content .promo-countdown .promo-code {
  display: none;
}
.promo-banner .promo-content .promo-countdown .promo-limited-time {
  font-size: 18px;
  font-weight: 600;
  line-height: 27px;
  text-align: center;
  text-underline-position: from-font;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
  color: white;
}
.promo-banner .promo-content .promo-countdown .promo-timer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 28px;
  margin-top: 2px;
}
.promo-banner .promo-content .promo-countdown .promo-timer div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.promo-banner .promo-content .promo-countdown .promo-timer div span:last-child {
  font-size: 12px;
  font-weight: 700;
  line-height: 18px;
  text-align: center;
  text-underline-position: from-font;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
  color: #fff;
  margin-top: 5px;
}
.promo-banner .promo-content .promo-countdown .promo-timer .promo-time {
  font-size: 26px;
  font-weight: 700;
  line-height: 39px;
  text-align: center;
  text-underline-position: from-font;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
  color: black;
  background: -webkit-gradient(linear, left top, right top, color-stop(8.91%, rgb(255, 223, 0)), to(rgb(236, 134, 0)));
  background: linear-gradient(90deg, rgb(255, 223, 0) 8.91%, rgb(236, 134, 0) 100%);
  width: 51px;
  padding: 6px 0px;
}
.promo-banner .promo-content .promo-countdown .promo-timer .promo-deks-time {
  font-size: 12px;
  font-weight: 700;
  line-height: 18px;
  text-align: center;
  text-underline-position: from-font;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
  color: #fff;
  margin-top: 5px;
}

/* -------------------  Quote -------------------  */
.quote-container {
  border-top: 3px solid #cfac4c;
  border-bottom: 2px solid #c7c7c7;
}

.quote {
  display: grid;
  grid-template-columns: 203px auto;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 780px;
  margin: 0 auto;
  gap: 30px;
}
.quote .quote-img {
  width: 100%;
  border-radius: 20px;
  height: auto;
  width: 100%;
}
.quote .quote-text img {
  width: 106px;
  height: auto;
}
.quote .quote-text h3 {
  font-size: 20px;
  line-height: 26px;
  color: #000;
  margin-top: 10px;
  text-transform: uppercase;
}
.quote .quote-text p {
  font-size: 17px;
  line-height: 22px;
  color: #000;
  letter-spacing: 0.3px;
  font-style: italic;
  margin-top: 10px;
}
.quote .quote-text small {
  display: block;
  font-size: 18px;
  line-height: 20px;
  color: #f57f2f;
  font-weight: bold;
  margin-top: 12px;
}

/* -------------------  Overview -------------------  */
.overview {
  display: grid;
  grid-template-columns: auto 57%;
  background-color: #fdf7f4;
}
.overview .overview-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  background-color: #280d02;
}
.overview .overview-img.mobile-only {
  display: none;
}
.overview .overview-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
  padding: 40px 40px 40px 50px;
  max-width: 720px;
  width: 100%;
}
.overview .overview-text .title h2 {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  text-align: start !important;
  background: url(../assets/images/bdr-btm2.png) no-repeat left bottom;
  font-weight: 700;
}
.overview .overview-text .title p {
  text-align: start;
  font-size: 18px;
  line-height: 26px;
  color: #000;
  letter-spacing: 0.5px;
  margin-top: 20px;
}
.overview .experience .experience-list {
  float: left;
  width: calc(100% - 200px);
  list-style-type: none;
}
.overview .experience .experience-list li {
  float: left;
  width: 100%;
  position: relative;
  margin-top: 12px;
}
.overview .experience .experience-list li:before {
  content: "";
  position: absolute;
  top: 0;
  left: -83px;
  width: 68px;
  height: 59px;
}
.overview .experience .experience-list li:after {
  content: "";
  position: absolute;
  top: 50%;
  height: 15px;
  margin-top: -7px;
}
.overview .experience .experience-list li:nth-child(1):before {
  background: url(../assets/images/s3-rgt-icn1.png) no-repeat;
}
.overview .experience .experience-list li:nth-child(1):after {
  background: url(../assets/images/s3-rgt-ln1.png) no-repeat;
  width: 150px;
  left: -224px;
}
.overview .experience .experience-list li:nth-child(2):before {
  background: url(../assets/images/s3-rgt-icn2.png) no-repeat;
}
.overview .experience .experience-list li:nth-child(2):after {
  background: url(../assets/images/s3-rgt-ln2.png) no-repeat;
  width: 120px;
  left: -194px;
}
.overview .experience .experience-list li:nth-child(3):before {
  background: url(../assets/images/s3-rgt-icn3.png) no-repeat;
}
.overview .experience .experience-list li:nth-child(3):after {
  background: url(../assets/images/s3-rgt-ln3.png) no-repeat;
  width: 100px;
  left: -174px;
}
.overview .experience .experience-list li div {
  font-size: 24px;
  line-height: 28px;
  color: #000;
  font-weight: 700;
  border: 2px solid #000;
  padding: 13px 16px;
}
.overview .experience-box {
  float: right;
  width: 185px;
  background: #fc5706;
  text-align: center;
  padding: 4px 0 0;
  border: 2px solid #fc5706;
  margin-top: 11px;
}
.overview .experience-box .top-bx-t1 {
  font-size: 26px;
  line-height: 30px;
  color: #fff;
  font-weight: 700;
  text-transform: uppercase;
}
.overview .experience-box .btm-bx-list {
  float: left;
  width: 100%;
  list-style-type: none;
  background: #fff;
  margin-top: 5px;
  padding: 8px 10px;
}
.overview .experience-box .btm-bx-list li {
  float: left;
  width: 100%;
  font-size: 15px;
  line-height: 22px;
  color: #000;
  margin-top: 5px;
}

/* -------------------  Features -------------------  */
.features-container {
  background-color: #151517;
  color: white;
}
.features-container .title h2 {
  color: white;
}
.features-container .features-grid {
  display: grid;
  grid-template-columns: 3fr 6fr 3fr;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 30px auto;
}
.features-container .features-grid .features-mobile-only {
  display: none;
}
.features-container .features-grid .features-img {
  width: 100%;
  -webkit-transform: scale(1.3) translateY(15px);
          transform: scale(1.3) translateY(15px);
}
.features-container .features-grid .features-col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 40px;
}
.features-container .features-grid .features-item {
  display: grid;
  grid-template-columns: 114px auto;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px;
}
.features-container .features-grid .features-item.reverse {
  grid-template-columns: auto 114px;
}
.features-container .features-grid .features-item.reverse p {
  text-align: end;
}
.features-container .features-grid .features-item.reverse img {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}
.features-container .features-grid .features-item img {
  width: 100%;
}
.features-container .features-grid .features-item p {
  font-size: 22px;
  line-height: 28px;
  color: #fff;
  font-weight: 500;
  text-align: start;
}
.features-container .features-icons-title {
  width: 100%;
  background: url(../assets/images/s4-txt-line.png) no-repeat center top;
  font-size: 24px;
  line-height: 32px;
  color: #fff;
  font-weight: 700;
  margin-top: 80px;
  text-align: center;
  margin-bottom: 10px;
}
.features-container .features-icons-title p {
  display: inline-block;
  background: #151517;
  padding: 0 15px;
}
.features-container .features-icons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  max-width: 880px;
  margin: 30px auto;
}
.features-container .features-icons .icon-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
  text-align: center;
}
.features-container .features-icons .icon-item p {
  font-size: 16px;
  line-height: 20px;
  color: #fff;
  margin-top: 15px;
}

/* -------------------  Upgrade Vest -------------------  */
.upgrade-vest-mobile {
  display: none;
}

.upgrade-vest {
  display: grid;
  grid-template-columns: 4.5fr 3fr 4.5fr;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 40px;
  -webkit-transform: scale(1.05) translateY(10px);
          transform: scale(1.05) translateY(10px);
}
.upgrade-vest .upgrade-vest-col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}
.upgrade-vest .upgrade-vest-middle {
  width: 100%;
}
.upgrade-vest .upgrade-vest-item {
  display: grid;
  grid-template-columns: auto auto;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15px;
}
.upgrade-vest .upgrade-vest-item .upgrade-vest-img {
  position: relative;
}
.upgrade-vest .upgrade-vest-item .upgrade-vest-img .upgrade-vest-image {
  width: 100%;
  width: 249px;
  margin: 0 auto 0;
  display: block;
  border: 1px solid #ff272c;
  border-radius: 10px;
  background: #fff;
  padding: 5px;
}
.upgrade-vest .upgrade-vest-item .upgrade-vest-img .checkmark {
  position: absolute;
  top: -15px;
  left: 50%;
  margin-left: -15px;
}
.upgrade-vest .upgrade-vest-item .upgrade-vest-end {
  text-align: end;
}
.upgrade-vest .upgrade-vest-item p {
  font-size: 18px;
  line-height: 28px;
  color: #000;
  font-weight: 700;
}

/* -------------------  Cards -------------------  */
.cards {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  margin: 20px auto;
  gap: 30px;
}

.card {
  border: 2px solid #ff5a20;
  border-radius: 15px;
  overflow: hidden;
  aspect-ratio: 352/422;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.card .card-top {
  position: relative;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.card .card-top .card-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 1;
}
.card .card-top .card-top-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  z-index: 5;
  position: relative;
  padding: 20px;
}
.card .card-top .card-top-row h3 {
  font-size: 26px;
  line-height: 32px;
  font-weight: 800;
  color: #fff;
}
.card .card-top .card-top-row h3 span {
  color: #fc5706;
}

/* -------------------  Application Areas -------------------  */
.application-areas {
  background-color: #151517;
  color: white;
}
.application-areas .title h2 {
  color: white;
}
.application-areas .a-a-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin: 20px auto;
  max-width: 1010px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 40px;
}
.application-areas .a-a-grid .a-a-grid-img {
  width: 100%;
}
.application-areas .a-a-col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}
.application-areas .a-a-col .a-a-col-item {
  aspect-ratio: 510/155;
  width: 100%;
  position: relative;
  border-radius: 12px;
}
.application-areas .a-a-col .a-a-col-item:before {
  content: "";
  position: absolute;
  top: 50%;
  left: -120px;
  margin-top: -1px;
  border-top: 1px dashed #f25620;
  width: 120px;
  z-index: 10;
}
.application-areas .a-a-col .a-a-col-item img {
  z-index: 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 12px;
}
.application-areas .a-a-col .a-a-col-item p {
  position: absolute;
  left: 0;
  bottom: 0;
  background: #d75313;
  padding: 14px 14px 10px 20px;
  font-size: 18px;
  line-height: 20px;
  color: #fff;
  font-weight: 800;
  text-transform: uppercase;
  border-radius: 0 0 0 12px;
}
.application-areas .a-a-col .a-a-col-item p:after {
  content: "";
  position: absolute;
  top: 0;
  right: -25px;
  width: 0;
  height: 0;
  border-bottom: 44px solid #d75313;
  border-right: 25px solid transparent;
}

/* -------------------  Vest vs Vortex -------------------  */
.compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: 968px;
  width: 100%;
  margin: 0 auto;
  margin-top: 40px;
  aspect-ratio: 968/703;
}
.compare .compare-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
  padding: 30px;
  background-size: cover;
  background-position: center;
  position: relative;
}
.compare .compare-item h3 {
  font-size: 42px;
  line-height: 46px;
  color: #e0e0e0;
  font-weight: 900;
  text-transform: uppercase;
  text-align: center;
}
.compare .compare-item #compare-title2 {
  color: #fff;
  text-shadow: 2px 2px #a94818;
}
.compare .compare-item.compare-bg-1 {
  background-image: url("../assets/images/comp-bg1.jpg");
}
.compare .compare-item.compare-bg-1:after {
  content: "";
  position: absolute;
  top: 35%;
  right: -60px;
  background: url(../assets/images/vs-img.png) no-repeat;
  width: 122px;
  height: 122px;
  z-index: 20;
}
.compare .compare-item.compare-bg-2 {
  background-image: url("../assets/images/comp-bg2.jpg");
}
.compare .compare-item ul {
  list-style-type: none;
}
.compare .compare-item li {
  background: url(../assets/images/comp-cross.png) no-repeat left 2px;
  float: left;
  width: 100%;
  text-align: left;
  font-size: 20px;
  line-height: 26px;
  color: #fff;
  font-weight: 600;
  padding-left: 40px;
  margin-top: 16px;
}
.compare .compare-item .checkmark-list {
  margin-left: 40px;
}
.compare .compare-item .checkmark-list li {
  background: url(../assets/images/comp-tike.png) no-repeat left 0px;
  background-size: contain;
  background-size: 22px;
}

/* -------------------  Specifications -------------------  */
.spec-grid {
  display: grid;
  grid-template-columns: 6fr 3fr 3fr;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 30px auto;
  max-width: 1170px;
}
.spec-grid .spec-grid-img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
  padding-right: 50px;
  max-width: 500px;
  margin: 0 auto;
}
.spec-grid .spec-grid-img img {
  max-width: 310px;
  width: 100%;
}
.spec-grid .spec-grid-img .spec-grid-title {
  background: url(../assets/images/incld-ln.png) no-repeat center center;
  text-align: center;
  width: 100%;
  font-size: 18px;
  line-height: 22px;
  color: #000;
  font-weight: 600;
  padding: 7px 24px;
}
.spec-grid .spec-grid-img .spec-grid-title span {
  background: #fdf7f4;
  padding: 0 10px;
}
.spec-grid .mobile-only {
  display: none;
}
.spec-grid p {
  font-size: 20px;
  line-height: 22px;
  padding: 25px 0;
}
.spec-grid .spec-col div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 20px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-bottom: 1px solid #dedfe0;
}
.spec-grid .spec-col:nth-child(1) {
  text-align: start;
}
.spec-grid .spec-col:last-child {
  text-align: end;
}
.spec-grid .spec-col:last-child p {
  font-weight: bold;
  border-bottom: 1px solid #dedfe0;
  font-weight: 600;
}

/* -------------------  Reviews -------------------  */
.rating {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 40px;
  max-width: 800px;
  margin: 40px auto;
}
.rating .star-review {
  padding-right: 30px;
}
.rating .star-review span {
  color: #023d7f;
  text-decoration: underline;
}
.rating .percent {
  text-align: center;
  display: inline-block;
  vertical-align: middle;
  color: #000;
  font-size: 16px;
  line-height: 20px;
  font-weight: 500;
}
.rating .percent span {
  display: inline-block;
  vertical-align: top;
  font-size: 50px;
  line-height: 45px;
  color: #fc5706;
  font-weight: 800;
  margin-bottom: 12px;
}
.rating .stars {
  width: 100%;
  max-width: 300px;
}
.rating .star {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 10px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
}
.rating .star .bar {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  background-color: #efefef;
  height: 8px;
}
.rating .star .bar span {
  background-color: #000;
  height: 100%;
  width: 0;
  display: block;
}
.rating .star p {
  min-width: 35px;
  text-align: start;
}

.reviews {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 20px -20px;
  gap: 30px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.reviews .reviews-col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 269px;
  width: calc(25% - 30px);
}
.reviews .reviews-item {
  background: #fff;
  border-radius: 12px;
  margin-top: 30px;
  overflow: hidden;
  box-shadow: 0 6px 9px 1px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0 6px 9px 1px rgba(0, 0, 0, 0.1);
}
.reviews .reviews-item .reviews-item-img {
  display: block;
  max-width: 100%;
}
.reviews .reviews-item .reviews-item-desc {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
  width: 100%;
  text-align: left;
  padding: 20px 15px;
}
.reviews .reviews-item .reviews-item-desc .reviews-item-title {
  font-size: 18px;
  line-height: 18px;
  color: #000000;
  font-weight: 600;
}
.reviews .reviews-item .reviews-item-desc .reviews-item-title span {
  display: inline-block;
  font-size: 14px;
  line-height: 14px;
  color: #6fb620;
  font-weight: 400;
}
.reviews .reviews-item .reviews-item-desc .reviews-item-title span img {
  display: inline-block;
  vertical-align: middle;
  margin: -4px 6px 0;
}
.reviews .reviews-item .reviews-item-desc .reviews-item-stars {
  width: 92px;
}
.reviews .reviews-item .reviews-item-desc .reviews-item-text {
  width: 100%;
  font-size: 16px;
  line-height: 24px;
  color: #000000;
}

/* -------------------  Faq -------------------  */
.faq-container {
  background: #fdf7f4;
}

.accordion-container {
  width: 100%;
  -webkit-box-shadow: 0 2px 10px 1px rgba(0, 0, 0, 0.1);
  box-shadow: 0 2px 10px 1px rgba(0, 0, 0, 0.1);
  background: #fff;
  overflow: hidden;
  border-radius: 10px;
  max-width: 940px;
  margin: 0 auto;
  margin-top: 20px;
}

.accordion {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 20px;
  width: 100%;
  text-align: left;
  padding: 22px 25px 22px 25px;
  font-size: 18px;
  line-height: 28px;
  color: #000000;
  letter-spacing: 0.2px;
  cursor: pointer;
  font-weight: 600;
  position: relative;
  border: none;
  background: none;
}

.active {
  border-bottom: 1px solid #e1e1e1;
}

.accordion:after {
  content: "+";
  color: #f83e05;
  font-weight: 400;
  float: right;
  margin-left: 5px;
  font-size: 35px;
}

.active:after {
  content: "−";
}

.panel {
  background-color: white;
  max-height: 0;
  overflow: hidden;
  -webkit-transition: max-height 0.5s ease-out;
  transition: max-height 0.5s ease-out;
}
.panel p {
  width: 100%;
  font-size: 18px;
  line-height: 26px;
  letter-spacing: 0.5px;
  padding: 15px 22px;
  color: #000;
}

/* -------------------  Footer -------------------  */
.mobile-order-now {
  display: none;
  position: sticky;
  bottom: 0;
  background-color: black;
  padding: 10px;
  opacity: 0;
  z-index: -1;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.mobile-order-now .btn-box {
  margin: 0 auto;
}
.mobile-order-now .btn-box a {
  margin: 0;
}

footer {
  padding: 40px 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 5px;
}
footer img {
  margin-bottom: 20px;
}
footer a,
footer p {
  color: #333333;
  text-decoration: none;
  font-size: 16px;
}
footer .footer-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 10px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media screen and (max-width: 1500px) {
  .hero:after {
    background: url(../assets/images/s1-top.jpg) -430px 0px no-repeat;
  }
  .hero .hero-main-img img {
    right: -60px;
    top: -15px;
    width: 663px;
  }
  .promo-banner .promo-content .promo-title {
    font-size: 50px;
  }
  .promo-banner .promo-content .promo-sale {
    font-size: 30px;
    font-weight: 700;
    line-height: 40px;
    width: 110px;
    height: 40px;
  }
  .promo-banner .promo-content .promo-show-tab,
  .promo-banner .promo-content .promo-show-mob,
  .promo-banner .promo-content .promo-title-mob,
  .promo-banner .promo-content .promo-mob-sale-box {
    display: none;
  }
  .promo-banner .promo-content .promo-discount .promo-up-to {
    font-size: 18px;
  }
  .promo-banner .promo-content .promo-discount .promo-percent {
    font-size: 50px;
  }
  .promo-banner .promo-content .promo-countdown .promo-title-mob {
    display: none;
  }
  .promo-banner .promo-content .promo-countdown .promo-limited-time {
    font-size: 16px;
  }
  .promo-banner .promo-content .promo-countdown .promo-timer {
    gap: 20px;
  }
  .promo-banner .promo-content .promo-countdown .promo-timer .promo-time {
    font-size: 22px;
    font-weight: 700;
    line-height: 38px;
    width: 43px;
    padding: 0px 0px;
  }
}
@media screen and (max-width: 1200px) {
  .title h2 {
    font-size: 50px !important;
    line-height: 55px !important;
  }
  .hero .hero-main-content h1 {
    font-size: 50px;
    line-height: 56px;
  }
  .container {
    width: 1010px;
  }
  .overview {
    grid-template-columns: 1fr;
  }
  .overview .overview-img {
    display: none;
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
       object-fit: contain;
    -o-object-position: center;
       object-position: center;
    background-color: #280d02;
  }
  .overview .overview-img.mobile-only {
    display: block;
    margin: 0 auto;
  }
  .overview .overview-text {
    margin: 0 auto;
    padding: 30px;
  }
  .overview .overview-text .title h2 {
    font-size: 28px;
    line-height: 34px;
    background-size: 373px;
    padding-bottom: 33px;
  }
  .overview .btn-box {
    display: none;
  }
  .overview .experience .experience-list {
    width: 100%;
  }
  .overview .experience .experience-list li:before {
    position: static;
    float: left;
  }
  .overview .experience .experience-list li:after {
    display: none;
  }
  .overview .experience .experience-list li div {
    padding: 18px 5px 17px 74px;
    font-size: 15px;
    line-height: 20px;
  }
  .overview .experience-box {
    width: 100%;
  }
  .overview .experience-box .btm-bx-list li {
    font-size: 18px;
    line-height: 25px;
  }
  .upgrade-vest {
    -webkit-transform: none;
            transform: none;
  }
  .upgrade-vest .upgrade-vest-item {
    grid-template-columns: auto auto;
  }
  .upgrade-vest .upgrade-vest-item .upgrade-vest-img .upgrade-vest-image {
    width: 200px;
  }
  .card .card-top .card-top-row h3 {
    font-size: 19px;
  }
  .spec-grid {
    grid-template-columns: 5fr 4fr 4fr;
  }
  .features-container .features-grid .features-img {
    -webkit-transform: scale(1.6);
            transform: scale(1.6);
  }
  .features-container .features-grid .features-item p {
    font-size: 20px;
    line-height: 28px;
  }
}
@media screen and (max-width: 1100px) {
  .promo-banner .promo-content .promo-title {
    font-size: 35px;
  }
  .promo-banner .promo-content .promo-sale {
    font-size: 21px;
    width: 85px;
    height: 30px;
    line-height: 31px;
  }
  .promo-banner .promo-content .promo-discount .promo-up-to {
    font-size: 12px;
    top: 25px;
  }
  .promo-banner .promo-content .promo-discount .promo-percent {
    font-size: 35px;
  }
  .promo-banner .promo-content .promo-countdown .promo-title-mob {
    display: none;
  }
  .promo-banner .promo-content .promo-countdown .promo-limited-time {
    font-size: 12px;
  }
  .promo-banner .promo-content .promo-countdown .promo-timer {
    gap: 20px;
  }
  .promo-banner .promo-content .promo-countdown .promo-timer .promo-time {
    font-size: 15px;
    font-weight: 700;
    line-height: 24px;
    width: 27px;
    padding: 0px 0px;
  }
}
@media screen and (max-width: 1000px) {
  header nav {
    position: fixed;
    top: 108px;
    left: 0;
    background-color: white;
    width: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0;
    height: 0;
    overflow: hidden;
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  header nav a {
    padding: 12px 20px;
    font-size: 15px;
    color: #000;
    font-weight: 500;
    text-align: left;
    border-bottom: 1px solid #dddddd;
  }
  header nav.nav-open {
    height: calc(100dvh - 80px);
  }
  header #menu-control {
    display: block;
  }
  .title h2 {
    font-size: 38px !important;
    line-height: 44px !important;
  }
  .hero .hero-main-content h1 {
    font-size: 38px;
    line-height: 44px;
  }
  .hero .hero-main-content .hero-main-strip .hero-main-strip-tx1 {
    font-size: 19px;
    line-height: 23px;
    padding-left: 195px;
  }
  .hero .hero-main-content .hero-main-strip .hero-main-strip-tx2 {
    font-size: 13px;
    padding-top: 12px;
    padding-bottom: 12px;
    padding-left: 195px;
  }
  .hero .hero-main-content .hero-main-strip .strip-icn {
    width: 60px;
    left: 128px;
    -o-object-fit: contain;
       object-fit: contain;
  }
  .container {
    width: 750px;
  }
  .hero .hero-main-img img {
    width: 520px;
    right: -44px;
    top: 20px;
  }
  .upgrade-vest {
    grid-template-columns: 4fr 4fr 4fr;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
    gap: 15px;
  }
  .upgrade-vest .upgrade-vest-middle {
    margin-top: 100px;
  }
  .upgrade-vest .upgrade-vest-item {
    grid-template-columns: 1fr;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    text-align: center !important;
  }
  .upgrade-vest .upgrade-vest-item .upgrade-vest-end {
    text-align: center !important;
  }
  .upgrade-vest .upgrade-vest-item.reverse {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  .upgrade-vest .upgrade-vest-item .upgrade-vest-img .upgrade-vest-image {
    width: 100%;
  }
  .compare {
    aspect-ratio: 750/703;
  }
  .compare .compare-item.compare-bg-1:after {
    content: "";
    position: absolute;
    top: 35%;
    right: -60px;
    background: url(../assets/images/vs-img.png) no-repeat;
    width: 122px;
    height: 122px;
    z-index: 20;
  }
  .cards {
    grid-template-columns: 1fr 1fr;
  }
  .card .card-top .card-top-row h3 {
    font-size: 19px;
  }
  .spec-grid p {
    font-size: 15px;
    line-height: 18px;
    padding: 18px 0;
  }
  .features-container .features-grid .features-img {
    -webkit-transform: scale(2);
            transform: scale(2);
  }
  .features-container .features-grid .features-col {
    gap: 25px;
  }
  .features-container .features-grid .features-item {
    grid-template-columns: 90px auto;
    gap: 15px;
  }
  .features-container .features-grid .features-item.reverse {
    grid-template-columns: auto 90px;
  }
  .features-container .features-grid .features-item img {
    width: 90px;
    height: auto;
  }
  .features-container .features-grid .features-item p {
    font-size: 18px;
    line-height: 26px;
  }
  .reviews {
    margin: 20px auto;
  }
  .reviews .reviews-col {
    width: 269px;
  }
  .reviews .reviews-item .reviews-item-img {
    width: 100%;
  }
}
@media only screen and (max-width: 915px) {
  .promo-banner .promo-content {
    gap: 15px;
  }
}
@media only screen and (max-width: 790px) {
  .title h2 {
    font-size: 28px !important;
    line-height: 34px !important;
    background-size: 373px;
    padding-bottom: 33px;
  }
  .container {
    width: 100%;
    padding: 0 15px;
  }
  .hero:after {
    background: none;
  }
  .hero .hero-strip p {
    font-size: 15px;
    line-height: 19px;
    max-width: 220px;
  }
  .hero .hero-main-img {
    display: none;
  }
  .hero .hero-main {
    grid-template-columns: 1fr;
  }
  .hero .hero-main .hero-main-content h1 {
    text-align: center;
    font-size: 30px;
    line-height: 38px;
    max-width: 380px;
    margin: 0 auto;
  }
  .hero .hero-main .hero-main-content .hero-rating {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .hero .hero-main .hero-main-content .btn-box {
    display: none;
  }
  .hero .hero-main .hero-main-content ul {
    max-width: 380px;
    margin: 0 auto;
  }
  .hero .hero-main .hero-main-content .hero-mobile {
    display: block;
    max-width: 380px;
    width: 100%;
    margin: 40px auto;
  }
  .hero .hero-main .hero-main-content .hero-main-strip {
    width: calc(100% + 30px);
    margin: 0;
    margin-left: -30px;
    margin-bottom: 30px;
  }
  .hero .hero-main .hero-main-content .hero-main-strip .hero-main-strip-tx1 {
    padding-left: 0;
    font-size: 20px;
    text-align: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding-left: 30px;
    gap: 10px;
  }
  .hero .hero-main .hero-main-content .hero-main-strip .hero-main-strip-tx2 {
    padding: 5px 0;
    text-align: center;
    font-size: 14px;
    padding-left: 30px;
  }
  .hero .hero-main .hero-main-content .hero-main-strip .strip-icn {
    display: none;
  }
  .hero .hero-main .hero-main-content .hero-main-strip .strip-icn-mobile {
    display: block !important;
    width: 30px;
    -o-object-fit: contain;
       object-fit: contain;
  }
  .quote {
    grid-template-columns: 1fr;
    justify-items: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    text-align: center;
    gap: 15px;
  }
  .quote .quote-img {
    width: 160px;
  }
  .cards {
    grid-template-columns: 1fr;
    max-width: 360px;
  }
  .card .card-top .card-top-row h3 {
    font-size: 22px;
    line-height: 30px;
  }
  .upgrade-vest-mobile {
    display: block;
    max-width: 230px;
    width: 100%;
    margin: 0 auto;
  }
  .upgrade-vest {
    margin: 0 auto;
    margin-top: 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    justify-items: center;
  }
  .upgrade-vest .upgrade-vest-middle {
    display: none;
  }
  .upgrade-vest .upgrade-vest-col {
    max-width: 270px;
    width: 100%;
  }
  .upgrade-vest .upgrade-vest-item {
    min-height: 220px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    text-align: center !important;
  }
  .upgrade-vest .upgrade-vest-item p {
    font-size: 13px;
    line-height: 20px;
  }
  .upgrade-vest .upgrade-vest-item .upgrade-vest-end {
    text-align: center !important;
  }
  .upgrade-vest .upgrade-vest-item.reverse {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
  .upgrade-vest .upgrade-vest-item .upgrade-vest-img .upgrade-vest-image {
    width: 100%;
  }
  .compare {
    display: grid;
    grid-template-columns: 1fr;
    max-width: 570px;
    aspect-ratio: unset;
  }
  .compare .compare-item {
    aspect-ratio: 570/623;
  }
  .compare .compare-item.compare-bg-1:after {
    top: auto;
    bottom: -10%;
    right: 50%;
    width: 100px;
    height: 100px;
    background-size: 100px;
    margin-right: -50px;
  }
  .compare .compare-item h3 {
    font-size: 24px;
    line-height: 30px;
  }
  .compare .compare-item h3 .hide-mob {
    display: none;
  }
  .compare .compare-item li {
    font-size: 16px;
    line-height: 22px;
    padding-left: 30px;
    margin-top: 14px;
    background-size: 18px;
  }
  .compare .compare-item.compare-bg-2 h3 {
    margin-top: 50px;
  }
  .compare .compare-item.compare-bg-2 ul {
    margin: 0;
  }
  .application-areas .a-a-grid {
    grid-template-columns: 1fr;
    max-width: 510px;
  }
  .application-areas .a-a-grid .a-a-grid-img {
    max-width: 300px;
    margin: 0 auto;
  }
  .application-areas .a-a-col .a-a-col-item:before {
    display: none;
  }
  .btn-box {
    display: none !important;
  }
  .spec-grid {
    grid-template-columns: 4fr 4fr 4fr;
  }
  .spec-grid .spec-grid-img {
    display: none;
  }
  .spec-grid .mobile-only {
    display: block;
    width: 100%;
  }
  .spec-grid p {
    font-size: 15px;
    line-height: 17px;
    padding: 15px 0;
  }
  .features-container .features-grid {
    grid-template-columns: 1fr;
    max-width: 570px;
    width: 100%;
    padding: 20px;
    margin-bottom: 0;
  }
  .features-container .features-grid .features-mobile-only {
    display: block;
    width: 100%;
  }
  .features-container .features-grid .features-img {
    display: none;
  }
  .features-container .features-grid .features-col {
    gap: 25px;
    margin-bottom: 25px;
  }
  .features-container .features-grid .features-item {
    grid-template-columns: 90px auto;
    gap: 15px;
  }
  .features-container .features-grid .features-item.reverse {
    grid-template-columns: 90px auto;
  }
  .features-container .features-grid .features-item.reverse p {
    text-align: start;
  }
  .features-container .features-grid .features-item.reverse img {
    -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
            order: 0;
  }
  .features-container .features-grid .features-item img {
    width: 90px;
    height: auto;
  }
  .features-container .features-grid .features-item p {
    font-size: 18px;
    line-height: 26px;
  }
  .features-container .features-icons-title {
    margin-top: 0;
  }
  .features-container .features-icons-title p {
    font-size: 17px;
  }
  .features-container .features-icons {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    max-width: 420px;
    gap: 20px;
  }
  .features-container .features-icons .icon-item p {
    font-size: 13px;
    line-height: 19px;
  }
  .rating {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 20px;
    margin: 10px auto;
  }
  .rating .star-review {
    padding: 0;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    text-align: center;
  }
  .promo-banner {
    padding: 10px 5px;
  }
  .promo-banner .promo-content {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 15px;
  }
  .promo-banner .promo-content .promo-title {
    display: none;
  }
  .promo-banner .promo-content .promo-sale {
    display: none;
  }
  .promo-banner .promo-content .promo-show-tab,
  .promo-banner .promo-content .promo-title-mob,
  .promo-banner .promo-content .promo-mob-sale-box {
    display: none;
  }
  .promo-banner .promo-content .promo-mob-sale-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 10px;
  }
  .promo-banner .promo-content .promo-show-mob {
    display: block;
  }
  .promo-banner .promo-content .promo-discount .promo-up-to {
    font-size: 14px;
    font-style: italic;
    font-weight: 600;
    line-height: 21px;
    text-align: start;
    text-underline-position: from-font;
    -webkit-text-decoration-skip-ink: none;
            text-decoration-skip-ink: none;
    color: #ffdf00;
  }
  .promo-banner .promo-content .promo-discount .promo-up-to .promo-up-to-code {
    display: none;
  }
  .promo-banner .promo-content .promo-discount .promo-percent {
    font-size: 40px;
    font-style: italic;
    font-weight: 900;
    line-height: 32px;
  }
  .promo-banner .promo-content .promo-countdown .promo-title-mob {
    display: block;
    font-size: 27px;
    font-style: italic;
    font-weight: 900;
    line-height: 32.4px;
    text-align: left;
    text-underline-position: from-font;
    -webkit-text-decoration-skip-ink: none;
            text-decoration-skip-ink: none;
    color: white;
  }
  .promo-banner .promo-content .promo-countdown .promo-code {
    color: #000;
    background: #acf4a1;
    background-color: #acf4a1;
    border-radius: 5px;
    padding: 4px 8px;
    margin: 5px 0;
    font-family: Inter;
    font-style: normal;
    font-weight: 700;
    line-height: 20px;
    display: block;
    font-size: 14px !important;
  }
  .promo-banner .promo-content .promo-countdown .promo-sale-mob {
    display: block;
    font-size: 18px;
    font-style: italic;
    font-weight: 700;
    line-height: 23px;
    text-align: center;
    text-underline-position: from-font;
    -webkit-text-decoration-skip-ink: none;
            text-decoration-skip-ink: none;
    color: black;
    width: 50px;
    background: -webkit-gradient(linear, left top, right top, color-stop(8.91%, rgb(255, 223, 0)), to(rgb(236, 134, 0)));
    background: linear-gradient(90deg, rgb(255, 223, 0) 8.91%, rgb(236, 134, 0) 100%);
    border-radius: 4px;
  }
  .promo-banner .promo-content .promo-countdown .promo-limited-time {
    font-size: 12px;
  }
  .promo-banner .promo-content .promo-countdown .promo-timer {
    gap: 20px;
  }
  .promo-banner .promo-content .promo-countdown .promo-timer .promo-time {
    font-size: 15px;
    font-weight: 700;
    line-height: 24px;
    width: 27px;
    padding: 0px 0px;
  }
  .mobile-order-now {
    display: block;
  }
  .mobile-order-now .btn-box {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
}
@media only screen and (max-width: 600px) {
  header .header-top p {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  header .header-top p span {
    color: #ffea00;
  }
  header.scrolled {
    height: 120px;
  }
  header nav {
    top: 120px;
  }
  header nav.nav-open {
    height: calc(100dvh - 120px);
  }
  .hero .hero-main-content .hero-rating {
    margin-bottom: 10px;
  }
  .hero .hero-main-content .hero-rating p {
    font-size: 13px;
    line-height: 20px;
  }
  .hero .hero-main-content .hero-list {
    padding: 0 20px;
  }
  .hero .hero-main-content .hero-list li {
    padding-left: 55px;
    margin: 8px 0;
    text-align: left;
  }
  .hero .hero-main-content .hero-list li p {
    font-size: 18px;
    line-height: 22px;
  }
  .hero .hero-main-content .hero-list li .hero-list-icon {
    width: 45px;
    height: auto;
  }
  .spec-grid {
    grid-template-columns: 1fr 1fr;
    row-gap: 20px;
  }
  .spec-grid .spec-grid-img {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    grid-column: 1/span 2;
    padding: 0;
  }
  .spec-grid .mobile-only {
    display: none;
  }
  .spec-grid p {
    font-size: 15px;
    line-height: 17px;
    padding: 15px 0;
  }
  .reviews {
    gap: 0;
    padding: 5px;
  }
  .reviews .reviews-col {
    width: 100%;
  }
  .reviews .reviews-item .reviews-item-img {
    width: 100%;
  }
  footer p {
    font-size: 13px;
    line-height: 15px;
  }
}
@media only screen and (max-width: 450px) {
  .spec-grid p {
    font-size: 12px;
    padding: 10px 0;
  }
  .faq-container .title {
    margin-bottom: 20px;
  }
  .accordion-container {
    margin-top: 10px;
  }
  .accordion {
    font-size: 17px;
    line-height: 20px;
    padding: 15px;
  }
  .panel p {
    font-size: 14px;
    line-height: 22px;
  }
}
@media only screen and (max-width: 430px) {
  .promo-banner {
    padding: 10px 5px;
  }
  .promo-banner .promo-content .promo-title {
    display: none;
  }
  .promo-banner .promo-content .promo-sale {
    display: none;
  }
  .promo-banner .promo-content .promo-show-tab,
  .promo-banner .promo-content .promo-title-mob,
  .promo-banner .promo-content .promo-mob-sale-box {
    display: none;
  }
  .promo-banner .promo-content .promo-mob-sale-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 10px;
  }
  .promo-banner .promo-content .promo-show-mob {
    display: block;
  }
  .promo-banner .promo-content .promo-discount .promo-up-to {
    font-size: 14px;
    font-style: italic;
    font-weight: 600;
    line-height: 21px;
    color: #ffdf00;
    top: 20px;
  }
  .promo-banner .promo-content .promo-discount .promo-percent {
    font-size: 30px;
  }
  .promo-banner .promo-content .promo-countdown .promo-title-mob {
    font-size: 20px;
    line-height: 27.4px;
  }
  .promo-banner .promo-content .promo-countdown .promo-sale-mob {
    font-size: 18px;
    font-style: italic;
    font-weight: 700;
    line-height: 23px;
    text-align: center;
    width: 50px;
    background: -webkit-gradient(linear, left top, right top, color-stop(8.91%, rgb(255, 223, 0)), to(rgb(236, 134, 0)));
    background: linear-gradient(90deg, rgb(255, 223, 0) 8.91%, rgb(236, 134, 0) 100%);
    color: black;
  }
  .promo-banner .promo-content .promo-countdown .promo-limited-time {
    font-size: 12px;
  }
}
@media only screen and (max-width: 400px) {
  .upgrade-vest .upgrade-vest-item {
    min-height: 180px;
  }
  .upgrade-vest .upgrade-vest-item p {
    font-size: 13px;
    line-height: 20px;
  }
  .a-a-col-item {
    overflow: hidden;
  }
  .application-areas .a-a-col .a-a-col-item p {
    font-size: 14px;
    padding: 8px;
  }
  .application-areas .a-a-col .a-a-col-item p:after {
    border-bottom: 36px solid #d75313;
    border-right: 25px solid transparent;
  }
  .btn-box .btn-box-btn {
    height: 50px;
  }
  .btn-box .btn-box-btn {
    font-size: 15px;
  }
}
@media only screen and (max-width: 380px) {
  .spec-grid p {
    font-size: 3vw;
    padding: 10px 0;
  }
}/*# sourceMappingURL=styles.css.map */