
/* MOBILE MENU — Right-drawer accordion */

@media (max-width: 767.98px) {

  body.menu-open {
    overflow: hidden;
    touch-action: none;
    text-rendering: optimizeLegibility; /* Enables high-quality kerning and ligatures */
    -webkit-font-smoothing: antialiased; /* Smoother font rendering on macOS */
    -moz-osx-font-smoothing: grayscale;
  }

  .desktop{ display: none !important;}

  /* Hide desktop nav on mobile */
  .mainNav { display: none; }

  /* ===== BURGER BUTTON ===== */
  .navbar_burger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-content: center;
    cursor: pointer;
    position: fixed;
    top: 20px;
    z-index: 10000;
    color: #FFF;
    transition: 0.3s ease;
    padding: 0px;
    display: flex;
    flex-direction: row;
    animation: burgerPop 0.4s ease forwards;
    width: 26px; 
    height: 30px;
    right: 20px;
  }
  
  .navbar_burger svg {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-content: center;
    justify-items: center;
    align-items: center;
   
  }

  #opener{ width: 100%;
    height: 100%;}

  #closer{
    width: 100%;
    height: 100%;
    position: relative;
    top:-10px;
  }


  .navbar_burger:hover { color: var(--gold); }
  .navbar_burger.is-fixed {
    position: fixed;
    top: 34px;
    right: 60px;
    animation: burgerPop 0.4s ease forwards;
    color: var(--gold);
  }
  .navbar_burger.is-fixed:hover { color: var(--white); }
  .navbar_burger.is-fixed svg path {
    stroke: var(--gold);
    stroke-linecap: round;
    fill: none;
    transition: stroke 0.3s ease;
  }
  @keyframes burgerPop {
    from { transform: scale(0) translateY(-20px); opacity: 0; }
    to { transform: scale(1) translateY(0); opacity: 1; }
  }
  .navbar_burger svg .menu-stroke {
    width: 60px;
    height: 60px;
  }
  .navbar_burger svg path {
    transition: 0.4s ease;
    transform-origin: center;
  }
  .navbar_burger:hover { opacity: 0.7; }

  /* The mobile drawer */
  .mobileNav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    /*width: min(88vw, 420px);*/
    display: flex;
    flex-direction: column;
    background: #ffffff;
    z-index: 9999;
    transform: translateX(100%);
    visibility: hidden;
    transition: transform 0.35s cubic-bezier(0.32, 0.72, 0, 1), visibility 0.35s;
    overflow-y: auto;
    overscroll-behavior: contain;
  }

  .mobileNav.active {
    position: relative;
    width: 100%;
    right: 0;
    left: 0;
    bottom: 0;
    transform: translateX(0);
    visibility: visible;
    box-shadow: -8px 0 30px rgba(10, 35, 66,0.12);    
    overflow: scroll;
  }

  /* Stack links vertically */
  .mobileNav .nav-wrap {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    height: 100vh;
    overflow: scroll;
    padding: 0;
    gap: 0;
    max-width: 100%;
  }

  .mobileNav .nav-link {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    width: 100%;
    height: auto;
    min-height: 52px;
    padding: 10px 20px;
    font-size: 18px;
    font-weight: 500;
    color: #0f172a;
    border-bottom: 1px solid #f1f5f9;
    border-radius: 0;
    justify-content: space-between;
    font-family: var(--nav-text-primary);
  }
  .mobileNav .nav-link:hover,
  .mobileNav .nav-link:focus-visible,
  .mobileNav .nav-link.active {
    background: #f8fafc;
    color: var(--navy, #0a1628);
  }
  .mobileNav .nav-link::after {
    display: none;
  }

  .mobileNav .nav-link span {
    display: flex;
    font-size: 18px;
    font-family: var(--nav-text-primary);
    color: var();
    line-height: 1.6;
    font-weight: 400;
  }

  .mobileNav .nav-link .chevron {
    display: flex;
    width: 20px;
    height: 20px;
    opacity: 0.5;
    transition: transform 0.3s ease;
    flex-shrink: 0;
  }
  .mobileNav .nav-link.active .chevron {
    transform: rotate(180deg);
    opacity: 1;
  }
  .nav-spacer { display: none; }

  /* ===== MOBILE MEGA-DROPDOWNS — Slide in from right ===== */
  .mobileNav .mega-dropdown {
    
    position: absolute;
    inset: 0;                    /* cover entire drawer */
    width: 100%;
    height: 100%;
    max-height: none;
    background: #ffffff;
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.06);
    z-index: 10;
    display: flex;
    flex-direction: column;

    /* Start off-canvas to the right */
    transform: translate3d(100%, 0, 0);
    visibility: hidden;
    opacity: 1;

    /* GPU-friendly slide */
    transition: transform 0.35s cubic-bezier(0.32, 0.72, 0, 1),
                visibility 0.35s cubic-bezier(0.32, 0.72, 0, 1);
    will-change: transform;
    pointer-events: none;        /* ignore clicks when hidden */
    overflow-y: auto;
    overscroll-behavior: contain;
  }

  .mobileNav .mega-dropdown#services-dropdown{
    margin: 105px 0 0 0;
  }

  .mobileNav .mega-dropdown#industries-dropdown{
    margin: 157px 0 0 0;
  }

  .mobileNav .mega-dropdown.active {
    transform: translate3d(0, 0, 0);
    visibility: visible;
    pointer-events: auto;
  }

  /* Lock drawer scroll while a submenu panel is open */
  .mobileNav:has(.mega-dropdown.active) {
    overflow: hidden;
  }
  .mobileNav:has(.mega-dropdown.active) .nav-wrap {
    overflow: hidden;
  }

  .mobileNav .mega-inner {
    display: block;
    padding: 0;
    gap: 0;
    min-height: auto;
  }

  .mobileNav .mega-inner a,
  .mobileNav .mega-inner a {
    display: flex;
    align-items: center;
    justify-content:right;
    align-content: flex-end;
    justify-self: right;
    padding: 20px  10px 0 0;
    cursor: pointer;
    transition: all 0.2s ease;
    width: 40%;
    margin: 0 10px 0 auto;    
  }

  .mobileNav .mega-inner a span,
  .mobileNav .mega-inner a span{
    display: flex;
    cursor: pointer;    
    width:100%;
    margin: 0;
    padding: 0;
    font-size: 14px;
    text-transform:capitalize;
    font-family: var(--nav-text-primary);
  }

  .mobileNav .mega-inner a:hover,
  .mobileNav .mega-inner a:hover {
    display: flex;
    padding: 20px 0 0 20px;
    transition: all 0.2s ease;
    position: relative;
  }

  .mobileNav .mega-inner a .chevron {
    transition: transform 0.3s ease;
    opacity: 0.6;
    transform: rotate(-90deg);
    opacity: 1;
    margin: 0 0 0 10px;
  }

  .mobileNav .mega-inner.single-column {
    padding: 0;
    width: 100%;
  }

  /* Service / Industry cards */
  .mobileNav .all-service-cards,
  .mobileNav .all-industries-cards {
    width: 100%;
    border-right: none;
  }
  .mobileNav .service-cards,
  .mobileNav .industries-cards {
    border-bottom: 1px solid #f1f5f9;
  }
  .mobileNav .service-cards:last-child,
  .mobileNav .industries-cards:last-child {
    border-bottom: none;
  }

  .mobileNav .serviceheader,
  .mobileNav .industries-header {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
    padding: 0.875rem 1.25rem;
    min-height: 48px;
    cursor: pointer;
    font-size: var(--font-size-body);
  }
  .mobileNav .serviceheader h2,
  .mobileNav .industries-header h2 {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    width: 100%;
    height: auto;
    font-size: 16px;
    color: var(--gold);
    align-self: center;
    font-family: var(--nav-text-primary);
    line-height: 1.6;
    font-weight: 200;
  }
  .mobileNav .serviceheader.open,
  .mobileNav .industries-header.open {
    background: #eff6ff;
    border-left: 3px solid var(--gold);
  }
  .mobileNav .serviceheader.open h2,
  .mobileNav .industries-header.open h2 {
    color: var(--gold);
  }
  .mobileNav .serviceheader .chevron,
  .mobileNav .industries-header .chevron {
    display: flex;
    /*width: 18px;
    height: 18px;*/
    opacity: 0.5;
    transition: transform 0.3s ease;
    flex-shrink: 0;
  }
  .mobileNav .serviceheader.open .chevron,
  .mobileNav .industries-header.open .chevron {
    transform: rotate(180deg);
    opacity: 1;
  }

  /* List panels — hidden by default */
  .mobileNav .output-service-lists,
  .mobileNav .output-industries-list {
    width: 100%;
    position: relative;
  }
  .mobileNav .service-lists,
  .mobileNav .industries-list {
    list-style: none;
    background: #f8fafc;
    padding: 0 1.25rem;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.4s ease, opacity 0.3s ease, padding 0.3s ease;
  }

  .mobileNav .service-lists.open,
  .mobileNav .industries-list.open {
    max-height: 800px;
    opacity: 1;
    padding: 1rem 1.25rem;
    border-bottom: #f8fafc solid 1px;
  }

  .mobileNav .service-lists .list-desc,
  .mobileNav .industries-list .list-desc {
    font-size: 0.875rem;
    margin:  0 0 20px 0 ;
    line-height: 1.6;
  }
  
  .mobileNav .service-lists li,
  .mobileNav .industries-list li {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 4px 0;
    font-size: 0.85rem;
    width: 100%;
  }

  .mobileNav .service-lists li::before,
  .mobileNav .industries-list li::before {
    content: "";
    display: block;
    width: 5px;
    height: 5px;
    background: var(--gold);
    flex-shrink: 0;
  }

  /* Backdrop */
  .nav-overlay2 {
    position: fixed;
    inset: 0;
    background: rgb(255, 255, 255);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 998;
  }
  .nav-overlay2.active {
    opacity: 1;
    visibility: visible;
  }

  @media (prefers-reduced-motion: reduce) {
    .mobileNav,
    .nav-overlay2,
    .service-lists,
    .industries-list,
    .serviceheader .chevron,
    .industries-header .chevron,
    .nav-link .chevron,
    .mobileNav .mega-dropdown {
      transition: none !important;
    }
  }

  #services-dropdown-desktop, #industries-dropdown-desktop{
    display: none;
  }

  #socials{
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    box-sizing: border-box;
    overflow: visible;    
    position: relative;
    justify-content: center;
    align-content: center;
    justify-items: center;
    align-items: center;
    z-index: 9999;
    padding: 0;
    margin: 0;
    width: 100%;
}

  .socials-container {
      display: flex;
      flex-direction: row;
      flex-wrap: nowrap;
      box-sizing: border-box;
      overflow: visible;
      overflow: visible;    
      position: relative;
      margin: 0 auto;
  }

  .socials-container #socials .wrapper{
      display: flex;
      flex-direction: row;
      flex-wrap: nowrap;
      box-sizing: border-box;
      overflow: visible;
      column-gap: 10px;
      row-gap: 10px;
      margin: 0;
      padding: 0;
      justify-content: space-between;
      align-content: space-between;
      align-items: center;
      justify-items: center;
      border-radius: 50px;
      /*border: solid 2px var(--white);*/
  }

  .socials-container #socials .wrapper p{
      display: flex;
      flex-direction: row;
      flex-wrap: nowrap;
      box-sizing: border-box;
      overflow: visible;    
      padding: 0;
      margin: 0;
      align-self: center;
      justify-self: center;
      font-family: 'SpaceGrotesk-Lite' !important;
  }

  .socials-container #socials .wrapper .social-links{
      display: flex;
      flex-direction: row;
      flex-wrap: nowrap;
      box-sizing: border-box;
      overflow: visible;    
      padding: 0;
      margin: 0;
      align-self: center;
      justify-self: center;
      justify-content: space-between;
      align-content: space-between;
      row-gap: 10px;
      column-gap: 10px;
      width: 50%;
  }

  .socials-container #socials .wrapper #linkedin, 
  .socials-container #socials .wrapper #twitter, 
  .socials-container #socials .wrapper #email, 
  .socials-container #socials .wrapper #phone {
      display: flex;
      flex-direction: row;
      flex-wrap: nowrap;
      box-sizing: border-box;
      overflow: visible;
      animation: burgerPop 0.4s ease forwards;
  }

  .socials-container #socials .wrapper #linkedin a, 
  .socials-container #socials .wrapper #twitter a, 
  .socials-container #socials .wrapper #email a, 
  .socials-container #socials .wrapper #phone a{
      display: flex;
      flex-direction: row;
      flex-wrap: nowrap;
      box-sizing: border-box;
      width: 40px;    
      height: auto;
      text-decoration: none !important;
      transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
      overflow: visible;
      justify-content: center;
      align-content: center;
  }

  .socials-container #socials .wrapper #linkedin a:hover, 
  .socials-container #socials .wrapper #twitter a:hover, 
  .socials-container #socials .wrapper #email a:hover, 
  .socials-container #socials .wrapper #phone a:hover{
      overflow: visible;
      text-decoration: none;
      transform: scale3d(1.1, 1.1, 1);
      cursor: pointer;
  }

  .socials-container #socials .wrapper #linkedin a img, 
  .socials-container #socials .wrapper #twitter a img, 
  .socials-container #socials .wrapper #email a img, 
  .socials-container #socials .wrapper #phone a img{
      display: flex;
      flex-direction: row;
      flex-wrap: nowrap;
      box-sizing: border-box;
      width: 40px;
      height: auto;
  }
}




