.hero-section {
  /* position: relative; */
  width: 100%;
  min-height: 100vh;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.18);
  z-index: 2;
}

/* Navbar */
.navbar {
  position: fixed !important;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 20;
  padding: 28px 55px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: transparent;
}

.logo-wrap {
  display: flex;
  align-items: center;
  gap: 14px;
}

.logo-text {
  color: #f2e7d2;
  font-family: "Cormorant Garamond", serif;
  font-size: 23px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  white-space: nowrap;
}

.logo-text img {
  width: 80px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 52px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links li a {
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  transition: 0.3s ease;
  position: relative;
  text-decoration: none;
}

.nav-links li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 1.5px;
  background: #fff;
  transition: 0.3s ease;
}

.nav-links li a:hover::after {
  width: 100%;
}

/* Hamburger */
.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: none !important;
  background: transparent;
  cursor: pointer;
  z-index: 35;
  position: relative;
}

.menu-toggle span {
  display: block;
  width: 28px;
  height: 2px;
  background: #fff;
  margin: 6px auto;
  transition: 0.3s ease;
  border-radius: 2px;
}

.menu-toggle.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* Mobile Sidebar */
.mobile-menu {
  position: fixed;
  top: 0;
  left: -320px;
  width: 300px;
  height: 100vh;
  background: rgba(15, 15, 15, 0.96);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 30;
  padding: 90px 30px 30px;
  transition: left 0.35s ease;
  box-shadow: 6px 0 20px rgba(0, 0, 0, 0.25);
}

.mobile-menu.active {
  left: 0;
}

.mobile-menu ul {
  display: flex;
  flex-direction: column;
  gap: 24px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.mobile-menu ul li a {
  color: #fff;
  font-size: 17px;
  font-weight: 500;
  display: block;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  text-decoration: none;
}

.menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  opacity: 0;
  visibility: hidden;
  transition: 0.3s ease;
  z-index: 25;
}

.menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Sticky Navbar */
.navbar.sticky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 5px 55px;
  transition: 0.3s ease;
}

/* Responsive */
@media (max-width: 1199px) {
  .nav-links {
    gap: 30px;
  }

  .logo-text {
    font-size: 20px;
  }
}

@media (max-width: 991px) {
  .nav-links {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .navbar {
    padding: 22px 22px;
  }

  .logo-text {
    font-size: 18px;
  }
}

@media (max-width: 767px) {
  .logo-wrap {
    gap: 10px;
  }

  .logo-text {
    font-size: 16px;
  }

  .mobile-menu {
    width: 270px;
    left: -270px;
  }
}

@media (max-width: 480px) {
  .navbar {
    padding: 18px 16px;
  }

  .logo-text {
    font-size: 14px;
    letter-spacing: 0.5px;
  }
}
/* ================ about us  start*/
.coyote-about-section {
  margin-top: 80px;
  margin-bottom: 80px;
}

.coyote-content {
  width: 100%;
  height: 100%;
}

.coyote-content h2 {
  font-size: 35px;
  font-weight: 600;
}

.coyote-img {
  width: 100%;
  height: 100%;
}

.coyote-img img {
  width: 100%;
  display: flex;
  justify-content: center;
  height: 500px;
  border-radius: 30px;
}
.coyote-content p {
  text-align: justify;
}

.our-story {
  background-color: #d41e26;
  color: #fff;
  padding: 1px 16px;
  border-radius: 30px;
}

.coyote-content h2 span {
  color: #d41e26;
}

/* ================ about us  end*/

/* =================== product-section start  */
/* Section Background */
.product-section {
  position: relative;
  width: 100%;
  padding: 80px 40px !important;
  /* background: linear-gradient(135deg, #0f172a, #1e293b); */
  background: #0842980f;
  overflow: hidden;
  margin-bottom: 80px;
}

/* Blur overlay */
.product-section::before {
  content: "";
  position: absolute;
  inset: 0;
  backdrop-filter: blur(6px);
  background: #84202912;
  z-index: 1;
}

/* Heading */
.product-heading-new {
  text-align: center;
  padding-bottom: 40px;
}

.product-heading-new .our-story {
  color: #fff;
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.product-heading-new h2 {
  font-size: 40px;
  font-weight: 600;
  color: #141619;
}

.product-heading-new span {
  color: #d41e26;
}

/* Cards */
.product-box {
  border-radius: 7px;
  overflow: hidden;
  margin-bottom: 20px;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(10px);
  transition: 0.4s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Hover Effect */
.product-box:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

/* Image */
.product-img {
  overflow: hidden;
}

.product-img img {
  width: 100%;
  transition: 0.4s;
  height: 280px;
  background-color: #c5c6ca;
}

/* Image zoom */
.product-box:hover img {
  transform: scale(1.1);
}

/* Product Name */
.product-heading {
  /* background: linear-gradient(90deg, #d41e26, #ff4d4d); */
  background-color: #141619;
  text-align: center;
}

.product-heading h3 {
  font-size: 18px;
  padding: 10px;
  margin: 0;
  color: #fff;
  font-weight: 500;
}

/* Remove underline */
.product-box a {
  text-decoration: none;
}

/* Content ऊपर रहे */
.product-section > * {
  position: relative;
  z-index: 2;
}

/* =================== product-section end  */

/* ======================== latest product start  */
.latest-product {
  position: relative;
  width: 100%;
  overflow: hidden;
  margin-top: 0 !important;
  padding-bottom: 50px;
}

.latest-product-slider {
  margin: 0;
}

.latest-slide {
  position: relative;
  overflow: hidden;
}

.latest-slide img {
  width: 100%;
  /* height: 720px; */
  object-fit: cover;
  display: block;
  border-radius: 20px;
}

/* dark overlay */
.latest-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.08));
  pointer-events: none;
  border-radius: 20px;
}

