@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary: #3a1467;
  --secondary: #0080003b;
  --white: #fff;
  --black: #000;
  --text: #666;
  --grey: #3a146614;
  --container: 1280px;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
}

body, html {
  font-size: 16px;
}

textarea {
  font-family: "Poppins", serif;
}

a {
  text-decoration: none;
}

p, strong, a, li {
  color: var(--text);
  line-height: 1.3;
  font-family: "Poppins", serif;
}

ul li {
  list-style: none;
}

h1, h2, h3, h4, h5 {
  font-family: "Kugile";
  line-height: 1.3 !important;
}

.btn {
  display: inline-block;
  padding: 12px 24px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 400;
  border: 2px solid var(--primary);
  border-radius: 5px;
  transition: all 0.3s ease;
}
.btn.btn-primary {
  background: var(--primary);
  color: var(--white);
  border: 2px solid var(--primary);
  font-size: 14px;
}
.btn.btn-primary:hover {
  background: transparent;
  color: var(--primary);
}
.btn.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
  font-size: 14px;
}
.btn.btn-outline:hover {
  background: var(--primary);
  color: var(--white);
}

.heading h3 {
  font-size: 36px;
  line-height: 1.3;
  color: var(--primary);
}

.fixed-media {
  position: fixed;
  bottom: 5%;
  right: 5%;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 20px;
}
.fixed-media .btn {
  border-radius: 50px;
  color: var(--white);
}
.fixed-media .wts {
  padding: 8px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  transition: all 0.3s ease;
}
.fixed-media .wts svg {
  width: 24px;
  display: block;
}
.fixed-media .wts svg path {
  fill: var(--white);
}

.home-secA .homeSlider {
  height: 100vh;
}
.home-secA .homeSlider .swiper-slide {
  position: relative;
  height: 100vh;
}
.home-secA .homeSlider .swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.home-secA .homeSlider .swiper-slide .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.45) 60%, rgba(0, 0, 0, 0.15) 100%);
  z-index: 1;
}
.home-secA .homeSlider .swiper-slide .content {
  position: absolute;
  top: 50%;
  left: 8%;
  transform: translateY(-50%);
  max-width: 750px;
  z-index: 2;
  color: var(--white);
}
.home-secA .homeSlider .swiper-slide .content .tag {
  display: inline-block;
  padding: 10px 22px;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  margin-bottom: 25px;
  font-size: 14px;
  letter-spacing: 1px;
}
.home-secA .homeSlider .swiper-slide .content h1 {
  font-size: 64px;
  line-height: 1.1;
  font-weight: 800;
  margin-bottom: 25px;
}
.home-secA .homeSlider .swiper-slide .content p {
  font-size: 16px;
  max-width: 620px;
  color: var(--white);
  opacity: 0.8;
  margin-bottom: 35px;
}
.home-secA .homeSlider .swiper-slide .content .btn-group {
  display: flex;
  gap: 15px;
}
.home-secA .homeSlider .swiper-slide .content .btn-group .btn-primary {
  background: var(--white);
  color: var(--black);
}
.home-secA .homeSlider .swiper-slide .content .btn-group .btn-outline {
  border-color: var(--white);
  color: var(--white);
}
.home-secA .homeSlider .swiper-slide .content .btn-group .btn-outline:hover {
  background: var(--white);
  color: var(--black);
}

@media (max-width: 991px) {
  .home-secA .homeSlider .content h1 {
    font-size: 52px;
  }
}
@media (max-width: 576px) {
  .home-secA .homeSlider .content {
    left: 20px;
    right: 20px;
  }
  .home-secA .homeSlider .content h1 {
    font-size: 36px;
  }
  .home-secA .homeSlider .content p {
    font-size: 15px;
  }
  .home-secA .homeSlider .content .btn-group {
    flex-direction: column;
  }
}


@media (max-width: 768px) {
  .home-secE .content {
    padding: 35px;
  }
  .home-secE .content h3 {
    font-size: 32px;
  }
}
.home-secF {
  padding: 100px 0;
  background: linear-gradient(135deg, #1b0f45, #2e1065, #4c1d95);
  position: relative;
  overflow: hidden;
}
.home-secF:before {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  top: -150px;
  left: -100px;
}
.home-secF:after {
  content: "";
  position: absolute;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  right: -120px;
  bottom: -120px;
}

.footer-contact {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  position: relative;
  z-index: 2;
}

.contact-content {
  width: 45%;
  color: #fff;
}

.sub-title {
  display: inline-block;
  padding: 10px 20px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 30px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 20px;
}

.contact-content h2 {
  font-size: 36px;
  line-height: 1.2;
  margin-bottom: 20px;
  font-weight: 700;
  color: var(--white);
  width: 100%;
  max-width: 370px;
}

.contact-content p {
  font-size: 16px;
  color: var(--white);
  margin-bottom: 35px;
  opacity: 0.7;
}

.contact-info {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.info-box {
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(10px);
  padding: 15px 20px;
  border-radius: 5px;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: 0.4s;
}

.info-box:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.15);
}

