@charset "UTF-8";
/***************************************************************************
    SERVICES ZIG-ZAG LAYOUT
***************************************************************************/
.services {
  width: 85vw;
  max-width: 1400px;
  margin: 0 auto;
  padding: 100px 0;
}
@media (max-width: 992px) {
  .services {
    width: 90vw;
    padding: 60px 0;
  }
}
.services__header {
  font-size: clamp(2.5rem, 5vw, 5rem);
  text-align: center;
  margin-bottom: 80px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text);
}
.services__header:not(:first-child) {
  margin-top: 100px;
}
.services__wrapper {
  display: flex;
  align-items: center;
  gap: 80px;
  margin-bottom: 120px;
}
@media (max-width: 992px) {
  .services__wrapper {
    flex-direction: column;
    gap: 40px;
    margin-bottom: 80px;
  }
}
.services__wrapper:nth-of-type(even) {
  flex-direction: row-reverse;
}
@media (max-width: 992px) {
  .services__wrapper:nth-of-type(even) {
    flex-direction: column;
  }
}
.services__wrapper:last-of-type {
  margin-bottom: 0;
}
.services__image-box {
  flex: 1;
  aspect-ratio: 16/10;
  overflow: hidden;
  border-radius: 2rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  background-color: var(--bg-dark);
}
@media (max-width: 992px) {
  .services__image-box {
    width: 100%;
  }
}
.services__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  transition: transform 0.8s cubic-bezier(0.2, 1, 0.3, 1);
  filter: brightness(0.7);
}
.services__img:hover {
  transform: scale(1.07);
}
.services__text-wrapper {
  flex: 1;
}
@media (max-width: 992px) {
  .services__text-wrapper {
    width: 100%;
  }
}
.services__sub-header {
  font-size: 5.5rem;
  color: var(--primary);
  margin-bottom: 1.5rem;
  line-height: 0.6;
}
@media (max-width: 992px) {
  .services__sub-header {
    font-size: 3.5rem;
    line-height: 1.1;
  }
}
.services__sub-header::after {
  content: "";
  display: block;
  width: 200px;
  height: 4px;
  background: linear-gradient(to right, var(--primary) 0%, transparent 100%);
  margin-top: 15px;
}
.services__description {
  font-size: 2rem;
  line-height: 1.8;
  color: var(--text-muted);
}
.services__list {
  list-style: none;
  padding: 0;
  margin-top: 2rem;
}
.services__list li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding-left: 0;
  margin-bottom: 8px;
  font-size: 2rem;
  color: var(--text);
}
.services__list li::before {
  content: "✓";
  position: static;
  margin-top: 0.55rem;
  color: var(--primary);
  font-weight: bold;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.services__list li strong {
  color: var(--primary);
  font-weight: 600;
}/*# sourceMappingURL=transportation.css.map */