/* ═══════════════════════════════════════════════════════════════
   DESKTOP MEGA MENU — Optimized for wrap-main-service structure
   ═══════════════════════════════════════════════════════════════ */
/* ═══════════════════════════════════════════════════════════════
   DESKTOP MEGA MENU
   ═══════════════════════════════════════════════════════════════ */
@media (min-width: 768px) {

  .mobile{ display: none !important;}

  .mobileNav { display: none; }

  .mainNav {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    /*position: absolute; 
    left: 0;
    right: 0;*/
    z-index: 1000;    
    overflow: visible;
    justify-content: space-between;
    align-content: space-between;    
    align-items: center;
    justify-items: center;
  }

  .navbar_burger {
    display: none;
  }

  .nav-wrap {
    display: flex;
    /*position: absolute;
    left: 300px;*/
    flex-direction: row;
    justify-content:right;
    justify-content: center;
    align-content:flex-end;
    align-items: center;
    justify-self: center;
    align-self: center;
    height: auto;
    overflow: visible;
  }
  

  /* ── Top-level links ── */
  .nav-link {
    color: var(--navy);
    text-decoration: none;
    font-size: 16px !important;
    font-family: var(--font-body);
    color: var(--text-primary);
    padding: 10px;
    border-radius: 6px;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    white-space: nowrap;
    position: relative;    
    line-height: 1.6;
  }

  .nav-link:hover {
    background-color: #FFF;
  }

  .nav-link::after {
    content: '';
    position: absolute;
    bottom: 6px;
    left: 0.75rem;
    right: 0.75rem;
    height: 2px;
    background: currentColor;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.25s ease;
  }
  .nav-link:hover::after,
  .nav-link:focus-visible::after {
    transform: scaleX(1);
  }
  .nav-link:hover { color: var(--gold); background: rgba(255,255,255,0.06); }
  .nav-link.active { color: var(--gold); background: rgba(255,255,255,0.1); }

  .nav-link span {
    font-size: 16px !important;
    font-family: var(--font-body);
    color: var(--text-primary);
    line-height: 1.6;
  }

  .nav-link.active span {
    color: var(--gold);
  }

  .nav-link .chevron {
    transition: transform 0.3s ease;
    opacity: 0.6;
  }

  .nav-link.active .chevron {
    transform: rotate(180deg);
    opacity: 1;
  }

  .nav-spacer { flex: 3; }

  /* ── Mega dropdown shell ── */
  .mega-dropdown {
    position: absolute;
    top: 98px;
    left: 0;
    width: 100%;
    background: #fff;
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
    max-height: 80vh;
    overflow-y: auto;
    z-index: 99999999999999999999999999999999999999999999999999999999;
  }

  .mega-dropdown.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
    background: rgba(225, 225, 225, 0.98);
    backdrop-filter: blur(12px);
  }

  /* ── Two-column layout ── */
  .mega-inner {
    margin: 0 auto;
    padding: 32px;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
  }
  .mega-inner.single-column {
    display: block;
    width: 100%;
  }

  /* ── Left column: service / industry titles ── */
  .all-service-cards,
  .all-industries-cards {
    width: 50%;
    border-right: 1px solid #e2e8f0;
    flex-shrink: 0;
  }
  .service-cards,
  .industries-cards {
    border-bottom: 1px solid #f1f5f9;
  }
  .service-cards:last-child,
  .industries-cards:last-child {
    border-bottom: none;
  }

  .serviceheader,
  .service-header,          /* safety net */
  .industries-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 20px 20px 0;
    cursor: pointer;
    transition: all 0.2s ease;
    position: relative;
  }

  .serviceheader h2,
  .service-header h2,
  .industries-header h2{
    font-size: 16px;
    font-family: var(--font-body);
  }


  .serviceheader:hover,
  .service-header:hover,
  .industries-header:hover {
    background: var(--gold);
    padding-left: 20px !important;
  }

  .serviceheader.open,
  .service-header.open,
  .industries-header.open {
    background: var(--navy);
    /*border-left: 3px solid var(--text-white);
    border-right: 3px solid var(--text-white);*/
    padding-left: 20px !important;
  }

  .serviceheader.open h2,
  .service-header.open h2,
  .industries-header.open h2 {
    color: var(--text-white);
  }

    
  .serviceheader .chevron {
    transition: transform 0.3s ease;    
    transform: rotate(-90deg);
    opacity: 0.6;
    opacity: 1;
  }

  .serviceheader.open .chevron,
  .service-header.open .chevron {
    transform: rotate(90deg);
    color: var(--text-white);
  }

  /* ── Right column: list panels ── */
  .output-service-lists,
  .output-industries-list {
    width: 50%;
    background: #f8fafc;
    position: relative;
    overflow: hidden;
  }

  .output-service-lists a,
  .output-industries-list a {
    display: flex;
    align-items: center;
    justify-content:right;
    align-content: flex-end;
    justify-self: right;
    padding: 20px 5px 0 0;
    cursor: pointer;
    transition: all 0.2s ease;
    width: 30%;
    margin: 0 20px 0 auto;
    letter-spacing: normal;
  }

  .output-service-lists a:hover,
  .output-industries-list a:hover {
    display: flex;
    padding: 20px 0;
    transition: all 0.2s ease;
    position: relative;
  }

   .output-service-lists a .chevron {
      transition: transform 0.3s ease;
      opacity: 0.6;
      transform: rotate(-90deg);
      opacity: 1;
      margin: 0 0 0 10px;
  }

  .service-lists,
  .industries-list {
    list-style: none;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.45s cubic-bezier(0.4, 0, 0.2, 1),
                opacity 0.35s ease,
                padding 0.35s ease;
    padding: 0 2rem;
    background: #f8fafc;
  }
  .service-lists.open,
  .industries-list.open {
    max-height: 600px;
    opacity: 1;
    padding: 2rem;
  }

  .service-lists .list-desc,
  .industries-list .list-desc {
    font-family: var(--font-body);
    color: var(--text-primary);
    font-size: 16px;
    width: 100%;
    margin-bottom: 10px;
    line-height: 1.7;
  }

  /* 40×40px gold box + 20px gap */
  .service-lists li,
  .industries-list li {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 0.65rem 0;
    font-size: 0.87rem;
    color: #475569;
    border-bottom: 1px solid #e2e8f0;
    transition: color 0.15s ease, padding-left 0.2s ease;
  }

  .service-lists li::before,
  .industries-list li::before {
    content: "";
    display: block;
    width: 5px;
    height: 5px;
    background: var(--gold, #C89B3C);
    flex-shrink: 0;
  }

  .service-lists li:last-child,
  .industries-list li:last-child {
    border-bottom: none;
  }

  .service-lists li:hover,
  .industries-list li:hover {
    color: #2563eb;
    padding-left: 6px;
  }

  .industries-header .chevron,
  .industriesheader .chevron {
    transition: transform 0.3s ease;
    color: var(--text-white);
  }

  .industries-header.open .chevron,
  .industriesheader.open .chevron {    
    transform: rotate(180deg);
    color: var(--text-white);
  }


  /* ── Overlay ── */
  .nav-overlay2 {
    position: relative;
    inset: 0;
    background: rgba(0,0,0,0.3);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 9999999999999999999999999999999999999999999999999999999999999999;
  }

  .nav-overlay2.active {
    opacity: 1;
    visibility: visible;
  }


  #socials{
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    box-sizing: border-box;    
    justify-content: center;
    align-content: center;
    justify-items: center;
    align-items: center;
    z-index: 9999; 
}