/* bottom right button */
.explore-btn {
  position: absolute;
  right: 50px;
  bottom: 40px;
  z-index: 5;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 185px;
  height: 52px;
  padding: 0 28px;
  border-radius: 40px;
  background: rgba(88, 34, 22, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  text-decoration: none;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition: all 0.35s ease;
}

.explore-btn:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.14);
  transform: translateY(-2px);
}

/* slick arrows */
/* .latest-product .slick-prev,
.latest-product .slick-next {
  width: 46px;
  height: 46px;
  z-index: 10;
} */

/* .latest-product .slick-prev {
  left: 20px;
}

.latest-product .slick-next {
  right: 20px;
} */

.latest-product .slick-prev:before,
.latest-product .slick-next:before {
  font-size: 34px;
  color: #fff;
  opacity: 0.85;
}

/* dots */
.latest-product .slick-dots {
  bottom: 18px;
}

.latest-product .slick-dots li button:before {
  font-size: 11px;
  color: #fff;
  opacity: 0.5;
}

.latest-product .slick-dots li.slick-active button:before {
  color: #fff;
  opacity: 1;
}

/* responsive */
@media (max-width: 991px) {
  .latest-slide img {
    height: auto;
  }

  .explore-btn {
    right: 25px;
    bottom: 25px;
    min-width: 150px;
    height: 46px;
    font-size: 16px;
    padding: 0 20px;
  }
}

@media (max-width: 767px) {
  .latest-slide img {
    height: auto;
  }

  .explore-btn {
    right: 15px;
    bottom: 15px;
    min-width: 130px;
    height: 40px;
    font-size: 14px;
    padding: 0 16px;
    border-radius: 30px;
  }

  .latest-product .slick-prev,
  .latest-product .slick-next {
    display: none !important;
  }
}
/* ======================== latest product end  */

/* ======================= usp start  */
.usp-section {
  /* background: linear-gradient(135deg, #f8f9fc, #eef2f7); */
  background: #e8e5ea;
  position: relative;
  overflow: hidden;
  padding: 60px 60px !important;
}

.usp-heading {
  max-width: 750px;
  margin: 0 auto 35px;
}

.usp-subtitle {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  color: #d41e26;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.usp-heading h2 {
  font-size: 35px;
  font-weight: 600;
  /* color: #111827; */
  margin-bottom: 14px;
}

.usp-heading h2 span {
  color: #d41e26;
}

.usp-heading p {
  font-size: 16px;
  color: #000;
  line-height: 1.8;
  margin: 0;
}

.usp-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 15px 24px;
  text-align: center;
  height: 100%;
  box-shadow: 0 10px 30px rgba(17, 24, 39, 0.08);
  transition: all 0.35s ease;
  border: 1px solid rgba(0, 0, 0, 0.04);
  position: relative;
}

.usp-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 40px rgba(17, 24, 39, 0.14);
}

.usp-icon {
  width: 74px;
  height: 74px;
  border-radius: 50%;
  margin: 0 auto 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  transition: 0.35s ease;
}

.usp-card:hover .usp-icon {
  transform: scale(1.08) rotate(4deg);
}

