body {
  font-family: "Inter",sans-serif;
  margin: 0;
  padding: 0;
  background-color: #ffffffff;
}


body:has(#menu-toggle:checked) {
  overflow: hidden;
  height: 100vh;
}
/*===== Header section===== */



/* Hide checkbox */
#menu-toggle {
  display: none;
}

/* Hamburger Icon */
.navbar-icon {
  position: absolute;
  top: 65px;
  right: 60px;
  width: 35px;
  height: 25px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  z-index: 1001;
}

.navbar-icon span {
  display: block;
  height: 4px;
  width: 100%;
  background: #000000ff;
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* Hover effect */
.navbar-icon:hover span {
  background: #2da9e0;
  box-shadow: 0 0 0px ;
}

/* Transform hamburger to X */
#menu-toggle:checked + .navbar-icon span:nth-child(1) {
  transform: rotate(45deg) translate(9px, 6px);
    background: #ffffffff;
  height: 3px;
}
#menu-toggle:checked + .navbar-icon span:nth-child(2) {
  opacity: 0;
}
#menu-toggle:checked + .navbar-icon span:nth-child(3) {
  transform: rotate(-45deg) translate(9px, -6px);
    background: #ffffffff;
   height: 3px;
}

/* Navbar Drawer */
.navbar-menu {
  position: fixed;
  top: 0;
  right: -500px;   /* hidden off-screen */
  width: 500px;
  height: 100%;
  background: #2da9e0;
  box-shadow: -2px 0 10px rgba(0,0,0,0.2);
  transition: right 0.3s ease;
  padding: 80px 20px; /* leave space for top */
  z-index: 1000;
  text-align:left;
}

.navbar-menu ul {
  list-style: none;
  padding: 0;
  margin-top: 90px;
  margin-Left:30px;
  
}

.navbar-menu ul li {
  margin: 20px 0;
}

.navbar-menu ul li a {
  text-decoration: none;
  color: #ffffffff;
  font-weight: 400;
  display: block;
  transition: all 0.3s ease;
  font-family: 'Inter' ;
  font-size:40px;
}

.navbar-menu ul li a:hover {
  color: #ffffffff;
    transform: translateX(10px);

}

/* Show drawer when checked */
#menu-toggle:checked ~ .navbar-menu {
  right: 0;
}

.sticky-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 2000;
  background: transparent;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  transition: background 0.3s ease;
}

#logo {
  width: 200px;
  height: 64px;
  object-fit: contain;
}

/* Top (no scroll) */
#hamburger span {
  background: #fff;
}

/* After scroll */
.scrolled {
  background: #fff;
}

.scrolled #hamburger span {
  background: #000;
}


.container{
  padding-top:0px;
  margin-top:50px;
}

.hero-logo {
  margin: 30px 0px 0px 30px; /* center and add space below */
  max-width: 200px; /* adjust size as needed */
  height: auto;
  transition: transform 0.3s ease;
  
}

.about-section {
  text-align: center;
  padding: 90px 0 0 0;
  background-color: white;
  position:relative;
  margin-top:0px; 
}

.sub-heading{
  margin-bottom:20px;
}


.main-heading {
   font-family: Inter, sans-serif;
  width:80%;
  font-weight: 600;
  color: #000000ff;
  margin:40px auto;
  font-size:72px;
  line-height: 1.1;
}
.main-heading.hero-title {
  margin-top: 40px;
  font-size: 48px;
  font-weight: 600;
  text-align: center;
  line-height: 1.15;
  animation: hero-slide-color 0.7s ease-out forwards;
}

/* letter animation */
.main-heading.hero-title.four span {
  display: inline-block;
  white-space: pre;
  opacity: 0;
  transform: translate(0, -100px) rotate(360deg) scale(0);
  animation:
    revolveDrop 0.18s forwards,
    letterColor 0.18s forwards;
}

