/* Font declarations */
@font-face {
  font-family: "Hanken Grotesk";
  src: url("../../assets/fonts/HankenGrotesk-Regular.woff2") format("woff2"), url("../../assets/fonts/HankenGrotesk-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Hanken Grotesk";
  src: url("../../assets/fonts/HankenGrotesk-Medium.woff2") format("woff2"), url("../../assets/fonts/HankenGrotesk-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Hanken Grotesk";
  src: url("../../assets/fonts/HankenGrotesk-SemiBold.woff2") format("woff2"), url("../../assets/fonts/HankenGrotesk-SemiBold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Hanken Grotesk";
  src: url("../../assets/fonts/HankenGrotesk-Bold.woff2") format("woff2"), url("../../assets/fonts/HankenGrotesk-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
/* Navbar styles */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem 5%;
  background-color: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  height: auto;
  transition: background-color 0.3s ease;
}
@media (min-width: 1054px) and (max-width: 1310px) {
  .navbar {
    padding: 1.5rem 3%;
  }
}
@media (min-width: 897px) and (max-width: 1053px) {
  .navbar {
    padding: 1.25rem 2%;
  }
}
@media (min-width: 769px) and (max-width: 896px) {
  .navbar {
    padding: 1rem 2%;
  }
}

.navbar-logo {
  height: 40px;
  display: flex;
  align-items: center;
  margin-right: 4rem;
}
@media (min-width: 1054px) and (max-width: 1310px) {
  .navbar-logo {
    margin-right: 2rem;
  }
}
@media (min-width: 897px) and (max-width: 1053px) {
  .navbar-logo {
    margin-right: 1.5rem;
  }
}
@media (min-width: 769px) and (max-width: 896px) {
  .navbar-logo {
    margin-right: 1rem;
    height: 35px;
  }
}
.navbar-logo img {
  height: 100%;
  width: auto;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  flex: 1;
  justify-content: space-between;
}
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
}
.nav-links .main-nav {
  display: flex;
  gap: 2rem;
  margin: 0 auto;
}
@media (min-width: 1054px) and (max-width: 1310px) {
  .nav-links .main-nav {
    gap: 1.5rem;
  }
}
@media (min-width: 897px) and (max-width: 1053px) {
  .nav-links .main-nav {
    gap: 1rem;
  }
}
@media (min-width: 769px) and (max-width: 896px) {
  .nav-links .main-nav {
    gap: 0.75rem;
  }
}
.nav-links .main-nav a {
  text-decoration: none;
  color: #3b3736;
  font-size: 1.125rem;
  font-weight: 700;
  transition: all 0.6s ease;
  padding: 0.75rem 1.25rem;
  position: relative;
  text-align: center;
  background: transparent;
}
@media (min-width: 1054px) and (max-width: 1310px) {
  .nav-links .main-nav a {
    font-size: 1rem;
    padding: 0.5rem 1rem;
  }
}
@media (min-width: 897px) and (max-width: 1053px) {
  .nav-links .main-nav a {
    font-size: 0.9rem;
    padding: 0.5rem 0.75rem;
  }
}
@media (min-width: 769px) and (max-width: 896px) {
  .nav-links .main-nav a {
    font-size: 0.8rem;
    padding: 0.4rem 0.6rem;
  }
}
@media (min-width: 769px) and (max-width: 780px) {
  .nav-links .main-nav a {
    font-size: 0.75rem;
    padding: 0.35rem 0.5rem;
  }
}
.nav-links .main-nav a::before {
  content: "";
  position: absolute;
  top: 10px;
  left: -10px;
  width: 100%;
  height: 100%;
  z-index: -1;
  transition: all 0.6s ease;
  opacity: 0;
  background: #ea520d;
}
.nav-links .main-nav a:hover::before {
  opacity: 1;
}
.nav-links .main-nav a:nth-child(1):hover {
  background: #490fbd;
  color: white;
}
.nav-links .main-nav a:nth-child(2):hover {
  background: #e6b8ff;
  color: #3b3736;
}
.nav-links .main-nav a:nth-child(3):hover {
  background: #ff8067;
  color: #3b3736;
}
.nav-links .secondary-nav {
  display: flex;
  gap: 2rem;
  margin-left: 4rem;
}
@media (min-width: 1054px) and (max-width: 1310px) {
  .nav-links .secondary-nav {
    gap: 1.5rem;
    margin-left: 2rem;
  }
}
@media (min-width: 897px) and (max-width: 1053px) {
  .nav-links .secondary-nav {
    gap: 1rem;
    margin-left: 1.5rem;
  }
}
@media (min-width: 769px) and (max-width: 896px) {
  .nav-links .secondary-nav {
    gap: 0.7rem;
    margin-left: 1rem;
  }
}
.nav-links .secondary-nav a {
  text-decoration: none;
  color: #3b3736;
  font-size: 1rem;
  font-weight: 700;
  transition: all 0.3s ease;
  padding: 0.75rem 1.25rem;
  position: relative;
}
@media (min-width: 1054px) and (max-width: 1310px) {
  .nav-links .secondary-nav a {
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
  }
}
@media (min-width: 897px) and (max-width: 1053px) {
  .nav-links .secondary-nav a {
    font-size: 0.8rem;
    padding: 0.5rem 0.75rem;
  }
}
@media (min-width: 769px) and (max-width: 896px) {
  .nav-links .secondary-nav a {
    font-size: 0.7rem;
    padding: 0.4rem 0.6rem;
  }
}
@media (min-width: 769px) and (max-width: 780px) {
  .nav-links .secondary-nav a {
    padding: 0.35rem 0.5rem;
  }
}
.nav-links .secondary-nav a::before {
  content: "";
  position: absolute;
  bottom: 0.3rem;
  left: 0;
  width: 0;
  height: 1.2rem;
  background: #c2efff;
  z-index: -1;
  transition: width 0.6s ease;
}
.nav-links .secondary-nav a:hover {
  color: #3b3736;
}
.nav-links .secondary-nav a:hover::before {
  width: 100%;
}

/* Mobile menu styles */
.mobile-menu-btn {
  display: none;
  background: #ea520d;
  border: none;
  cursor: pointer;
  padding: 0.75rem;
  margin-left: 1rem;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
}
@media (max-width: 768px) {
  .mobile-menu-btn {
    display: flex;
  }
}
.mobile-menu-btn img {
  width: 24px;
  height: 24px;
  display: block;
  filter: brightness(0) invert(1);
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100%;
  background-color: #c2efff;
  padding: 2rem;
  z-index: 1001;
  transition: right 0.3s ease-in-out;
  display: flex;
  flex-direction: column;
}
.mobile-menu.active {
  right: 0;
}
.mobile-menu h2 {
  font-size: 2rem;
  font-weight: 600;
  color: #3b3736;
  line-height: 1.2;
  text-align: center;
  margin-bottom: 1.5rem;
}

.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}
.mobile-menu-header .navbar-logo {
  height: 40px;
}

.mobile-menu-close {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.75rem;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #ea520d;
}
.mobile-menu-close img {
  width: 20px;
  height: 20px;
  display: block;
  filter: brightness(0) invert(1);
}

.mobile-menu-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding-top: 1.5rem;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}
.mobile-nav-links a {
  text-decoration: none;
  color: #3b3736;
  font-size: 1.25rem;
  font-weight: 700;
  padding: 1rem;
  background: white;
  position: relative;
  transition: all 0.3s ease;
  text-align: center;
}
.mobile-nav-links a::before {
  content: "";
  position: absolute;
  top: 10px;
  left: -10px;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: #ea520d;
}
.mobile-nav-links a:nth-child(1) {
  background: #490fbd;
  color: white;
}
.mobile-nav-links a:nth-child(2) {
  background: #e6b8ff;
}
.mobile-nav-links a:nth-child(3) {
  background: #ff8067;
}
.mobile-nav-links a:hover {
  border-color: transparent;
}

.mobile-menu-footer {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.mobile-menu-footer a {
  text-decoration: none;
  color: #3b3736;
  font-size: 1.25rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
.mobile-menu-footer a img {
  width: 20px;
  height: 20px;
  display: block;
}
.mobile-menu-footer a:hover {
  color: inherit;
}

.banner {
  margin-top: 200px;
  padding: 0;
  background: white;
  width: 100%;
  position: relative;
  overflow: visible;
}
@media (min-width: 1054px) and (max-width: 1310px) {
  .banner {
    margin-top: 180px;
  }
}
@media (min-width: 897px) and (max-width: 1053px) {
  .banner {
    margin-top: 160px;
  }
}
@media (min-width: 769px) and (max-width: 896px) {
  .banner {
    margin-top: 140px;
  }
}
@media (min-width: 769px) and (max-width: 780px) {
  .banner {
    margin-top: 120px;
  }
}
@media (max-width: 768px) {
  .banner {
    margin-top: 120px;
  }
}

.banner-content {
  display: grid;
  grid-template-columns: 45% 55%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 0 0 11%;
  align-items: center;
  min-height: 600px;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
@media (min-width: 1441px) {
  .banner-content {
    max-width: 100vw;
    padding: 0;
    grid-template-columns: 50% 50%;
  }
}
@media (max-width: 1250px) {
  .banner-content {
    grid-template-columns: 45% 55%;
  }
}
@media (max-width: 1440px) {
  .banner-content {
    padding: 0 0 0 8%;
  }
}
@media (min-width: 1550px) {
  .banner-content {
    padding: 0 0 0 4%;
    grid-template-columns: 55% 45%;
  }
}
@media (max-width: 768px) {
  .banner-content {
    display: flex;
    flex-direction: column;
    padding: 0 24px;
    min-height: auto;
    overflow: visible;
  }
}

.banner-text {
  grid-column: 1;
  grid-row: 1;
  padding-right: 40px;
  position: relative;
  z-index: 3;
}
@media (min-width: 1441px) {
  .banner-text {
    margin-left: 12%;
  }
}
@media (max-width: 768px) {
  .banner-text {
    order: 2;
    margin-top: 32px;
    padding-right: 0;
  }
}
.banner-text h1 {
  font-size: 4rem;
  margin-bottom: 24px;
  color: #3b3736;
  font-weight: 800;
  line-height: 1.1;
}
@media (min-width: 1440px) {
  .banner-text h1 {
    font-size: 5rem;
    line-height: 1;
    margin-bottom: 32px;
  }
}
@media (max-width: 1250px) {
  .banner-text h1 {
    font-size: 3.2rem;
  }
}
@media (max-width: 903px) {
  .banner-text h1 {
    font-size: 3rem;
  }
}
@media (max-width: 850px) {
  .banner-text h1 {
    font-size: 2.65rem;
  }
}
@media (max-width: 768px) {
  .banner-text h1 {
    font-size: 3rem;
    text-align: left;
  }
}
.banner-text h1 br {
  display: block;
  content: "";
}
.banner-text p {
  font-size: 1.125rem;
  line-height: 1.6;
  margin-bottom: 32px;
  color: #3b3736;
  opacity: 0.8;
  max-width: 540px;
}
@media (max-width: 1250px) {
  .banner-text p {
    font-size: 1.05rem;
    max-width: 480px;
  }
}
@media (max-width: 903px) {
  .banner-text p {
    font-size: 1rem;
  }
}
@media (min-width: 1550px) {
  .banner-text p {
    font-size: 1.375rem;
    line-height: 1.5;
    max-width: 600px;
    margin-bottom: 40px;
  }
}
@media (max-width: 768px) {
  .banner-text p {
    text-align: left;
    margin-left: 0;
    margin-right: 0;
  }
}
.banner-text .cta-button {
  display: inline-block;
  padding: 1rem;
  text-decoration: none;
  color: white;
  font-size: 1.25rem;
  font-weight: 700;
  position: relative;
  text-align: center;
  background: #490fbd;
  border: none;
}
.banner-text .cta-button::before {
  content: "";
  position: absolute;
  top: 10px;
  left: -10px;
  width: 100%;
  height: 100%;
  z-index: -1;
  transition: all 0.6s ease;
  opacity: 0;
  background: #ea520d;
}
.banner-text .cta-button:hover {
  background: #490fbd;
  color: white;
}
.banner-text .cta-button:hover::before {
  opacity: 1;
}
@media (max-width: 903px) {
  .banner-text .cta-button {
    font-size: 1.15rem;
    padding: 0.85rem;
  }
}
@media (max-width: 768px) {
  .banner-text .cta-button {
    text-decoration: none;
    color: white;
    font-size: 1.25rem;
    font-weight: 700;
    padding: 1rem;
    background: #490fbd;
    position: relative;
    text-align: center;
    border: none;
  }
  .banner-text .cta-button::before {
    content: "";
    position: absolute;
    top: 10px;
    left: -10px;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: #ea520d;
    opacity: 1;
  }
}

.banner-images {
  grid-column: 2;
  grid-row: 1;
  position: relative;
  width: 100%;
  height: 100%;
  margin: 20px 0;
  user-select: none;
}
.banner-images::after {
  content: "";
  display: block;
  padding-bottom: 40px;
}
@media (min-width: 1441px) {
  .banner-images::before {
    content: "";
    position: absolute;
    top: 0;
    right: -100vw;
    width: 100vw;
    height: 100%;
    background: inherit;
  }
}
@media (max-width: 1250px) {
  .banner-images {
    margin: 10px -5% 20px 0;
  }
}
@media (max-width: 768px) {
  .banner-images {
    order: 1;
    margin: 0;
    height: auto;
  }
}
.banner-images .banner-image {
  width: 100%;
  height: calc(100% - 60px);
  object-fit: cover;
  display: block;
  max-height: 600px;
  -webkit-user-drag: none;
}
@media (min-width: 1441px) {
  .banner-images .banner-image {
    width: calc(100% + (100vw - 1440px) / 5);
    margin-right: calc((100vw - 1440px) / -2);
    object-fit: contain;
  }
}
@media (max-width: 1250px) {
  .banner-images .banner-image {
    width: 105%;
    max-height: 550px;
  }
}
@media (max-width: 768px) {
  .banner-images .banner-image {
    width: 100%;
    height: auto;
    max-height: none;
    margin-right: 0;
  }
}

.banner-logo {
  position: absolute;
  bottom: -100px;
  right: 5%;
  width: 200px;
  z-index: 10;
  pointer-events: none;
}
@media (max-width: 768px) {
  .banner-logo {
    position: relative;
    bottom: auto;
    right: auto;
    margin: 0 5px -40px 70%;
    width: 80px;
  }
}
.banner-logo img {
  width: 100%;
  height: auto;
  -webkit-user-drag: none;
}

.banner + * {
  position: relative;
  margin-top: -40px;
  padding-top: 80px;
  z-index: 0;
}

.info-section {
  background-color: #c2efff;
  padding: 6rem 5%;
  margin-top: 2rem;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
@media (max-width: 768px) {
  .info-section {
    padding: 2rem 24px;
    margin-top: -2rem;
  }
}
.info-section .section-header {
  max-width: 1440px;
  margin: 0 auto 4rem;
  text-align: left;
  padding: 0 2rem;
}
@media (max-width: 768px) {
  .info-section .section-header {
    text-align: left;
    padding: 0;
    margin-bottom: 0;
  }
}
.info-section .section-header h2 {
  font-size: 3rem;
  font-weight: 700;
  color: #3b3736;
  line-height: 1.2;
}
@media (max-width: 1400px) {
  .info-section .section-header h2 {
    font-size: 2.8rem;
  }
}
@media (max-width: 1200px) {
  .info-section .section-header h2 {
    font-size: 2.6rem;
  }
}
@media (max-width: 1000px) {
  .info-section .section-header h2 {
    font-size: 2.4rem;
  }
}
@media (max-width: 800px) {
  .info-section .section-header h2 {
    font-size: 2.3rem;
  }
}
@media (max-width: 768px) {
  .info-section .section-header h2 {
    font-size: 2.2rem;
    max-width: 60%;
  }
}
@media (max-width: 768px) and (max-width: 400px) {
  .info-section .section-header h2 {
    max-width: 75%;
  }
}
.info-section .section-header .mobile-header {
  display: none;
}
@media (max-width: 768px) {
  .info-section .section-header .mobile-header {
    display: block;
  }
}
@media (max-width: 768px) {
  .info-section .section-header .desktop-header {
    display: none;
  }
}
.info-section .info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4rem;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 2rem;
}
@media (max-width: 1200px) {
  .info-section .info-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .info-section .info-grid {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    gap: 0.5rem;
    padding: 0.5rem 0;
    margin: 0 -24px;
    margin-left: 0;
    cursor: grab;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    scroll-snap-type: x mandatory;
  }
  .info-section .info-grid.grabbing {
    cursor: grabbing;
  }
  .info-section .info-grid::-webkit-scrollbar {
    display: none;
  }
}
.info-section .info-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.5rem;
  user-select: none;
}
@media (max-width: 768px) {
  .info-section .info-card {
    min-width: 280px;
    flex: 0 0 85%;
    background: aliceblue;
    padding: 2rem;
    scroll-snap-align: start;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-right: 0.5rem;
  }
  .info-section .info-card p {
    overflow-wrap: break-word;
    word-wrap: break-word;
    hyphens: auto;
  }
}
.info-section .info-card .icon-circle {
  width: 64px;
  height: 64px;
  background-color: #ff8067;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #3b3736;
}
.info-section .info-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #3b3736;
  margin: 0;
}
.info-section .info-card p {
  font-size: 1rem;
  line-height: 1.6;
  color: #3b3736;
  margin: 0;
}
.info-section .mobile-controls {
  display: none;
}
@media (max-width: 768px) {
  .info-section .mobile-controls {
    display: flex;
    gap: 0.25rem;
    justify-content: flex-end;
    margin: -5px 0 -1.5rem;
  }
}
.info-section .mobile-controls button {
  width: 50px;
  height: 50px;
  background-color: #ea520d;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.info-section .mobile-controls button::before {
  content: "";
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  background: #c2efff;
  transition: transform 0.3s ease;
  z-index: 0;
}
.info-section .mobile-controls button.prev-btn::before {
  right: -100%;
}
.info-section .mobile-controls button.next-btn::before {
  left: -100%;
}
.info-section .mobile-controls button:hover.prev-btn::before {
  transform: translateX(-100%);
}
.info-section .mobile-controls button:hover.next-btn::before {
  transform: translateX(100%);
}
.info-section .mobile-controls button:hover img {
  filter: brightness(0) saturate(100%) hue-rotate(200deg);
}
.info-section .mobile-controls button.active {
  opacity: 1;
  cursor: pointer;
}
.info-section .mobile-controls button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.info-section .mobile-controls button img {
  width: 24px;
  height: 24px;
  filter: brightness(0) invert(1);
  position: relative;
  z-index: 1;
  transition: filter 0.3s ease;
}
.info-section .mobile-controls button.prev-btn img {
  transform: rotate(180deg);
}

.delivery-section {
  padding: 6rem 5%;
  background: white;
  position: relative;
  overflow: hidden;
  transition: background-color 0.3s ease, color 0.3s ease;
}
.delivery-section.hover-active-1 {
  background: #490fbd;
}
.delivery-section.hover-active-1 .delivery-header h2,
.delivery-section.hover-active-1 .delivery-header p {
  color: white;
}
.delivery-section.hover-active-2 {
  background: #e6b8ff;
}
.delivery-section.hover-active-2 .logo-row img,
.delivery-section.hover-active-2 .mobile-logos img {
  filter: brightness(0) saturate(100%) invert(24%) sepia(90%) saturate(1200%) hue-rotate(226deg) brightness(94%) contrast(88%);
}
.delivery-section.hover-active-3 {
  background: #ff8067;
}
@media (max-width: 768px) {
  .delivery-section {
    padding: 2rem 24px;
  }
}

.delivery-content {
  max-width: 1440px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
  margin-bottom: 4rem;
}
@media (max-width: 768px) {
  .delivery-content {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
  }
}

.delivery-header h2 {
  font-size: 3rem;
  font-weight: 700;
  color: #3b3736;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}
@media (max-width: 1385px) {
  .delivery-header h2 {
    font-size: 2.5rem;
  }
}
@media (max-width: 1160px) {
  .delivery-header h2 {
    font-size: 2rem;
  }
}
@media (max-width: 950px) {
  .delivery-header h2 {
    font-size: 1.8rem;
  }
}
@media (max-width: 855px) {
  .delivery-header h2 {
    font-size: 1.6rem;
  }
}
@media (max-width: 768px) {
  .delivery-header h2 {
    font-size: 2.25rem;
  }
}
.delivery-header .mobile-header {
  display: none;
}
@media (max-width: 768px) {
  .delivery-header .mobile-header {
    display: block;
  }
}
@media (max-width: 768px) {
  .delivery-header .desktop-header {
    display: none;
  }
}
.delivery-header p {
  font-size: 1.125rem;
  line-height: 1.6;
  color: #3b3736;
  opacity: 0.8;
  max-width: 660px;
}
@media (max-width: 1385px) {
  .delivery-header p {
    font-size: 1rem;
  }
}
@media (max-width: 1160px) {
  .delivery-header p {
    font-size: 0.9rem;
  }
}
@media (max-width: 768px) {
  .delivery-header p {
    font-size: 1rem;
  }
}

.logo-row {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 3rem;
  position: absolute;
  right: 3%;
  margin-top: 7%;
}
.logo-row img {
  width: 150px;
  height: auto;
  filter: brightness(0) saturate(100%) invert(83%) sepia(14%) saturate(1400%) hue-rotate(240deg) brightness(105%) contrast(98%);
}
@media (max-width: 1200px) {
  .logo-row img {
    width: 120px;
  }
}
@media (max-width: 975px) {
  .logo-row img {
    width: 100px;
  }
}
@media (max-width: 875px) {
  .logo-row img {
    width: 70px;
  }
}
@media (max-width: 768px) {
  .logo-row {
    display: none;
  }
}

.delivery-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1440px;
  margin: 0 auto;
}
@media (max-width: 1070px) {
  .delivery-cards {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}
@media (max-width: 768px) {
  .delivery-cards {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

.delivery-card {
  position: relative;
  min-height: 600px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
}
.delivery-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.7));
  transition: opacity 0.3s ease;
}
.delivery-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50%;
  transition: opacity 0.3s ease;
}
.delivery-card:hover::after {
  opacity: 0;
}
.delivery-card:nth-child(1)::after {
  background: linear-gradient(to top, rgba(73, 15, 189, 0.6), transparent);
}
.delivery-card:nth-child(2)::after {
  background: linear-gradient(to top, rgba(230, 184, 255, 0.6), transparent);
}
.delivery-card:nth-child(3)::after {
  background: linear-gradient(to top, rgba(234, 82, 13, 0.6), transparent);
}
@media (max-width: 768px) {
  .delivery-card {
    min-height: 250px;
    background-position: 50% 25%;
  }
}

.card-content {
  position: relative;
  z-index: 1;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: flex-end;
  color: white;
}
.card-content .small-header {
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  letter-spacing: 0.3em;
}
.card-content h3 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
@media (max-width: 768px) {
  .card-content h3 {
    font-size: 1.6rem;
  }
}
.card-content p {
  margin-bottom: 2rem;
  line-height: 1.6;
}
@media (max-width: 768px) {
  .card-content p {
    display: none;
  }
}

.card-button {
  display: inline-flex;
  align-items: center;
  padding: 1rem 2rem;
  background: #490fbd;
  color: white;
  text-decoration: none;
  font-weight: 700;
  width: fit-content;
  position: relative;
}
.card-button::before {
  content: "";
  position: absolute;
  top: 10px;
  left: -10px;
  width: calc(95% + 10px);
  height: calc(95% + 5px);
  background: #ea520d;
  opacity: 0;
  z-index: -1;
}
.card-button:hover {
  background: #c2efff;
  color: #3b3736;
}
.card-button:hover::before {
  transform: translateX(0);
  opacity: 1;
}
.card-button .mobile-only {
  display: none;
}
@media (max-width: 768px) {
  .card-button {
    padding: 1rem;
    position: absolute;
    right: 1.5rem;
    bottom: 2rem;
    background: #c2efff;
    color: #490fbd;
  }
  .card-button::before {
    display: none;
  }
  .card-button .desktop-text {
    display: none;
  }
  .card-button .mobile-only {
    display: inline-block;
    width: 24px;
    height: 24px;
    filter: brightness(0) saturate(100%) invert(24%) sepia(90%) saturate(1200%) hue-rotate(226deg) brightness(94%) contrast(88%);
  }
}

.mobile-logos {
  display: none;
}
@media (max-width: 768px) {
  .mobile-logos {
    display: flex;
    justify-content: center;
    gap: 2rem;
    position: relative;
    bottom: auto;
    right: auto;
    margin: 20px 5px -50px 70%;
    width: 15%;
  }
  .mobile-logos img {
    width: 60px;
    height: auto;
    filter: brightness(0) saturate(100%) invert(83%) sepia(14%) saturate(1400%) hue-rotate(240deg) brightness(105%) contrast(98%);
  }
}

.careers-section {
  background: #ea520d;
  padding: 6rem 5%;
  position: relative;
  overflow: hidden;
  transition: background-color 0.2s ease, color 0.2s ease;
}
@media (max-width: 768px) {
  .careers-section {
    padding: 3rem 24px 11rem;
  }
}
.careers-section .careers-content {
  max-width: 1440px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.careers-section .careers-content h2 {
  font-size: 3rem;
  font-weight: 700;
  color: white;
  margin-bottom: 2rem;
  line-height: 1.2;
  max-width: 800px;
}
@media (max-width: 1350px) {
  .careers-section .careers-content h2 {
    font-size: 2.5rem;
    max-width: 700px;
  }
}
@media (max-width: 1070px) {
  .careers-section .careers-content h2 {
    max-width: 650px;
  }
}
@media (max-width: 900px) {
  .careers-section .careers-content h2 {
    max-width: 550px;
  }
}
@media (max-width: 768px) {
  .careers-section .careers-content h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
  }
}
.careers-section .careers-button {
  display: inline-flex;
  align-items: center;
  padding: 1rem 2rem;
  background: #490fbd;
  color: white;
  text-decoration: none;
  font-weight: 700;
  width: fit-content;
  position: relative;
  transition: all 0.3s ease;
}
.careers-section .careers-button::before {
  content: "";
  position: absolute;
  top: 8px;
  left: -8px;
  width: 100%;
  height: 100%;
  background: #490fbd;
  opacity: 0;
  z-index: -1;
  transition: all 0.3s ease;
}
.careers-section .careers-button:hover {
  background: #ea520d;
}
.careers-section .careers-button:hover::before {
  opacity: 1;
}
@media (max-width: 768px) {
  .careers-section .careers-button {
    background: #c2efff;
    color: #3b3736;
    padding: 0.875rem 1.5rem;
  }
  .careers-section .careers-button::before {
    opacity: 1;
  }
  .careers-section .careers-button:hover {
    background: #c2efff;
    color: #3b3736;
  }
  .careers-section .careers-button:hover::before {
    opacity: 1;
  }
}
.careers-section .careers-logo {
  position: absolute;
  right: 7%;
  top: 55%;
  transform: translateY(-50%);
}
.careers-section .careers-logo img {
  width: 250px;
  height: auto;
  filter: brightness(0) saturate(100%) invert(89%) sepia(9%) saturate(1071%) hue-rotate(178deg) brightness(103%) contrast(96%);
  margin-bottom: 1rem;
}
@media (max-width: 1350px) {
  .careers-section .careers-logo img {
    width: 200px;
  }
}
@media (max-width: 1070px) {
  .careers-section .careers-logo img {
    width: 150px;
  }
}
@media (max-width: 900px) {
  .careers-section .careers-logo img {
    width: 120px;
  }
}
.careers-section .careers-logo img:nth-child(2) {
  margin-left: 2rem;
}
@media (max-width: 768px) {
  .careers-section .careers-logo img:nth-child(2) {
    margin-left: 0;
    margin-top: 1rem;
  }
}
@media (max-width: 768px) {
  .careers-section .careers-logo img {
    width: 100px;
  }
}
@media (max-width: 768px) {
  .careers-section .careers-logo {
    position: absolute;
    right: 24px;
    top: auto;
    bottom: 24px;
    transform: none;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
  }
}

.news-section {
  overflow: hidden;
  position: relative;
  background: white;
  width: 100%;
}
@media (max-width: 768px) {
  .news-section {
    background: #490fbd;
    padding: 0;
    z-index: 1;
  }
}
.news-section .news-content {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto 2fr;
  gap: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .news-section .news-content {
    display: block;
    padding: 0;
  }
}
.news-section .news-left {
  background-color: #490fbd;
  padding: 64px;
  color: white;
  padding: 6rem 15%;
  z-index: 1;
}
@media (max-width: 768px) {
  .news-section .news-left {
    padding: 3rem 24px 8rem;
    background: none;
  }
}
.news-section .news-left h2 {
  font-size: 2rem;
  line-height: 1.2;
  margin-bottom: 24px;
  font-weight: 700;
}
@media (max-width: 1430px) {
  .news-section .news-left h2 {
    font-size: 1.75rem;
  }
}
@media (max-width: 1250px) {
  .news-section .news-left h2 {
    font-size: 1.5rem;
  }
}
@media (max-width: 1080px) {
  .news-section .news-left h2 {
    font-size: 1.25rem;
  }
}
@media (max-width: 768px) {
  .news-section .news-left h2 {
    font-size: 1.45rem;
    transform: translateY(2px);
  }
}
.news-section .news-left p {
  font-size: 1.125rem;
  line-height: 1.6;
  margin-bottom: 40px;
  opacity: 0.95;
}
@media (max-width: 1300px) {
  .news-section .news-left p {
    font-size: 1rem;
  }
}
@media (max-width: 1160px) {
  .news-section .news-left p {
    font-size: 0.875rem;
  }
}
@media (max-width: 768px) {
  .news-section .news-left p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
  }
}
.news-section .news-left .news-button {
  display: inline-flex;
  align-items: center;
  padding: 1rem 2rem;
  background: #ea520d;
  color: white;
  text-decoration: none;
  font-weight: 700;
  position: relative;
}
.news-section .news-left .news-button::before {
  content: "";
  position: absolute;
  top: 8px;
  left: -8px;
  width: 100%;
  height: 100%;
  background: #ea520d;
  opacity: 0;
  z-index: -1;
  transition: all 0.3s ease;
}
.news-section .news-left .news-button:hover {
  background: #c2efff;
  color: #3b3736;
}
.news-section .news-left .news-button:hover::before {
  opacity: 1;
}
@media (max-width: 768px) {
  .news-section .news-left .news-button {
    background: #c2efff;
    color: #3b3736;
    position: relative;
  }
  .news-section .news-left .news-button::before {
    content: "";
    position: absolute;
    top: 8px;
    left: -8px;
    width: 100%;
    height: 100%;
    background: #ea520d;
    opacity: 1;
    z-index: -1;
  }
}
.news-section .news-controls {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
  padding: 0;
  margin: 0 -25px;
  z-index: 1;
}
@media (max-width: 768px) {
  .news-section .news-controls {
    flex-direction: row;
    justify-content: flex-end;
    gap: 0.25rem;
    position: absolute;
    right: 50px;
    transform: translateY(-50%);
    margin-top: -4rem;
    z-index: 2;
  }
  .news-section .news-controls .control-button.prev {
    order: -1;
  }
}
.news-section .news-controls .control-button {
  width: 50px;
  height: 50px;
  background-color: #ea520d;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.news-section .news-controls .control-button.next {
  order: -1;
}
.news-section .news-controls .control-button::before {
  content: "";
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  background: #c2efff;
  transition: transform 0.3s ease;
  z-index: 0;
}
.news-section .news-controls .control-button.prev::before {
  right: -100%;
}
.news-section .news-controls .control-button.next::before {
  left: -100%;
}
.news-section .news-controls .control-button:hover.prev::before {
  transform: translateX(-100%);
}
.news-section .news-controls .control-button:hover.next::before {
  transform: translateX(100%);
}
.news-section .news-controls .control-button:hover img {
  filter: brightness(0) saturate(100%) hue-rotate(200deg);
}
.news-section .news-controls .control-button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.news-section .news-controls .control-button:disabled:hover::before {
  transform: none;
}
.news-section .news-controls .control-button img {
  width: 24px;
  height: 24px;
  filter: brightness(0) invert(1);
  position: relative;
  z-index: 1;
  transition: filter 0.3s ease;
}
.news-section .news-controls .control-button.prev img {
  transform: rotate(180deg);
}
.news-section .news-right {
  background-color: #e6b8ff;
  padding: 64px;
  overflow: hidden;
}
@media (max-width: 768px) {
  .news-section .news-right {
    margin-left: 24px;
    padding: 4rem 24px 3rem;
    margin-top: -4rem;
    position: relative;
  }
}
.news-section .news-cards {
  display: flex;
  gap: 20px;
  cursor: grab;
  user-select: none;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
  scroll-snap-type: x mandatory;
  z-index: 1;
  overflow: hidden;
}
.news-section .news-cards::-webkit-scrollbar {
  display: none;
}
.news-section .news-cards.dragging {
  cursor: grabbing;
  scroll-behavior: auto;
}
.news-section .news-card {
  width: 300px;
  flex: 0 0 auto;
  background-color: white;
  padding: 32px;
  scroll-snap-align: start;
}
.news-section .news-card .date {
  font-size: 1rem;
  letter-spacing: 0.3em;
  display: block;
  margin-bottom: 16px;
  font-weight: 500;
}
.news-section .news-card h3 {
  font-size: 25px;
  line-height: 1.3;
  margin-bottom: 120px;
  color: #3b3736;
  font-weight: 700;
}
.news-section .news-card .card-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  color: #3b3736;
  background-color: white;
  text-decoration: none;
  position: relative;
  padding: 0.75rem 0;
  z-index: 2;
}
@media (max-width: 768px) {
  .news-section .news-card .card-button {
    padding-left: 1.7rem;
    padding-bottom: 0;
  }
  .news-section .news-card .card-button::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 0.85rem;
    width: 0;
    height: 20px;
    background: #c2efff;
    transition: width 0.3s ease;
    z-index: -1;
  }
  .news-section .news-card .card-button:hover {
    color: #3b3736;
  }
  .news-section .news-card .card-button:hover::after {
    width: 100%;
  }
  .news-section .news-card .card-button img {
    transform: translateX(4px);
  }
}
.news-section .news-card .card-button::before {
  content: "";
  position: absolute;
  bottom: 0.3rem;
  left: -1;
  width: 0;
  height: 1.2rem;
  background: #c2efff;
  z-index: -1;
  transition: width 0.6s ease;
}
.news-section .news-card .card-button img {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
}
.news-section .news-card .card-button:hover {
  color: #3b3736;
}
.news-section .news-card .card-button:hover::before {
  width: calc(100% + 25px);
  transform: translateY(16px);
}
.news-section .news-card .card-button:hover img {
  transform: translateX(4px);
}

