/* products_nav: category pills (parts/products-nav.php) */
.products_nav {
  padding: 4.46rem 0 0;
  background-color: #fff;
}
.products_nav .nav_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem 1.55rem;
}
.products_nav .nav_list a {
  display: block;
  white-space: nowrap;
  color: var(--title);
  font-family: 'Archivo', sans-serif;
  font-weight: 600;
  font-size: 1.6rem;
  line-height: 5.4rem;
  padding: 0 2.88rem;
  border-radius: 10rem;
  border: 1px solid #e3e8f2;
  background-color: #fff;
  transition: all 0.3s;
}
.products_nav .nav_list a:hover {
  color: var(--primary);
  border-color: var(--primary);
}
.products_nav .nav_list a.active {
  color: #fff;
  border-color: var(--primary);
  background-color: var(--primary);
}

/* products_list: category head + product rows (parts/products-list.php) */
.products_list {
  padding: 15.3rem 0 15.8rem;
  background-color: var(--bg);
}
.products_list .main {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 6rem;
}
.products_list .lt {
  position: sticky;
  top: 12rem;
  width: 44rem;
  flex-shrink: 0;
}
.products_list .lt .img {
  aspect-ratio: 440 / 312.67;
  border-radius: 1.2rem;
  margin-top: 5.9rem;
}
.products_list .lt .desc {
  color: var(--text);
  font-size: 1.8rem;
  line-height: 2.8rem;
  margin-top: 2.85rem;
  padding-bottom: 3.95rem;
  border-bottom: 1px solid rgba(4, 18, 34, 0.14);
}
.products_list .lt .tags {
  margin-top: 2.1rem;
}
.products_list .lt .tags ul {
  display: flex;
  flex-wrap: wrap;
  gap: 1.05rem 1.02rem;
}
.products_list .lt .tags li {
  color: var(--blue);
  font-family: 'Archivo', sans-serif;
  font-weight: 500;
  font-size: 1.4rem;
  line-height: 2.965rem;
  text-transform: uppercase;
  padding: 0 1.35rem;
  border-radius: 0.6rem;
  border: 1px solid #e3e8f2;
  background-color: #fff;
}
.products_list .lt .count {
  color: var(--text);
  font-size: 1.4rem;
  line-height: 2rem;
  margin-top: 2.1rem;
}
.products_list .rt {
  flex: 1;
  max-width: 83.9rem;
}
.products_list .product_list li + li {
  margin-top: 1.5rem;
}
.products_list .product_list li.hide {
  display: none;
}
.products_list .item {
  display: flex;
  align-items: center;
  min-height: 16.4rem;
  padding: 2.2rem 2.5rem;
  border-radius: 1.8rem;
  border: 1px solid #e3e8f2;
  background-color: #fff;
  transition: all 0.3s;
}
.products_list .item .img {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 11.81rem;
  height: 11.81rem;
  border-radius: 1.2rem;
  background-color: var(--bg);
}
.products_list .item .img img {
  width: 8.4rem;
  height: 8.4rem;
}
.products_list .item .info {
  width: 28.3rem;
  flex-shrink: 0;
  margin-left: 3.38rem;
  padding-top: 0.6rem;
}
.products_list .item .title {
  color: #0b1a2e;
  font-family: 'Archivo', sans-serif;
  font-weight: 600;
  font-size: 2.2rem;
  line-height: 2.8rem;
  transition: all 0.3s;
}
.products_list .item .metas {
  margin-top: 1.25rem;
}
.products_list .item .metas p {
  color: #0b1a2e;
  font-size: 1.5rem;
  line-height: 2.5rem;
  font-weight: 600;
}
.products_list .item .metas span {
  opacity: 0.74;
}
.products_list .item .more {
  flex: 1;
  padding-right: 0.5rem;
}
.products_list .item .more p {
  color: var(--text);
  font-size: 1.5rem;
  line-height: 2.4rem;
}
.products_list .item .btn_more {
  display: inline-flex;
  align-items: center;
  color: var(--blue);
  font-family: 'Archivo', sans-serif;
  font-weight: 600;
  font-size: 1.7rem;
  line-height: 2.4rem;
  margin-top: 2.1rem;
}
.products_list .item .btn_more span {
  display: block;
  max-width: 0;
  overflow: hidden;
  white-space: nowrap;
  transition: all 0.3s;
}
.products_list .item .btn_more::after {
  content: '';
  display: block;
  flex-shrink: 0;
  width: 1.4rem;
  height: 1.05rem;
  transition: all 0.3s;
  background: url(../img/arrow-r-b.svg) no-repeat center / contain;
}
.products_list .product_list:not(:hover) li:first-child .item,
.products_list .product_list li:hover .item {
  border-color: #fff;
  box-shadow: 0 2rem 4rem rgba(208, 211, 221, 0.45);
}
.products_list .product_list li:hover .item .title {
  color: var(--primary);
}
.products_list .product_list:not(:hover) li:first-child .btn_more span,
.products_list .product_list li:hover .btn_more span {
  max-width: 12rem;
  margin-right: 1.3rem;
}
.products_list .load_more {
  text-align: center;
  margin-top: 3.5rem;
  padding-left: 1.8rem;
}
.products_list .load_more.hide {
  display: none;
}

