/* === SECTION ONLY STYLING === */
  section.about {
    text-align: center;
    padding: 60px 20px 0;
  }

  section.about h2 {
    font-size: 46px;
    font-weight: 700;
    margin-bottom: 20px;
  }

  section.about p {
    max-width: 850px;
    margin: 0 auto 30px;
    font-size: 16px;
    line-height: 1.7;
    color: #555;
    text-align: justify;
  }

  section.about .image-wrapper {
    width: 100%;
    margin: 0;
    padding: 0;
  }

  section.about img {
    width: 100%;
    height: 450px;        /* Control height */
    object-fit: cover;    /* Ensure proper coverage */
    border-radius: 20px;  /* Rounded corners */
    display: block;
    transform-origin: center;
  }

  :root{
      --max-width: 1120px;
      --gap: 48px;
      --accent: #0088ff;
    }

    section.story-section {
      padding: 26px 20px;
      background: #fff;
    }
    .story-section .container {
      max-width: var(--max-width);
      margin: 0 auto;
    }
    .story-grid {
      display: grid;
      grid-template-columns: 1fr 0.7fr;
      gap: 45px;
      align-items: center;
    }

    .story-text {
      font-size: 15px;
      line-height: 1.7;
      color: #222;
      text-align: left;
    }
    .story-text p { margin-bottom: 18px; }

    .story-aside {
      text-align: right;
    }
    .story-aside h2 {
      font-size: 56px;
      font-weight: 800;
      margin: 0;
      line-height: 1.2;
    }
    .story-aside .highlight {
      display: block;
      font-size: 67px;
      font-weight: 800;
      color: var(--accent);
      margin-top: 10px;
    }

    @media (max-width: 980px) {
      .story-grid { grid-template-columns: 1fr; gap: 32px; }
      .story-aside { text-align: left; }
      .story-aside h2 { font-size: 34px; text-align: center;  margin-top:-45px;}
      .story-aside .highlight { font-size: 36px; }
    }

 :root {
  --container-width: 1080px;
  --bg: #f6f6f7;
  --text: #222;
  --muted: #666;
}

.services-tabs {
  padding: 40px 20px;
}
.services-tabs .container {
  max-width: var(--container-width);
  margin: 0 auto;
  text-align: center;
}

/* Banner */
.services-tabs .banner {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  height: 290px;
  margin-bottom: 20px;
}
.services-tabs .banner-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  visibility: hidden;
}
.services-tabs .banner-img.active {
  opacity: 1;
  visibility: visible;
}

/* Tabs wrapper — ⭐ supports wrapping */
.services-tabs .tabs {
  position: relative;
  display: flex;
  gap: 12px;
  justify-content: center;
  align-items: center;
  background: var(--bg);
  border-radius: 12px;
  padding: 12px 18px;
  overflow: visible;
}
.services-tabs .tabs {
  display: flex;
  flex-wrap: wrap;   /* prevent wrapping */
  overflow-x: auto;    /* allow scrolling */
  scrollbar-width: none;
}
.services-tabs .tabs {
  display: flex;
  justify-content: center;
  gap: 16px 40px; /* horizontal spacing wider for alignment */
}



/* Tab Buttons */
.services-tabs .tab-btn {
  position: relative;
  z-index: 2;
  background: transparent;
  border: none;
  outline: none;
  padding: 8px 14px;
  font-size: 13px;
  white-space: nowrap;
  color: var(--text);
  cursor: pointer;
  border-radius: 12px;
  -webkit-tap-highlight-color: transparent;
}

/* Indicator — ⭐ now supports X + Y movement */
.services-tabs .tab-indicator {
  position: absolute;
  z-index: 1;
  left: 0;
  top: 0;
  border-radius: 12px;
  background: #000;
  pointer-events: none;
  will-change: transform, width, height;
  height: 36px;
}
.services-tabs .tabs {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 20px;
  background: var(--bg);
  border-radius: 12px;
  padding: 12px 18px;
}
.services-tabs .tab-btn {
  flex: 0 0 auto;
}



/* Description system */
.services-tabs .tab-description {
  position: relative;
  margin-top: 20px;
  overflow: hidden;
  min-height: 70px;
}

.services-tabs .tab-description p {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  width: 100%;
  max-width: 820px;
  margin: 0 auto;
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  color: var(--muted);
  line-height: 1.7;
  font-size: 15px;
  padding: 0 10px;
  box-sizing: border-box;
}

.services-tabs .tab-description p.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

