@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&display=swap");
*,
*::before,
*::after {
  box-sizing: border-box;
}

* {
  margin: 0;
  padding: 0;
}

body {
  line-height: 1.5;
  text-rendering: optimizeSpeed;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

ul,
ol {
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

input,
button,
textarea,
select {
  font: inherit;
  color: inherit;
}

:root {
  --clr-text-primary: #111317;
  --clr-text-secondary: #4b505a;
  --clr-text-muted: #6c727f;
  --clr-bg-menu: #eee;
  --clr-bg-canvas: #f9fafb;
  --clr-bg-surface: #ffffff;
  --clr-bg-elevated: #ffffff;
  --clr-bg-soft: #f2f4f7;
  --clr-border-soft: rgba(0, 0, 0, 0.08);
  --clr-border-strong: rgba(0, 0, 0, 0.15);
  --clr-primary-base: #1c82ff;
  --clr-primary-hover: #4d90ff;
  --clr-primary-strong: #0069e0;
  --clr-primary-text: #ffffff;
  --clr-accent-glow: #7ab3ff;
  --scale-fs: 1.33;
  --fs-50: calc(0.75rem / 2);
  --fs-100: 0.75rem;
  --fs-150: calc(0.75rem * pow(1.33, 0.5));
  --fs-200: calc(0.75rem * pow(1.33, 1));
  --fs-250: calc(0.75rem * pow(1.33, 1.5));
  --fs-300: calc(0.75rem * pow(1.33, 2));
  --fs-350: calc(0.75rem * pow(1.33, 2.5));
  --fs-400: calc(0.75rem * pow(1.33, 3));
  --fs-450: calc(0.75rem * pow(1.33, 3.5));
  --fs-500: calc(0.75rem * pow(1.33, 4));
  --fs-550: calc(0.75rem * pow(1.33, 4.5));
  --fs-600: calc(0.75rem * pow(1.33, 5));
  --fs-650: calc(0.75rem * pow(1.33, 5.5));
  --fs-700: calc(0.75rem * pow(1.33, 6));
  --fs-750: calc(0.75rem * pow(1.33, 6.5));
  --fs-800: calc(0.75rem * pow(1.33, 7));
  --fs-850: calc(0.75rem * pow(1.33, 7.5));
  --fs-900: calc(0.75rem * pow(1.33, 8));
  --scale-pg: 1.33;
  --pg-50: calc(1em / 2);
  --pg-100: 1em;
  --pg-150: calc(1em * pow(1.33, 0.5));
  --pg-200: calc(1em * pow(1.33, 1));
  --pg-250: calc(1em * pow(1.33, 1.5));
  --pg-300: calc(1em * pow(1.33, 2));
  --pg-350: calc(1em * pow(1.33, 2.5));
  --pg-400: calc(1em * pow(1.33, 3));
  --pg-450: calc(1em * pow(1.33, 3.5));
  --pg-500: calc(1em * pow(1.33, 4));
  --pg-550: calc(1em * pow(1.33, 4.5));
  --pg-600: calc(1em * pow(1.33, 5));
  --pg-650: calc(1em * pow(1.33, 5.5));
  --pg-700: calc(1em * pow(1.33, 6));
  --pg-750: calc(1em * pow(1.33, 6.5));
  --pg-800: calc(1em * pow(1.33, 7));
  --pg-850: calc(1em * pow(1.33, 7.5));
  --pg-900: calc(1em * pow(1.33, 8));
  font-size: var(--fs-200);
  color: var(--clr-text-primary);
  background-color: #0c101b;
  background-color: #fafaf8;
  --pg-main: 1.5rem;
  --pg-second: 1rem;
}

* {
  font-family: "Oswald", "Inter", sans-serif;
}

body {
  font-size: var(--fs-200);
  color: var(--clr-text-primary);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  color: var(--clr-text-primary);
}

p {
  color: var(--clr-text-secondary);
}

small {
  font-size: var(--fs-100);
  color: var(--clr-text-muted);
}

.no-transitions .side-bar,
.no-transitions .menu-toggle span,
.no-transitions main::before {
  transition: none !important;
}

body {
  overflow: hidden;
  height: 100vh;
  position: relative;
}

.main-layout {
  position: relative;
}
.main-layout main {
  height: calc(100vh - 60px);
  position: relative;
  overflow: auto;
}
.main-layout section {
  padding: var(--pg-400) var(--pg-200);
}
.main-layout .top-menu {
  position: sticky;
  top: 0;
  z-index: 10;
  display: grid;
  align-items: center;
  background: rgb(0, 0, 0);
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 20%, rgba(0, 0, 0, 0.5) 90%, rgba(0, 0, 0, 0.5) 100%), url("/pics/menu-bg.webp") repeat center top/auto;
  padding: 0 var(--pg-200);
  height: 60px;
  justify-content: end;
}
.main-layout .top-menu::before, .main-layout .top-menu::after {
  content: "";
  position: absolute;
  height: 1px;
  background: linear-gradient(90deg, transparent, #cfcfcf, #ffffff, #cfcfcf, transparent);
  opacity: 0.8;
}
.main-layout .top-menu::before {
  top: 0;
  left: 0px;
  width: 100%;
}
.main-layout .top-menu::after {
  left: 200px;
  width: calc(100% - 200px);
  bottom: 0;
}
@media only screen and (min-width: 600px) {
  .main-layout .top-menu {
    padding: 0 var(--pg-400);
  }
}
.main-layout .top-menu .logo {
  z-index: 2000;
  position: absolute;
  top: 10px;
  left: var(--pg-400);
  background: url("/pics/logo.webp") center left/contain no-repeat;
  height: 60px;
  aspect-ratio: 227/100;
}
@media only screen and (min-width: 600px) {
  .main-layout .top-menu .logo {
    height: 80px;
  }
}

.menu-toggle {
  width: 35px;
  height: 35px;
  position: relative;
  cursor: pointer;
  --gap: 10px;
  -webkit-tap-highlight-color: transparent;
}
@media only screen and (min-width: 1200px) {
  .menu-toggle {
    display: none;
  }
}
.menu-toggle span {
  position: absolute;
  top: 50%;
  left: 50%;
  height: 3px;
  background: white;
  border-radius: 1.5px;
  transform-origin: center;
  --y: 0px;
  --rot: 0deg;
  --sx: 1;
  transform: translate(-50%, var(--y)) rotate(var(--rot)) scaleX(var(--sx));
  transition: transform 100ms ease-in-out, opacity 100ms ease-in-out;
  width: 100%;
}
.menu-toggle span:nth-child(1) {
  --y: calc(-1 * var(--gap));
}
.menu-toggle span:nth-child(2) {
  --y: 0px;
}
.menu-toggle span:nth-child(3) {
  --y: var(--gap);
}
.menu-toggle.open span:nth-child(1) {
  --y: 0px;
  --rot: 45deg;
}
.menu-toggle.open span:nth-child(2) {
  opacity: 0;
}
.menu-toggle.open span:nth-child(3) {
  --y: 0px;
  --rot: -45deg;
}

.no-resize .nav,
.no-resize .nav *,
.no-resize .nav *::before,
.no-resize .nav *::after {
  transition: none !important;
  animation: none !important;
}

.top-menu .nav {
  position: fixed;
  top: 60px;
  left: 0;
  width: 100%;
  height: calc(100vh - 60px);
  z-index: 10;
  overflow-y: auto;
  padding-top: var(--pg-400);
  pointer-events: none;
  opacity: 0;
  transform: scaleY(0);
  transform-origin: top;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.2) 100%), url("/pics/menu-bg.webp") repeat center top/auto;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
  transition: transform 260ms cubic-bezier(0.25, 0.8, 0.25, 1), opacity 120ms linear;
}
.top-menu .nav.open {
  pointer-events: auto;
  opacity: 1;
  transform: scaleY(1);
}
.top-menu .nav > ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.top-menu .nav .section {
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}
.top-menu .nav .section.open > .section-title {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}
.top-menu .nav .section.open > .section-title::after {
  transform: rotate(180deg) translateY(50%);
}
.top-menu .nav .section.open .section-list {
  grid-template-rows: 1fr;
}
.top-menu .nav .section-title {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: var(--pg-100) var(--pg-400);
  border: none;
  background: rgba(255, 255, 255, 0.03);
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}
.top-menu .nav .section-title:focus-visible {
  outline: none;
  background: rgba(255, 255, 255, 0.14);
}
.top-menu .nav .section-title::after {
  content: "▾";
  position: absolute;
  top: 50%;
  right: var(--pg-50);
  width: 24px;
  font-size: 24px;
  opacity: 0.6;
  transform: translateY(-50%);
  transition: transform 0.25s ease;
}
.top-menu .nav .section-list {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.25s ease;
}
.top-menu .nav .section-inner {
  overflow: hidden;
}
.top-menu .nav .section-inner li:first-child a {
  border-top: none;
}
.top-menu .nav .section-inner a {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 56px;
  padding: 0 var(--pg-400);
  font-size: 16px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.95);
  text-decoration: none;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}