@media screen and (min-width: 769px) and (max-width: 1220px) {
  .products_list .lt {
    width: 34rem;
  }
  .products_list .main {
    gap: 4rem;
  }
  .products_list .item .info {
    width: 24rem;
    margin-left: 2.4rem;
  }
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .products_list .main {
    flex-direction: column;
  }
  .products_list .lt {
    position: static;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 4rem;
  }
  .products_list .lt .tcon {
    grid-column: 1 / -1;
  }
  .products_list .lt .img {
    grid-row: span 3;
    margin-top: 3rem;
  }
  .products_list .lt .desc {
    margin-top: 3rem;
  }
  .products_list .rt {
    width: 100%;
    max-width: none;
  }
}
@media screen and (max-width: 768px) {
  .products_nav {
    padding-top: 20px;
  }
  .products_nav .nav {
    margin: 0 -20px;
    padding: 0 20px 4px;
    overflow-x: auto;
  }
  .products_nav .nav_list {
    flex-wrap: nowrap;
    justify-content: flex-start;
    gap: 8px;
    width: max-content;
  }
  .products_nav .nav_list a {
    font-size: 13px;
    line-height: 38px;
    padding: 0 16px;
  }
  .products_list {
    padding: 50px 0 60px;
  }
  .products_list .main {
    display: block;
  }
  .products_list .lt {
    position: static;
    width: auto;
  }
  .products_list .lt .img {
    margin-top: 20px;
    border-radius: 12px;
  }
  .products_list .lt .desc {
    font-size: 14px;
    line-height: 1.6;
    margin-top: 16px;
    padding-bottom: 20px;
  }
  .products_list .lt .tags {
    margin-top: 16px;
  }
  .products_list .lt .tags ul {
    gap: 8px;
  }
  .products_list .lt .tags li {
    font-size: 12px;
    line-height: 26px;
    padding: 0 10px;
  }
  .products_list .lt .count {
    font-size: 13px;
    margin-top: 14px;
  }
  .products_list .rt {
    margin-top: 30px;
  }
  .products_list .product_list li + li {
    margin-top: 10px;
  }
  .products_list .item {
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 12px 14px;
    min-height: 0;
    padding: 14px;
    border-radius: 12px;
  }
  .products_list .item .img {
    width: 72px;
    height: 72px;
    border-radius: 10px;
  }
  .products_list .item .img img {
    width: 52px;
    height: 52px;
  }
  .products_list .item .info {
    flex: 1;
    width: auto;
    margin: 0;
  }
  .products_list .item .title {
    font-size: 17px;
    line-height: 1.3;
  }
  .products_list .item .metas {
    margin-top: 6px;
  }
  .products_list .item .metas p {
    font-size: 13px;
    line-height: 1.6;
  }
  .products_list .item .more {
    flex: none;
    width: 100%;
    padding: 0;
  }
  .products_list .item .more p {
    font-size: 13px;
    line-height: 1.6;
  }
  .products_list .item .btn_more {
    font-size: 14px;
    margin-top: 8px;
  }
  .products_list .item .btn_more span {
    max-width: 12rem;
    margin-right: 8px;
  }
  .products_list .load_more {
    margin-top: 24px;
    padding: 0;
  }
}
.products_banner {
  overflow: hidden;
  background-color: var(--dark);
}
.products_banner > img {
  left: 20.1479%;
  top: -0.87%;
  width: 80.99%;
  height: 112.8%;
}
.products_banner::before {
  content: "";
  position: absolute;
  left: 0px;
  top: 0px;
  bottom: 0px;
  z-index: -1;
  width: 66.5625%;
  background-image: linear-gradient(90deg, #041222 38%, rgba(4, 18, 34, 0.88) 59%, rgba(4, 18, 34, 0.53) 80%, rgba(4, 18, 34, 0) 100%);
}
.products_banner::after {
  content: "";
  position: absolute;
  inset: 0px;
  z-index: -1;
  pointer-events: none;
  background-color: rgba(4, 18, 34, 0.3);
}
.products_banner .content {
  min-height: 91.9rem;
  padding: 32rem 0px 14rem;
}
.products_banner .tcon {
  max-width: 76rem;
}
.products_banner .tcon .subtitle {
  color: rgba(255, 255, 255, 0.8);
  letter-spacing: 0.08em;
  gap: 1.3rem;
}
.products_banner .tcon p {
  color: #fff;
  max-width: 51rem;
  margin-top: 3.4rem;
}
.products_banner .btns {
  gap: 2rem;
  display: flex;
  flex-wrap: wrap;
  margin-top: 3.5rem;
}
.products_banner .btns .btn {
  padding: 0px 3rem 0px 4rem;
}
.products_banner .marquee {
  position: absolute;
  left: 0px;
  right: 0px;
  bottom: 0px;
  z-index: 3;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}
.products_banner .marquee ul {
  display: flex;
  width: max-content;
  animation: products_banner_marquee 40s linear infinite;
}
.products_banner .marquee:hover ul {
  animation-play-state: paused;
}
.products_banner .marquee li {
  display: flex;
  align-items: center;
  gap: 5.8rem;
  padding-right: 5.8rem;
  white-space: nowrap;
  color: rgba(255, 255, 255, 0.8);
  font-family: 'Archivo', sans-serif;
  font-weight: 500;
  font-size: 1.5rem;
  line-height: 5.6rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}
.products_banner .marquee li::after {
  content: "";
  display: block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: var(--green);
}
@keyframes products_banner_marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@media screen and (min-width: 769px) and (max-width: 1220px) {
  .content {
    padding: 0px 3rem;
  }
}

@media screen and (min-width: 769px) and (max-width: 1024px) {
  .content,
  .swiper_content {
    max-width: 896px;
  }
  .tcon h1 {
    font-size: 6rem;
  }
}

@media screen and (min-width: 769px) and (max-width: 896px) {
  .content,
  .swiper_content {
    max-width: 768px;
  }
  .tcon h1 {
    font-size: 5rem;
  }
}

@media screen and (max-width: 768px) {
  html {
    font-size: 10px;
  }
  body {
    font-size: 1.4rem;
  }
  .content {
    padding: 0px 20px;
  }
  .tcon .subtitle {
    font-size: 12px;
    gap: 10px;
  }
  .tcon .subtitle::before {
    width: 18px;
  }
  .tcon h1 {
    font-size: 30px;
    line-height: 1.2;
    margin-top: 14px;
  }
  .tcon p {
    font-size: 14px;
    line-height: 1.6;
    margin-top: 10px;
  }
  .btn {
    font-size: 14px;
    line-height: 42px;
    padding: 0px 20px;
    gap: 8px;
  }
  .btn_line {
    font-size: 14px;
    line-height: 40px;
    padding: 0px 20px;
  }
  .products_banner > img {
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
  }
  .products_banner::before {
    width: 100%;
    background-image: linear-gradient(90deg, #041222 10%, rgba(4, 18, 34, 0.55) 100%);
  }
  .products_banner .content {
    min-height: 0px;
    padding: 130px 20px 100px;
  }
  .products_banner .tcon p {
    margin-top: 16px;
  }
  .products_banner .btns {
    gap: 12px;
    margin-top: 24px;
  }
  .products_banner .btns .btn {
    padding: 0px 20px;
  }
  .products_banner .marquee li {
    font-size: 12px;
    line-height: 44px;
    gap: 24px;
    padding-right: 24px;
  }
  .products_banner .marquee li::after {
    width: 5px;
    height: 5px;
  }
}
.products_intro {
  padding: 15.5rem 0px 15.2rem;
  background-color: #fff;
}
.products_intro .content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6rem;
}
.products_intro .tcon {
  max-width: 66rem;
}
.products_intro .tcon p {
  max-width: 57rem;
}
.products_intro .cards {
  display: grid;
  flex-shrink: 0;
  grid-template-columns: repeat(2, 29.3rem);
  gap: 2.6rem 2.7rem;
  margin-right: 0.05rem;
}
.products_intro .card {
  height: 100%;
  min-height: 19.06rem;
  padding: 3.33rem 2.4rem 3rem;
  border-radius: 1.8rem;
  border: 1px solid #e3e8f2;
  background-color: #fff;
  transition: 0.3s;
}
.products_intro .card .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 5.692rem;
  height: 5.692rem;
  border-radius: 1.2rem;
  background-color: var(--primary);
  transition: 0.3s;
}
.products_intro .card .icon img {
  display: block;
  width: 100%;
  height: 100%;
}
.products_intro .card .title {
  color: var(--title);
  font-family: 'Archivo', sans-serif;
  font-weight: 600;
  font-size: 2rem;
  line-height: 1.2;
  margin-top: 4.25rem;
}
.products_intro .card .title h3 {
  font-size: inherit;
  font-weight: inherit;
}
.products_intro .cards:not(:hover) li:first-child .card,
.products_intro .cards li:hover .card {
  border-color: #fff;
  box-shadow: 0px 2rem 4rem rgba(208, 211, 221, 0.45);
}
.products_intro .cards:not(:hover) li:first-child .icon,
.products_intro .cards li:hover .icon {
  background-color: var(--secondary);
}
@media screen and (min-width: 769px) and (max-width: 1220px) {
  .content {
    padding: 0px 3rem;
  }
  .products_intro .content {
    gap: 4rem;
  }
  .products_intro .cards {
    grid-template-columns: repeat(2, 24rem);
  }
}

