* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
 
body {
   font-family: 'Source Sans 3', sans-serif;
}

.header {
  height: 100px;
  background-color: #fff;
  display: flex;
  align-items: center;
  border-bottom: 1px solid #ddd;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: all 0.3s ease-in-out;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header.shrink {
  height: 70px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

.header.shrink .logo {
  width: 250px;
  height: 45px;
}

.header.shrink .nav a {
  font-size: 14px;
}

.header.shrink .contact-btn {
  width: 140px;
  height: 36px;
  font-size: 13px;
}

.header-content {
  width: 100%;
  max-width: 100;
  height: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-left: 80px;
}

.logo {
  width: 301px;
  height: 54px;
  object-fit: contain;
}

.nav {
  display: flex;
  gap: 24px;
  flex-grow: 1;
  justify-content: center;
}

.nav a {
  text-decoration: none;
  color: black;
  font-size: 16px;
  font-weight: 600;
  position: relative;
  padding: 5px 0;
  transition: color 0.3s ease;
}

.nav a:hover,
.nav a:focus,
.nav a.active {
color: #808183;
}

.nav a::after {
content: '';
position: absolute;
width: 0;
height: 2px;
bottom: 0;
left: 0;
background-color: black;
transition: width 0.3s ease;
}

.nav a:hover::after,
.nav a:focus::after,
.nav a.active::after {
width: 100%;
}

.contact-btn {
  width: 163px;
  height: 44px;
  background-color: black;
  color: white;
  border: none;
  border-radius: 22px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  margin-right: 20px; 
}

/* Hero Section */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  max-height: 800px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-left: 80px;
}

.hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-content-wrapper {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1440px;
  margin: 0;
  padding: 0;
}

.hero-content {
  text-align: left;
  color: white;
  max-width: 800px;
  margin: 0;
}


.hero h1 {
  font-size: 65px;
  font-weight: 400;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.hero p {
  font-size: 18px;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.9);
}

/* Add overlay for better text readability */
.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
}

.audio-toggle {
      position: absolute;
      top: 20px;
      left: 20px;
      background: white;
      padding: 10px;
      border-radius: 50%;
      cursor: pointer;
      z-index: 10;
      display: none;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.5rem;
  }
  
  .hero p {
    font-size: 1.2rem;
  }
}

.intro-section {
  max-width: 1440px;
  margin: 60px auto;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 40px;
  padding: 0 40px;
}

.intro-image {
  width: 607px;
  height: 330px;
  border-radius: 16px;
  object-fit: cover;
  transition: transform 0.5s ease, box-shadow 0.3s ease;
}

