@import 'https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap';
:root {
  --primary: #53a240;
  --light: #f5f7f8;
  --dark: #111111;
  --secondary: #ebebeb;
  --text-dark: #272727;
  --text-dimmed: #747474;
  --text-dimmed-dark: #666666;
  --large: 3rem;
  --medium: 1.2rem;
  --small: 0.9rem;
  --radius: 12px;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body,
html {
  font-family: Montserrat, sans-serif;
  height: 100%;
  background-color: var(--light);
}
.intro {
  height: 100vh;
  width: 100vw;
  background-color: var(--primary);
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
}
section {
  text-align: center;
}
a {
  color: var(--text-dark);
  text-decoration: none;
  cursor: pointer;
}
.top-nav {
  display: flex;
  align-items: start;
  padding: 10px 1.4rem;
  justify-content: space-between;
  background-color: var(--primary);
  position: relative;
  height: 100px;
}
.top-nav-contact {
  display: flex;
  justify-content: end;
  color: #fff;
  font-size: 1.5rem;
  gap: 1rem;
}
.top-nav-title {
  color: #fff;
  font-size: 1.2rem;
}
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 1rem;
  margin: 20px;
  top: 35px;
  width: calc(100% - 40px);
  position: fixed;
  background-color: var(--light);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 1;
  border-radius: var(--radius);
  color: #fff;
}
.navbar_scrolled {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: #ffffff80;
  box-shadow: 0 4px 30px #0000001a;
  -webkit-backdrop-filter: blur(13.2px);
  backdrop-filter: blur(13.2px);
  z-index: 1;
  width: 100%;
  border-radius: 0;
  margin: 0;
  padding: 5px var(--large);
  transition: all 0.5s ease;
}
.logo {
  height: 45px;
  padding: 5px;
  border-radius: (--radius);
}
.navbar_list {
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none;
  gap: 3rem;
}
.navbar_list_item {
  position: relative;
  font-weight: 500;
  transition: color 0.3s ease;
  padding: 0.5rem 1rem;
  color: #000;
}
.navbar_list_item:hover,
.navbar_list_item:focus {
  color: var(--primary);
}
.navbar_list_item:after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary);
  transition: width 0.3s ease, left 0.3s ease;
}
.navbar_list_item:hover:after,
.navbar_list_item:focus:after {
  width: 100%;
  left: 0;
}
.mobile_navbar_list {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  background-color: var(--light);
  padding: 2rem;
  animation: slideInFromTop 0.3s ease forwards;
  border-radius: var(--radius);
  margin-top: 5px;
}
.mobile_navbar_list_item {
  color: #000;
  width: 100%;
}
.active {
  display: flex;
  flex-direction: column;
}
.contact-button {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background-color: var(--primary);
  color: #fff !important;
  padding: 0.5rem;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
}
.contact-button:hover i {
  animation: ring 0.5s ease-in-out infinite;
}
.contact-button:before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.8),
    transparent
  );
  z-index: 1;
  transition: none;
  opacity: 0;
}
.contact-button:hover:before {
  opacity: 1;
  animation: slide 2s infinite;
}
.navbar_toggle {
  display: none;
  border: none;
  cursor: pointer;
  padding: 10px 15px;
  background-color: transparent;
}
.navbar_toggle span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: var(--dark);
  margin: 5px 0;
  transition: all 0.3s ease;
  border-radius: var(--radius);
}
.navbar_toggle.open span:nth-child(2) {
  opacity: 0;
}
.navbar_toggle.open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.navbar_toggle.open span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}
.navbar_progress {
  width: 100%;
  height: 3px;
}
.navbar_progress_bar {
  height: 3px;
  background: var(--primary);
  width: 0%;
}
.hero-section {
  position: relative;
  height: 100vh;
  width: 100%;
  display: flex;
  align-items: end;
  justify-content: flex-start;
  padding: 100px 50px;
  color: #fff;
  overflow: hidden;
}
.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: center / cover no-repeat url(/assets/esa_iltrans-112w.webp);
  z-index: 0;
}
.hero-background:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #00000080;
  z-index: -1;
}
iframe {
  max-width: 100%;
  height: auto;
  border: none;
  z-index: 3;
}
.hero-text {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 30px;
  max-width: 600px;
}
.styled-heading {
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  font-weight: bolder;
  font-size: 5rem;
  margin: 20px 0;
}
.styled-heading .first-word {
  color: #fff;
}
.styled-heading .second-word {
  color: var(--primary);
}
.styled-heading .third-word {
  color: #fff;
}
.about {
  background-color: #fff;
  padding: 4.5rem 0;
}
.image-container {
  position: relative;
  width: 50%;
  border: 5px solid var(--primary);
  overflow: visible;
}
.image-container-mobile {
  display: none;
}
.image {
  display: block;
  width: 100%;
  height: auto;
}
.text-box {
  font-weight: 700;
  font-size: 1.5rem;
  position: absolute;
  bottom: 20px;
  right: 15px;
  background-color: var(--primary);
  color: #fff;
  padding: 2rem;
  margin-bottom: -25px;
  margin-right: -20%;
  max-width: 90%;
  max-height: 70%;
}
.about-container {
  width: 40%;
  margin: 20px auto;
  padding: 20px;
  text-align: left;
}
.small-text {
  color: var(--primary);
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 5px;
}
.title {
  font-size: 2rem;
  margin: 10px 0;
}
.line {
  width: 100%;
  height: 2px;
  background-color: var(--primary);
  margin: 10px 0;
}
.paragraph {
  font-size: 1rem;
  line-height: 1.5;
}
.about-intro {
  display: flex;
  align-items: center;
  height: auto;
  gap: 15vh;
  padding: 2rem;
}
.about_title {
  font-size: 5rem;
  overflow: hidden;
  text-align: left;
}
.about_title span {
  color: var(--primary);
}
.about-banner {
  position: relative;
  background-image: url(/assets/esa_iltrans-47w-C8O-PDN2.webp);
  background-size: cover;
  background-repeat: no-repeat;
  width: 100vw;
  background-position: center;
  color: #fff;
}
.about-banner-content {
  position: relative;
  background-color: #336328cc;
  text-align: center;
  padding: 50px 20px;
}
.about-banner-title {
  font-size: 2rem;
  margin-bottom: 20px;
}
.about-banner-line {
  width: 100px;
  height: 2px;
  background-color: #fff;
  margin: 20px auto;
}
.about-banner-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin: 0 auto;
  padding-top: 30px;
}
.about-banner-item {
  text-align: center;
  padding: 10px;
}
.about-item-title {
  font-size: 1.2rem;
  color: #fff;
  margin-bottom: 10px;
}
.about-item-text {
  font-size: 1rem;
  color: #fff;
}
.about-freight-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 50px;
  max-width: 1200px;
  margin: 0 auto;
}
.about-freight-text {
  flex: 1;
  padding-right: 30px;
  text-align: left;
}
.about-freight-text h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}
.about-freight-text p {
  font-size: 1rem;
  line-height: 1.6;
}
.about-freight-image {
  flex: 1;
  position: relative;
}
.about-freight-image img {
  height: 100%;
}
.callout {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.dot {
  width: 12px;
  height: 12px;
  background-color: var(--light);
  border-radius: 50%;
  position: relative;
  animation: pulse 2s infinite;
}
.description {
  margin-top: 10px;
  font-size: 12px;
  color: #333;
  background-color: #ffffffe6;
  padding: 5px;
  border-radius: 5px;
  text-align: center;
  border: 2px solid var(--primary);
}
.callout-1 {
  top: 25%;
  left: 5%;
}
.callout-2 {
  top: 70%;
  right: 38%;
}
.callout-3 {
  top: 55%;
  right: 15%;
}
.callout-4 {
  top: 45%;
  left: 22%;
}
.services {
  padding: 4.5rem 1.5rem;
  text-align: center;
}
.services-small-text {
  color: var(--primary);
  font-size: 14px;
  margin-bottom: 10px;
}
.services-section-title {
  font-size: 24px;
  margin-bottom: 20px;
}
.services-cards-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.services-card {
  background: #fff;
  border: 2px solid var(--primary);
  border-radius: 8px;
  padding: 20px;
  transition: transform 0.3s, box-shadow 0.3s;
}
.services-card p {
  padding: 1rem;
}
.services-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 4px 20px #0000001a;
}
.services-list-section {
  padding: 2rem;
  text-align: left;
}
.services-list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
.services-list li,
.workshop-list li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 10px;
  font-size: 16px;
  display: flex;
  align-items: center;
}
.services-list li i,
.workshop-list li i {
  color: #fff;
  background-color: var(--primary);
  border-radius: 50%;
  font-size: 12px;
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
  flex-shrink: 0;
}
.workshop-list li a:hover {
  text-decoration: underline;
}