@media screen and (min-width: 769px) and (max-width: 1024px) {
  .content,
  .swiper_content {
    max-width: 896px;
  }
  .tcon h2 {
    font-size: 4.2rem;
  }
  .products_intro .content {
    flex-direction: column;
    align-items: flex-start;
  }
  .products_intro .tcon,
  .products_intro .tcon p {
    max-width: none;
  }
  .products_intro .cards {
    width: 100%;
    grid-template-columns: repeat(4, 1fr);
  }
}

@media screen and (min-width: 769px) and (max-width: 896px) {
  .content,
  .swiper_content {
    max-width: 768px;
  }
  .tcon h2 {
    font-size: 3.6rem;
  }
  .products_intro .cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 768px) {
  html {
    font-size: 10px;
  }
  body {
    font-size: 1.4rem;
  }
  .content {
    padding: 0px 20px;
  }
  .tcon .subtitle {
    font-size: 12px;
    gap: 10px;
  }
  .tcon .subtitle::before {
    width: 18px;
  }
  .tcon h2 {
    font-size: 24px;
    line-height: 1.3;
    margin-top: 10px;
  }
  .tcon p {
    font-size: 14px;
    line-height: 1.6;
    margin-top: 10px;
  }
  .tcon p + p {
    margin-top: 10px;
  }
  .products_intro {
    padding: 50px 0px 60px;
  }
  .products_intro .content {
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
  }
  .products_intro .tcon,
  .products_intro .tcon p {
    max-width: none;
  }
  .products_intro .cards {
    width: 100%;
    margin: 0px;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .products_intro .card {
    min-height: 0px;
    padding: 18px 16px;
    border-radius: 12px;
  }
  .products_intro .card .icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
  }
  .products_intro .card .title {
    font-size: 15px;
    margin-top: 18px;
  }
}
.products_services {
  overflow: hidden;
  padding: 14.2rem 0px 13.7rem;
}
.products_services .tcon .subtitle {
  color: #7fa3ff;
}
.products_services .tcon h2 {
  color: #fff;
}
.products_services .tcon p {
  color: rgba(255, 255, 255, 0.8);
}
.products_services .cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.7rem;
  margin-top: 7.9rem;
}
.products_services .card {
  height: 100%;
  min-height: 36.33rem;
  padding: 3.99rem 2.4rem 4.4rem 3.59rem;
  border-radius: 1.8rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background-color: rgba(255, 255, 255, 0);
  transition: 0.3s;
}
.products_services .card .top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.products_services .card .icon {
  display: block;
  width: 5.692rem;
  height: 5.692rem;
  border-radius: 1.2rem;
  background-color: #144fce;
  transition: 0.3s;
}
.products_services .card .icon img {
  display: block;
  width: 100%;
  height: 100%;
}
.products_services .card .order {
  margin-right: 0.9rem;
  color: rgba(255, 255, 255, 0.4);
  font-family: 'Archivo', sans-serif;
  font-weight: 500;
  font-size: 1.856rem;
  line-height: 1;
  margin-top: -0.4rem;
}
.products_services .card .title {
  color: #fff;
  font-family: 'Archivo', sans-serif;
  font-weight: 600;
  font-size: 2.4rem;
  line-height: 1.2;
  margin-top: 8.6rem;
}
.products_services .card .title h3 {
  font-size: inherit;
  font-weight: inherit;
}
.products_services .card .desc {
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.6rem;
  line-height: 2.6rem;
  margin-top: 2.3rem;
}
.products_services .cards:not(:hover) li:first-child .card,
.products_services .cards li:hover .card {
  background-color: rgba(255, 255, 255, 0.06);
}
.products_services .cards:not(:hover) li:first-child .icon,
.products_services .cards li:hover .icon {
  background-color: var(--green);
}
@media screen and (min-width: 769px) and (max-width: 1220px) {
  .content {
    padding: 0px 3rem;
  }
  .products_services .card {
    padding: 3rem 2.4rem 3.6rem;
  }
}