/* Mobile tweaks */
@media (max-width: 680px) {
  .services-tabs .tabs { gap: 8px; padding: 10px; }
  .services-tabs .tab-btn { font-size: 12px; padding: 6px 10px; }
  .services-tabs .tab-description p { font-size: 14px; padding: 0 8px; }
}


   .company-intro {
  background: #F5F7FA; /* light background */
  padding: 80px 20px;
  text-align: center;
  max-width: 100%;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.intro-title {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #111;
  text-align: center;
}

.intro-text {
  font-size: 16px;
  line-height: 1.7;
  color: #333;
  margin-bottom: 40px;
  margin-left: 140px;
  margin-right: 140px;
  text-align: justify;
}

.link-with-arrow {
  position: relative;
  display: inline-block;
  font-size: 20px;
  font-weight: 500;
  color: rgb(0, 102, 204);
  text-decoration: none;
}

.link-with-arrow::after {
  content: "›"; /* arrow */
  font-size: 20px;
  margin-left: 6px;
  transition: transform 0.3s ease;
}

/* Banner container */
.banner {
  width: 100%;
  height: 450px; /* Adjust as needed */
  overflow: hidden;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 0; /* ✅ No radius initially */
}

/* Banner image */
.banner img {
  width: 100%;
  height: auto;
  max-height: 100%;
  transition: transform 0.4s ease, opacity 0.4s ease, border-radius 0.4s ease;
  object-fit: cover;
  border-radius: 0; /* ✅ No radius initially */
}

/* Shrink effect class */
.banner.shrink img {
  transform: scale(0.8);  
  opacity: 0.95;          
  border-radius: 20px; /* ✅ Rounded only when shrinking */
}

/* ================= CLEAN WHITE FOOTER ================= */
.footer {
  background: #fff;
  color: #000;
  padding: 60px 20px 25px;
  border-top: 2px solid #111;
  font-size: 1.05rem; /* Global base font size */
}

/* --- Layout: Equal spacing & center alignment --- */
.footer-top {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: flex-start;
  justify-items: center;
  gap: 97px; /* Equal gap between all columns */
  max-width: 1200px;
  margin: 0 auto;
}

/* --- Brand Column --- */
.footer-col.brand {
  text-align: center;
}

.footer-col.brand img {
  display: block;
  margin: 0 auto 12px;
  max-width: 120px;
  height: auto;
}

.footer-col.brand p {
  font-size: 1rem;
  font-weight: 500;
  margin: 0;
  color: #000;
}

/* --- Column Headings --- */
.footer-col h4 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: #000;
  font-weight: 600;
}

/* --- Column Links --- */
.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin-bottom: 8px;
}

.footer-col ul li a {
  color: #000;
  text-decoration: none;
  transition: 0.3s ease;
}

.footer-col ul li a:hover {
  color: #0070f3;
}

/* --- Social & Contact --- */
.footer-col .contact-link {
  color: #0070f3;
  font-weight: 600;
  text-decoration: none;
}

.footer-col .contact-link:hover {
  text-decoration: underline;
}

.footer-col .socials {
  margin: 10px 0;
}

.footer-col .socials a {
  color: #000;
  font-size: 1.3rem;
  margin-right: 10px;
  transition: 0.3s ease;
}

.footer-col .socials a:hover {
  color: #0070f3;
}

.footer-col .mail {
  font-weight: 500;
  color: #000;
  margin: 4px 0;
  font-size: 0.95rem;
}

/* --- Bottom Section --- */
.footer-bottom {
  text-align: center;
  border-top: 1px solid #ddd;
  margin-top: 40px;
  padding-top: 15px;
  font-size: 1.5rem;
  color: #000;
}

/* --- Responsive Fixes --- */
@media (max-width: 1024px) {
  .footer-top {
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
  }
}

@media (max-width: 600px) {
  .footer-top {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }

  .footer-col h4 {
    margin-top: 10px;
  }

  .footer-col .socials a {
    margin: 0 8px;
  }
}




/* =======================================================
   ✅ RESPONSIVE MEDIA QUERIES (with Fixed iPad Navbar)
   ======================================================= */

/* ============================
   📱 MOBILE VIEW (max 480px)
   ============================ */
