:root {
  --green: #11934f;
  --lime: #58cc3b;
  --red: #c93412;
  --dark: #1e1e1e;
  --muted: #707070;
  --soft: #f4f5f4;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: #2d2d2d;
  /*font-family: Arial, Helvetica, sans-serif;*/
  font-family: 'Open Sans', sans-serif;
  line-height: 1.6;
  background: #fff;
  overflow-x: hidden;
}

.d-none {
  display: none;
}

.d-block {
  display: block;
}

.d-flex {
  display: flex;
}

.justify-content-between {
  justify-content: space-between;
}

.align-items-center,
.align-items-lg-center {
  align-items: center;
}

.gap-3 {
  gap: 1rem;
}

.gap-4 {
  gap: 1.5rem;
}

.ms-auto {
  margin-left: auto;
}

.me-2 {
  margin-right: .5rem;
}

.mt-4 {
  margin-top: 1.5rem;
}

.mb-3 {
  margin-bottom: 1rem;
}

.text-center {
  text-align: center;
}

.position-relative {
  position: relative;
}

.list-reset {
  list-style: none;
  padding: 0;
  margin: 0;
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin-right: calc(var(--bs-gutter-x, 1.5rem) * -.5);
  margin-left: calc(var(--bs-gutter-x, 1.5rem) * -.5);
  row-gap: var(--bs-gutter-y, 0);
}

.row > * {
  width: 100%;
  max-width: 100%;
  padding-right: calc(var(--bs-gutter-x, 1.5rem) * .5);
  padding-left: calc(var(--bs-gutter-x, 1.5rem) * .5);
  margin-top: var(--bs-gutter-y, 0);
}

.g-3 {
  --bs-gutter-x: 1rem;
  --bs-gutter-y: 1rem;
}

.g-4 {
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 1.5rem;
}

.g-5 {
  --bs-gutter-x: 3rem;
  --bs-gutter-y: 3rem;
}

.col-12 {
  flex: 0 0 auto;
  width: 100%;
}

.swiper {
  display: block;
  overflow: hidden;
}

.swiper-wrapper {
  display: flex;
  width: 100%;
  height: 100%;
}

.swiper-slide {
  flex-shrink: 0;
}

.hero-slide {
  flex: 0 0 100%;
  width: 100%;
}

.product-swiper .swiper-slide,
.factory-swiper .swiper-slide,
.cert-swiper .swiper-slide {
  flex: 0 0 auto;
  height: auto;
}

.swiper:not(.swiper-initialized) .swiper-wrapper {
  transform: translateX(calc(var(--fallback-index, 0) * -100%));
  transition: transform .7s ease;
}

.swiper:not(.swiper-initialized) .swiper-slide {
  display: none;
}

.swiper:not(.swiper-initialized) .swiper-slide.is-fallback-active {
  display: flex;
}

.cert-swiper:not(.swiper-initialized) .swiper-wrapper {
  gap: 26px;
}

.cert-swiper:not(.swiper-initialized) .swiper-slide {
  display: block;
  flex: 0 0 calc((100% - 78px) / 4);
}

a {
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

.container {
  width: 100%;
  max-width: 1530px;
  margin-right: auto;
  margin-left: auto;
  padding-right: 20px;
  padding-left: 20px;
}

/*
.socials a[aria-label="Facebook"]::before {
  content: "f";
  font-weight: 700;
}

.socials a[aria-label="Twitter"]::before {
  content: "X";
}

.socials a[aria-label="LinkedIn"]::before {
  content: "in";
  font-weight: 700;
  font-size: .6875rem;
}

.socials a[aria-label="YouTube"]::before {
  content: "▶";
  font-size: .625rem;
}

.socials a[aria-label="TikTok"]::before {
  content: "♪";
}

.socials i {
  display: none;
}

*/

.hero-section,
.hero-swiper,
.hero-slide {
  min-height: clamp(430px, 42vw, 690px);
}

.hero-section {
  overflow: hidden;
}

.hero-slide {
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #173f2a;
}

.hero-slide-alt {
  background: #173f2a;
}

.hero-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(5, 37, 20, .28), rgba(7, 53, 28, .12) 45%, rgba(6, 44, 24, .72) 64%, rgba(6, 44, 24, .92));
}

