html {
    padding: 0;
    margin: 0; 
}body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #303B42;
}
header {
  padding: 64px 64px 0;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}
#desktop-left-navigation {
    border-radius: 28px;
    background: rgba(0, 0, 0, 0.50);
    backdrop-filter: blur(50px);
    border-radius: 28px;
    padding: 15px 24px;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 25px;
    width: 340px;
    justify-content: space-between;
    transition: all .5s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.desktop-left-navigation-page p {
  margin-bottom: 0;
}
#desktop-left-navigation.hide {
    opacity: 0;
    visibility: hidden;
    transition: all .5s cubic-bezier(0.165, 0.84, 0.44, 1);
}
#desktop-left-navigation .logo-container {
    position: relative;
    z-index: 100;
}
#desktop-left-navigation .logo-container a {
    display: flex;
    align-items: center;
    text-decoration: none;
}
#desktop-left-navigation .logo-container img {
    height: 38px;
    position: relative;
    z-index: 100;
}
#desktop-left-navigation #nav-button {
    background-color: transparent;
    border: none;
    color: #fff;
    display: flex;
    align-items: center;
}
#desktop-left-navigation #nav-button:hover {
    cursor: pointer;
}
.main-navigation {
    width: 100%;
    background: rgba(0, 0, 0, 0.50);
    backdrop-filter: blur(50px);
    border-radius: 28px;
    position: absolute;
    top: 64px;
    left: 64px;
    z-index: 10;
    max-width: 0;
    max-height: 0;
    transition: all .5s cubic-bezier(0.165, 0.84, 0.44, 1);
    opacity: 0;
    visibility: hidden;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    overflow: hidden;
}
.main-navigation.show {
    visibility: visible;
    max-width: calc(100% - 128px);
    max-height: 640px;
    opacity: 1;
    transition: all .5s cubic-bezier(0.165, 0.84, 0.44, 1);
    will-change: max-width, max-height, opacity, visibility;
}

/* Make a chrome only style for .main-navigation.show */


.main-navigation .main-nav-logo-container {
    padding: 15px 24px;
    display: flex;
    align-items: center;
}
.main-navigation .main-nav-logo-container a {
    display: flex;
    align-items: center;
    text-decoration: none;
}
.sr-only {
    position: absolute;
    width: 0;
    height: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
    padding: 0;
    margin: 0;
    font-size: 0;
    line-height: 0;
    opacity: 0;
    left: -9999px;
}
.desktop-navigation ul {
    display: flex;
    height: 39px;
    align-items: center;
    gap: 16px;
    list-style: none;
}
.desktop-navigation ul li a {
    color: #fff;
    text-decoration: none;
    padding: 0px 12px;
    height: 42px;
    display: flex;
    align-items: center;
    border-radius: 400px;
    transition: all .3s ease-in-out;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.2;
}
.desktop-navigation ul li a:hover,
.desktop-navigation ul li a:focus {
    background-color: rgba(255, 255, 255, 0.2);
    transition: all .3s ease-in-out;
}
.desktop-navigation  {
    font-family: "RingsideRegularBook";
}

/* header dropdowns */
.dropdown-container {
    margin: 0px 24px 0px 24px;
    padding: 18px 0px 24px 0px;
    width: 100%;
}
.dropdown {
    width: 100%;
    border-top: 1px solid rgba(255, 255, 255, 0.10);
    visibility: hidden;
    display: flex;
    max-height: 0;
    max-width: 100%;
}
.dropdown.show {
    visibility: visible;
    max-height: 1200px;
    max-width: 100%;
}
.dropdown-content {
    width: 40%;
    margin-top: 28px;
  }