.top-menu .nav .section-inner a::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(225, 6, 0, 0.25);
  filter: blur(8px);
  opacity: 0;
  z-index: 10;
}
.top-menu .nav .section-inner a:hover::before {
  opacity: 1;
}
.top-menu .nav .section-inner a:active {
  background: rgba(0, 0, 0, 0.15);
}
.top-menu .nav .section-inner a:focus-visible {
  outline: none;
  background: rgba(255, 255, 255, 0.12);
}

@media only screen and (min-width: 800px) {
  .main-layout .top-menu .nav > ul {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--pg-400);
    padding: 0 var(--pg-400);
  }
  .main-layout .top-menu .nav .section {
    border-bottom: none;
  }
  .main-layout .top-menu .nav .section.open > .section-title {
    background: rgba(255, 255, 255, 0.03);
    color: rgba(255, 255, 255, 0.55);
  }
  .main-layout .top-menu .nav .section-title {
    cursor: default;
  }
  .main-layout .top-menu .nav .section-title::after {
    all: unset;
  }
  .main-layout .top-menu .nav .section-list {
    grid-template-rows: 1fr;
    transition: none;
  }
  .main-layout .top-menu .nav .section-inner {
    overflow: visible;
  }
  .main-layout .top-menu .nav .section-inner li:last-of-type a {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }
}
@media only screen and (min-width: 1200px) {
  .main-layout .top-menu {
    justify-content: end;
  }
  .main-layout .top-menu .nav {
    position: relative;
    inset: auto;
    height: 60px;
    opacity: 1;
    transform: none;
    pointer-events: auto;
    background: none;
    box-shadow: none;
    overflow: visible;
    padding-top: 0;
    align-content: center;
  }
  .main-layout .top-menu .nav > ul {
    display: flex;
    justify-content: center;
    gap: var(--pg-200);
    padding: 0;
  }
  .main-layout .top-menu .nav .section {
    position: relative;
    overflow: visible;
  }
  .main-layout .top-menu .nav .section.open > .section-title {
    background: none;
    color: #fafaf8;
    cursor: pointer;
  }
  .main-layout .top-menu .nav .section.open .section-list {
    grid-template-rows: none;
  }
  .main-layout .top-menu .nav .section:hover > .section-title::after {
    width: 80%;
    opacity: 1;
  }
  .main-layout .top-menu .nav .section .section-title {
    position: relative;
    padding: 0 var(--pg-200);
    font-size: var(--fs-150);
    font-weight: 600;
    color: #fafaf8;
    background: none;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
  }
  .main-layout .top-menu .nav .section .section-title::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -5px;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #c62828, transparent);
    box-shadow: 0 0 10px rgba(198, 40, 40, 0.8);
    transform: translateX(-50%);
    opacity: 0;
    transition: width 0.3s ease, opacity 0.3s ease;
  }
  .main-layout .top-menu .nav .section .section-list {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 10;
    cursor: pointer;
    min-width: 260px;
    display: block;
    overflow: visible;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease;
  }
  .main-layout .top-menu .nav .section:hover .section-list {
    opacity: 1;
    visibility: visible;
  }
  .main-layout .top-menu .nav .section-inner {
    margin-top: 15px;
    overflow: visible;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.5) 10%, rgba(0, 0, 0, 0.2) 80%, rgb(0, 0, 0) 100%), url("/pics/menu-bg.webp") repeat center top/auto;
  }
  .main-layout .top-menu .nav .section-list a {
    font-weight: 400;
    overflow: hidden;
  }
}