.usp-card h5 {
  font-size: 20px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 12px;
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.usp-card p {
  font-size: 15px;
  line-height: 1.8;
  color: #000;
  margin: 0;
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Icon color themes */
.icon-red {
  background: rgba(212, 30, 38, 0.12);
  color: #d41e26;
}

.icon-blue {
  background: rgba(37, 99, 235, 0.12);
  color: #2563eb;
}

.icon-orange {
  background: rgba(249, 115, 22, 0.12);
  color: #f97316;
}

.icon-yellow {
  background: rgba(245, 158, 11, 0.14);
  color: #f59e0b;
}

.icon-green {
  background: rgba(34, 197, 94, 0.12);
  color: #22c55e;
}

.icon-purple {
  background: rgba(147, 51, 234, 0.12);
  color: #9333ea;
}

.icon-cyan {
  background: rgba(6, 182, 212, 0.12);
  color: #06b6d4;
}

.icon-pink {
  background: rgba(236, 72, 153, 0.12);
  color: #ec4899;
}

.icon-teal {
  background: rgba(20, 184, 166, 0.12);
  color: #14b8a6;
}

.icon-gold {
  background: rgba(234, 179, 8, 0.14);
  color: #ca8a04;
}

/* Responsive */
@media (max-width: 991px) {
  .usp-heading h2 {
    font-size: 32px;
  }

  .usp-card {
    padding: 26px 20px;
  }

  .usp-card h5 {
    font-size: 18px;
    min-height: auto;
  }

  .usp-card p {
    min-height: auto;
  }
}

@media (max-width: 767px) {
  .usp-section {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .usp-heading {
    margin-bottom: 35px;
  }

  .usp-heading h2 {
    font-size: 28px;
  }

  .usp-heading p {
    font-size: 15px;
  }

  .usp-icon {
    width: 65px;
    height: 65px;
    font-size: 24px;
  }
}
/* ======================= usp end  */

/* ================== footer start  */
.footer {
  width: 100%;
  height: 100%;
  background:
    linear-gradient(rgb(0 0 0 / 84%), rgb(0 0 0 / 74%)),
    url(../img/footer-bg.jpeg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 60px 40px 30px;
}

.container-footer {
  max-width: 1300px;
  margin: auto;
}

/* TOP */
.footer-top {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1.8fr;
  gap: 40px;
}

.footer h3 {
  font-size: 20px;
  color: red;
  font-weight: 800;
  margin-bottom: 20px;
}
.footer ul {
  list-style: none;
  padding: 0;
}
.footer ul li {
  margin-bottom: 12px;
}
.footer ul li a {
  text-decoration: none;
  color: #fff;
  font-size: 15px;
}
.footer ul li a:hover {
  color: #d41e26;
}

/* FORM */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 10px;
}
input,
textarea {
  width: 100%;
  padding: 12px;
  border: none;
  background: #f7f7f7;
}
textarea {
  height: 80px;
  margin-bottom: 10px;
}
button {
  background: #000;
  color: #fff;
  padding: 12px 30px;
  border: none;
  cursor: pointer;
}

/* ===== BOTTOM ===== */
.footer-bottom {
  margin-top: 25px;
  border-top: 1px solid #ccc;
  padding-top: 10px;

  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

/* LEFT LOGOS */
.footer-logos {
  display: flex;
  gap: 20px;
}
.footer-logos img {
  width: 65px;
}

/* CENTER COPYRIGHT */
.copyright {
  text-align: center;
  flex: 1;
  font-size: 14px;
  color: #fff;
}
.social-icons i {
  color: #fff;
}
/* RIGHT SOCIAL */
.social {
  text-align: right;
}
.social p {
  margin-bottom: 8px;
  font-weight: 600;
  color: red;
}
.social-icons {
  display: flex;
  gap: 15px;
  justify-content: flex-end;
}
.social-icons a {
  color: #333;
  font-size: 18px;
}
.social-icons a:hover {
  color: #000;
}

button,
input,
optgroup,
select,
textarea {
  border: 1px solid #ccc !important;
  border-radius: 10px !important;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .footer-top {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }

  .social {
    text-align: center;
  }

  .social-icons {
    justify-content: center;
  }
}
/* ================== footer end  */

/* ============================= hero-section start  */
.hero-section {
  /* background: linear-gradient(90deg, #16232d 0%, #1d2a33 100%); */
  background-color: #000;
  padding: 35px 20px;
  margin-bottom: 80px;
}

.hero-container {
  max-width: 1600px;
  margin: 0 auto;
}

.hero-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  min-height: 700px;
}

.hero-left {
  width: 32%;
  color: #fff;
  padding-left: 40px;
  position: relative;
  z-index: 2;
}

.hero-left h5 {
  font-size: 34px;
  font-weight: 400;
  text-transform: uppercase;
  margin-bottom: 10px;
  line-height: 1.2;
}

.hero-left .year {
  font-size: 250px;
  font-weight: 800;
  line-height: 0.9;
  color: #fff;
  letter-spacing: -8px;
  margin-bottom: 25px;
}

.hero-left p {
  font-size: 18px;
  line-height: 1.6;
  color: #f1f1f1;
  max-width: 420px;
}

.custom-arrows {
  display: flex;
  gap: 0;
  margin-top: 35px;
}

.custom-arrow {
  width: 53px;
  height: 53px;
  background: #d41e26;
  border: none;
  color: #fff;
  font-size: 30px;
  cursor: pointer;
  transition: 0.3s ease;
  display: flex;
  align-items: center;
  border-radius: 10px;
  margin: 0 6px;
}

.custom-arrow:hover {
  background: #111;
}

.hero-right {
  width: 68%;
  position: relative;
  overflow: hidden;
}

.banner-slider {
  width: 100%;
}

.banner-slide img {
  width: 100%;
  height: 535px;
  object-fit: cover;
  display: block;
  border-radius: 20px;
}

.slick-slide {
  outline: none;
}

@media (max-width: 1400px) {
  .hero-left .year {
    font-size: 180px;
  }

  .hero-left h5 {
    font-size: 28px;
  }

  .banner-slide img {
    height: 600px;
  }

  .hero-wrapper {
    min-height: 620px;
  }
}

@media (max-width: 1199px) {
  .hero-wrapper {
    gap: 25px;
    min-height: auto;
  }

  .hero-left {
    width: 38%;
    padding-left: 20px;
  }

  .hero-right {
    width: 62%;
  }

  .hero-left .year {
    font-size: 140px;
    letter-spacing: -4px;
  }

  .hero-left h5 {
    font-size: 24px;
  }

  .hero-left p {
    font-size: 18px;
  }

  .banner-slide img {
    height: 500px;
  }
}

@media (max-width: 991px) {
  .hero-section {
    padding: 25px 15px;
  }

  .hero-wrapper {
    flex-direction: column;
    gap: 25px;
  }

  .hero-left,
  .hero-right {
    width: 100%;
  }

  .hero-left {
    padding-left: 0;
    text-align: left;
  }

  .hero-left h5 {
    font-size: 22px;
  }

  .hero-left .year {
    font-size: 110px;
    line-height: 0.95;
    margin-bottom: 18px;
  }

  .hero-left p {
    font-size: 17px;
    max-width: 100%;
  }

  .banner-slide img {
    height: 420px;
  }

  .custom-arrows {
    margin-top: 22px;
  }
}

@media (max-width: 767px) {
  .hero-left h5 {
    font-size: 18px;
  }

  .hero-left .year {
    font-size: 75px;
    letter-spacing: -2px;
  }

  .hero-left p {
    font-size: 15px;
    line-height: 1.7;
  }

  .banner-slide img {
    height: 280px;
  }

  .custom-arrow {
    width: 50px;
    height: 48px;
    font-size: 24px;
  }

  .hero-section {
    padding: 20px 12px;
  }
}

@media (max-width: 480px) {
  .hero-left .year {
    font-size: 58px;
  }

  .hero-left h5 {
    font-size: 16px;
  }

  .hero-left p {
    font-size: 14px;
  }

  .banner-slide img {
    height: 230px;
  }
}
/* ============================= hero-section end  */

/* ======================= certificate start  */
.certificate-section {
  background: #fff;
  padding-top: 80px;
  padding-bottom: 80px;
}

.certificate-heading {
  margin-bottom: 40px;
}

.certificate-heading h2 {
  font-size: 36px;
  font-weight: 700;
  color: #111;
}

.certificate-heading span {
  color: #d41e26;
}

.certificate-card {
  background: #fff;
  border: 1px solid #dee2e6;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
  overflow: hidden;
  cursor: pointer;
  transition: 0.3s ease;
  height: 100%;
  padding: 3px;
}

.certificate-card img {
  width: 100%;
  height: 218px;
  object-fit: cover;
  display: block;
}

.certificate img {
  height: auto !important;
}

.certificate-card:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.25);
}

.certificate-card-main {
  border-color: #999;
  transform: scale(1.05);
}

/* Popup */
.certificate-popup {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.82);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s ease;
  z-index: 9999;
  padding: 20px;
}