.info-box i {
  color: #facc15;
  font-size: 18px;
}

.info-box span {
  color: #fff;
  font-size: 15px;
  font-weight: 500;
}

.contact-form {
  width: 50%;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 40px;
  border-radius: 12px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  margin-bottom: 15px;
}

.contact-form input {
  height: 40px;
  border: none;
  border-radius: 5px;
  padding: 0 20px;
  outline: none;
  font-size: 15px;
}

.contact-form textarea {
  width: 100%;
  height: 150px;
  border: none;
  border-radius: 5px;
  padding: 20px;
  outline: none;
  resize: none;
  margin-bottom: 20px;
  font-size: 15px;
}

.contact-form button {
  border: none;
  background: var(--white);
  color: var(--black);
  padding: 7px 24px;
  border-radius: 5px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: 0.4s;
  text-align: center;
  margin: 0 auto;
  display: flex;
  justify-content: center;
}

.contact-form button:hover {
  transform: translateY(-4px);
}

@media (max-width: 991px) {
  .footer-contact {
    flex-direction: column;
  }
  .contact-content {
    width: 100%;
  }
  .contact-form {
    width: 100%;
  }
}
@media (max-width: 576px) {
  .contact-content h2 {
    font-size: 34px;
  }
  .form-grid {
    grid-template-columns: 1fr;
  }
}
.home-secIndustries {
  padding: 110px 0;
  background: var(--grey);
  position: relative;
  overflow: hidden;
}
.home-secIndustries::before {
  content: "";
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(58, 20, 103, 0.06) 0%, transparent 70%);
  pointer-events: none;
}
.home-secIndustries::after {
  content: "";
  position: absolute;
  bottom: -150px;
  left: -100px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 128, 0, 0.05) 0%, transparent 70%);
  pointer-events: none;
}
.home-secIndustries .ind-header {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: end;
  gap: 40px;
  margin-bottom: 70px;
}
.home-secIndustries .ind-header .ind-tag {
  grid-column: 1/-1;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #00a846;
  margin-bottom: 10px;
}
.home-secIndustries .ind-header .ind-tag::before {
  content: "";
  display: inline-block;
  width: 30px;
  height: 2px;
  background: #00a846;
}
.home-secIndustries .ind-header h3 {
  font-size: 48px;
  font-weight: 800;
  color: #1a1a1a;
  line-height: 1.5 !important;
  grid-column: 1/3;
}
.home-secIndustries .ind-header p {
  font-size: 16px;
  color: rgba(0, 0, 0, 0.45);
  max-width: 300px;
}
.home-secIndustries .ind-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: #e8e8e8;
  border-radius: 20px;
  overflow: hidden;
}
.home-secIndustries .ind-card {
  position: relative;
  padding: 44px 40px;
  background: #ffffff;
  overflow: hidden;
  cursor: pointer;
  transition: background 0.4s ease;
}
.home-secIndustries .ind-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background: linear-gradient(90deg, #00a846, #3a1467);
  transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.home-secIndustries .ind-card:hover {
  background: #f5f5f5;
}
.home-secIndustries .ind-card:hover::after {
  width: 100%;
}
.home-secIndustries .ind-card:hover .ind-card__bg {
  opacity: 1;
  transform: scale(1);
}
.home-secIndustries .ind-card:hover .ind-card__icon {
  color: #00a846;
  transform: scale(1.1);
}
.home-secIndustries .ind-card:hover .ind-card__number {
  opacity: 0.07;
  transform: translate(10px, -10px);
}
.home-secIndustries .ind-card:hover .ind-card__arrow {
  opacity: 1;
  transform: translateX(0);
}
.home-secIndustries .ind-card:hover h4 {
  color: #1a1a1a;
}
.home-secIndustries .ind-card:first-child {
  border-radius: 20px 0 0 0;
}
.home-secIndustries .ind-card:nth-child(3) {
  border-radius: 0 20px 0 0;
}
.home-secIndustries .ind-card:last-child {
  border-radius: 0 0 20px 0;
}
.home-secIndustries .ind-card__bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 70%, rgba(58, 20, 103, 0.05) 0%, transparent 60%);
  opacity: 0;
  transform: scale(1.2);
  transition: 0.5s ease;
}
.home-secIndustries .ind-card__icon {
  width: 44px;
  height: 44px;
  color: rgba(0, 0, 0, 0.22);
  margin-bottom: 24px;
  transition: 0.4s ease;
  position: relative;
  z-index: 2;
}
.home-secIndustries .ind-card__icon svg {
  width: 100%;
  height: 100%;
}
.home-secIndustries .ind-card__body {
  position: relative;
  z-index: 2;
}
.home-secIndustries .ind-card__body h4 {
  font-size: 20px;
  color: #222222;
  margin-bottom: 12px;
  transition: color 0.3s;
  font-family: "Poppins", serif;
  font-weight: 600;
}
.home-secIndustries .ind-card__body p {
  font-size: 14px;
  color: rgba(0, 0, 0, 0.45);
  line-height: 1.7;
  max-width: 240px;
}
.home-secIndustries .ind-card__number {
  position: absolute;
  bottom: 20px;
  right: 24px;
  font-size: 80px;
  font-weight: 800;
  color: rgba(0, 0, 0, 0.04);
  line-height: 1;
  font-family: "Poppins", serif;
  transition: 0.4s ease;
  z-index: 1;
}
.home-secIndustries .ind-card__arrow {
  position: absolute;
  top: 44px;
  right: 40px;
  font-size: 20px;
  color: #00a846;
  opacity: 0;
  transform: translateX(-8px);
  transition: 0.3s ease;
  z-index: 2;
}
.home-secIndustries .ind-card--cta {
  background: linear-gradient(135deg, #3a1467 0%, #1b0f45 100%);
}
.home-secIndustries .ind-card--cta:hover {
  background: linear-gradient(135deg, #4a1a80 0%, #2a1560 100%);
}
.home-secIndustries .ind-card--cta:hover .ind-card__bg {
  opacity: 0;
}
.home-secIndustries .ind-card--cta .ind-cta-inner {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.home-secIndustries .ind-card--cta .ind-cta-label {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 12px;
}
.home-secIndustries .ind-card--cta h4 {
  font-size: 26px;
  color: #fff !important;
  font-family: "Poppins", serif;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 28px;
  max-width: 220px;
}
.home-secIndustries .ind-card--cta .btn-primary {
  background: #fff;
  color: #3a1467;
  border-color: #fff;
  font-size: 13px;
  padding: 10px 22px;
  width: -moz-fit-content;
  width: fit-content;
}
.home-secIndustries .ind-card--cta .btn-primary:hover {
  background: transparent;
  color: #fff;
}

@media (max-width: 991px) {
  .home-secIndustries .ind-header {
    grid-template-columns: 1fr;
    margin-bottom: 50px;
  }
  .home-secIndustries .ind-header h2 {
    grid-column: 1;
    font-size: 42px;
  }
  .home-secIndustries .ind-header p {
    max-width: 100%;
  }
  .home-secIndustries .ind-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .home-secIndustries .ind-card:first-child {
    border-radius: 20px 0 0 0;
  }
  .home-secIndustries .ind-card:nth-child(3) {
    border-radius: 0;
  }
  .home-secIndustries .ind-card:nth-last-child(2) {
    border-radius: 0;
  }
  .home-secIndustries .ind-card:last-child {
    border-radius: 0 0 20px 0;
  }
}
@media (max-width: 576px) {
  .home-secIndustries {
    padding: 70px 0;
  }
  .home-secIndustries .ind-header h2 {
    font-size: 32px;
  }
  .home-secIndustries .ind-grid {
    grid-template-columns: 1fr;
    gap: 2px;
  }
  .home-secIndustries .ind-card {
    border-radius: 0 !important;
  }
  .home-secIndustries .ind-card:first-child {
    border-radius: 20px 20px 0 0 !important;
  }
  .home-secIndustries .ind-card:last-child {
    border-radius: 0 0 20px 20px !important;
  }
  .home-secIndustries .ind-card__number {
    font-size: 60px;
  }
}
.home-secK {
  padding: 70px 0;
  background: var(--grey);
}
.home-secK .heading {
  width: 100%;
  max-width: 450px;
  margin: 0 auto 40px;
  text-align: center;
}
.home-secK .heading h3 {
  font-size: 32px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0;
}
.home-secK .heading h3 span {
  display: block;
  color: var(--purple);
  font-size: 32px;
  margin-top: 5px;
}
.home-secK .accordion-wrapper {
  max-width: 800px;
  margin: 0 auto;
}
.home-secK .accordion-item {
  background: var(--white);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}
.home-secK .accordion-item:hover {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.home-secK .accordion-item.active .accordion-icon {
  color: var(--black);
}
.home-secK .accordion-item.active .accordion-header h4 {
  color: var(--black);
}
.home-secK .accordion-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.home-secK .accordion-header:hover {
  background: #fafafa;
}
.home-secK .accordion-header h4 {
  font-size: 16px;
  font-weight: 600;
  color: #666;
  margin: 0;
  flex: 1;
  font-family: "Poppins", serif;
  padding-right: 20px;
}
.home-secK .accordion-icon {
  font-size: 24px;
  font-weight: 300;
  color: #666;
  transition: all 0.3s ease;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.home-secK .accordion-content {
  padding: 0 25px 20px;
  display: none;
  background: var(--white);
  padding-right: 3rem;
}
.home-secK .accordion-content p {
  padding: 20px 0;
  margin: 0;
  font-size: 14px;
  color: #666;
  font-weight: 400;
  line-height: 1.8;
  font-size: 12px;
}
.home-secK .accordion-content ul {
  margin-left: 20px;
}
.home-secK .accordion-content ul li {
  font-size: 14px;
  color: #666;
  font-weight: 400;
  line-height: 1.8;
  list-style-type: disc;
}

.home-secM {
  padding: 70px 0;
}
.home-secM .heading {
  text-align: center;
  margin-bottom: 4rem;
}
.home-secM .heading h3 {
  color: var(--primary);
}
.home-secM .logoSlider {
  width: 100%;
}
.home-secM .logoSlider .swiper-wrapper {
  transition-timing-function: linear;
  align-items: center;
}
.home-secM .logoSlider .swiper-wrapper .swiper-slide img {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
}

@media (max-width: 991px) {
  .home-secB .about-row {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 80px;
  }
  .home-secB .reverse {
    grid-template-columns: 1fr;
  }
  .home-secB .reverse .content-box {
    margin-right: 0;
  }
  .home-secB .content-box {
    margin-left: 0;
    padding: 40px;
  }
  .home-secB .content-box .count {
    font-size: 80px;
  }
  .home-secB .content-box h3 {
    font-size: 34px;
  }
  .home-secB .media img {
    height: 450px;
  }
  .home-secC .grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .home-secD .wrapper {
    grid-template-columns: 1fr;
  }
  .home-secD .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .home-secE .content {
    padding: 35px;
  }
  .home-secE .content h3 {
    font-size: 32px;
  }
  .home-secF .footer-contact {
    flex-direction: column;
  }
  .home-secF .contact-content {
    width: 100%;
  }
  .home-secF .contact-form {
    width: 100%;
  }
  .home-secIndustries {
    padding: 70px 0;
  }
  .home-secIndustries .ind-header {
    grid-template-columns: 1fr;
    margin-bottom: 50px;
  }
  .home-secIndustries .ind-header h3 {
    grid-column: 1;
    font-size: 38px;
  }
  .home-secIndustries .ind-header p {
    max-width: 100%;
  }
  .home-secIndustries .ind-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .home-secIndustries .ind-card:first-child {
    border-radius: 20px 0 0 0;
  }
  .home-secIndustries .ind-card:nth-child(2) {
    border-radius: 0 20px 0 0;
  }
  .home-secIndustries .ind-card:nth-child(3) {
    border-radius: 0;
  }
  .home-secIndustries .ind-card:nth-last-child(2) {
    border-radius: 0;
  }
  .home-secIndustries .ind-card:last-child {
    border-radius: 0 0 20px 0;
  }
  .home-secK {
    padding: 50px 0;
  }
  .home-secK .heading h3 {
    font-size: 26px;
  }
  .home-secK .heading h3 span {
    font-size: 26px;
  }
  .home-secK .accordion-header h4 {
    font-size: 15px;
  }
  .home-secM {
    padding: 50px 0;
  }
}
@media (max-width: 767px) {
  .home-secA .homeSlider .content {
    left: 20px;
    right: 20px;
  }
  .home-secA .homeSlider .content h1 {
    font-size: 38px;
  }
  .home-secA .homeSlider .content p {
    font-size: 15px;
  }
  .home-secA .homeSlider .content .btn-group {
    flex-direction: column;
  }
  .home-secB {
    padding: 60px 0;
  }
  .home-secB .content-box {
    padding: 30px;
  }
  .home-secB .content-box .count {
    font-size: 60px;
  }
  .home-secB .content-box h3 {
    font-size: 28px;
  }
  .home-secB .media img {
    height: 350px;
  }
  .home-secE {
    padding: 80px 0;
  }
  .home-secE .content {
    padding: 30px;
  }
  .home-secE .content h3 {
    font-size: 28px;
  }
  .home-secE .content p {
    font-size: 15px;
  }
  .home-secF {
    padding: 60px 0;
  }
  .home-secF .contact-content h2 {
    font-size: 28px;
  }
  .home-secF .contact-form {
    padding: 25px;
  }
  .home-secIndustries .ind-header h3 {
    font-size: 32px;
  }
  .home-secIndustries .ind-card {
    padding: 30px 25px;
  }
  .home-secIndustries .ind-card__number {
    font-size: 60px;
  }
  .home-secK .accordion-header {
    padding: 15px 20px;
  }
  .home-secK .accordion-header h4 {
    font-size: 14px;
  }
  .home-secK .accordion-content {
    padding: 0 20px 15px;
    padding-right: 20px;
  }
}
@media (max-width: 576px) {
  .home-secA .homeSlider .content h1 {
    font-size: 30px;
  }
  .home-secA .homeSlider .content .tag {
    font-size: 12px;
    padding: 8px 16px;
  }
  .home-secB {
    padding: 40px 0;
  }
  .home-secB .about-row {
    margin-bottom: 50px;
  }
  .home-secB .content-box {
    padding: 25px;
  }
  .home-secB .content-box h3 {
    font-size: 24px;
  }
  .home-secB .feature-list {
    grid-template-columns: 1fr;
  }
  .home-secB .btn-group {
    flex-direction: column;
  }
  .home-secB .media img {
    height: 280px;
  }
  .home-secC {
    padding: 50px 0;
  }
  .home-secC .grid {
    grid-template-columns: 1fr;
  }
  .home-secC .card {
    padding: 30px 20px;
  }
  .home-secC .card .number {
    font-size: 40px;
  }
  .home-secC .card h4 {
    font-size: 18px;
  }
  .home-secD {
    padding: 50px 0;
  }
  .home-secD .product-grid {
    grid-template-columns: 1fr;
  }
  .home-secD .category-menu p {
    font-size: 13px;
  }
  .home-secE {
    padding: 60px 0;
  }
  .home-secE .content {
    padding: 25px;
  }
  .home-secE .content h3 {
    font-size: 24px;
  }
  .home-secF {
    padding: 50px 0;
  }
  .home-secF .contact-content h2 {
    font-size: 24px;
  }
  .home-secF .form-grid {
    grid-template-columns: 1fr;
  }
  .home-secF .contact-form {
    padding: 20px;
  }
  .home-secIndustries {
    padding: 50px 0;
  }
  .home-secIndustries .ind-header h3 {
    font-size: 26px;
  }
  .home-secIndustries .ind-grid {
    grid-template-columns: 1fr;
    gap: 2px;
  }
  .home-secIndustries .ind-card {
    border-radius: 0 !important;
    padding: 28px 22px;
  }
  .home-secIndustries .ind-card:first-child {
    border-radius: 20px 20px 0 0 !important;
  }
  .home-secIndustries .ind-card:last-child {
    border-radius: 0 0 20px 20px !important;
  }
  .home-secIndustries .ind-card__number {
    font-size: 50px;
  }
  .home-secIndustries .ind-card--cta h4 {
    font-size: 20px;
  }
  .home-secK {
    padding: 40px 0;
  }
  .home-secK .heading h3 {
    font-size: 22px;
  }
  .home-secK .heading h3 span {
    font-size: 22px;
  }
  .home-secK .accordion-header {
    padding: 14px 16px;
  }
  .home-secK .accordion-header h4 {
    font-size: 13px;
    padding-right: 12px;
  }
  .home-secK .accordion-content {
    padding: 0 16px 14px;
    padding-right: 16px;
  }
  .home-secM {
    padding: 40px 0;
  }
  .home-secM .heading h3 {
    font-size: 24px;
  }
}
@media (max-width: 375px) {
  .home-secA .homeSlider .content h1 {
    font-size: 26px;
  }
  .home-secB .content-box h3 {
    font-size: 20px;
  }
  .home-secC .card h4 {
    font-size: 16px;
  }
  .home-secK .accordion-header h4 {
    font-size: 12px;
  }
  .home-secK .accordion-icon {
    width: 24px;
    height: 24px;
    font-size: 20px;
  }
}/*# sourceMappingURL=home.css.map */