.footer {
  background-color: white;
  padding: 2rem 5%;
  color: #3b3736;
}

.footer-container {
  max-width: 1440px;
  margin: 0 auto;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}
@media (max-width: 768px) {
  .footer-top {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
  }
}

.footer-headings {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-small-heading {
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
}
@media (max-width: 768px) {
  .footer-small-heading {
    font-size: 0.9rem;
  }
}

.footer-large-heading {
  font-size: 1.25rem;
  font-weight: 800;
}
@media (max-width: 768px) {
  .footer-large-heading {
    font-size: 1.5rem;
  }
}

.footer-social {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}
@media (max-width: 768px) {
  .footer-social {
    width: 100%;
    justify-content: flex-start;
    gap: 1rem;
  }
}

.footer-social-link {
  display: flex;
  align-items: center;
}
.footer-social-link img {
  width: 32px;
  height: 32px;
  transition: opacity 0.2s ease;
}
.footer-social-link img:hover {
  opacity: 0.8;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.875rem;
  color: rgba(59, 55, 54, 0.9);
}
@media (max-width: 1310px) {
  .footer-bottom {
    font-size: 0.75rem;
  }
}
@media (max-width: 768px) {
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
}
@media (max-width: 768px) and (max-width: 520px) {
  .footer-bottom {
    font-size: 0.65rem;
  }
}
@media (max-width: 768px) and (max-width: 415px) {
  .footer-bottom {
    font-size: 0.55rem;
  }
}

.footer-copyright {
  display: flex;
  gap: 0.25rem;
  align-items: center;
}
@media (max-width: 1120px) {
  .footer-copyright {
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 768px) {
  .footer-copyright {
    flex-direction: row;
    align-items: center;
  }
}

.footer-legal {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}
.footer-legal a {
  color: inherit;
  text-decoration: none;
  transition: opacity 0.2s ease;
}
.footer-legal a:hover {
  opacity: 0.8;
}
@media (max-width: 1120px) {
  .footer-legal {
    flex-wrap: wrap;
    max-width: 300px;
    justify-content: flex-end;
  }
}
@media (max-width: 768px) {
  .footer-legal {
    flex-direction: row;
    max-width: none;
    justify-content: flex-start;
  }
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Hanken Grotesk", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-weight: 400;
  line-height: 1.6;
}

/*# sourceMappingURL=main.css.map */