/* drop + rotate */
@keyframes revolveDrop {
  30% { transform: translate(0, -50px) rotate(180deg) scale(1); }
  60% { transform: translate(0, 20px)  rotate(0deg)   scale(.8); }
  100%{
    transform: translate(0) rotate(0deg) scale(1);
    opacity: 1;
  }
}

/* blue while moving, black when settled */
@keyframes letterColor {
  0%, 80% { color: #2da9e0; }
  100%    { color: #000000; }
}

.description {
  font-size: 24px;
  color: #6c6c6cff;
  line-height: 1.4;
  margin: auto;
  margin-bottom:30px;
  font-weight: 400;
  
}

.description b{
  color: #666565ff;
}

.team-section {
  padding: 30px 0;
  background: #ffffffff;
  margin-bottom:90px;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr); 
  grid-template-rows: repeat(3, 200px);
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ===== Base card ===== */
.team-member {
  position: relative;
  width: 100%;                  /* full width of grid cell */
  border-radius: 25px;
  overflow: hidden;
  background-size:cover;
  background-position:center;
  cursor: pointer;
  transform-style: preserve-3d;
  perspective: 1200px;

  opacity: 0;
  transform: translateY(40px) scale(0.94);
  box-shadow: 0 16px 40px rgba(0,0,0,0.16);
  animation:
    team-in 0.7s cubic-bezier(0.2, 0.9, 0.3, 1.4) forwards,
    team-breathe 4s ease-in-out 0.9s infinite;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

/* image as pseudo-element */
.team-member::before {
  content: "";
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  border-radius: 22px;
  transform-origin: bottom;
  transition: transform 0.4s ease-out;
  will-change: transform;
}

/* soft light sweep on hover */
.team-member::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 22px;
  background: linear-gradient(
    120deg,
    rgba(255,255,255,0) 0%,
    rgba(255,255,255,0.8) 40%,
    rgba(255,255,255,0) 80%
  );
  transform: translateX(-130%);
  opacity: 0;
  pointer-events: none;
}

/* assign images (replace URLs as needed) */
.team-member-1::before { background-image: url(""); }
.team-member-2::before { background-image: url(""); }
.team-member-3::before { background-image: url(""); }
.team-member-4::before { background-image: url(""); }
.team-member-5::before { background-image: url(""); }
.team-member-6::before { background-image: url(""); }
.team-member-7::before { background-image: url(""); }

/* ===== Hover: zoom + light + slight bend ===== */
.team-member:hover {
  transform: translateY(-10px) scale(1.04);
  box-shadow:
    0 22px 50px rgba(0,0,0,0.25),
    0 0 18px rgba(81,165,255,0.4);
}

.team-member:hover::before {
  transform: rotateX(6deg) translateY(-4px);
}

.team-member:hover::after {
  opacity: 1;
  animation: card-light-sweep 0.8s ease-out;
}

@keyframes card-light-sweep {
  0%   { transform: translateX(-130%); opacity: 0; }
  10%  { opacity: 0.9; }
  100% { transform: translateX(130%);  opacity: 0; }
}

.team-member-name {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  padding: 8px 12px;
  background: #d9d9d9;
  border-radius: 15px;
  text-align: center;
  font-weight: 500;
  font-size: 16px;
  color: #333;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  opacity: 1;

  background-image: linear-gradient(120deg, #d9d9d9, #d9d9d9);
  background-size: 200% 100%;
  transition:
    background-position 0.5s ease,
    box-shadow 0.3s ease,
    transform 0.3s ease;
}

.team-member:hover .team-member-name {
  background-image: linear-gradient(120deg, #089ee8, #62d0ff, #089ee8);
  background-position: 100% 0;
  box-shadow:
    0 6px 14px rgba(0,0,0,0.2),
    0 0 12px rgba(8,158,232,0.7);
  transform: translateX(-50%) translateY(-4px);
}

/* underline animation for text */
.team-member-name span {
  position: relative;
}

.team-member-name span::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  background: #ffffff;
  transition: width 0.25s ease;
}

.team-member:hover .team-member-name span::after {
  width: 100%;
}

/* ===== Special layout (3 columns desktop) ===== */
.team-member-1 {
    width:289px;
    height:343px;
  grid-column: 1;
  grid-row: 1;
  background-image: url("./img1.jpeg");
}

.team-member-2 {
    margin-top:100px;
    width:289px;
    height:540px;
  grid-column: 2;
  grid-row: 1 / 3; /* spans 2 rows */
  background-image: url("./img2.jpeg");
}

.team-member-3 {
   width:289px;
   height: 215px;
   margin-top:53px;
  grid-column: 3;
  grid-row: 1;
  background-image: url("./img4.jpeg");
  background-size: contain;
  background-repeat: no-repeat;
  background-size: 100% auto;
}

.team-member-4 {
   width:289px;
    height:343px;
  grid-column: 4;
  grid-row: 1;
  background-image: url("./img3.jpeg");
}

.team-member-5 {
    width:289px;
    margin-top:140px;
    height:280px;
  grid-column: 1;
  grid-row: 2 / 4; /* spans 2 rows */
  background-image: url("./img5.jpeg");
}

.team-member-6 {
    width:289px;
    height:360px;
    margin-top:60px;
  grid-column: 3;
  grid-row: 2;
  background-image: url("./img6.jpeg");
  background-size: contain;
  background-repeat: no-repeat;
  background-size: 80% auto;
}

.team-member-7 {
    width:289px;
    margin-top:140px;
    height:280px;
  grid-column: 4;
  grid-row: 2 / 4; /* spans 2 rows */
  background-image: url("./img7.jpeg");
   background-size: contain;
  background-repeat: no-repeat;
  background-size: 80% auto;
  background-position: top;
}

/* ===== Entrance animation (staggered) ===== */
@keyframes team-in {
  0% {
    opacity: 0;
    transform: translateY(40px) scale(0.9);
    filter: blur(6px);
  }
  70% {
    opacity: 1;
    transform: translateY(-6px) scale(1.02);
    filter: blur(0);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* breathing for all cards */
@keyframes team-breathe {
  0%, 100% { transform: translateY(0) scale(1); }
  50%      { transform: translateY(-4px) scale(1.02); }
}

/* stagger delays */
.team-member-1 { animation-delay: 0.05s; }
.team-member-2 { animation-delay: 0.15s; }
.team-member-3 { animation-delay: 0.25s; }
.team-member-4 { animation-delay: 0.35s; }
.team-member-5 { animation-delay: 0.45s; }
.team-member-6 { animation-delay: 0.55s; }
.team-member-7 { animation-delay: 0.65s; }

/* ====== RESPONSIVENESS ====== */

/* Default (Desktop) you already have */

/* Remove this media query, or change it */
@media (max-width: 1200px) {
  .team-grid {
   grid-template-columns: repeat(4, 1fr); /* keep 4 columns */
    max-width: 100%;  /* make it shrink smoothly */
    padding: 0 15px;  /* add a little breathing space */
  }

  .team-member {
    width: 100%;  /* allow members to shrink proportionally */
  }
  .description{
    width:100%;
  }
  .sub-heading{
    font-size:32px;
  }
  .main-heading{
    width:90%;
  }
}


/* Tablet Responsiveness */

@media (max-width: 992px) {
  .team-grid {
    grid-template-columns: repeat(2, 1fr); 
    grid-template-rows: auto;
    gap: 15px;
    padding: 0 15px;
  }

  .team-member {
    width: 100% !important;
    height: 320px !important;  /* ✅ give fixed height */
    margin: 0 auto;
  }

  .team-member-1,
  .team-member-2,
  .team-member-3,
  .team-member-4,
  .team-member-5,
  .team-member-6,
  .team-member-7 {
    grid-column: auto !important;
    grid-row: auto !important;
    margin-top: 0 !important;
  }
}


/* Tablet & Below (768px and under) */
@media (max-width: 768px) {
  .navbar-menu {
     width:400px;
    }
    .navbar-menu ul{
        width:300px;
        margin-left:10px;
        margin-top:50px;
        text-align:left;

    }
  .team-grid {
   /* grid-template-columns: 1fr; /* Single column stack */
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    padding: 0 10px;
  }

  .team-member {
    width: 100% !important;
    height: 300px !important; /* uniform height for tablets */
     aspect-ratio: 1 / 1.2;
  }
  .description{
    width:100%;
    
  }
  .main-heading.hero-title{
    font-size:32px;
  }

  .sub-heading{
    font-size:24px;
  }
  .description{
    font-size:18px;
  }
}

@media (max-width: 500px) {
  
   .navbar-icon{
    top:50px;
    right:30px;
  }
  .navbar-menu{
    width:100%;
    margin:0 auto;

  }
  .container{
    margin-top:140px;
  }
  #logo{
    margin:0px;
  }
  .navbar-icon{
    margin-right:0px;
    margin-top:-18px;
  }
  .navbar-menu ul{
    text-align:center;
     margin:0 auto;

  }

  .about-us-label{
    margin:80px 0px 20px 0px;
  }
  
  .about-section{
    padding:0px;
  }
  .description {
  font-size: 19px;
  color: #6c6c6cff;
  line-height: 1.6;
  margin-bottom: 30px;
  width:100%;
  height:100%;
  
}
  .main-heading.hero-title {
    font-size:32px;
    width:87%;
    line-height: 1.3;
  }
  .team-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px; /* spacing between cards */
  }

  .team-member {
    width: 100%;       /* take full width of container */
    max-width: 350px;  /* limit size for nice look */
    height: auto;      /* let height adjust with image ratio */
    margin-top: 0;     /* remove manual offsets */
    grid-column: auto;
    grid-row: auto;
  }

  .team-member-1,
  .team-member-4,
  .team-member-6{
    width: 100%;
    height: 400px;  /* fixed height for consistency */
    margin-top: 0;  /* reset offsets */
  }
  .team-member-2{
     width: 100%;
    height: 600px; 
  }
  .team-member-3{
     width: 100%;
    height: 250px; 
  }
  .team-member-5{
     width: 100%;
    height: 300px;
  }
  .team-member-7{
     width: 100%;
    height: 300px;
  }

  .team-member-name {
    bottom: 25px;
    font-size: 18px;
  }
}


/* =========cta section========= */

/* cta section */
.cta-section {

  font-family: 'Inter';
  margin: 40px 80px;
  background: #2da9e0;
  padding: 40px 30px 40px 30px;
  color: #fff;
  border-radius: 20px;
  height: auto; /* desktop height */
}

.cta-heading {
  font-size: 48px;
  font-weight: 600;
  line-height: 1.2;
  margin: 0 0 15px 0;
  margin-top:30px;
}

.cta-text {
  margin-top: 20px;
  font-size: 18px;
  font-weight: 400;
  opacity: 0.9;
  margin-bottom: 0;
  width:90%;
}

/* Inputs */
.form-control {
  margin-top: 20px;
  width: 100%;
  height: 60px;
  border-radius: 10px;
  border: none;
  margin-bottom: 0px;
  padding: 15px 20px;
  font-size: 16px;
  color: #333;
  font-weight:500;
}

.form-control::placeholder {
  color: #2da9e0;
  font-weight: 400;
}

/* Contact Button */
.btn-submit {
  background: white;
  width: fit-content;     /* button becomes small */
  padding: 12px 28px;     /* clean button size */
  color: #2da9e0;
  border: none;
  border-radius: 10px;
  font-weight: 600;
  text-decoration: none;
  display: block;
  text-align: center;
  margin-left: auto;       /* pushes button to the RIGHT */
  margin-top: 25px;
  transition: all 0.3s ease;
  font-size: 18px;
}

.btn-submit:hover {
  background: #f5f5f5;
  color: #2298cf;
}


.error {
    color: rgb(255, 255, 255);
    font-size: 0.85rem;
    display: block;
    margin-top: 4px;
        }
.form-control.invalid {
    border: 2px solid red;
        }
.form-control.valid {
    border: 2px solid rgb(10, 233, 10);
            }

/* ================== CTA RESPONSIVENESS ================== */

/* Large screens down (<=1200px) */
@media (max-width: 1200px) {
  .cta-section {
    margin: 30px 50px;
    padding: 50px 40px 20px 25px;
    height: auto; /* let it grow naturally */
  }

  .cta-heading {
    font-size: 40px;
  }

  .cta-text {
    font-size: 17px;
  }
}

/* Medium screens (<=992px) */
@media (max-width: 992px) {
  .cta-section {
    margin: 25px 40px;
    padding: 40px 30px 20px 20px;
    height: auto;
  }

  .cta-heading {
    font-size: 34px;
    line-height: 1.3;
  }

  .cta-text {
    font-size: 16px;
  }

  .btn-contact {
    margin-top: 40px;
    width: 160px;
    font-size: 15px;
  }
}

/* Tablets (<=768px) */
@media (max-width: 768px) {
  .cta-section {
    margin: 20px;
    padding: 35px 25px 20px 25px;
    border-radius: 12px;
    text-align: center;
  }

  .cta-heading {
    font-size: 28px;
  }

  .cta-text {
    font-size: 15px;
  }

  .form-control {
    height: 55px;
    font-size: 15px;
  }

  .btn-submit {
    width: 50%;
    margin: 25px auto 0;  /* center on mobile */
    font-size: 16px;
  }
}


/* Small mobiles (<=430px) */
@media (max-width: 500px) {
  .cta-section {
    width:95%;
    margin: 0 auto ;
    height: auto; /* Let content decide height */
    padding: 20px;
  }

  .cta-heading {
    font-size: 35px;
    margin-bottom: 20px;
    margin-top: 20px;
    text-align:left;
  }


  .cta-text {
    width:100%;
    text-align:left;
    font-size: 13px;
    margin-bottom: 20px;
  }

  /* Show only mobile button */
  .btn-submit {
    width: 50%;
    font-size: 15px;
    float:right;
  }
}


/* ========================== FOOTER ================= ===== */

/* ===== Premium gradient using existing blue palette ===== */
.custom-footer {
  background: linear-gradient(
    135deg,
    #050508 0%,          /* deep near-black */
    #00172a 25%,         /* dark blue-black */
    
    #4AB3FF 65%,         /* electric blue accent */
    #3b1a5a 80%,         /* dark purple-blue */
    #A06CFF 100%         /* neon purple edge */
  );
  color: #fff;
  position: relative;
  padding: 80px 0 0px;
  overflow: hidden;
  margin:40px 0 0 0;
}

/* Shifted columns - 2 tab spaces right (approx 32px) */
.shifted-col {
  margin-left: 112px;
}
/* Move ONLY 2nd column 1 tab space more right */
.footer-col:nth-child(2) .shifted-col {
  margin-left: 160px;  /* 32px (current) + 16px (1 tab) = 48px */
}


/* Menu title styling - matches footer text style */
.footer-menu-title {
  font-size: 18px;
  margin-bottom:30px;
  color: #ffffffcc;
  font-weight: 500;
}

/* Layout */
.footer-main-row {
  align-items: flex-start;
}

.footer-left {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer-logo {
  max-width: 100px;
  height: auto;
}

.footer-text {
  max-width: 260px;
  font-weight: 500;
  color: #ffffffcc;
  line-height: 1.7;
  margin-top:30px;
  font-size:18px;
}

/* Social buttons */
.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
}

.socials {
  margin-top:40px;
  margin-left:70px;
  display: flex;
  align-items: center;
  gap: 18px;
  
}

.socials li {
  list-style: none;
}
.socials li a {
  width: 58px;
  height: 58px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 30%;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(6px);
  box-shadow:
    0 6px 14px rgba(0,0,0,0.6),
    inset 0 3px 6px rgba(255,255,255,0.18),
    inset 0 -4px 10px rgba(0,0,0,0.5);
  border: 1px solid rgba(255,255,255,0.05);
  position: relative;
  overflow: hidden;
  transition: 0.3s ease;
}

/* Top shine */
.socials li a::before {
  content: "";
  position: absolute;
  top: -20px;
  width: 100%;
  height: 60%;
  background: rgba(255,255,255,0.18);
  border-radius: 50%;
  filter: blur(8px);
}

/* Icon size */
.socials li a img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

/* Hover effect */
.socials li a:hover {
  transform: translateY(-4px) scale(1.08);
  box-shadow:
    0 10px 18px rgba(0,0,0,0.75),
    0 0 14px rgba(0,150,255,0.6);
}



/* Center menu */
.footer-menu {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
  margin-top: 10px;
}

.footer-link {
  font-size: 18px;
  font-weight: 400;
  color: #ffffffcc;
  text-decoration: none;
  position: relative;
}

/* Right address */
.footer-address h5 {
  font-size: 18px;
  margin-bottom: 20px;
}

.footer-address p {
  margin: 0;
  color: #ffffffcc;
  line-height: 1.6;
  font-size:18px;
}

.footer-bottom {
  margin-top: 120px !important;
  text-align: center;
}

/* STUDIO-style text */
.footer-bottom span {
  font-family: 'Anton', sans-serif;
  font-size: clamp(110.5px, 5vw, 120px);
  
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
   line-height: 0;

  /* Gradient INSIDE the text */
  background: linear-gradient(
    to right,
    #050508 0%,          /* deep near-black */
    #095592ff 25%,         /* dark blue-black */
    
    #095592ff 65%,         /* electric blue accent */
    #3b1a5a 80%,         /* dark purple-blue */
    #A06CFF 100%    
  );

  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;

  /* Slight horizontal stretch like STUDIO */
  transform: scaleX(1.05);

  /* Animation */
  opacity: 0;
  transform: translateY(30px) scaleX(1.05);
  animation: premiumReveal 1.2s ease forwards;
}



@keyframes premiumReveal {
  to {
    opacity: 0.9;
    transform: translateY(0);
  }
}


/* ===== Hover-only animations ===== */
.hover-pop {
  transition: transform 0.3s ease;
}

.hover-pop:hover {
  transform: translateY(-2px) scale(1.05);
}

/* Underline left-to-right on hover */
.underline-anim {
  position: relative;
}

.underline-anim::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0;
  height: 1.5px;
  background: #ffffffcc;
  transition: width 0.3s ease;
}

.underline-anim:hover::after {
  width: 100%;
}

.underline-animate{
  position: relative;
}

.underline-animate::after{
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0;
  height: 1.5px;
  background: #ffffffcc;
  transition: width 0.3s ease;
}

.underline-animate:hover::after{
  width:50%;
}

@media (max-width: 1200px){
  .footer-bottom span{  
    font-size:74px;
    line-height:1;
  }
} 


/* ===== Responsiveness: follow existing breakpoints ===== */
@media (max-width: 992px) {
  .footer-logo {
    max-width: 140px;
  }
  .footer-text {
    max-width: 220px;
  }
  .footer-menu {
    margin-top: 20px;
  }
  
}

@media (max-width: 768px) {
  .custom-footer {
    text-align: left;
    padding: 50px 20px 40px;
    padding-bottom:0px;
  }
  .footer-main-row {
    row-gap: 32px;
  }
  .shifted-col {
    margin-left: 0;
  }
  
  .socials{
    margin-left:0px;
    padding:0PX;
  }
  .footer-bottom{
    margin-top:40px !important;
  }
  .footer-bottom span{  
    font-size:54px;
    line-height:1;
  }
  
}

@media (max-width: 500px) {
  .custom-footer{
    margin:40px 0 0 0;
    padding-bottom:0px;
  }
  .footer-text {
    max-width: 100%;
  }
  .footer-menu {
    align-items: flex-start;
  }
  
  .shifted-col{
    margin:0px !important;
  }
  .footer-bottom span{
    margin-left:-30px;
    font-size:66px;
    line-height:1;
  }
}