@media screen and (min-width: 769px) and (max-width: 1024px) {
  .content,
  .swiper_content {
    max-width: 896px;
  }
  .tcon h2 {
    font-size: 4.2rem;
  }
  .products_services .cards {
    grid-template-columns: repeat(2, 1fr);
  }
  .products_services .card {
    min-height: 0px;
  }
  .products_services .card .title {
    margin-top: 5rem;
  }
}

@media screen and (min-width: 769px) and (max-width: 896px) {
  .content,
  .swiper_content {
    max-width: 768px;
  }
  .tcon h2 {
    font-size: 3.6rem;
  }
}

@media screen and (max-width: 768px) {
  html {
    font-size: 10px;
  }
  body {
    font-size: 1.4rem;
  }
  .content {
    padding: 0px 20px;
  }
  .tcon .subtitle {
    font-size: 12px;
    gap: 10px;
  }
  .tcon .subtitle::before {
    width: 18px;
  }
  .tcon h2 {
    font-size: 24px;
    line-height: 1.3;
    margin-top: 10px;
  }
  .tcon p {
    font-size: 14px;
    line-height: 1.6;
    margin-top: 10px;
  }
  .products_services {
    padding: 50px 0px 60px;
  }
  .products_services .cards {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 30px;
  }
  .products_services .card {
    min-height: 0px;
    padding: 20px;
    border-radius: 12px;
  }
  .products_services .card .icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
  }
  .products_services .card .order {
    font-size: 15px;
  }
  .products_services .card .title {
    font-size: 18px;
    margin-top: 20px;
  }
  .products_services .card .desc {
    font-size: 14px;
    line-height: 1.6;
    margin-top: 8px;
  }
}
.products_sample {
  padding: 15.95rem 0px 15.8rem;
  background-color: #fff;
}
.products_sample .content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6rem;
}
.products_sample .img {
  flex-shrink: 0;
  width: 66.58rem;
  aspect-ratio: 665.78 / 640.74;
  border-radius: 2.375rem;
  margin-left: 0.2rem;
}
.products_sample .info {
  width: 60.6rem;
  margin-right: -0.3rem;
}
.products_sample .tcon p {
  max-width: 60rem;
}
.products_sample .checks {
  margin-top: 1.6rem;
}
.products_sample .checks li {
  position: relative;
  color: var(--text);
  font-weight: 500;
  font-size: 1.8rem;
  line-height: 2.8rem;
  padding-left: 3.5rem;
}
.products_sample .checks li + li {
  margin-top: 1.8rem;
}
.products_sample .checks li::before {
  content: "";
  position: absolute;
  left: 0.1rem;
  top: 0.7rem;
  width: 1.9rem;
  height: 1.4rem;
  background: url("../img/check.svg") center center / contain no-repeat;
}
.products_sample .btns {
  margin-top: 4.5rem;
}
@media screen and (min-width: 769px) and (max-width: 1220px) {
  .content {
    padding: 0px 3rem;
  }
  .products_sample .img {
    width: 50%;
  }
  .products_sample .info {
    flex: 1;
    width: auto;
    margin: 0px;
  }
}