@media (max-width: 480px) {
  /* ---- Contact Section ---- */
  .contact-section {
    padding: 40px 15px;
  }

  .title {
    font-size: 1.4rem;
    line-height: 1.3;
  }

  .subtitle {
    font-size: 0.95rem;
    line-height: 1.4;
    margin-bottom: 25px;
  }

  .form-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  input,
  select,
  textarea {
    font-size: 13px;
    height: 45px;
  }

  .btn-submit {
    width: 100%;
    padding: 12px;
    font-size: 14px;
    border-radius: 6px;
  }

  .consent {
    font-size: 11px;
    text-align: center;
  }

  /* ---- Navbar ---- */
  .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .navbar .logo {
    margin-left: 10px;
  }

  .navbar .logo img {
    max-width: 110px;
    height: auto;
  }

  /* Hamburger button */
  .navbar-toggler {
    margin-left: auto;
    margin-right: 15px;
    border: none !important;
    background: none !important;
    box-shadow: none !important;
    outline: none !important;
    z-index: 1001;
  }

  .navbar-toggler-icon {
    width: 25px;
    height: 2px;
    background-color: #000;
    position: relative;
    transition: all 0.3s ease;
  }

  .navbar-toggler-icon::before,
  .navbar-toggler-icon::after {
    content: "";
    position: absolute;
    left: 0;
    width: 25px;
    height: 2px;
    background-color: #000;
    transition: all 0.3s ease;
  }

  .navbar-toggler-icon::before {
    top: -7px;
  }

  .navbar-toggler-icon::after {
    top: 7px;
  }

  .navbar-toggler.active .navbar-toggler-icon {
    background-color: transparent;
  }

  .navbar-toggler.active .navbar-toggler-icon::before {
    transform: rotate(45deg);
    top: 0;
  }

  .navbar-toggler.active .navbar-toggler-icon::after {
    transform: rotate(-45deg);
    top: 0;
  }

  /* Slide-in menu */
  .navbar-collapse {
    position: fixed;
    top: 0;
    left: -100%;
    width: 80%;
    height: 100vh;
    background-color: #fff;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.2);
    transition: left 0.4s ease;
    z-index: 1000;
    padding-top: 80px;
    text-align: left;
  }

  .navbar-collapse.show {
    left: 0;
  }

  .navbar-nav {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding-left: 20px;
  }

  .navbar-nav .nav-item {
    margin: 15px 0;
  }

  .navbar-nav .nav-link {
    font-size: 18px;
    color: #000;
    font-weight: 500;
    transition: color 0.3s;
  }

  .navbar-nav .nav-link:hover {
    color: #0070f3;
  }

  /* Close button (inside slide menu) */
.close-btn {
  position: absolute;
  top: 20px;
  right: 25px;
  font-size: 28px;
  font-weight: bold;
  color: #000;
  cursor: pointer;
  z-index: 1100; /* make sure it’s above all content */
}

/* Ensure slide menu itself is clickable area */
.navbar-collapse {
  position: fixed;
  top: 0;
  left: -100%;
  width: 80%;
  height: 100vh;
  background-color: #fff;
  box-shadow: 2px 0 10px rgba(0, 0, 0, 0.2);
  transition: left 0.4s ease;
  z-index: 1000;
  padding-top: 80px;
  text-align: left;
}

.navbar-collapse.show {
  left: 0;
}


  /* ---- Footer ---- */
  .footer-top {
    display: flex;
    flex-direction: column;
    gap: 25px;
    padding: 30px 15px;
    text-align: center;
  }

  .footer-top .footer-col {
    width: 100%;
  }

  .footer-top .footer-col.brand img {
    max-width: 120px;
    margin: 0 auto 10px;
  }

  .footer-top .footer-col h4 {
    font-size: 16px;
    margin-bottom: 10px;
  }

  .footer-top .footer-col ul li a {
    font-size: 14px;
  }

  .footer-top .footer-col .socials a {
    font-size: 18px;
    margin: 0 6px;
  }

  .footer-bottom {
    text-align: center;
    padding: 15px 10px;
    font-size: 13px;
  }
}

/* ============================
   📲 TABLETS (481px – 767px)
   ============================ */
@media (min-width: 481px) and (max-width: 767px) {
  .contact-section {
    padding: 60px 25px;
  }

  .title {
    font-size: 1.7rem;
  }

  .subtitle {
    font-size: 1.1rem;
  }

  .form-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .btn-submit {
    width: 80%;
    font-size: 15px;
  }

  /* Navbar with hamburger */
  .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .navbar-toggler {
    margin-left: auto;
    margin-right: 20px;
    border: none !important;
    background: none !important;
    z-index: 1001;
  }

  .navbar-collapse {
    position: fixed;
    top: 0;
    left: -100%;
    width: 65%;
    height: 100vh;
    background-color: #fff;
    transition: left 0.4s ease;
    z-index: 1000;
    padding-top: 80px;
  }

  .navbar-collapse.show {
    left: 0;
  }

  .navbar-nav {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding-left: 20px;
  }

  .navbar-nav .nav-item {
    margin: 10px 0;
  }

  .navbar-nav .nav-link {
    font-size: 18px;
    color: #000;
    font-weight: 500;
  }

  .navbar .logo img {
    max-width: 130px;
  }

  .close-btn {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 28px;
    font-weight: bold;
    color: #000;
    cursor: pointer;
    z-index: 1100;
  }

  /* Footer */
  .footer-top {
    display: flex;
    flex-direction: column;
    gap: 25px;
    padding: 40px 25px;
    text-align: center;
  }
}