.hero-slide-alt::before {
  background: linear-gradient(90deg, rgba(5, 35, 28, .32), rgba(8, 48, 38, .14) 42%, rgba(10, 60, 44, .74) 64%, rgba(7, 40, 34, .92));
}

.hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-copy {
  position: relative;
  z-index: 2;
  width: min(650px, 100%);
  margin-left: auto;
  color: #fff;
  text-shadow: 0 3px 12px rgba(0, 0, 0, .35);
}

.hero-copy h1 {
  margin: 0 0 18px;
  font-size: clamp(2.5rem, 4.2vw, 4.375rem);
  font-weight: 800;
  text-transform: uppercase;
}

.hero-copy p {
  font-size: clamp(1.25rem, 2.1vw, 2rem);
  max-width: 680px;
  margin-bottom: 28px;
  line-height: 1.28;
  overflow-wrap: break-word;
}

.btn {
  border-radius: 999px;
  padding: 12px 34px;
  font-weight: 600;
  border: 0;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}

.btn i {
  margin-left: 12px;
  transition: transform .25s ease;
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, .16);
}

.btn:hover i {
  transform: translateX(5px);
}

.btn-accent {
  color: #fff;
  background: var(--red);
}

.btn-accent:hover {
  color: #fff;
  background: #a92d12;
}

.btn-green {
  color: #fff;
  background: var(--lime);
}

.btn-green:hover {
  color: #fff;
  background: #37b929;
}

.hero-nav {
  width: 46px;
  height: 46px;
  color: #fff;
}

.hero-nav,
.hero-nav.swiper-button-prev,
.hero-nav.swiper-button-next {
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, .18);
}

.hero-nav.swiper-button-prev::after {
  content: "‹";
}

.hero-nav.swiper-button-next::after {
  content: "›";
}

.hero-nav::after {
  font-size: 1.375rem;
  font-weight: 700;
}

.swiper-pagination-bullet {
  background: #fff;
  opacity: .75;
}

.swiper-pagination-bullet-active {
  background: var(--lime);
  opacity: 1;
}

.section-pad {
  padding: clamp(50px, 5vw, 40px) 0;
}

.section-title {
  margin: 0 0 56px;
  text-align: center;
  font-size: clamp(1.75rem, 2.8vw, 2.5rem);
  font-weight: 700;
  color: #222;
}

.category-tabs {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 40px;
}

.category-tab {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 72px;
  padding: 6px 12px;
  color: #333;
  text-align: left;
  background: #f4f5f4;
  border: 1px solid #e5e5e5;
  border-radius: 10px;
  cursor: pointer;
  transition: transform .25s ease, background .25s ease, color .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.category-tab img {
  width: 78px;
  height: 54px;
  object-fit: cover;
  border-radius: 8px;
  flex-shrink: 0;
}

.category-tab span {
  font-size: .9375rem;
  font-weight: 500;
  line-height: 1.3;
}

.category-tab:hover,
.category-tab.active {
  color: #fff;
  background: #088a3a;
  border-color: #088a3a;
  box-shadow: 0 8px 20px rgba(8, 138, 58, .2);
  transform: translateY(-2px);
}

.product-scroll {
  padding: 60px 0 30px;
}

.product-card img {
  width: 100%;
  aspect-ratio: 1 / 0.95;
  object-fit: cover;
  border-radius: 14px;
}

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

.product-swiper:not(.swiper-initialized) .swiper-wrapper {
  gap: 16px;
  transform: none;
}

.product-swiper:not(.swiper-initialized) .swiper-slide {
  display: block;
  flex: 0 0 calc((100% - 16px) / 2);
}

.product-card h3 {
  min-height: 2.6rem;
  margin: 14px 0 6px;
  font-size: .9375rem;
  font-weight: 400;
  line-height: 1.4;
  color: #4a4a4a;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.price {
  margin: 0;
  color: #e53935;
  font-size: 1.1875rem;
  font-weight: 500;
  line-height: 1.3;
}

.hover-lift {
  transition: transform .28s ease, box-shadow .28s ease;
}

.hover-lift:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, .12);
}