.services-transport-direction {
  padding: 20px;
}
.services-transport-title {
  color: var(--primary);
  font-size: 24px;
  margin-bottom: 10px;
}
.services-transport-paragraph {
  font-size: 16px;
  line-height: 1.5;
}
.about-infinite-scroll-section {
  overflow: hidden;
  max-height: 400px;
  width: 100vw;
}
.about-infinite-scroll-wrapper {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  overflow: hidden;
}
.about-infinite-scroll {
  display: flex;
  flex-wrap: nowrap;
  white-space: nowrap;
  transition: transform 0.5s linear;
}
.about-infinite-scroll img {
  width: auto;
  height: 150px;
  margin-right: 10px;
}
.workshop-section {
  margin-top: 5rem;
  padding: 4.5rem 1.5rem;
  text-align: center;
}
.documents-section {
  margin-top: 5rem;
  padding: 4.5rem 1.5rem;
  text-align: center;
}
.workshop-small-text {
  color: var(--primary);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.workshop-title {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 20px;
  color: #222;
}
.workshop-subtitle {
  font-size: 24px;
  font-weight: 600;
  margin: 20px 0;
  color: #444;
}
.workshop-paragraph {
  font-size: 16px;
  line-height: 1.6;
  color: #555;
  max-width: 800px;
  margin: 15px auto;
}
.workshop-list {
  list-style: none;
  padding: 0;
  max-width: 800px;
  margin: 20px auto;
  text-align: left;
}
.workshop-list li {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 10px;
  position: relative;
  padding-left: 30px;
}
.contact-section {
  padding: 60px 20px;
  display: flex;
  border-top: 2px solid var(--primary);
  justify-content: center;
  background-color: #fff;
}
.contact-wrapper {
  max-width: 1200px;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
}
.contact-info {
  flex: 1;
  padding: 20px;
}
.contact-title {
  font-size: 36px;
  font-weight: 700;
  color: #212121;
  margin-bottom: 20px;
}
.contact-description {
  font-size: 16px;
  color: #666;
  margin-bottom: 40px;
}
.contact-details {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.contact-item {
  display: flex;
  align-items: center;
  gap: 15px;
}
.contact-item i {
  font-size: 28px;
  color: #fff;
  padding: 1rem;
  border-radius: var(--radius);
  background-color: var(--primary);
}
.contact-text {
  font-size: 16px;
  color: #333;
  text-align: left;
}
.contact-label {
  font-weight: 700;
  margin-bottom: 5px;
}
.contact-map-container {
  flex: 1;
  position: relative;
  min-width: 300px;
}
#map {
  height: 400px;
  width: 50%;
}
.leaflet-popup-content-wrapper {
  background-color: #ffffffe6;
  border-radius: 10px;
  box-shadow: 0 8px 20px #0000001a;
  padding: 10px;
}
.leaflet-popup-content {
  font-family: Montserrat, sans-serif;
  color: #333;
  font-size: 14px;
  margin: 0;
  padding: 0;
  text-align: center;
}
.leaflet-popup-tip {
  background-color: #ffffffe6;
}
.map-button {
  padding: 10px 20px;
  background-color: var(--primary);
  color: #fff;
  border: 2px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  font-size: 1rem;
  transition: all 0.3s ease;
  margin-top: 1rem;
}
.map-button:hover {
  color: var(--dark);
  background-color: var(--light);
  border: 2px solid var(--primary);
  border-radius: var(--radius);
}
footer {
  padding: 2rem;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.floating-call-button {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: auto;
  padding: 10px;
  height: 60px;
  background-color: var(--primary);
  color: #fff;
  border-radius: 3%;
  box-shadow: 0 4px 6px #0000001a;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  z-index: 1000;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.floating-call-button:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 8px #0003;
}
.floating-call-button i {
  font-size: 24px;
  margin-right: 10px;
}
@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.5);
    opacity: 0.9;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes ring {
  0% {
    transform: rotate(0);
  }
  10% {
    transform: rotate(15deg);
  }
  20% {
    transform: rotate(-10deg);
  }
  30% {
    transform: rotate(15deg);
  }
  40% {
    transform: rotate(-10deg);
  }
  50% {
    transform: rotate(10deg);
  }
  60% {
    transform: rotate(-5deg);
  }
  to {
    transform: rotate(0);
  }
}
@keyframes slideInFromTop {
  0% {
    transform: translateY(-30%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes slide {
  0% {
    left: -100%;
  }
  to {
    left: 100%;
  }
}
@media screen and (max-width: 1250px) {
  .navbar_main {
    width: 90vw;
  }
  .styled-heading {
    font-size: 5rem;
  }
  .services-list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (min-width: 1100px) {
  .floating-call-button {
    display: none;
  }
}
@media screen and (max-width: 1070px) {
  .contact-wrapper {
    flex-direction: column;
  }
  .contact-map-container {
    margin-top: 30px;
  }
  .contact-details {
    padding-left: 15vw;
  }
  #map {
    height: 400px;
    width: 100%;
  }
}
@media screen and (max-width: 1025px) {
  .navbar_list {
    display: none;
  }
  .navbar_toggle {
    display: block;
  }
  .about-intro {
    gap: 5vh;
  }
  .image-container {
    display: none;
  }
  .image-container-mobile {
    display: flex;
    flex-direction: column;
    width: 60%;
    border: 5px solid var(--primary);
  }
  .text-box-mobile {
    background-color: var(--primary);
    color: #fff;
    font-family: Lexend, sans-serif;
    padding: 1rem;
    margin: -2px;
  }
  .about-container {
    width: 60%;
  }
  .mobile_navbar_list {
    width: 100%;
    text-align: center;
  }
  .about-freight-section {
    flex-direction: column;
  }
  footer {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
}
@media screen and (max-width: 880px) {
  .services-cards-container {
    grid-template-columns: repeat(1, 1fr);
  }
  .about-freight-image img {
    max-width: 100vw;
  }
  .callout .description {
    max-width: 60vw;
  }
  .callout-1 {
    top: 20%;
    right: 10px;
  }
}
@media screen and (max-width: 825px) {
  .styled-heading {
    font-size: 9vw;
  }
  .about-freight-image img {
    width: 100%;
  }
}
@media screen and (max-width: 750px) {
  .styled-heading {
    font-size: 8vw;
    align-items: center;
  }
  .top-nav-title {
    display: none;
  }
  .top-nav {
    justify-content: center;
  }
  .about-intro {
    flex-direction: column-reverse;
    gap: 0;
  }
  .image-container-mobile,
  .about-container {
    width: 100%;
  }
  .about-banner-grid {
    grid-template-columns: 1fr;
  }
  .services-list {
    grid-template-columns: repeat(1, 1fr);
  }
  #map {
    width: 100%;
  }
  .contact-details {
    grid-template-columns: repeat(1, 1fr);
    padding-left: 0;
  }
  .callout .description {
    font-size: 0.5rem;
  }
}
@media screen and (max-width: 500px) {
  .styled-heading {
    font-size: 8vw;
  }
  .callout-4 {
    display: none;
  }
  .callout-2 {
    left: 15%;
  }
}
@media screen and (max-width: 400px) {
  .callout .description {
    font-size: 0.5rem;
  }
}
@media screen and (max-width: 380px) {
  .styled-heading {
    font-size: 8vw;
  }
  .top-nav-contact {
    font-size: 1.3rem;
  }
}
@media screen and (max-height: 270px) {
  .styled-heading {
    font-size: 5vw;
  }
  .top-nav-contact {
    font-size: 0.9rem;
  }
}