/* ============================
   💻 IPAD & SMALL LAPTOPS (768px – 1023px)
   ============================ */
@media (min-width: 768px) and (max-width: 1023px) {
  .contact-section {
    padding: 80px 50px;
  }

  .title {
    font-size: 1.9rem;
  }

  .subtitle {
    font-size: 1.15rem;
  }

  /* ✅ Show full menu (no hamburger) */
  .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .navbar-toggler {
    display: none !important;
  }

  .navbar-collapse {
    position: static;
    width: auto;
    height: auto;
    background: none;
    box-shadow: none;
    display: flex !important;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
    padding-top: 0;
  }

  .navbar-nav {
    display: flex;
    flex-direction: row;
    gap: 25px;
  }

  .navbar-nav .nav-link {
    font-size: 16px;
    color: #000;
    font-weight: 500;
  }

  .navbar-nav .nav-link:hover {
    color: #0070f3;
  }

  .navbar .logo img {
    max-width: 150px;
  }

  .footer-top {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 30px 15px;
    gap: 25px;
  }

  .footer-top .footer-col {
    width: 100%;
    max-width: 320px;
    margin-bottom: 20px;
  }

  .footer-top .footer-col.brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .footer-top .footer-col.brand img {
    display: block;
    margin: 0 auto 10px;
    max-width: 130px;
    height: auto;
  }

  .footer-top .footer-col h4 {
    font-size: 16px;
    margin-bottom: 12px;
  }

  .footer-top .footer-col ul li a {
    font-size: 14px;
  }

  .footer-top .footer-col .socials {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-top: 10px;
  }

  .footer-top .footer-col .socials a {
    font-size: 20px;
    color: #000;
    transition: color 0.3s;
  }

  .footer-top .footer-col .socials a:hover {
    color: #0070f3;
  }

  .footer-bottom {
    text-align: center;
    padding: 15px 10px;
    font-size: 13px;
  }
}

/* ============================
   🖥️ DESKTOPS (≥1024px)
   ============================ */
@media (min-width: 1024px) {
  .contact-section {
    padding: 100px 60px;
  }

  .title {
    font-size: 2.2rem;
  }

  .subtitle {
    font-size: 1.2rem;
  }

  .form-grid {
    grid-template-columns: 1fr 1fr;
    gap: 25px;
  }

  .btn-submit {
    width: 400px;
  }

  /* Full desktop navbar */
  .navbar-nav {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    gap: 25px;
  }

  .navbar-nav .nav-item {
    margin-left: 20px;
  }

  .navbar-nav .nav-link {
    color: #000;
    font-weight: 500;
  }

  /* ===== Footer Cleanup for iPad Pro & Desktop ===== */
  .footer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
    padding: 40px 60px 20px;
    text-align: left;
  }

  .footer-top .footer-col {
    flex: 1;
    max-width: 280px;
    margin-bottom: 0;
  }

  .footer-top .footer-col.brand {
    align-items: flex-start;
    text-align: left;
  }

  .footer-top .footer-col.brand img {
    margin: 0 0 10px 0;
    max-width: 120px;
  }

  .footer-top .footer-col h4 {
    font-size: 16px;
    margin-bottom: 10px;
  }

  .footer-top .footer-col ul {
    padding: 0;
    margin: 0;
  }

  .footer-top .footer-col ul li {
    margin-bottom: 6px;
  }

  .footer-top .footer-col ul li a {
    font-size: 14px;
  }

  .footer-top .footer-col .socials {
    display: flex;
    justify-content: flex-start;
    gap: 12px;
    margin-top: 8px;
  }

  .footer-bottom {
    padding: 10px 0 20px;
    text-align: center;
    font-size: 13px;
  }
}