.section-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  margin-top: 32px;
}

.round-pair {
  display: flex;
  gap: 16px;
}

.circle-btn {
  display: inline-grid;
  width: 44px;
  height: 44px;
  place-items: center;
  color: #fff;
  background: #52c41a;
  border: 0;
  border-radius: 50%;
  font-size: 1.25rem;
  transition: transform .25s ease, background .25s ease, box-shadow .25s ease;
  cursor: pointer;
}

.circle-btn:hover {
  transform: translateY(-2px);
  background: #46b014;
  box-shadow: 0 6px 16px rgba(82, 196, 26, .35);
}

.profile-section {
  position: relative;
  min-height: 760px;
  padding: 86px 0 40px;
  overflow: hidden;
}

.profile-bg {
  position: absolute;
  inset: 0 0 auto;
  height: 640px;
  background-image: linear-gradient(90deg, rgba(255, 255, 255, .04), rgba(255, 255, 255, .7)), url("../assets/factory-bg.jpg");
  background-size: cover;
  background-position: center top;
}

.profile-copy {
  width: min(970px, 100%);
  margin: auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.profile-copy .section-title {
  margin-bottom: 26px;
}

.profile-copy p {
  font-size: 1.125rem;
  color: #343434;
}

.factory-panel {
  position: relative;
  z-index: 2;
  margin: 165px auto 0;
  max-width: 1530px;
  padding: 55px 98px;
  border-radius: 20px;
  background: rgba(255, 255, 255, .4);
  box-shadow: 0 12px 38px rgba(0, 0, 0, .13);
  /*backdrop-filter: blur(6px);*/
}

.factory-swiper {
  overflow: hidden;
  border-radius: 14px;
}

.factory-panel img {
  width: 100%;
aspect-ratio: 4/2.5;
  object-fit: cover;
  border-radius: 14px;
}

.factory-prev,
.factory-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
}

.factory-prev {
  left: 24px;
}

.factory-next {
  right: 24px;
}

.why-section {
  background: url(../assets/choose-bg.jpg) no-repeat left center;
  position: relative;
  overflow: hidden;
}


.feature-item {
  display: flex;
  gap: 28px;
  align-items: flex-start;
  padding: 18px;
  border-radius: 8px;
}

.feature-icon {
  flex: 0 0 78px;
  display: inline-grid;
  width: 78px;
  height: 78px;
  place-items: center;
  color: #fff;
  border-radius: 18px;
  font-size: 2.375rem;
}

.feature-icon.black {
  background: #171717;
}

.feature-icon.red {
  background: var(--red);
}

.feature-item h3 {
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  margin-bottom: 12px;
  font-weight: 500;
}

.feature-item p {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
}

.cta-band,
.news-title-band {
  padding: 70px 0;
  color: #fff;
  background-size: cover;
  background-position: center;
}

.cta-band {
  background-image: linear-gradient(rgba(5, 45, 45, .1), rgba(5, 45, 45, .68)), url("../assets/cta.jpg");
}

.cta-band h2,
.news-title-band h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
}

.cta-band p,
.news-title-band p {
  font-size: clamp(1.125rem, 2vw, 1.5625rem);
}

.category-card {
  height: 100%;
  overflow: hidden;
  background: #eee;
  border-radius: 8px;
}

.category-card-link {
  display: block;
  height: 100%;
  color: inherit;
  text-decoration: none;
}

.category-card img {
  width: 100%;
  aspect-ratio: 1.12 / 1;
  object-fit: cover;
}