.intro-image:hover {
  transform: scale(1.03);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.intro-text {
  width: 615px;
  height: 132px;
  font-size: 18px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.intro-text h1 {
  font-size: 38px;
  font-weight: 700;
  width:372px;
  height:54px;
  margin-bottom: 16px;
}

.intro-text p {
  font-size: 18px;
  line-height: 1.6;
  color: #5F5F5F;
  margin-bottom: 16px;
}

.read-more {
  text-align: right;
  font-size: 18px;
  font-weight: 500;
  cursor: pointer;
  color: #5F5F5F;
}

/*our industries*/
.industries {
  max-width: 1440px;
  margin: 80px auto;
  padding: 0 40px;
  text-align: center;
}

.section-title {
  font-size: 38px;
  font-weight: 700;
  width: 233px;             
  height: 54px;             
  line-height: 60px; 
  margin-bottom: 40px;
  text-align: center; 
  display: inline-block; 
}

.industries-grid {
  display: flex;
  gap: 40px;
  justify-content: center;
  flex-wrap: wrap;
}

.industry-card {
  width: 518px;
  display: flex;
  flex-direction: column;
  background-color: #fff;
  overflow: hidden;

  position: relative;
  z-index: 1;
}



.industry-image-container {
  position: relative;
  width: 518px;
  height: 291px;
  overflow: hidden;
  border-radius: 0; /* Remove any border radius */
}

.industry-img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  top: 0;
  left: 0;
  z-index: 1;
}



.banner {
  position: absolute;
  bottom: 0;
  width: 472px;
  height: 76px;
  background-color: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(1px);
  display: flex;
  align-items: center;
  gap: 49px;
  padding: 0 20px;
  transition: background-color 0.4s ease;
  margin-left: 23px;
  border-radius: 4px 4px 0 0;
  z-index: 10;
}

.banner-logo {
  width: 180px;
  height: 51px;
  object-fit: contain;
}

.banner-logo-secondary {
  width: 32px; 
  height: 30px;
  object-fit: contain;
  margin-top: 8px;
  position: absolute;
  top: 0px;       /* Adjust vertically */
  right: 40px;       /* Adjust horizontally */
  z-index: 20;
}


.banner-text {
  font-size: 12px;
  width:202px;
  height:14px;
  font-weight: 500;
  color: #000;
  margin-top: 35px;
}

/* Hover transition colors */
.banner-textile:hover {
  background-color: #00ACED;
}

.banner-leather:hover {
  background-color: #FFF455;
}

.card-content {
  width: 472px;
  height: 239px;
  margin: 0 auto;
  padding: 20px 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
  border: 1px solid rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: visible;
}

.card-content:hover {
  transform: translateY(-3px);
  box-shadow: 
    0 4px 6px rgba(0, 0, 0, 0.1),
    0 10px 15px rgba(0, 0, 0, 0.08),
    0 20px 25px rgba(0, 0, 0, 0.05);
}
  

/*.card-content:hover {
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2); 
}*/

.card-content h3 {
  font-size: 20px;
  width:213;
  height:28;
  font-weight: 700;
  margin-bottom: 10px;
}

.card-content p {
  font-size: 14px;
  color: #5F5F5F;
  width:428px;
  height:92px;
  align-items: center;
  line-height: 1.5;
  margin-bottom: 20px;
}

.explore-btn {
  width: 130px;
  height: 34px;
  display: flex;              
  justify-content: center;   
  align-items: center;        
  border-radius: 8px;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  background-color: white;        
  color: black;                   
  border: 1px solid black;   
  margin-top: 10px;    
  text-decoration: none !important;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.explore-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: black;
  transition: all 0.3s ease;
  z-index: -1;
}

.industry-card:hover .explore-btn {
  color: white;
  border-color: black;
}

.industry-card:hover .explore-btn::before {
  left: 0;
}

#slideshow1, #slideshow2 {
  transition: opacity 0.5s ease-in, visibility 0s 0.5s; /* Fade in and out smoothly */
  visibility: visible; /* Make sure the images are visible by default */
}


.sustainability-section {
  max-width: 1440px;
  margin: 80px auto;
  padding: 0 40px;
  text-align: center;
}

.sustainability-title {
  font-size: 38px;
  font-weight: 700;
  width: 225px;
  height: 54px;
  line-height: 54px;
  margin: 0 auto 40px auto;
}

.sustainability-content {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 40px;
  flex-wrap: wrap;
}

.sustainability-image {
  width: 640px;
  height: 330px;
  border-radius: 8px;
  object-fit: cover;
}

.sustainability-text {
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  font-size: 18px;
}

.sustainability-heading {
  font-size: 25px;
  font-weight: 600;
  width: 495px;
  height: 36px;
  margin-bottom: 16px;
}

.sustainability-body {
  font-size: 18px;
  line-height: 1.6;
  width: 481px;
  height: 78px;
  color: #5F5F5F;
}