@media screen and (min-width: 769px) and (max-width: 1024px) {
  .content,
  .swiper_content {
    max-width: 896px;
  }
  .tcon h2 {
    font-size: 4.2rem;
  }
  .products_sample .checks li {
    font-size: 1.6rem;
  }
}

@media screen and (min-width: 769px) and (max-width: 896px) {
  .content,
  .swiper_content {
    max-width: 768px;
  }
  .tcon h2 {
    font-size: 3.6rem;
  }
  .products_sample .content {
    flex-direction: column;
    align-items: flex-start;
  }
  .products_sample .img {
    width: 100%;
    margin: 0px;
  }
}

@media screen and (max-width: 768px) {
  html {
    font-size: 10px;
  }
  body {
    font-size: 1.4rem;
  }
  .content {
    padding: 0px 20px;
  }
  .tcon .subtitle {
    font-size: 12px;
    gap: 10px;
  }
  .tcon .subtitle::before {
    width: 18px;
  }
  .tcon h2 {
    font-size: 24px;
    line-height: 1.3;
    margin-top: 10px;
  }
  .tcon p {
    font-size: 14px;
    line-height: 1.6;
    margin-top: 10px;
  }
  .btn {
    font-size: 14px;
    line-height: 42px;
    padding: 0px 20px;
    gap: 8px;
  }
  .products_sample {
    padding: 50px 0px 60px;
  }
  .products_sample .content {
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
  }
  .products_sample .img {
    width: 100%;
    margin: 0px;
    border-radius: 14px;
  }
  .products_sample .info {
    width: 100%;
    margin: 0px;
  }
  .products_sample .checks {
    margin-top: 16px;
  }
  .products_sample .checks li {
    font-size: 14px;
    line-height: 1.6;
    padding-left: 26px;
  }
  .products_sample .checks li + li {
    margin-top: 10px;
  }
  .products_sample .checks li::before {
    top: 5px;
    width: 15px;
    height: 11px;
  }
  .products_sample .btns {
    margin-top: 24px;
  }
}