.category-card div {
  padding: 24px 24px 34px;
}

.category-card h3 {
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 14px;
}

.category-card p {
  color: #757575;
  font-size: .9rem;
}

.category-card.dark {
  background: #303030;
  color: #fff;
}

.category-card.dark p {
  color: #fff;
}

.certificate-section {
  background:url("../assets/cert-bg.jpg") no-repeat left bottom;background-size: cover;
}

.cert-swiper {
  position: relative;
  padding: 0 25px;
}

.cert-swiper .swiper-wrapper {
  transition-timing-function: cubic-bezier(.22, 1, .36, 1);
  will-change: transform;
}

.cert-card {
  margin: 8px 0;
  text-align: center;
  border-radius: 10px;
}

.cert-card img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: center;
  border: 4px solid #343434;
  border-radius: 8px;
  background: #fff;
}

.cert-card figcaption {
  margin: 15px auto;
  width:98%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  padding: 2px 0 15px;
  font-size: 1rem;
  color: #3d3d3d;
}

.cert-prev,
.cert-next {
  position: absolute;
  top: 40%;
  z-index: 3;
  background: var(--red);
}

.cert-prev {
  left: 0;
}

.cert-next {
  right: 0;
}

.news-section{min-height: 450px}

.news-section .col-lg-4 {
  display: flex;
}

.news-section .hover-lift:hover {
  transform: none;
}

.news-title-band {
  background-image: linear-gradient(rgba(40, 80, 70, .1), rgba(40, 80, 70, .66)), url("../assets/news-bg.jpg");
}

.news-card {
  width: 100%;
  height: 100%;
  border-radius: 8px;
  overflow: hidden;
  background: #efefef;
}

.news-card.side {
  position: relative;
  padding: 0;
}

.news-card.side .news-card-media {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1;
  height: 205px;
  overflow: hidden;
  opacity: 0;
  transform: translateY(-12px);
  transition: opacity .3s ease, transform .3s ease;
}

.news-card.side .news-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news-link {
  color: inherit;
  text-decoration: none;
}

.news-card.side .news-card-body {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  padding: 35px 38px 5px;
  transition: top .3s ease, padding .3s ease;
}

/* .news-card.side::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 230px;
  height: 170px;
  background: url("../assets/logo.jpg") center / contain no-repeat;
  opacity: .045;
} */

.news-card.side:hover .news-card-media {
  opacity: 1;
  transform: translateY(0);
}

.news-card.side:hover .news-card-body {
  display: flex;
  flex-direction: column;
  top: 205px;
  padding-top: 26px;
}

.news-card time {
  color: var(--green);
}

.news-card time strong {
  display: block;
  font-size: 2.625rem;
  line-height: 1;
}

.news-card h3 {
  margin: 62px 0 26px;
  font-size: 1.1875rem;
  font-weight: 800;
  line-height: 1.5;
}

.news-card.side:hover h3 {
  order: 1;
  margin: 0 0 16px;
}

.news-card.side:hover time {
  order: 2;
  margin-bottom: 16px;
}

.news-card.side:hover time strong,
.news-card.side:hover time span {
  display: none;
}

.news-card.side:hover time::after {
  content: attr(data-date);
  display: block;
  font-size: 1rem;
  line-height: 1.5;
}

.news-card p {
  color: #737373;
  line-height: 1.5;font-size: 1rem;
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 3;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
}

.news-card.side:hover p {
  order: 3;
}

.news-card.side .news-more {
  position: absolute;
  right: 40px;
  bottom: 38px;
  display: inline-grid;
  width: 48px;
  height: 48px;
  place-items: center;
  color: #fff;
  background: var(--lime);
  border-radius: 50%;
  font-size: 1.5rem;
}

.news-card.main img {
  width: 100%;
  aspect-ratio: 2/1;
  object-fit: cover;
}

.news-card.main .news-card-image-link {
  display: block;
  overflow: hidden;
}