.page.home {
  position: relative;
}
.page.home .section1 {
  position: relative;
  background: url("/pics/s1_bg.webp");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  aspect-ratio: 2/1.6;
  width: 100%;
  max-height: calc(100vh - 60px);
  display: grid;
  place-items: center;
}
.page.home .section1 .hero1 {
  position: absolute;
  top: 6%;
  text-align: center;
  max-width: 90%;
}
.page.home .section1 .hero1 .red {
  color: #c62828;
}
.page.home .section1 .hero1 p {
  font-family: "Oswald", sans-serif;
  font-size: clamp(24px, 5vw, 42px);
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: none;
  color: rgba(255, 255, 255, 0.92);
  text-align: center;
  margin: 0;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.6), 0 6px 18px rgba(0, 0, 0, 0.8);
}
.page.home .section1 .hero2 {
  position: absolute;
  top: 45%;
  transform: translateY(-50%);
  left: 8vw;
  width: max-content;
  text-align: left;
  max-width: 90%;
  text-transform: uppercase;
  background: rgba(0, 0, 0, 0.3);
  box-shadow: 0 0px 10px 10px rgba(0, 0, 0, 0.3);
  border-radius: 12px;
}
.page.home .section1 .hero2 p {
  padding: 10px 20px;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(16px, 3vw, 32px);
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: 0.4px;
  text-shadow: 0px 0px 1px #000, 0px 0px 2px #000;
}
.page.home .section1 .hero2 p.small {
  font-size: clamp(16px, 3.5vw, 26px);
  text-transform: none;
}