.socials-container {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    box-sizing: border-box;
    position: relative;
    margin: 0;
}

.socials-container #socials .wrapper{
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    box-sizing: border-box;
    overflow: visible;
    column-gap: 20px;
    row-gap: 10px;    
    border-radius: 50px;   
    justify-content: right;
    color: var(--charcoal);
    margin: 0;    
    width: 100%;
    align-items: center;
    justify-items: center;
    justify-content: space-between;
    align-content: space-between;
}

.socials-container #socials .wrapper p{
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    box-sizing: border-box;
    overflow: visible;    
    padding: 0;
    margin: 0;
    align-self: center;
    justify-self: center;
    width: 40%;
    font-family: 'SpaceGrotesk-Lite' !important;
}

.socials-container #socials .wrapper .social-links{
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    box-sizing: border-box;
    overflow: visible;    
    padding: 0;
    margin: 0;
    align-self: center;
    justify-self: center;
    column-gap: 20px;    
    width: 60%;
}

.socials-container #socials .wrapper #linkedin, 
.socials-container #socials .wrapper #twitter, 
.socials-container #socials .wrapper #email, 
.socials-container #socials .wrapper #phone {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    box-sizing: border-box;
    overflow: visible;
    width: 30px;    
    height: 30px
}

.socials-container #socials .wrapper #linkedin a, 
.socials-container #socials .wrapper #twitter a, 
.socials-container #socials .wrapper #email a, 
.socials-container #socials .wrapper #phone a{
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    box-sizing: border-box;
    width: 40px;    
    height: auto;
    text-decoration: none !important;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.socials-container #socials .wrapper #linkedin a:hover, 
.socials-container #socials .wrapper #twitter a:hover, 
.socials-container #socials .wrapper #email a:hover, 
.socials-container #socials .wrapper #phone a:hover{
    overflow: visible;
    text-decoration: none;
    transform: scale3d(1.1, 1.1, 1);
    cursor: pointer;
}

.socials-container #socials .wrapper #linkedin a img, 
.socials-container #socials .wrapper #twitter a img, 
.socials-container #socials .wrapper #email a img, 
.socials-container #socials .wrapper #phone a img{
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    box-sizing: border-box;
    width: 100%;
    height: auto;
}
}