.news-card.main .news-card-copy {
  padding: 22px 28px 28px;
}

.news-card.main h3 {
  margin: 0 0 16px;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(320px, 45%) 1fr;
  background: #eee;
}

.contact-image {
  border-radius: 0 24px 24px 0;
  background-image: linear-gradient(rgba(0, 0, 0, .1), rgba(0, 0, 0, .1)), url("../assets/contact-left-2.jpg");
  background-size: cover;
  background-position: center;
}

.contact-form-wrap {
  padding: clamp(48px, 6vw, 88px) clamp(24px, 8vw, 95px);
}

.contact-form-wrap h2 {
  font-size: clamp(2.125rem, 3.4vw, 3rem);
  font-weight: 800;
}

.contact-form-wrap p {
  color: #565656;
}

.form-field {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  min-height: 58px;
  padding: 0 16px;
  background: #fff;
  border: 1px solid #d7d7d7;
  border-radius: 8px;
}

.form-field i {
  color: #8e8e8e;
  font-size: 1.25rem;
}

.form-field input,
.form-field textarea {
  width: 100%;
  border: 0;
  outline: 0;
  color: #333;
  background: transparent;
}

.form-field.textarea {
  align-items: flex-start;
  padding-top: 16px;
}

.form-field textarea {
  min-height: 98px;
  resize: vertical;
}