.certificate-popup.active {
  opacity: 1;
  visibility: visible;
}

.certificate-popup-content {
  position: relative;
  max-width: 90%;
  max-height: 90vh;
  background: #fff;
  padding: 12px;
  border-radius: 8px;
  animation: certificateZoom 0.3s ease;
}

.certificate-popup-content img {
  max-width: 100%;
  max-height: 82vh;
  object-fit: contain;
  display: block;
}

.certificate-popup-close {
  position: absolute;
  top: -19px;
  right: -18px;
  width: 42px;
  height: 42px;
  border: none;
  border-radius: 50%;
  background: #fff;
  color: #111;
  font-size: 30px;
  line-height: 17px;
  cursor: pointer;
  z-index: 2;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

@keyframes certificateZoom {
  from {
    transform: scale(0.85);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

@media (max-width: 767px) {
  .certificate-heading h2 {
    font-size: 28px;
  }

  .certificate-card-main {
    transform: none;
  }
}

.certificate-content {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.certificate-content h2 {
  font-size: 35px;
  font-weight: 600;
}

.certificate-content h2 span {
  color: #d41e26;
}
.certificate-content p {
  text-align: justify !important;
}
/* ======================= certificate end  */

/* bredcrumb section start  */
.breadcrumb-section {
  position: relative;
  width: 100%;
  height: 420px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.breadcrumb-video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate(-50%, -50%);
  z-index: 1;
}

.breadcrumb-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 2;
}

.breadcrumb-content {
  position: relative;
  z-index: 3;
  text-align: center;
  color: #fff;
  padding: 20px 35px;
  border-radius: 12px;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.8);
}

.breadcrumb-content h1 {
  font-size: 54px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #fff;
}

.breadcrumb-content p {
  font-size: 18px;
  font-weight: 500;
  margin: 0;
  color: #fff;
}

.breadcrumb-content p a {
  color: #fff;
  text-decoration: none;
}

.breadcrumb-content p span {
  color: #ff2b2b;
}

/* Responsive */
@media (max-width: 991px) {
  .breadcrumb-section {
    height: 350px;
  }

  .breadcrumb-content h1 {
    font-size: 42px;
  }
}

@media (max-width: 576px) {
  .breadcrumb-section {
    height: 280px;
  }

  .breadcrumb-content h1 {
    font-size: 32px;
  }

  .breadcrumb-content p {
    font-size: 15px;
  }
}
/* bredcrumb section end  */

/* ======================== about us page start */
.who-we-are-section {
  background: url(../img/bg-starch.jpg);
  width: 100%;
  padding: 60px 0px !important;
}

.who-we-are-content {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  max-width: 1200px;
  text-align: center;
  margin: 0 auto;
}

.who-we-are-content h2 {
  font-size: 32px;
  font-weight: 600;
}

.who-we-are-content span {
  color: #d41e26;
}
/* ======================== about us page end */

/* ====================== timeline section start  */
.coyote-timeline-section {
  background-color: #000;
  padding: 60px 15px;
  overflow: hidden;
}

.coyote-text {
  flex: 4;
}

.coyote-timeline {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}

.coyote-timeline::after {
  content: "";
  position: absolute;
  width: 6px;
  background-color: #fff;
  top: 0;
  bottom: 0;
  left: 50%;
  margin-left: -3px;
  z-index: 0;
}

.coyote-timeline-row {
  position: relative;
  display: flex;
  width: 100%;
  margin-bottom: 45px;
}

.coyote-timeline-item {
  position: relative;
  width: 50%;
  padding: 10px 40px;
}

.coyote-left::before,
.coyote-right::before {
  content: "";
  position: absolute;
  top: 28px;
  width: 0;
  height: 0;
  z-index: 3;
  border-style: solid;
}

.coyote-left::before {
  right: 30px;
  border-width: 10px 0 10px 10px;
  border-color: transparent transparent transparent #fff;
}

.coyote-right::before {
  left: 30px;
  border-width: 10px 10px 10px 0;
  border-color: transparent #fff transparent transparent;
}

/* HIDE LEFT DOT */
.coyote-left::after {
  display: none;
}

/* SHOW RIGHT DOT */
.coyote-right::after {
  content: "\f017"; /* clock icon */
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  top: 18px;
  left: -16px;
  width: 25px;
  height: 25px;
  line-height: 25px;
  background-color: #d41e26;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  z-index: 5;
}

.color-custom {
  background-color: #d41e26 !important;
}

.coyote-right::after {
  left: -16px;
}

.coyote-empty::before,
.coyote-empty::after {
  display: none;
}

.coyote-timeline-content {
  padding: 24px 30px;
  /* background-color: #191919; */
  position: relative;
  border-radius: 10px;
  /* border: 1px solid #ffffff4d; */
  width: 100%;
}

.coyote-title-box {
  min-height: 130px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.coyote-timeline-content h2,
.coyote-timeline-content h4 {
  color: #fff;
  margin: 0;
}

.coyote-timeline-content h2 {
  font-size: 34px;
  margin-bottom: 10px;
}

.coyote-timeline-content h4 {
  font-size: 24px;
  margin-bottom: 12px;
}

.coyote-title-box h4 {
  margin-bottom: 0;
}

.coyote-timeline-content p {
  color: #fff !important;
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
  padding-bottom: 14px;
}
/* .coyote-time-line-img p {
  margin: 0;
  padding: 0;
  text-transform: uppercase;
  padding-top: 6px;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 7px;
} */
/* ================= img start  */
.coyote-time-line-img {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.coyote-director-box {
  text-align: center;
}

.coyote-director-box img {
  /* width: 160px;
  height: 160px; */
  object-fit: cover;
  border-radius: 8px;
}

.coyote-director-box h4 {
  font-size: 18px;
  margin: 10px 0 4px;
  color: #fff;
  font-weight: 600;
}

.coyote-director-box p {
  font-size: 14px;
  color: #fff;
  margin: 0;
  padding: 0;
}

/* RESPONSIVE */
@media (max-width: 575px) {
  .coyote-director-box img {
    width: 130px;
    height: 130px;
  }

  .coyote-director-box h4 {
    font-size: 16px;
  }
}
/* ================= img end  */
/* ================================================ add  */
.coyote-flex-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
}

/* LEFT TEXT */
/* .coyote-text {
  flex: 1;
} */

.coyote-text ul {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.time-line-title h2 {
  color: #fff;
  text-align: center;
  padding-bottom: 40px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 32px;
  font-weight: 700;
}

.coyote-text ul li {
  font-size: 16px;
  margin-bottom: 10px;
  position: relative;
  line-height: 1.6;
  padding-left: 24px;
  color: #fff;
}

/* CUSTOM BULLET ICON */
.coyote-text ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 9px;
  height: 9px;
  background-color: #fff;
  border-radius: 50%;
}

/* RIGHT IMAGE */
.coyote-time-line-img {
  flex: 1;
  text-align: right;
}

.coyote-time-line-img img {
  max-width: 100%;
  border-radius: 10px;
}
.custom_start_year {
  display: flex;
  /* align-items: start; */
  text-align: end;
}
/* RESPONSIVE */
@media (max-width: 768px) {
  .coyote-flex-box {
    flex-direction: column;
    text-align: left;
    align-items: flex-start;
  }

  .coyote-time-line-img {
    text-align: center;
    width: 100%;
  }

  .coyote-time-line-img img {
    width: 100%;
  }

  .custom_start_year {
    display: flex;
    align-items: start;
    text-align: start;
  }
}
/* ================================================ end  */

/* RESPONSIVE */
@media screen and (max-width: 768px) {
  .coyote-timeline::after {
    left: 31px;
  }

  .coyote-timeline-row {
    display: block;
    margin-bottom: 20px;
  }

  .coyote-timeline-item {
    width: 100%;
    padding-left: 70px;
    padding-right: 15px;
    padding-top: 10px;
    padding-bottom: 10px;
  }
  .custom_roww {
    display: flex;
    flex-direction: column-reverse;
  }

  .coyote-left::after,
  .coyote-right::after {
    left: 15px;
    right: auto;
  }

  .coyote-left::before,
  .coyote-right::before {
    left: 60px;
    right: auto;
    border-width: 10px 10px 10px 0;
    border-color: transparent #fff transparent transparent;
  }

  .coyote-empty {
    display: none;
  }

  .coyote-timeline-content {
    padding: 20px;
  }

  .coyote-timeline-content h2 {
    font-size: 28px;
  }

  .coyote-timeline-content h4 {
    font-size: 20px;
  }

  .coyote-timeline-content p {
    font-size: 15px;
  }
}

/* ====================== timeline section end  */

/* ======================== sustablity section start  */
.sustainability-section {
  background: #e9ecef99;
  padding: 28px 0 45px;
}

.sustainability-container {
  width: 88%;
  max-width: 1400px;
  margin: 0 auto;
}

.sustainability-title {
  margin: 0 0 28px;
  color: #000;
  font-size: 32px;
  font-weight: 500;
  line-height: 1;
  /* letter-spacing: 14px; */
  text-transform: uppercase;
  text-align: center;
}

.sustainability-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.sustainability-card {
  background: #fff;
  /* min-height: 548px; */
  padding: 26px 28px 30px;
  border: 1px dashed #212529;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.22);
}

.sustainability-icon {
  text-align: center;
  margin-bottom: 26px;
}

.sustainability-icon img {
  width: 75px;
  /* height: 100px; */
  object-fit: contain;
}

.sustainability-card h3 {
  margin: 0 0 22px;
  text-align: center;
  color: #1d2c3f;
  font-size: 25px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  line-height: 1.2;
}

.sustainability-card ul {
  list-style: none;
  padding-left: 0;
}

.sustainability-card ul li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 8px;
}

/* Font Awesome icon */
.sustainability-card ul li::before {
  content: "\f058";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 2px;
  /* color: #d41e26; */
  font-size: 10px;
}

/* Responsive */
@media (max-width: 1199px) {
  .sustainability-container {
    width: 92%;
  }

  .sustainability-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .sustainability-card {
    min-height: 450px;
  }
}

@media (max-width: 767px) {
  .sustainability-section {
    padding: 25px 0 35px;
  }

  .sustainability-title {
    font-size: 36px;
    letter-spacing: 8px;
    margin-bottom: 24px;
  }

  .sustainability-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .sustainability-card {
    min-height: auto;
    padding: 24px 22px 28px;
  }

  .sustainability-card h3 {
    font-size: 26px;
  }

  .sustainability-card ul li {
    font-size: 18px;
  }
}

@media (max-width: 480px) {
  .sustainability-container {
    width: 94%;
  }

  .sustainability-title {
    font-size: 30px;
    letter-spacing: 5px;
  }

  .sustainability-icon img {
    width: 85px;
    height: 85px;
  }

  .sustainability-card h3 {
    font-size: 24px;
  }

  .sustainability-card ul li {
    font-size: 16px;
  }
}
/* ======================== sustablity section end  */

/* =================== what do we section start  */
.do-cricket-section {
  padding: 60px 0;
}
.color-one {
  background: #ffeeee;
}
.color-two {
  background-color: #eeefff;
}

.color-three {
  background-color: #f4ffee;
}

.color-four {
  background-color: #eef6ff;
}

.color-five {
  background-color: #fff9ee;
}

.color-six {
  background-color: #ffeef5;
}

.do-cricket-img img {
  width: 100%;
  object-fit: cover;
  border-radius: 20px;
  height: 320px;
}

.do-cricket-content {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.do-cricket-content h2 {
  font-size: 32px;
  font-weight: 600;
  color: #d41e26;
}

@media (max-width: 779px) {
  .custom-row {
    display: flex;
    flex-direction: column-reverse;
  }
  .do-cricket-content h2 {
    font-size: 25px;
    font-weight: 600;
    color: #d41e26;
    padding-top: 16px;
  }
}
/* =================== what do we section end  */

/* ======================== contact us page start   */
.contact-help-section {
  width: 100%;
  background: #fff;
  padding: 30px 0 50px;
}

.contact-help-container {
  /* width: 93%; */
  max-width: 1250px;
  margin: 0 auto;
}

.contact-help-row {
  display: grid;
  grid-template-columns: 35% 65%;
  align-items: stretch;
  gap: 35px;
}

.contact-help-left {
  padding: 5px 0 0;
}

.contact-help-left h2 {
  /* margin: 0 0 28px; */
  color: #d41e26;
  font-size: 33px;
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: 1px;
}

.contact-help-subtitle {
  margin: 0;
  color: #000;
  font-size: 20px;
  font-weight: 400;
}

.contact-help-line {
  width: 100%;
  height: 1px;
  background: #e8ecf4;
  margin: 28px 0;
}

.contact-help-left h3 {
  margin: 0 0 12px;
  color: #000;
  font-size: 32px;
  font-weight: 800;
  letter-spacing: 1px;
}

.contact-help-time {
  margin: 0 0 30px;
  color: #000;
  font-size: 19px;
  line-height: 1.7;
}

.contact-help-email {
  display: inline-block;
  padding: 13px 22px;
  border: 1px solid #e9edf5;
  border-radius: 30px;
  color: #000;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  transition: 0.3s ease;
}

.contact-help-email:hover {
  background: #d41e26;
  color: #fff;
}

.contact-help-social {
  display: flex;
  align-items: center;
  gap: 30px;
  list-style: none;
  margin: 0;
  padding: 0 0 0 10px;
}

.contact-help-social li a {
  color: #536b9a;
  font-size: 23px;
  text-decoration: none;
  transition: 0.3s ease;
}

.contact-help-social li a:hover {
  color: #073282;
}

.contact-help-right {
  width: 100%;
  height: 565px;
  overflow: hidden;
}

.contact-help-right iframe {
  display: block;
  width: 100%;
  height: 100%;
}

/* Responsive */
@media (max-width: 1199px) {
  .contact-help-row {
    grid-template-columns: 40% 60%;
    gap: 25px;
  }

  .contact-help-left h2 {
    font-size: 50px;
  }

  .contact-help-right {
    height: 520px;
  }
}

@media (max-width: 991px) {
  .contact-help-row {
    grid-template-columns: 1fr;
  }

  .contact-help-left h2 {
    font-size: 48px;
  }

  .contact-help-right {
    height: 450px;
  }
}

@media (max-width: 767px) {
  .contact-help-section {
    padding: 25px 0 35px;
  }

  .contact-help-left h2 {
    font-size: 40px;
  }

  .contact-help-subtitle,
  .contact-help-time {
    font-size: 17px;
  }

  .contact-help-left h3 {
    font-size: 26px;
  }

  .contact-help-email {
    font-size: 17px;
  }

  .contact-help-social {
    gap: 22px;
  }

  .contact-help-right {
    height: 360px;
  }
}

@media (max-width: 480px) {
  .contact-help-container {
    width: 92%;
  }

  .contact-help-left h2 {
    font-size: 34px;
  }

  .contact-help-left h3 {
    font-size: 22px;
  }

  .contact-help-social {
    gap: 18px;
    flex-wrap: wrap;
  }

  .contact-help-right {
    height: 300px;
  }
}
/* ======================== contact us page end   */

/* ================= from content us start  */
.contact-form-section {
  background: #f5f6f8;
  padding: 80px 0;
  font-family: "Poppins", sans-serif;
}

/* Container */
/* .container {
        max-width: 1400px;
        margin: 0 auto;
        padding: 0 20px;
      } */

.contact-form-wrapper h2 {
  color: #d41e26;
  font-size: 38px;
  font-weight: 800;
  margin-bottom: 40px;
}

/* Row with gap */
.contact-form-row {
  display: flex;
  gap: 25px;
  margin-bottom: 25px;
}

/* Inputs */
.contact-form input {
  flex: 1;
  height: 65px;
  border: none;
  background: #e9edf3;
  border-radius: 40px;
  padding: 0 25px;
  font-size: 18px;
  color: #2c4a86;
  outline: none;
  box-shadow: none;
}

/* Remove focus border */
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border: none;
  box-shadow: none;
}

/* Textarea */
.contact-form textarea {
  width: 100%;
  height: 220px;
  border: none;
  background: #e9edf3;
  border-radius: 40px;
  padding: 25px;
  font-size: 18px;
  color: #2c4a86;
  margin-bottom: 30px;
  resize: none;
  outline: none;
}

/* Button */
.contact-form button {
  background: #000;
  color: #fff;
  border: none;
  padding: 16px 50px;
  font-size: 18px;
  border-radius: 30px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

.contact-form button:hover {
  background: #0a2f7e;
}

/* Responsive */
@media (max-width: 991px) {
  .contact-form-row {
    flex-direction: column;
  }
}

@media (max-width: 767px) {
  .contact-form-wrapper h2 {
    font-size: 28px;
  }

  .contact-form input,
  .contact-form textarea {
    font-size: 16px;
    padding: 16px 16px;
  }
}
/* ================= from content us end  */

/* ======================== Materials section start  */
.coyote-materials-section {
  background: #f3eee6;
  padding: 45px 0 70px;
}

.coyote-materials-section .container {
  max-width: 1425px;
  margin: 0 auto;
  padding: 0 15px;
}

.coyote-materials-title {
  font-size: 32px;
  letter-spacing: 5px;
  color: #d41e26;
  font-weight: 600;
  margin-bottom: 25px;
  text-transform: uppercase;
}

.coyote-materials-tabs {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 4px;
}

.coyote-tab-btn {
  background: #000;
  color: #fff;
  border: 1px solid #ddd6cc;
  padding: 14px 30px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s ease;
}

.coyote-tab-btn i {
  margin-right: 12px;
  color: #fff;
}

.coyote-tab-btn.active {
  background: #d41e26;
  border-bottom: 1px solid #fff;
}

.coyote-tab-content {
  display: none;
  background: #fff;
  border: 1px solid #ddd6cc;
  padding: 25px 25px 36px;
  min-height: 360px;
  margin-top: 16px;
  border-radius: 20px;
}

.coyote-tab-content.active {
  display: block;
}

.coyote-tab-content p {
  font-size: 18px;
  line-height: 1.6;
  color: #000;
  margin-bottom: 25px;
}

.coyote-materials-images {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

.coyote-materials-images img {
  width: 375px;
  height: 210px;
  object-fit: cover;
}

.coyote-materials-images img:nth-child(2),
.coyote-materials-images img:nth-child(3) {
  width: 375px;
  height: 210px;
}

/* Responsive */
@media (max-width: 991px) {
  .coyote-materials-title {
    font-size: 38px;
    letter-spacing: 8px;
  }

  .coyote-tab-btn {
    font-size: 16px;
    padding: 12px 18px;
  }

  .coyote-materials-images img,
  .coyote-materials-images img:nth-child(2),
  .coyote-materials-images img:nth-child(3) {
    width: calc(50% - 15px);
    height: 220px;
  }
}

@media (max-width: 575px) {
  .coyote-materials-section {
    padding: 35px 0 45px;
  }

  .coyote-materials-title {
    font-size: 28px;
    letter-spacing: 5px;
    line-height: 1.4;
  }

  .coyote-materials-tabs {
    display: block;
  }

  .coyote-tab-btn {
    width: 100%;
    text-align: left;
    margin-bottom: 5px;
    font-size: 15px;
  }

  .coyote-tab-content {
    padding: 20px 15px;
    min-height: auto;
  }

  .coyote-tab-content p {
    font-size: 16px;
  }

  .coyote-materials-images {
    gap: 15px;
  }

  .coyote-materials-images img,
  .coyote-materials-images img:nth-child(2),
  .coyote-materials-images img:nth-child(3) {
    width: 100%;
    height: auto;
  }
}
/* ======================== Materials section end  */

/* <!-- ============================= quality-section start ===========  --> */
.coyote-quality-section {
  width: 100%;
  /* background: url(assets/img/quality-bg.jpg) center center / cover no-repeat; */
  position: relative;
  background: #000;
}

.coyote-quality-overlay {
  /* background: rgba(0, 0, 0, 0.72); */
  padding: 28px 0;
}

.coyote-quality-section .container {
  max-width: 1450px;
  margin: 0 auto;
  padding: 0 15px;
}

.coyote-quality-wrapper {
  display: grid;
  grid-template-columns: 40% 60%;
  gap: 14px;
  align-items: stretch;
}

/* LEFT BOX */
.coyote-quality-content {
  background: #19191a;
  border: 1px dashed #cccccc80;
  padding: 75px 55px;
  min-height: 470px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-radius: 20px;
}

.coyote-quality-content h2 {
  font-size: 54px;
  letter-spacing: 14px;
  color: #fff;
  font-weight: 400;
  text-align: center;
  margin: 0;
}

.coyote-quality-content span {
  width: 90px;
  height: 3px;
  background: #9b7248;
  display: block;
  margin: 45px auto;
}

.coyote-quality-content p {
  font-size: 16px;
  line-height: 1.55;
  color: #fff;
  margin: 0;
}

/* RIGHT GRID */
.coyote-quality-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.coyote-quality-card {
  background: #eee9df;
  overflow: hidden;
  border-radius: 20px;
}

.coyote-quality-card img {
  width: 100%;
  height: 168px;
  object-fit: cover;
  display: block;
}

.coyote-quality-card h4 {
  background: #19191a;
  color: #fff;
  font-size: 24px;
  font-weight: 400;
  text-align: center;
  margin: 0;
  padding: 15px 10px;
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .coyote-quality-wrapper {
    grid-template-columns: 1fr;
  }

  .coyote-quality-content {
    min-height: auto;
    padding: 50px 35px;
  }

  .coyote-quality-content h2 {
    font-size: 42px;
    letter-spacing: 10px;
  }

  .coyote-quality-content p {
    font-size: 18px;
  }

  .coyote-quality-card img {
    height: 220px;
  }
}

@media (max-width: 575px) {
  .coyote-quality-overlay {
    padding: 20px 0;
  }

  .coyote-quality-content {
    padding: 40px 22px;
  }

  .coyote-quality-content h2 {
    font-size: 34px;
    letter-spacing: 7px;
  }

  .coyote-quality-content span {
    margin: 30px auto;
  }

  .coyote-quality-content p {
    font-size: 16px;
    text-align: left;
  }

  .coyote-quality-grid {
    grid-template-columns: 1fr;
  }

  .coyote-quality-card img {
    height: 210px;
  }

  .coyote-quality-card h4 {
    font-size: 20px;
  }
}
/* <!-- ============================= quality-section end ===========  --> */

/* ====================================== innovations section start  */
.coyote-innovation-section {
  background: #e4ebf3;
  padding: 65px 0 65px;
}

.coyote-innovation-section .container {
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 15px;
}

.coyote-innovation-title {
  font-size: 32px;
  letter-spacing: 9px;
  color: #d41e26;
  font-weight: 600;
  margin: 0 0 28px;
  text-transform: uppercase;
}

.coyote-innovation-tabs {
  display: flex;
  align-items: center;
  gap: 4px;
}

.coyote-innovation-tab {
  background: rgb(0 0 0 / 11%);
  color: #212529;
  border: 1px solid #0000001a;
  padding: 16px 34px;
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
}

.coyote-innovation-tab.active {
  background: #fff;
  border-bottom-color: #fff;
}

.coyote-innovation-tab i {
  margin-right: 12px;
  font-size: 16px;
}

.coyote-innovation-content {
  background: #fff;
  border: 1px solid #d7d0c6;
  padding: 26px 25px 38px;
  display: grid;
  grid-template-columns: 32% 68%;
  gap: 30px;
  align-items: center;
}

/* LEFT LIST WITH DOT */
.coyote-innovation-left ul {
  list-style: none;
  margin: 0;
  padding-left: 50px;
}

.coyote-innovation-left ul li {
  position: relative;
  font-size: 21px;
  color: #000;
  margin-bottom: 8px;
  line-height: 1.4;
  padding-left: 24px;
}

.coyote-innovation-left ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 12px;
  width: 7px;
  height: 7px;
  background: #d41e26;
  border-radius: 50%;
}

.coyote-innovation-right img {
  width: 96%;
  max-height: 240px;
  object-fit: cover;
  display: block;
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .coyote-innovation-section {
    padding: 70px 0;
  }

  .coyote-innovation-title {
    font-size: 40px;
    letter-spacing: 9px;
  }

  .coyote-innovation-tab {
    font-size: 17px;
    padding: 14px 18px;
  }

  .coyote-innovation-content {
    grid-template-columns: 1fr;
  }

  .coyote-innovation-left ul {
    padding-left: 25px;
  }

  .coyote-innovation-right img {
    width: 100%;
    max-height: none;
  }
}

@media (max-width: 575px) {
  .coyote-innovation-section {
    padding: 45px 0;
  }

  .coyote-innovation-title {
    font-size: 30px;
    letter-spacing: 6px;
    line-height: 1.4;
  }

  .coyote-innovation-tabs {
    flex-direction: column;
    align-items: stretch;
  }

  .coyote-innovation-tab {
    width: 100%;
    font-size: 15px;
    padding: 14px 16px;
  }

  .coyote-innovation-content {
    padding: 22px 15px;
    gap: 22px;
  }

  .coyote-innovation-left ul {
    padding-left: 0;
  }

  .coyote-innovation-left ul li {
    font-size: 16px;
    padding-left: 22px;
  }

  .coyote-innovation-left ul li::before {
    top: 9px;
  }
}
/* ====================================== innovations section end  */

/*.location_map iframe{*/
/*    border-radius: 20px !important;*/
/*}*/