.dropdown-header {
    color: #fff;
    /* Garamond/Heading 2/Regular */
    font-size: 48px;
    font-style: normal;
    font-weight: 400;
    line-height: 1;
    letter-spacing: -0.48px;
    opacity: 0;
    transition: all .5s ease-in-out;
    margin-top: 25px;
    font-family: "ITCGaramondBookNarrow";
  }
  .dropdown-header a {
    color: #fff;
    text-decoration: none;
  }
  .dropdown-header a:hover {
    color: #fff;
  }
  #more-dropdown .dropdown-header {
    font-size: 32px;
  }
  .dropdown.show .dropdown-header {
    opacity: 1;
    transition: all .5s ease-in-out;
  }
  .dropdown-content p {
    color: #fff;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.2;
    max-width: 350px;
    opacity: 0;
    transform: translateY(-20px);
    transition: all .5s ease-in-out;
    line-height: 2;
    font-family: "RingsideRegularBook";
    will-change: transform, opacity;
  }
  .dropdown.show .dropdown-content p {
    opacity: 1;
    transform: translateY(0);
    transition: all .5s ease-in-out;
    will-change: transform, opacity;
  }
  .dropdown-links {
    width: 60%;
    /* Optional: align to right, add padding, etc. */
  }
  .dropdown-links {
    display: flex;
    margin-top: 30px;
  }
  .dropdown-column:nth-child(1) {
    width: 33%;
  }
  .dropdown-column:nth-child(2) {
    width: 67%;
  }
  .dropdown-links ul {
    list-style: none;
    color: #fff;
    font-weight: 400;
    font-size: 18px; 
    line-height: 1.5;
   
    text-underline-offset: 24%;
    line-height: 24px;
    padding-left: 0;
    padding-right: 15px;
  }
  .dropdown-links ul li a {
    color: rgba(197, 197, 197, 1);
    padding: 15px 0px 15px 0px;
    font-size: 16px;
    transform: translateX(0);
    transition: all .5s ease-in-out;
    display: inline-block;
    text-decoration: none;
    opacity: 0;
    font-family: "RingsideRegularBook";
    position: relative;
    will-change: transform, opacity;
  }
  .dropdown-links ul li a::after {
    content: "";
    display: block;
    position: absolute;
    bottom: 15px;
    height: 2px;
    width: 100%;
    background-color: rgba(197, 197, 197, 1);
    opacity: 1;
    transition: all .5s ease-in-out;
  }
 
  .dropdown-links ul li a:hover,
  .dropdown-links ul li a:focus {
    color: #fff;
    transition: all .5s ease-in-out;
    transform: translateX(5px);
    will-change: transform, opacity;
  }
  .dropdown-links ul li a:hover::after,
  .dropdown-links ul li a:focus::after {
    opacity: 0;
    transition: all .5s ease-in-out;
  }
  .dropdown.show a {
    opacity: 1;
    transition: all .5s ease-in-out;
  }

  /* More Dropdown */
  #more-dropdown .dropdown-links {
    display: flex;
    width: 100%;
    padding-left: 60px;
  }
  #more-dropdown .dropdown-links .dropdown-column { 
    width: 33%;
  }
  .image-column {
    width: 67%;
    opacity: 0;
    transition: all .5s ease-in-out;
  }
  #logo-dropdown .image-column {
    width: 60%;
    margin-top: 60px;
  }
  .image-column .image-container {
    position: relative;
    width: 100%;
    height: 0;
    height: 320px;
    max-width: 600px;
    border-radius: 28px;
    display: flex;
    align-items: center;
    margin-left: auto;
  }
  #logo-dropdown .image-container {
    max-width: 100%;
  }
  .image-column .image-container:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    border-radius: 28px;
    z-index: 10;
    transition: all .3s ease-in-out;
  }
  .image-column .background-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 28px;
  }
  #logo-dropdown .background-image {
    max-width: 100%;
    object-position: 75% 25%;
  }
  .image-column .image-text-container {
    position: absolute;
    left: 20px;
    bottom: 14px;
    width: 50%;
    color: #fff;
    z-index: 100;
  }
  #medicines-dropdown .image-column .image-text-container {
    position: absolute;
    left: 20px;
    top: 14px;
    width: 50%;
    color: #fff;
    z-index: 100;
  }
  #logo-dropdown .image-column .image-text-header,
  #sciences-dropdown .image-column .image-text-header,
  #lillydirect-dropdown .image-column .image-text-header,
  #care-dropdown .image-column .image-text-header,
  #medicines-dropdown .image-column .image-text-header {
    color:#FFF;
    font-family: "RingsideExtraWideBlack";
    font-size: 24px;
    font-style: normal;
    font-weight: 900;
    line-height: 32px; 
  }
  .image-column .image-text-container p {
    margin-bottom: 0;
    margin-top: 0;
    color: var(--Color-Neutral-000, #FFF);
    /* Ringside/Body/Medium/Regular */
    font-family: "RingsideRegularBook";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px; /* 150% */
  }
  .image-column .fpo-image {
    position: absolute;
    width: 100px;
    height: auto;
    z-index: 100;
    top: 14px; 
    right: 20px;
  }
  .image-column .lilly-direct {
    position: absolute;
    width: 109px;
    height: auto;
    z-index: 100;
    top: 14px; 
    left: 20px;
  }
  .image-column .arrow-right {
    position: absolute;
    width: 40px;
    height: 50px;
    z-index: 100;
    bottom: 14px; 
    right: 20px;
  } 
  .image-column a:hover .image-container:after {
    background-color: rgba(0, 0, 0, 0.5);
    transition: background-color .3s ease-in-out;
  }
  .dropdown.show .image-column {
    opacity: 1;
    transition: opacity .5s ease-in-out;
  }
  #medicines-dropdown .image-column .image-text-footer {
    position: absolute;
    bottom: 14px;
    left: 20px;
    color: #fff;
    z-index: 100;
  }

  /* Start Footer */
  #footer .heading6-primary {
    font-family: "RingsideRegularBlack";
    font-size: 24px;
    line-height: 32px;
  }
  #footer .link-list__items {
    list-style: none;
  }
  #footer .link-list__item {
    font-size: 16px; 
    color: #fff;
    text-decoration: none;
  }
  #footer .link-list__item a {
    color: #fff;
    font-family: "RingsideRegularBook";
    font-size: 16px;
  }
  #footer .footer__content .link-secondary {
    cursor: pointer;
    justify-content: center;
    gap: calc(.25rem * 3);
    border-radius: 2rem;
    background-color: #fff;
    padding-inline: calc(.25rem * 5);
    padding-block: calc(.25rem * 3);
    vertical-align: middle;
    font-size: var(--text-xl);
    line-height: var(--tw-leading, var(--text-xl--line-height));
    color: #191919;
    transition-property: color, background-color, border-color, outline-color, text-decoration-color, fill, stroke, --tw-gradient-from, --tw-gradient-via, --tw-gradient-to;
    transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
    transition-duration: var(--tw-duration, var(--default-transition-duration));
    --tw-duration: .25s;
    --tw-ease: cubic-bezier(.4,0,.2,1);
    font: var(--lds-g-typography-ringside-special-cta-button-default);
    transition-duration: .25s;
    transition-timing-function: cubic-bezier(.4,0,.2,1);
    display: inline-flex
  }
  #footer .footer__content .link-secondary p {
    margin-bottom: 0;
  }
  #footer .footer__content .link-secondary:hover {
    background-color: rgb(255 218 212);
    text-decoration: none;
  }
  .link-list__items--horizontal.link-list__items--logos-only {
    gap: 1.25rem !important;
    align-items: center;
  }
  .link-list__items--horizontal {
    flex-direction: row;
    align-content: flex-start;
    gap: 1rem 2rem !important;
  }
  .link-list__items {
    display: flex;
    align-items: flex-start;
    align-self: stretch;
    flex-direction: column;
    gap: .25rem;
    flex-wrap: wrap;
  }
  #footer ul.link-list__items .link-list__item a {
    font-size: 16px;
    text-decoration: underline;
    text-underline-offset: 4px;
  }
  .caption.footer__footnotes p {
    font-size: 14px;
  }
  .caption.footer__footnotes a {
    color: #fff;
    font-size: 14px;
    text-decoration: underline;
  }
  .footer__link-groups.bottom-section p,
  .footer__link-groups.bottom-section a {
    font-size: 14px;
  }
  #footer .footer__link-groups.bottom-section a {
    font-size: 14px !important;
  }
  .footer__body .link-list__item {
    width: 100%;
    text-align: left;
  }
  .footer__link-groups.bottom-section .link-list__item {
    width: auto; 
    text-align: left !important;
  }
  /* End Footer */

@media (max-width: 1024px) {
    #desktop-left-navigation,
    .main-navigation {
        display:none;
    }
    header {
      padding: 0;
    }
}
@media (max-width: 767px) {
    div#main {
        padding:0;
    }
    .footer__link-groups {
      padding-right: 0 !important;
    }
    .footer__general-link-group {
      flex: 0 0 calc(50% - .5rem) !important;
    }
    .footer__body .link-list__item .link-footer {
      text-align: left !important;
    }
    .footer__body {
      padding: 6rem 2rem !important;
    }
    
}
