/* =========================================================
   G INDIA GROUP - RESPONSIVE HEADER
   Compatible with the provided header.js
   ========================================================= */

:root {
  --gi-header-height: 80px;
  --gi-mobile-header-height: 70px;
  --gi-header-bg: #ffffff;
  --gi-header-text: #0b2c4d;
  --gi-header-muted: #526579;
  --gi-header-primary: #ff5200;
  --gi-header-primary-dark: #dc4600;
  --gi-header-border: #e8edf2;
  --gi-header-shadow: 0 10px 32px rgba(11, 44, 77, 0.1);
  --gi-menu-shadow: 0 22px 60px rgba(11, 44, 77, 0.18);
}

/* Prevent the fixed header from covering page content. */
body {
  padding-top: var(--gi-header-height);
}

#common-header,
#common-header * {
  box-sizing: border-box;
}

#common-header {
  position: relative;
  z-index: 9999;
  width: 100%;
  font-family: "Poppins", Arial, sans-serif;
}

/* -------------------------
   Main header
   ------------------------- */

.gi-header {
  position: fixed !important;
  top: 0;
  right: 0;
  left: 0;
  z-index: 9999;
  width: 100% !important;
  height: var(--gi-header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 0 clamp(24px, 4vw, 64px);
  border-bottom: 1px solid rgba(232, 237, 242, 0.85);
  background: rgba(255, 255, 255, 0.97);
  box-shadow: var(--gi-header-shadow);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

/* -------------------------
   Logo
   ------------------------- */

.gi-logo {
  height: 100%;
  min-width: 0;
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  color: inherit;
  text-decoration: none;
}

.gi-logo:hover,
.gi-logo:focus {
  color: inherit;
  text-decoration: none;
}

.gi-logo img {
  display: block;
  width: auto;
  max-width: 190px;
  max-height: 174px;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.gi-logo:hover img {
  transform: scale(1.025);
}

/* -------------------------
   Desktop navigation
   ------------------------- */

.gi-nav {
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(20px, 2.25vw, 36px);
  margin-left: auto;
}

.gi-nav > a,
.gi-dropdown > a,
.gi-dropdown > span {
  position: relative;
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 0;
  color: var(--gi-header-text);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.4;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  transition: color 0.25s ease;
}

.gi-dropdown > a > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.gi-nav > a::after,
.gi-dropdown > a::after,
.gi-dropdown > span::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 2px;
  border-radius: 999px;
  background: var(--gi-header-primary);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.28s ease;
}

.gi-nav > a:hover,
.gi-nav > a:focus-visible,
.gi-dropdown > a:hover,
.gi-dropdown > a:focus-visible,
.gi-dropdown > span:hover,
.gi-dropdown > span:focus-visible,
.gi-dropdown:hover > a,
.gi-dropdown:hover > span {
  color: var(--gi-header-primary);
  text-decoration: none;
}

.gi-nav > a:hover::after,
.gi-nav > a:focus-visible::after,
.gi-dropdown:hover > a::after,
.gi-dropdown:focus-within > a::after,
.gi-dropdown:hover > span::after,
.gi-dropdown:focus-within > span::after {
  transform: scaleX(1);
}

/* -------------------------
   Right side and call button
   ------------------------- */

.gi-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
  flex: 0 0 auto;
}

.gi-right .gi-btn {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 10px 18px;
  border: 1px solid var(--gi-header-primary);
  border-radius: 8px;
  background: var(--gi-header-primary);
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 8px 20px rgba(255, 82, 0, 0.24);
  transition: color 0.3s ease, background 0.3s ease, border-color 0.3s ease,
    transform 0.3s ease, box-shadow 0.3s ease;
}

.gi-right .gi-btn:hover,
.gi-right .gi-btn:focus-visible {
  border-color: var(--gi-header-primary-dark);
  background: var(--gi-header-primary-dark);
  color: #ffffff;
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(255, 82, 0, 0.32);
}

.gi-right .gi-btn i {
  font-size: 13px;
  animation: giPhonePulse 2.2s ease-in-out infinite;
}

@keyframes giPhonePulse {
  0%,
  100% {
    transform: rotate(0deg) scale(1);
  }
  12% {
    transform: rotate(-13deg) scale(1.08);
  }
  24% {
    transform: rotate(13deg) scale(1.08);
  }
  36% {
    transform: rotate(0deg) scale(1);
  }
}

/* -------------------------
   Hamburger button
   ------------------------- */

.gi-toggle {
  width: 44px;
  height: 44px;
  display: none;
  align-items: center;
  justify-content: center;
  flex: 0 0 44px;
  padding: 0;
  border: 1px solid rgba(255, 82, 0, 0.3);
  border-radius: 9px;
  outline: none;
  background: #fff3ed;
  color: var(--gi-header-primary);
  font-family: Arial, sans-serif;
  font-size: 27px;
  font-weight: 400;
  line-height: 1;
  cursor: pointer;
  transition: color 0.25s ease, background 0.25s ease, border-color 0.25s ease,
    transform 0.25s ease;
}

.gi-toggle:hover,
.gi-toggle:focus-visible {
  border-color: var(--gi-header-primary);
  background: var(--gi-header-primary);
  color: #ffffff;
}

.gi-toggle[aria-expanded="true"] {
  border-color: var(--gi-header-primary);
  background: var(--gi-header-primary);
  color: #ffffff;
  transform: rotate(90deg);
}

/* -------------------------
   Desktop mega menus
   ------------------------- */

.gi-dropdown {
  position: relative;
}

.gi-mega-menu {
  position: absolute;
  top: calc(100% + 18px);
  left: 50%;
  z-index: 10001;
  width: min(940px, calc(100vw - 48px));
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr)) 220px;
  gap: 30px;
  padding: 28px;
  overflow: visible;
  border: 1px solid rgba(223, 231, 238, 0.92);
  border-radius: 17px;
  background: #ffffff;
  box-shadow: var(--gi-menu-shadow);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateX(-50%) translateY(14px) scale(0.985);
  transform-origin: top center;
  transition: opacity 0.28s ease, visibility 0.28s ease, transform 0.28s ease;
}