.section2 {
  position: relative;
  display: grid;
  justify-items: center;
  background: black;
}
.section2::after {
  top: 0;
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, #cfcfcf, #ffffff, #cfcfcf, transparent);
  opacity: 0.8;
}
.section2 .section-title {
  text-align: center;
  font-size: var(--fs-400);
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin-bottom: var(--pg-400);
}
.section2 .section-title h2 {
  position: relative;
  width: max-content;
  color: #fff;
}
.section2 .section-title h2::after {
  content: "";
  position: absolute;
  left: 0px;
  bottom: -14px;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, transparent, #c62828, transparent);
  box-shadow: 0 0 10px rgba(198, 40, 40, 0.8);
}
.section2 .services {
  display: grid;
  grid-auto-flow: row;
  gap: var(--pg-400);
}
@media only screen and (min-width: 800px) {
  .section2 .services {
    grid-template-columns: repeat(2, minmax(250px, 1fr));
  }
}
@media only screen and (min-width: 1200px) {
  .section2 .services {
    grid-template-columns: repeat(4, minmax(250px, 1fr));
  }
}
.section2 .service-item {
  display: grid;
  background: rgba(255, 255, 255, 0.05);
  text-align: center;
  transition: transform 200ms ease-in-out;
  background: rgba(20, 20, 20, 0.85);
  border: 2px solid rgba(255, 255, 255, 0.08);
  border-left: 3px solid #c62828;
  padding: 24px;
  border-radius: 8px;
  backdrop-filter: blur(4px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
  background: url("/pics/s2_services_bg.webp") no-repeat bottom right/70%;
  background-blend-mode: overlay, normal, normal;
}
.section2 .service-item:hover {
  cursor: pointer;
  transform: scale(1.03);
}
.section2 .service-item:hover .img {
  filter: brightness(1.1) saturate(1.5);
}
.section2 .service-item .img {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: 25px;
  transition: filter 200ms ease-in-out;
}
.section2 .service-item .img.icon-ftl {
  background: url("/pics/s2-icon-ftl.webp") no-repeat center center/cover;
}
.section2 .service-item .img.icon-ltl {
  background: url("/pics/s2-icon-ltl.webp") no-repeat center center/cover;
}
.section2 .service-item .img.icon-border {
  background: url("/pics/s2-icon-border.webp") no-repeat center center/cover;
}
.section2 .service-item .img.icon-reefer {
  background: url("/pics/s2-icon-reefer.webp") no-repeat center center/cover;
}
.section2 .service-item .text {
  padding: 0px var(--pg-200);
}
.section2 .service-item h3 {
  position: relative;
  font-size: var(--fs-400);
  font-weight: 700;
  color: #fff;
  text-align: left;
  width: max-content;
  margin-bottom: var(--pg-100);
}
.section2 .service-item h3::before {
  content: "";
  position: absolute;
  left: 0px;
  bottom: 0px;
  width: 80%;
  height: 3px;
  background: linear-gradient(90deg, transparent, #c62828, transparent);
  box-shadow: 0 0 10px rgba(198, 40, 40, 0.8);
}
.section2 .service-item h3::after {
  content: "▶";
  content: "›";
  color: #c62828;
  font-size: 14px;
  margin-left: var(--pg-50);
  font-size: var(--fs-500);
  font-weight: 900;
  text-shadow: 0 0 6px rgba(198, 40, 40, 0.8), 0 0 12px rgba(198, 40, 40, 0.4);
}
.section2 .service-item p {
  text-align: left;
  font-size: var(--fs-200);
  line-height: 1.5;
  color: #fff;
}
@media only screen and (min-width: 1200px) {
  .section2 .service-item p {
    height: 80px;
  }
}

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