/* Extra fallback for <1024px if needed */
@media (max-width: 1023px) {
  .footer-top {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  .footer-top .footer-col {
    width: 100%;
    max-width: 300px;
    margin-bottom: 20px;
  }

  .footer-top .footer-col.brand img {
    display: block;
    margin: 0 auto 10px;
  }

  .footer-top .footer-col .socials {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-top: 10px;
  }

  .footer-top .footer-col .socials a {
    font-size: 20px;
    color: #000;
    transition: color 0.3s;
  }

  .footer-top .footer-col .socials a:hover {
    color: #0070f3;
  }

  .footer-bottom {
    text-align: center;
    padding: 15px 10px;
    font-size: 13px;
  }
}
/* ===============================
   COMPANY INTRO SECTION (Desktop)
   =============================== */
.company-intro {
  padding: 80px 20px;
  display: flex;
  justify-content: center;
}

.company-intro .intro-container {
  max-width: 950px;
  text-align: center;
}

.company-intro .intro-title {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 20px;
}

.company-intro .intro-text {
  font-size: 17px;
  line-height: 1.7;
  max-width: 850px;
  margin: 0 auto 30px;
  text-align: justify;
}

.company-intro .link-with-arrow {
  font-weight: 600;
  font-size: 16px;
  display: inline-block;
  margin-top: 10px;
}



/* ===============================
   📱 MOBILE VIEW (max 576px)
   =============================== */
@media (max-width: 576px) {

  .company-intro {
    padding: 50px 15px;
  }

  .company-intro .intro-container {
    text-align: center;
  }

  .company-intro .intro-title {
    font-size: 30px;
    line-height: 1.3;
  }

  .company-intro .intro-text {
    font-size: 15px;
    line-height: 1.6;
    text-align: justify;
    padding: 0 5px;
  }

  .company-intro .link-with-arrow {
    font-size: 14px;
    margin-top: 15px;
  }
}



/* ===============================
   📱 TABLET VIEW (min 577px – max 768px)
   =============================== */
@media (min-width: 577px) and (max-width: 768px) {

  .company-intro {
    padding: 60px 20px;
  }

  .company-intro .intro-title {
    font-size: 35px;
  }

  .company-intro .intro-text {
    font-size: 16px;
    max-width: 700px;
  }
}

/* Slide Menu (hidden by default on the left) */
.slide-menu {
  position: fixed;
  top: 0;
  left: -300px; /* hide offscreen to the left */
  width: 280px;
  height: 100%;
  background: #fff;
  box-shadow: 2px 0 8px rgba(0,0,0,0.2);
  transition: left 0.3s ease;
  padding: 20px;
  z-index: 1050; /* above navbar */
}

/* Show menu */
.slide-menu.open {
  left: 0; /* slide in from left */
}

/* Close button inside slide menu */
.slide-menu .close-btn {
  font-size: 28px;
  font-weight: bold;
  border: none;
  background: transparent;
  cursor: pointer;
  position: absolute;
  top: 15px;
  right: 20px; /* you can move it to left: 20px if you prefer */
}

/* Slide menu links */
.slide-menu .nav-link {
  display: block;       /* each link on its own line */
  margin: 8px 0;        /* reduce vertical spacing */
  font-size: 18px;      /* keep size consistent */
  text-decoration: none;
  color: #000;
  font-weight: 500;
  transition: color 0.3s ease;
}

.slide-menu .nav-link:hover {
  color: #ff6600; /* optional hover color */
}

  /* ===== Banner Base Style ===== */


/* ===== Mobile (up to 480px) ===== */
@media (max-width: 480px) {
  .banner{
    height: 127px;
  }
}


/* ===== Tablet (481px - 768px) ===== */
@media (min-width: 481px) and (max-width: 768px) {
 .banner{
  height: 254px;
 }
}


/* ===== Tablet Landscape / Small Laptop (769px - 1024px) ===== */
@media (min-width: 769px) and (max-width: 1024px) {
  .banner{
    height: 335px;
  }
}



@media (max-width: 480px) {

  .footer-top {
    display: grid;
    grid-template-columns: 1fr;  
    gap: 15px;
    padding: 20px 15px;
    text-align: center;
  }

  /* Brand column takes full width */
  .footer-top .footer-col.brand {
    grid-column: 1 / -1;
    text-align: center;
  }

  .footer-top .footer-col.brand img {
    max-width: 100px;
    margin: 0 auto 8px;
  }

  .footer-top .footer-col.brand p {
    font-size: 13px;
    margin-top: 5px;
  }

  /* Other columns wrapped inside a 2-column group */
  .footer-columns-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 20px;
    width: 100%;
  }

  .footer-columns-wrap .footer-col {
    text-align: left;
  }

  .footer-top .footer-col h4 {
    font-size: 14px;
    margin-bottom: 6px;
  }

  .footer-top .footer-col ul li a {
    font-size: 12px;
    line-height: 1.4;
  }

  .footer-top .footer-col .socials a {
    font-size: 16px;
    margin-right: 6px;
  }

  .footer-bottom {
    padding: 10px 0;
    font-size: 11px;
    text-align: center;
  }
}