/* Hover bridge prevents the menu closing while moving the cursor downward. */
.gi-mega-menu::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 100%;
  left: 0;
  height: 19px;
}

.gi-mega-menu::after {
  content: "";
  position: absolute;
  top: -7px;
  left: 50%;
  width: 14px;
  height: 14px;
  border-top: 1px solid var(--gi-header-border);
  border-left: 1px solid var(--gi-header-border);
  background: #ffffff;
  transform: translateX(-50%) rotate(45deg);
}

.gi-dropdown:hover > .gi-mega-menu,
.gi-dropdown:focus-within > .gi-mega-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0) scale(1);
}

/* Keep the Locations menu inside the right side of the viewport. */
.gi-nav > .gi-dropdown:nth-of-type(2) > .gi-mega-menu {
  right: -150px;
  left: auto;
  grid-template-columns: repeat(3, minmax(0, 1fr)) 220px;
  transform: translateY(14px) scale(0.985);
  transform-origin: top right;
}

.gi-nav > .gi-dropdown:nth-of-type(2) > .gi-mega-menu::after {
  right: 185px;
  left: auto;
  transform: rotate(45deg);
}

.gi-nav > .gi-dropdown:nth-of-type(2):hover > .gi-mega-menu,
.gi-nav > .gi-dropdown:nth-of-type(2):focus-within > .gi-mega-menu {
  transform: translateY(0) scale(1);
}