.choose-box div:nth-child(2) .feature-icon{background: #b93914}
.choose-box div:nth-child(3) .feature-icon{background: #b93914}
.choose-box div:nth-child(4) .feature-icon{background: #1a1a1a}
.choose-box .feature-icon img{width:55px;height: 55px}

@media (max-width: 1199.98px) {
  .category-tabs {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .product-swiper:not(.swiper-initialized) .swiper-slide {
    flex-basis: calc((100% - 48px) / 4);
  }

  .factory-panel {
    padding: 42px 76px;
  }
}

@media (min-width: 576px) {
  .col-sm-6 {
    flex: 0 0 auto;
    width: 50%;
  }
}

@media (min-width: 768px) {
  .col-md-3 {
    flex: 0 0 auto;
    width: 25%;
  }

  .col-md-4 {
    flex: 0 0 auto;
    width: 33.333333%;
  }

  .col-md-6 {
    flex: 0 0 auto;
    width: 50%;
  }
}

@media (min-width: 992px) {
  .d-lg-block {
    display: block;
  }

  .col-lg-2 {
    flex: 0 0 auto;
    width: 16.666667%;
  }

  .col-lg-3 {
    flex: 0 0 auto;
    width: 25%;
  }

  .col-lg-4 {
    flex: 0 0 auto;
    width: 33.333333%;
  }
}

@media (max-width: 991.98px) {
  .hero-copy {
    margin-left: 0;
  }

  .hero-slide {
    background: #173f2a;
  }

  .hero-slide::before {
    background: linear-gradient(90deg, rgba(6, 41, 22, .72), rgba(6, 41, 22, .5));
  }

  .hero-bg-img {
    object-position: 34% center;
  }

  .category-tabs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-swiper:not(.swiper-initialized) .swiper-wrapper {
    gap: 12px;
  }

  .product-swiper:not(.swiper-initialized) .swiper-slide {
    flex-basis: calc((100% - 12px) / 2);
  }

  .cert-swiper:not(.swiper-initialized) .swiper-slide {
    flex-basis: calc((100% - 26px) / 2);
  }

  .profile-section {
    min-height: auto;
    padding-bottom: 70px;
  }

  .factory-panel {
    margin-top: 70px;
  }

  .contact-section {
    grid-template-columns: 1fr;
  }

  .contact-image {
    display: none;
  }
}

@media (max-width: 767.98px) {
  .product-scroll {
    padding: 30px 0 30px;
  }
  .section-pad {
    padding: 24px 0;
  }

  .hero-section,
  .hero-swiper,
  .hero-slide {
    min-height: 520px;
  }

  .hero-copy h1 {
    font-size: 2.375rem;
  }

  .hero-copy p {
    font-size: 1.125rem;
    max-width: min(300px, calc(100vw - 40px));
  }

  .hero-copy {
    width: calc(100vw - 40px);
    max-width: calc(100vw - 40px);
  }

  .section-title {
    max-width:95%;
    margin:0 auto 1.5rem;
    font-size: 1.625rem;
  }

  .category-tabs {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-bottom: 28px;
  }

  .category-tab {
    min-height: 52px;
    padding: 6px 10px;
    gap: 8px;
    border-radius: 8px;
  }

  .category-tab img {
    width: 48px;
    height: 34px;
    border-radius: 6px;
  }

  .category-tab span {
    font-size: .8125rem;
    font-weight: 500;
    line-height: 1.25;
  }

  .product-card h3 {
    font-size: .875rem;
  }

  .price {
    font-size: 1.125rem;
  }

  .section-actions {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    margin-top: 24px;
  }

  .choose-box{display: grid;grid-template-columns: repeat(2, 1fr);gap: 10px}

  .factory-panel {
    padding: 20px 20px;
    margin-top: 40px;
    background: rgba(255, 255, 255,.8);
    border:solid 1px #dedede
  }

  .factory-panel img {
    height: 200px;
  }

  .factory-prev {
    left: 12px;
  }

  .factory-next {
    right: 12px;
  }

  .feature-item {
    gap: 10px;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 10px 4px;
  }

  .feature-icon {
    flex: 0 0 52px;
    width: 52px;
    height: 52px;
    font-size: 1.5rem;
    border-radius: 14px;
  }

  .feature-item h3 {
    font-size: 0.9375rem;
    margin-bottom: 6px;
    line-height: 1.3;
  }

  .feature-item p {
    font-size: 0.8125rem;
    line-height: 1.35;
  }

  .cert-swiper {
    padding: 0 0 52px;
  }

  .cert-prev,
  .cert-next {
    top: auto;
    bottom: 0;
  }

  .cert-prev {
    left: calc(50% - 58px);
  }

  .cert-next {
    right: calc(50% - 58px);
  }

  .cert-swiper:not(.swiper-initialized) .swiper-slide {
    flex-basis: calc((100% - 26px) / 2);
  }
  .cert-card figcaption {
    margin-top: 22px;
    min-height: 58px;
    font-size: .85rem;
    color: #3d3d3d;
  }
  .news-card p {
    color: #737373;
    line-height: 1.5;font-size: 1rem;
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 2;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
  }

  .news-card h3 {
    margin: 25px 0 26px;
    font-size: 1rem;
    font-weight: 800;
    line-height: 1.5;
  }

  .news-card.side .news-card-body {
    position: relative;
    flex: 1;
    padding: 20px 20px;
  }
  .news-card.side {
    min-height:auto!important;
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 0;
  }
  .news-card .news-more{display: none}
  .contact-form-wrap .g-3{--bs-gutter-y:.5rem}
  .profile-copy p {
    font-size: .95rem;
    color: #343434;
    text-align: left;
  }
  .choose-box .feature-icon img{width:40px;height: 40px}
}

@media (max-width: 575.98px) {
  .container {
    padding-left: 16px;
    padding-right: 16px;
  }

  .category-card-section .row {
    --bs-gutter-x: 12px;
    --bs-gutter-y: 12px;
  }

  .category-card-section .col-sm-6 {
    flex: 0 0 auto;
    width: 50%;
  }

  .category-card div {
    padding: 16px 8px 5px;
  }

  .category-card h3 {
    margin-bottom: 8px;
    font-size: 1rem;
  }

  .category-card p {
    font-size: .75rem;
    line-height: 1.45;
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 2;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
  }

  .btn {
    width: auto;
    max-width: 100%;
    padding-left: 26px;
    padding-right: 26px;
  }



  .cert-card img {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
  }
}