/* Initial state */
.sustainability-image,
.sustainability-text {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

/* Active state when in view */
.sustainability-content.visible .sustainability-image,
.sustainability-content.visible .sustainability-text {
  opacity: 1;
  transform: translateY(0);
}

/* Inspiring Section */
.inspiring-section {
  max-width: 1440px;
  margin: 80px auto;
  padding: 0 40px;
  text-align: center;
  opacity: 1; /* Make sure it's always visible */
  transform: translateY(0); /* Reset any transform */
  transition: opacity 0.5s ease, transform 0.5s ease; /* Smooth transition */
  visibility: visible !important; /* Force visibility */
  display: block !important; /* Force display */
}

/* Animation for when the section loads */
.inspiring-section.fade-up {
  animation: fadeInUp 0.8s ease forwards;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.inspiring-title {
  font-size: 39px;
  font-weight: 700;
  width: 674px;
  height: 56px;
  line-height: 1.2;
  margin: 0 auto 40px auto;
}

.inspiring-content {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 40px;
  flex-wrap: wrap;
}

.inspiring-image {
  width: 640px;
  height: 360px;
  border-radius: 8px;
  object-fit: cover;
}

.inspiring-text {
  width: 518px;
  height: 295px;
  font-size: 18px;
  color: #5F5F5F;
  text-align: left;
  line-height: 1.6;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* Social Media Section */
.social-section {
  text-align: center;
  margin: 0 0 75px 0; /* top right bottom left */
  margin-bottom: 30px;
}

.social-title {
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 20px;
    font-family: Arial, sans-serif;
  }

.social-icons {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.social-icons div {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 18px;
  color: #000;
}

.social-icons img {
  width: 52px;
  height: 76px;
  object-fit: contain;
  margin-bottom: 4px;
}

.social-heading {
  font-size: 16px;
  font-weight: 500;
  width: 458px;
  height: 28px;
  margin: 0 auto 20px auto;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 10px;
}

.social-icon img {
  width: 52px;
  height: 76px;
  object-fit: contain;
}

.footer-accurate {
  width: 100%;
  height: 305px;
  background-color: #d9d9d9;
  margin: 0 auto;
  font-family: 'Source Sans 3', sans-serif;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-top: 40px;
  box-sizing: border-box;
}

.footer-cols-wrapper {
  display: flex;
  justify-content: flex-start;
  gap: 41px;
  padding-left: 400px; /* Start at 507px from the left */
  padding-right: 126px; /* End at 126px from the right */
  box-sizing: border-box;
}

.footer-col {
  font-size: 19px;
  color: #000;
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 160px;
}

.footer-col a {
  color: black;
  text-decoration: none !important;
  display: block;
  padding: 5px 0;
  position: relative;
  transition: color 0.3s ease;
}

.footer-col a:hover,
.footer-col a:focus {
  color: #808183;
}

.footer-heading {
  font-size: 22px;
  margin-bottom: 12px;
}

.footer-note {
  font-size: 16px;
  padding: 0 100px 30px;
}

.company {
  left: 300px;
}

.company + .footer-col {
  left: calc(300px + 180px);
}

.company + .footer-col + .footer-col {
  left: calc(300px + 180px * 2);
}

.service {
  right: 200px;
}

.footer-heading {
  font-weight: 600;
}

.footer-note {
  text-align: center;
  font-size: 14px;
  color: #000;
  line-height: 1.5;
  padding-bottom: 20px;
}

/* Position columns using exact spacing */
.company {
  left: 400px;
}

.company + .footer-col {
  left: calc(400px + 109px + 30px); 
}

.company + .footer-col + .footer-col {
  left: calc(400px + 109px * 2 + 30 px * 2);
}

.service {
  right: 126px;
}

/* Footer note styles */
.footer-note {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 0 60px; /* Controls side spacing */
}

.footer-note .copyright-left {
  text-align: left;
  height: auto;
  padding-left: 40px; /* Shift it a bit left */
  margin-bottom: -30px;
}

.footer-note .info-right {
  text-align: right;
  padding-right: 60px;
  margin-bottom: 26px;
}

.footer-note .info-right a {
  text-decoration: none;
  color: black;
  font-size: 14px;
  height: 20px;
  line-height: 20px;
  margin: 0 3px;
  position: relative;
  transition: all 0.3s ease;
}

.footer-note .info-right a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 1px;
  bottom: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.7);
  transition: width 0.3s ease, transform 0.3s ease;
  transform-origin: left;
}

.footer-note .info-right a:hover::after {
  width: 100%;
  transform: scaleX(1);
}

/* Specific styles for Textile and Leather links */
.footer-note .info-right a[href="pymag.html"]::after,
.footer-note .info-right a[href="curtin.html"]::after {
  background-color: #000;
}

.footer-note .info-right a[href="pymag.html"]:hover::after,
.footer-note .info-right a[href="curtin.html"]:hover::after {
  width: 100%;
  transform: scaleX(1);
}



.social-icon img {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.social-icon img:hover {
  transform: scale(1.1) translateY(-4px);
  /*box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);*/
}


/* 1920px and above */
@media screen and (min-width: 1920px) {
  .footer-accurate {
    height: 320px;
    padding-top: 50px;
  }
  
  .footer-cols-wrapper {
    padding-left: 200px;
    padding-right: 100px;
    gap: 40px;
    justify-content: flex-start;
  }
  
  .footer-col {
    font-size: 18px;
    gap: 10px;
    min-width: 160px;
  }
  
  .footer-heading {
    font-size: 20px;
    margin-bottom: 8px;
  }
  
  .footer-note {
    font-size: 14px;
    padding: 0 40px 20px;
  }
}

/* 2560px and above */
@media screen and (min-width: 2560px) {

  .intro-image{
    width: 900px;
    height: 500px;
  }
  .footer-accurate {
    height: 350px;
    padding-top: 60px;
  }
  
  .footer-cols-wrapper {
    padding-left: 300px;
    padding-right: 200px;
    gap: 50px;
    max-width: 2200px;
    margin: 0 auto;
  }
  
  .footer-col {
    font-size: 20px;
    gap: 12px;
    min-width: 180px;
  }
  
  .footer-heading {
    font-size: 22px;
    margin-bottom: 12px;
  }
  
  .footer-note {
    font-size: 16px;
    padding: 0 100px 30px;
  }
  
  .company {
    left: 300px;
  }
  
  .company + .footer-col {
    left: calc(300px + 180px);
  }
  
  .company + .footer-col + .footer-col {
    left: calc(300px + 180px * 2);
  }
  
  .service {
    right: 200px;
  }
}

/* === FOR 1280px === */
@media (max-width: 1280px) {
  .header-content,
  .intro-section,
  .industries,
  .sustainability-section,
  .inspiring-section {
    padding-left: 40px !important;
    padding-right: 40px !important;
  }

  .banner-video {
    width: 100% !important;
  }

  .footer-accurate {
    width: 100% !important;
    padding: 40px;
  }

  .footer-cols-wrapper {
    padding-left: 120px;
    padding-right: 80px;
    flex-wrap: wrap;
    gap: 60px;
  }

  .footer-col {
    padding: 20px;
  }

  .footer-col a {
    color: black;
    text-decoration: none;
    display: block;
    padding: 5px 0;
    position: relative;
    transition: color 0.3s ease;
  }

  .footer-col a:hover,
  .footer-col a:focus {
    color: #808183;
  }

  .footer-col a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: black;
    transition: width 0.3s ease;
  }

  .footer-col a:hover::after,
  .footer-col a:focus::after {
    width: 100%;
  }

  .footer-note {
    padding: 0 40px;
  }

  .footer-note .copyright-left {
    padding-left: 0;
    width: 100%;
  }

  .footer-note .info-right {
    padding-right: 0;
    text-align: right;
  }
}

/* === FOR 1024px === */
@media (max-width: 1024px) {
  .header-content,
  .intro-section,
  .industries,
  .sustainability-section,
  .inspiring-section {
    flex-direction: column !important;
    padding-left: 20px !important;
    padding-right: 20px !important;
  }

  .nav {
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
  }

  .intro-text,
  .inspiring-text,
  .card-content,
  .sustainability-text {
    width: 100% !important;
  }

  .intro-image,
  .inspiring-image,
  .sustainability-image {
    width: 100% !important;
    height: auto !important;
  }

  .industries-grid {
    flex-direction: column;
    align-items: center;
  }

  .industry-card,
  .industry-image-container {
    width: 100% !important;
  }

  .card-content p {
    width: 100% !important;
  }

  .footer-accurate {
    width: 100% !important;
    padding: 20px;
    height: auto;
  }

  .footer-cols-wrapper {
    flex-direction: column;
    padding-left: 20px;
    padding-right: 20px;
    gap: 30px;
  }

  .footer-note {
    flex-direction: column;
    padding: 20px;
  }

  .footer-note .copyright-left,
  .footer-note .info-right {
    text-align: center;
    width: 100%;
    padding: 0;
  }
}

@media (min-width: 2000px) {


  .hero {
    max-height: 1000px;
    padding-left: 120px;
  }

  .hero-content-wrapper {
    max-width: 1600px;
  }

  .hero h2 {
    font-size: 24px;
  }

  .hero h1 {
    font-size: 80px;
  }

  .hero p {
    font-size: 22px;
  }

  .logo {
    width: 301px;
    height: 54px;
    object-fit: contain;
    margin-left: 92px;
}

.nav a {
  text-decoration: none;
  color: black;
  font-size: 20px;
  font-weight: 600;
  position: relative;
  padding: 5px 0;
  transition: all 0.3s ease;
  display: inline-block;
  margin: 0 5px;
}

.header-content {
  width: 100%;
  max-width: 2000px;
  height: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  padding-left: 20px;
}

.contact-btn {
  width: 163px;
  height: 44px;
  background-color: black;
  color: white;
  border: none;
  border-radius: 22px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  margin-right: 20px;
}
.nav {
  display: flex;
  gap: 24px;
  flex-grow: 1;
  margin-left: -60px;
  justify-content: center;
}

.hero-content
 {
    position: relative;
    z-index: 2;
    color: white;
    padding: 0 20px;
    max-width: 1800px;
    min-width: 1800px;
    margin: 0 auto;
}


.hero h1 {
  font-size: 5.5rem;
  font-weight: 400;
  margin-bottom: 1rem;
  line-height: 1.2;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero p {
  font-size: 30px;
  margin-bottom: 2rem;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.intro-section {
  max-width: 1900px;
  margin: 60px auto;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 110px;
  padding: 0 40px;
}

.intro-image {
  width: 704px;
  height: 420px;
  border-radius: 16px;
  margin-left: -200px;
  margin-top: 71px;
  object-fit: cover;
  transition: transform 0.5s ease, box-shadow 0.3s ease;
}

.intro-text h1 {
  font-size: 62px;
  font-weight: 700;
  width: 660px;
  height: 54px;
  margin-top: 58px;
  margin-bottom: 50px;
}

.intro-text p
{
  font-size: 25px;
  line-height: 1.4;
  width: 750px;
  color: #000000;
  margin-bottom: 16px;
}

.read-more {
  text-align: right;
  font-size: 26px;
  font-weight: 500;
  margin-right: -120px;
  cursor: pointer;
  color: #000;
}

.industries {
  max-width: 1800px;
  margin: 140px auto;
  padding: 0 40px;
  text-align: center;
}

.sustainability-section {
  max-width: 1870px;
  margin: 80px auto;
  padding: 0 40px;
  text-align: center;
}

.sustainability-title {
  font-size: 65px;
  font-weight: 700;
  width: 525px;
  height: 54px;
  line-height: 54px;
  margin: 0 auto 40px auto;
}

.section-title {
  font-size: 70px;
  font-weight: 700;
  width: 455px;
  height: 54px;
  line-height: 60px;
  margin-bottom: 40px;
  text-align: center;
  display: inline-block;
}

.sustainability-image {
  width: 742px;
  height: 415px;
  margin-left: 12px;
  border-radius: 8px;
  object-fit: cover;
}

.sustainability-heading {
  font-size: 48px;
  font-weight: 600;
  width: 995px;
  margin-top: 70px;
  height: 36px;
  margin-bottom: 35px;
}

.sustainability-body {
  font-size: 27px;
  line-height: 1.6;
  width: 881px;
  margin-top: 20px;
  height: 78px;
  color: #000000;
}

.inspiring-section {
  max-width: 1800px;
  margin: 80px auto;
  padding: 0 40px;
  text-align: center;
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.5s ease, transform 0.5s ease;
  visibility: visible !important;
  display: block !important;
}

.inspiring-title {
  font-size: 57px;
  font-weight: 700;
  width: 1374px;
  height: 56px;
  line-height: 1.2;
  margin: 0 auto 40px auto;
}

.inspiring-image {
  width: 698px;
  height: 430px;
  border-radius: 8px;
  object-fit: cover;
}

.inspiring-text
 {
    width: 910px;
    height: 295px;
    font-size: 27px;
    color: #000000;
    text-align: left;
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.social-title {
  font-size: 42px;
  font-weight: 400;
  margin-bottom: 20px;
}

.social-icon img {
  width: 68px;
  height: 98px;
  object-fit: contain;
}

.social-icons div {
  font-size: 22px;
}
.footer-cols-wrapper {
  padding-left: 200px;
  padding-right: 100px;
  gap: 40px;
  justify-content: space-evenly;
}

.footer-heading {
  font-size: 24px;
  margin-bottom: 8px;
}

.footer-col {
  font-size: 20px;
  gap: 10px;
  min-width: 160px;
}

.footer-col a {
  color: black;
  text-decoration: none;
  display: block;
  padding: 5px 0;
  position: relative;
  transition: color 0.3s ease;
}

.footer-col a:hover,
.footer-col a:focus {
  color: #808183;
}

.footer-col a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: black;
  transition: width 0.3s ease;
}

.footer-col a:hover::after,
.footer-col a:focus::after {
  width: 100%;
}

.footer-note .info-right a {
  text-decoration: none;
  color: black;
  font-size: 15px;
  height: 20px;
  line-height: 20px;
  margin: 0 3px;
  position: relative;
  transition: all 0.3s ease;
}

.footer-note .info-right a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 1px;
  bottom: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.7);
  transition: width 0.3s ease, transform 0.3s ease;
  transform-origin: left;
}

.footer-note .info-right a:hover::after {
  width: 100%;
  transform: scaleX(1);
}
}
  