.gi-mega-col {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.gi-mega-col a {
  position: relative;
  min-height: 39px;
  display: flex;
  align-items: center;
  padding: 8px 10px 8px 29px;
  border-radius: 7px;
  color: #354a5f;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.45;
  text-decoration: none;
  transition: color 0.25s ease, background 0.25s ease, padding-left 0.25s ease;
}

.gi-mega-col a::before {
  content: "›";
  position: absolute;
  left: 11px;
  color: var(--gi-header-primary);
  font-size: 21px;
  font-weight: 700;
  line-height: 1;
  transition: transform 0.25s ease;
}

.gi-mega-col a::after {
  display: none !important;
}

.gi-mega-col a:hover,
.gi-mega-col a:focus-visible {
  padding-left: 33px;
  background: #fff3ed;
  color: var(--gi-header-primary-dark);
  text-decoration: none;
}

.gi-mega-col a:hover::before,
.gi-mega-col a:focus-visible::before {
  transform: translateX(4px);
}

.gi-mega-card {
  position: relative;
  min-width: 0;
  min-height: 185px;
  overflow: hidden;
  padding: 18px;
  border-radius: 13px;
  background: linear-gradient(150deg, #082b4b, #0d4778);
  color: #ffffff;
  text-align: center;
}

.gi-mega-card h4 {
  position: relative;
  z-index: 2;
  margin: 0 0 7px;
  color: #ffffff;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
}

.gi-mega-card h2 {
  position: relative;
  z-index: 2;
  margin: 0 0 9px;
  color: #ffb38e;
  font-size: 23px;
  font-weight: 700;
}

.gi-mega-card img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 115px;
  margin-top: 10px;
  border-radius: 9px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gi-mega-card:hover img {
  transform: scale(1.04);
}

/* =========================================================
   SMALL DESKTOP / LAPTOP: 992px - 1199px
   ========================================================= */

@media (min-width: 992px) and (max-width: 1199px) {
  .gi-header {
    gap: 16px;
    padding-inline: 22px;
  }

  .gi-logo img {
    max-width: 155px;
  }

  .gi-nav {
    gap: 18px;
  }

  .gi-nav > a,
  .gi-dropdown > a,
  .gi-dropdown > span {
    font-size: 14px;
  }

  .gi-right .gi-btn {
    padding-inline: 13px;
    font-size: 12px;
  }

  .gi-mega-menu {
    width: min(840px, calc(100vw - 30px));
    grid-template-columns: repeat(2, minmax(0, 1fr)) 190px;
    gap: 20px;
    padding: 23px;
  }

  .gi-nav > .gi-dropdown:nth-of-type(2) > .gi-mega-menu {
    right: -125px;
    grid-template-columns: repeat(3, minmax(0, 1fr)) 190px;
  }

  .gi-nav > .gi-dropdown:nth-of-type(2) > .gi-mega-menu::after {
    right: 155px;
  }

  .gi-mega-card {
    min-height: 175px;
  }
}

/* =========================================================
   TABLET AND MOBILE: up to 991px
   ========================================================= */

@media (max-width: 991px) {
  body {
    padding-top: var(--gi-mobile-header-height);
  }

  .gi-header {
    height: var(--gi-mobile-header-height);
    gap: 15px;
    padding: 0 20px;
  }

  .gi-logo img {
    max-width: 160px;
    max-height: 65px;
  }

  .gi-right .gi-btn {
    display: none !important;
  }

  .gi-toggle {
    display: inline-flex;
  }

  .gi-nav {
    position: fixed;
    top: var(--gi-mobile-header-height);
    right: 0;
    left: 0;
    z-index: 9998;
    width: 100%;
    max-height: calc(100vh - var(--gi-mobile-header-height));
    max-height: calc(100dvh - var(--gi-mobile-header-height));
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    margin: 0;
    padding: 12px 20px 26px;
    overflow-x: hidden;
    overflow-y: auto;
    overscroll-behavior: contain;
    border-top: 1px solid var(--gi-header-border);
    background: #ffffff;
    box-shadow: 0 18px 35px rgba(11, 44, 77, 0.16);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-14px);
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
  }

  .gi-nav.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  .gi-nav > a,
  .gi-dropdown > a,
  .gi-dropdown > span {
    width: 100%;
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 13px 42px;
    border-bottom: 1px solid var(--gi-header-border);
    color: var(--gi-header-text);
    font-size: 15px;
    text-align: center;
    white-space: normal;
  }

  .gi-dropdown > a > span {
    width: auto !important;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  .gi-nav > a::after,
  .gi-dropdown > a::after,
  .gi-dropdown > span::after {
    display: none;
  }

  .gi-dropdown {
    width: 100%;
  }

  /* Mobile accordion dropdown. JavaScript adds/removes .active. */
  .gi-mega-menu,
  .gi-nav > .gi-dropdown:nth-of-type(2) > .gi-mega-menu {
    position: static;
    right: auto;
    left: auto;
    width: 100%;
    max-height: 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0 14px;
    padding: 0 14px;
    overflow: hidden;
    border: 0;
    border-radius: 0;
    background: #f8fafc;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    pointer-events: none;
    transform: none;
    transform-origin: top center;
    transition: max-height 0.42s ease, padding 0.32s ease;
  }

  .gi-mega-menu::before,
  .gi-mega-menu::after {
    display: none;
  }

  .gi-dropdown.active > .gi-mega-menu,
  .gi-nav > .gi-dropdown:nth-of-type(2).active > .gi-mega-menu {
    max-height: 1700px;
    padding-top: 12px;
    padding-bottom: 15px;
    pointer-events: auto;
    transform: none;
  }

  .gi-dropdown.active > a,
  .gi-dropdown.active > span {
    color: var(--gi-header-primary);
    background: #fff9f6;
  }

  .gi-mega-col {
    width: 100%;
    min-width: 0;
    gap: 3px;
  }

  .gi-mega-col a {
    min-height: 42px;
    padding: 9px 9px 9px 26px;
    border-bottom: 1px solid #e9eef3;
    border-radius: 0;
    background: transparent;
    font-size: 13px;
    text-align: left;
    white-space: normal;
  }

  .gi-mega-col a::before {
    left: 8px;
  }

  .gi-mega-col a:hover,
  .gi-mega-col a:focus-visible {
    padding-left: 29px;
    background: #fff0e9;
  }

  .gi-mega-card {
    display: none;
  }
}

/* =========================================================
   MOBILE: up to 767px
   ========================================================= */

@media (max-width: 767px) {
  .gi-header {
    padding-inline: 16px;
  }

  .gi-logo img {
    max-width: 145px;
  }

  .gi-nav {
    padding-right: 16px;
    padding-left: 16px;
  }

  .gi-mega-menu,
  .gi-nav > .gi-dropdown:nth-of-type(2) > .gi-mega-menu {
    grid-template-columns: 1fr;
  }
}

/* =========================================================
   SMALL MOBILE: up to 480px
   ========================================================= */

@media (max-width: 480px) {
  .gi-header {
    padding-inline: 13px;
  }

  .gi-logo img {
    max-width: 130px;
    max-height: 62px;
  }

  .gi-toggle {
    width: 40px;
    height: 40px;
    flex-basis: 40px;
    font-size: 24px;
  }

  .gi-nav {
    padding-right: 13px;
    padding-left: 13px;
  }

  .gi-nav > a,
  .gi-dropdown > a,
  .gi-dropdown > span {
    min-height: 48px;
    padding-inline: 30px;
    font-size: 14px;
  }

  .gi-mega-menu,
  .gi-nav > .gi-dropdown:nth-of-type(2) > .gi-mega-menu {
    padding-right: 8px;
    padding-left: 8px;
  }

  .gi-mega-col a {
    font-size: 12.5px;
  }
}

/* Accessibility: keyboard focus */
.gi-logo:focus-visible,
.gi-nav a:focus-visible,
.gi-dropdown > span:focus-visible,
.gi-toggle:focus-visible {
  outline: 3px solid rgba(255, 82, 0, 0.28);
  outline-offset: 3px;
}

/* Accessibility: reduced motion */
@media (prefers-reduced-motion: reduce) {
  .gi-logo img,
  .gi-nav,
  .gi-nav a,
  .gi-nav a::after,
  .gi-dropdown > span,
  .gi-dropdown > span::after,
  .gi-right .gi-btn,
  .gi-right .gi-btn i,
  .gi-toggle,
  .gi-mega-menu,
  .gi-mega-col a,
  .gi-mega-col a::before,
  .gi-mega-card img {
    animation: none !important;
    transition-duration: 0.01ms !important;
  }
}

/* =================================================
   FINAL DESKTOP HEADER POSITION AND CENTER FIX
   ================================================= */

@media (min-width: 992px) {
  #common-header {
    width: 100% !important;
    height: 80px !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  .gi-header {
    position: fixed !important;
    top: 0 !important;
    right: 0 !important;
    left: 0 !important;

    width: 100% !important;
    height: 80px !important;
    min-height: 80px !important;
    max-height: 80px !important;

    display: grid !important;
    grid-template-columns:
      minmax(220px, 1fr)
      auto
      minmax(220px, 1fr);
    grid-template-rows: 80px !important;

    align-items: center !important;
    justify-items: stretch;

    margin: 0 !important;
    padding: 0 5% !important;

    background: #ffffff !important;
    z-index: 99999 !important;
  }

  /* Logo left side and vertically centered */
  .gi-logo {
    width: fit-content !important;
    height: 80px !important;

    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;

    justify-self: start !important;
    align-self: center !important;

    margin: 0 !important;
    padding: 0 !important;
  }

  .gi-logo img {
    display: block !important;
    width: auto !important;
    max-width: 230px !important;
    max-height: 174px !important;

    margin: 0 !important;
    padding: 0 !important;

    object-fit: contain !important;
  }

  /* Navigation exact center */
  .gi-nav {
    position: static !important;

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    justify-self: center !important;
    align-self: center !important;

    gap: clamp(22px, 2.2vw, 38px);

    width: auto !important;
    height: 80px !important;

    margin: 0 !important;
    padding: 0 !important;

    transform: none !important;
  }

  .gi-nav > a,
  .gi-dropdown > a,
  .gi-dropdown > span {
    min-height: 44px !important;

    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;

    margin: 0 !important;
    padding: 8px 0 !important;

    line-height: 1.4 !important;
  }

  .gi-dropdown {
    display: flex !important;
    align-items: center !important;
    align-self: center !important;

    height: 80px !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  /* Phone button right side and vertically centered */
  .gi-right {
    width: fit-content !important;
    height: 80px !important;

    display: flex !important;
    align-items: center !important;
    justify-content: flex-end !important;

    justify-self: end !important;
    align-self: center !important;

    margin: 0 !important;
    padding: 0 !important;
  }

  .gi-right .gi-btn {
    margin: 0 !important;
  }
}





/* =================================================
   DESKTOP MEGA MENU VIEWPORT CENTER FIX
   ================================================= */

@media (min-width: 992px) {

  /* Services और Locations mega-menu viewport के center में */
  .gi-mega-menu,
  .gi-nav > .gi-dropdown:nth-of-type(2) > .gi-mega-menu {
    position: fixed !important;

    top: 80px !important;
    right: auto !important;
    left: 50% !important;

    margin: 0 !important;

    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    transform: translateX(-50%) translateY(15px) scale(0.98) !important;
    transform-origin: top center !important;

    transition:
      opacity 0.3s ease,
      visibility 0.3s ease,
      transform 0.3s ease !important;
  }

  /* Services menu width */
  .gi-nav > .gi-dropdown:nth-of-type(1) > .gi-mega-menu {
    width: min(940px, calc(100vw - 40px)) !important;
    grid-template-columns:
      repeat(2, minmax(0, 1fr))
      220px !important;
  }

  /* Locations menu width */
  .gi-nav > .gi-dropdown:nth-of-type(2) > .gi-mega-menu {
    width: min(1200px, calc(100vw - 40px)) !important;

    grid-template-columns:
      repeat(3, minmax(0, 1fr))
      300px !important;

    gap: 28px !important;
  }

  /* Dropdown hover पर open */
  .gi-dropdown:hover > .gi-mega-menu,
  .gi-dropdown:focus-within > .gi-mega-menu,
  .gi-nav > .gi-dropdown:nth-of-type(2):hover > .gi-mega-menu,
  .gi-nav > .gi-dropdown:nth-of-type(2):focus-within > .gi-mega-menu {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;

    transform: translateX(-50%) translateY(0) scale(1) !important;
  }

  /* पुराने arrow को hide करें क्योंकि menu viewport centered है */
  .gi-mega-menu::after {
    display: none !important;
  }

  /* Header और dropdown के बीच hover gap नहीं आएगा */
  .gi-mega-menu::before {
    content: "";
    position: absolute;
    right: 0;
    bottom: 100%;
    left: 0;
    display: block !important;
    height: 12px;
  }
}



/* =================================================
   REMOVE EXTRA GAP BELOW FIXED HEADER
   ================================================= */

/* Header container को extra height नहीं देनी */
#common-header {
  width: 100% !important;
  height: 0 !important;
  min-height: 0 !important;

  margin: 0 !important;
  padding: 0 !important;
}

/* Desktop fixed header space */
@media (min-width: 992px) {
  body {
    margin: 0 !important;
    padding-top: 80px !important;
  }

  .gi-header {
    top: 0 !important;
    height: 80px !important;
    min-height: 80px !important;
    max-height: 80px !important;
    margin: 0 !important;
  }

  /* Hero header के तुरंत बाद शुरू होगा */
  .hero {
    margin-top: 0 !important;
    padding-top: 0 !important;
  }

  .hero-container {
    margin-top: 0 !important;
    padding-top: 0 !important;
  }
}

/* Mobile and tablet fixed header space */
@media (max-width: 991px) {
  body {
    margin: 0 !important;
    padding-top: 70px !important;
  }

  .gi-header {
    top: 0 !important;
    height: 70px !important;
    min-height: 70px !important;
    max-height: 70px !important;
    margin: 0 !important;
  }

  .hero {
    margin-top: 0 !important;
    padding-top: 0 !important;
  }

  .hero-container {
    margin-top: 0 !important;
    padding-top: 0 !important;
  }
}




/* Mobile logo size fix */
@media (max-width: 991px) {
  .gi-logo img {
    width: 280px !important;
    max-width: 280px !important;
    max-height: 165px !important;
    object-fit: contain;
    margin-left: -50px;
  }
}

/* Small mobile */
@media (max-width: 480px) {
  .gi-logo img {
    width: 270px !important;
    max-width: 270px !important;
    max-height: 162px !important;
    margin-left: -50px;
  }
}



