body {
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

.hero-section {
  width: 100%;
  height: 100vh;
  position: relative;
}
.hero-section .rtl-bg {
  display: none;
}
.hero-section .main-bg {
  position: absolute;
  height: 100%;
  width: 100%;
  animation: imageZoom 2s ease-in-out forwards;
  -webkit-animation: imageZoom 2s ease-in-out forwards;
  -o-object-fit: bottom;
     object-fit: bottom;
}
.hero-section .header {
  transition: all 0.3s ease;
  display: flex !important;
  align-items: center;
  justify-content: space-between;
  background: transparent;
  padding: 20px 150px;
  position: relative;
  z-index: 99;
}
.hero-section .header .red-logo {
  display: none;
}
.hero-section .header img {
  width: 120px;
  height: 42px;
}
.hero-section .header .language-switcher {
  display: flex;
  align-items: center;
  gap: 0px;
}
.hero-section .header .language-switcher #language-button,
.hero-section .header .language-switcher i {
  color: white;
}
.hero-section .header .language-switcher .dropdown-menu img {
  width: 40px;
  height: 40px;
}
.hero-section .header .language-switcher .dropdown-menu button {
  display: flex;
  align-items: center;
}
.hero-section .header .language-switcher:hover .dropdown-menu {
  display: block;
  margin-top: 0;
}
.hero-section .header .navbar-collapse .navbar-nav {
  margin: auto;
  gap: 15px;
}
.hero-section .header .navbar-collapse .navbar-nav .nav-link {
  color: white;
  font-size: 18px;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.3s ease !important;
}
.hero-section .header .navbar-collapse .nav-link:hover {
  color: #ff2723 !important;
}
.hero-section main {
  height: 90%;
  display: flex !important;
  flex-direction: column;
  justify-content: space-evenly;
  color: white;
  width: 65%;
  margin: 0px 5rem;
}
.hero-section main h1 {
  font-size: 72px;
  font-weight: 900;
  background: linear-gradient(to right, #6777cf, #26d0ce);
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
  width: -moz-fit-content;
  width: fit-content;
}
.hero-section main p {
  color: white;
  font-size: 18px;
  width: 65%;
}
.hero-section main .input-group {
  border: unset !important;
  height: 60px;
  border-radius: 5px !important;
  width: 65%;
  position: relative !important;
}
.hero-section main .input-group input {
  height: 100%;
  border-radius: 5px !important;
}
.hero-section main .input-group .input-group-append {
  height: 80%;
  position: absolute;
  top: 10%;
  right: 1%;
  background-color: #870d07;
  width: 85px;
  display: flex;
  justify-content: center;
  border-radius: 5px !important;
  transition: background-color 0.4s ease-out !important;
}
.hero-section main .input-group .input-group-append i {
  color: white;
}
.hero-section main .input-group .input-group-append::before {
  content: "";
  position: absolute;
  border-right: 0;
  border-top: 23px solid transparent;
  border-left: 26px solid #ffffff;
  border-bottom: 23px solid transparent;
  left: 0px;
  top: 1px;
}
.hero-section main .input-group .input-group-append:hover {
  background-color: white;
  border: 1px solid #870d07;
}
.hero-section main .input-group .input-group-append:hover::before {
  border-left-color: #870d07;
}
.hero-section main .input-group .input-group-append:hover i {
  color: #870d07;
}
.hero-section main .stat-section {
  position: relative;
  width: 80%;
}
.hero-section main .stat-section .col-6:nth-child(1)::after,
.hero-section main .stat-section .col-6:nth-child(2)::after {
  content: "";
  display: block;
  background: #870d07;
  width: 120px;
  height: 1px;
  position: absolute;
  top: 33%;
  right: 0;
}
.hero-section main .stat-section i {
  font-size: 25px;
  position: absolute;
  color: #DF1119;
  top: 22%;
  right: 0;
  animation: plane 2s ease-in-out alternate infinite;
  -webkit-animation: plane 2s ease-in-out alternate infinite;
  z-index: 100;
}
.hero-section main .stat-number {
  font-size: 40px;
  font-weight: 900;
  margin-bottom: unset !important;
  color: white;
  background: linear-gradient(to right, #b8e9f0, #108f8d);
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
  width: -moz-fit-content;
  width: fit-content;
}
.hero-section main .stat-title {
  font-size: 15px;
  color: white;
  text-wrap-mode: nowrap;
}

@keyframes imageZoom {
  0% {
    width: 200%;
  }
  100% {
    width: 100%;
  }
}
@keyframes plane {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-95px);
  }
}
.fixed-header {
  position: fixed !important;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1) !important;
  background-color: rgba(255, 255, 255, 0.8509803922) !important;
  -webkit-backdrop-filter: brightness(100%) contrast(100%) saturate(100%) blur(10px) hue-rotate(0deg) !important;
          backdrop-filter: brightness(100%) contrast(100%) saturate(100%) blur(10px) hue-rotate(0deg) !important;
}
.fixed-header .white-logo {
  display: none !important;
}
.fixed-header .red-logo {
  display: block !important;
}
.fixed-header .language-switcher #language-button, .fixed-header .language-switcher i {
  color: black !important;
}
.fixed-header .nav-link {
  color: black !important;
}
.fixed-header .nav-link:hover {
  color: #870d07 !important;
}

.scroll-to-top {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  background-color: #870d07;
  color: white;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: background-color 0.3s ease;
  z-index: 1000;
}
.scroll-to-top:hover {
  color: #870d07;
  background-color: white;
  border: 1px solid #870d07;
  text-decoration: none;
}

.delivering-excellence {
  text-align: center;
  margin: 40px;
}
.delivering-excellence h1 {
  font-size: 42px;
  font-weight: 900;
  color: #870d07;
}
.delivering-excellence p {
  font-size: 16px;
  color: #828282;
  margin: 20px auto;
}

.freights-types {
  width: 90%;
  margin: 100px auto !important;
  text-align: center;
}
.freights-types .col-12:nth-child(1) .freight-background {
  background-image: url("/themes/new/img/plane.jpg");
}
.freights-types .col-12:nth-child(2) .freight-background {
  background-image: url("/themes/new/img/ocean.jpg");
}
.freights-types .col-12:nth-child(3) .freight-background {
  background-image: url("/themes/new/img/truck.jpg");
}
.freights-types .freight-card {
  position: relative;
  width: 100%;
  height: 500px;
  cursor: pointer;
  overflow: hidden;
  border-radius: 15px;
}
.freights-types .freight-card .freight-background {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  transition: transform 1s ease;
}
.freights-types .freight-card:hover .freight-background {
  transform: scale(1.1);
}
.freights-types .freight-card .freight-title {
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  color: white;
  font-size: 30px;
  font-weight: 900;
  z-index: 2;
}
.freights-types .freight-card .freight-footer {
  position: absolute;
  bottom: 20px;
  left: 0px;
  color: white;
  z-index: 2;
}
.freights-types .freight-card .freight-footer .freight-icon {
  font-size: 32px;
  margin: 10px 30px;
}
.freights-types .freight-card .freight-footer .freight-description {
  display: none;
  transition: opacity 0.3s ease;
  font-size: 20px;
  font-weight: 500;
  width: 85%;
  margin: 0px auto 70px;
}
.freights-types .freight-card:hover .freight-icon {
  opacity: 0;
}
.freights-types .freight-card:hover .freight-description {
  display: inline-block;
  opacity: 1;
}
.freights-types .freight-card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.3);
  border-radius: 15px;
  transition: background-color 1s ease;
  z-index: 1;
}
.freights-types .freight-card:hover::before {
  background-color: rgba(0, 0, 0, 0.8);
}

.shipment-tracking {
  text-align: center;
  background: white;
  padding-bottom: 200px;
  border-radius: 0px 0px 130px 130px;
  position: relative;
  z-index: 10;
}
.shipment-tracking .d-flex {
  gap: 10px;
}
.shipment-tracking h1 {
  font-size: 42px;
  font-weight: 900;
  margin: unset !important;
  color: #870d07;
}
.shipment-tracking p {
  font-size: 16px;
  width: 70%;
  margin: 35px auto;
  color: #828282;
}
.shipment-tracking .row {
  width: 85%;
  margin: auto;
}
.shipment-tracking .row .card {
  margin-top: 20px;
  height: 300px;
  border: unset !important;
  border-radius: 15px;
  box-shadow: 0 0 rgba(0, 0, 0, 0), 0 0 rgba(0, 0, 0, 0), 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
}
.shipment-tracking .row .card i {
  margin: 20px auto;
  color: white;
  background-color: #870d07;
  padding: 15px;
  border-radius: 50%;
  font-size: 20px;
  width: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.shipment-tracking .row .card .card-title {
  font-size: 24px;
  font-weight: 900;
  margin-bottom: 20px;
}
.shipment-tracking .row .card .card-text {
  font-size: 18px;
}
.shipment-tracking .row .card:hover {
  transition: all 0.5s ease;
  box-shadow: 0 0 rgba(0, 0, 0, 0), 0 0 rgba(0, 0, 0, 0), 0 0px 50px 10px rgba(0, 0, 0, 0.1), 0 0px 10px 5px rgba(0, 0, 0, 0.1);
}

.ribbon {
  display: flex;
  width: -moz-fit-content;
  width: fit-content;
  align-items: center;
  justify-content: center;
  background-color: #870d07;
  color: white;
  padding: 10px 35px 10px 20px;
  font-weight: bold;
  position: relative;
  height: 60px;
  border-radius: 10px 0px 0px 10px;
}
.ribbon::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  z-index: 10000;
  height: 30%;
  border-top: 30px solid transparent;
  border-bottom: 30px solid transparent;
  border-right: 20px solid white;
}

.services-section {
  background-image: url("/themes/new/img/truck-logistics.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 70px;
  border-radius: 0px 0px 130px 130px;
  margin-top: -130px;
  padding: 216px 0px;
}
.services-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  border-radius: 0px 0px 130px 130px;
}
.services-section > * {
  position: relative;
  z-index: 1;
}
.services-section .d-flex {
  gap: 10px;
}
.services-section h1 {
  font-size: 42px;
  font-weight: 900;
  color: white;
  margin: unset !important;
  width: 50%;
  text-align: center;
}
.services-section .ribbon::after {
  border-right: 20px solid #110b0c;
}
.services-section .row {
  width: 90%;
  margin: auto !important;
  justify-content: space-evenly;
}
.services-section .row .card {
  background-color: rgba(255, 255, 255, 0.2);
  -webkit-backdrop-filter: brightness(100%) contrast(100%) saturate(100%) blur(10px) hue-rotate(0deg);
          backdrop-filter: brightness(100%) contrast(100%) saturate(100%) blur(10px) hue-rotate(0deg);
  border: 1px solid white;
  border-radius: 15px;
  height: 250px;
}
.services-section .row .card .card-body {
  text-align: center;
  color: white;
}
.services-section .row .card .card-body h5 {
  font-weight: 900;
  font-size: 25px;
  margin: 10px auto 30px;
}
.services-section .row .card .card-body p {
  font-size: 14px;
}
.services-section .row .card:hover {
  border-color: #870d07;
  box-shadow: 0px 2px 14px 1px #870d07;
}

.locations-section {
  margin-top: 100px;
  text-align: center;
}
.locations-section h1 {
  font-size: 42px;
  font-weight: 900;
  margin: unset !important;
  color: #870d07;
  width: 50%;
  text-align: center;
}
.locations-section p {
  font-size: 16px;
  color: #828282;
  margin: 20px auto;
}
.locations-section .globe {
  position: relative;
  margin-top: 50px;
}
.locations-section .globe div {
  position: absolute;
  top: 6px;
  left: 6px;
  height: 96%;
  width: 25%;
  background: white;
  border-radius: 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-evenly;
  box-shadow: 0px 4px 12px 0px rgba(0, 0, 0, 0.05);
}
.locations-section .globe div i {
  color: #870d07;
}
.locations-section .globe div img {
  width: 235px;
  height: 145px;
}

.footer {
  height: 600px;
  background: #870d07;
  color: white;
  display: flex;
  align-items: center;
  margin-top: -7px;
}
.footer .overlay {
  -webkit-backdrop-filter: brightness(100%) contrast(100%) saturate(100%) blur(10px) hue-rotate(0deg);
          backdrop-filter: brightness(100%) contrast(100%) saturate(100%) blur(10px) hue-rotate(0deg);
  background-color: rgba(255, 255, 255, 0.2);
  width: 90%;
  margin: auto;
  height: 80%;
  border-radius: 20px;
  padding: 50px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}
.footer .overlay .footer-header {
  display: flex;
  align-items: center;
  justify-content: space-around;
}
.footer .overlay .footer-header p {
  font-size: 23px;
  font-weight: 900;
  color: white;
  text-align: center;
}
.footer .overlay .footer-header .col-md-2 {
  text-align: center;
}
.footer .overlay .footer-header img {
  width: 200px;
}
.footer .overlay .seprator {
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.1098039216);
}
.footer .overlay .social-media {
  width: 100%;
  display: flex;
  margin-top: 20px;
}
.footer .overlay .social-media .icons {
  display: flex;
  gap: 50px;
}
.footer .overlay .social-media .icons a {
  color: white;
  text-decoration: none;
}
.footer .overlay .social-media .copyright {
  display: flex;
  justify-content: flex-end;
}

.scroll-animate {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.scroll-animate.appear {
  opacity: 1;
  transform: translateY(0);
}

@media (min-width: 768px) and (max-width: 1500px) {
  .shipment-tracking .card, .services-section .card {
    height: 450px !important;
  }
  .hero-section main .stat-section .col-6:nth-child(1)::after,
  .hero-section main .stat-section .col-6:nth-child(2)::after,
  .hero-section main .stat-section i {
    display: none;
  }
}
@media (max-width: 991px) {
  .hero-section {
    height: 580px;
  }
  .hero-section .header {
    padding: 20px 70px;
  }
  .hero-section .header .fa-bars {
    color: white;
  }
  .hero-section .header .navbar-collapse {
    position: absolute;
    top: 96%;
    right: 18px;
    background: white;
    width: 40%;
    padding: 15px 35px;
    height: 500px;
    border-radius: 10px;
  }
  .hero-section .header .navbar-collapse a {
    color: #870d07 !important;
  }
  .hero-section .header .navbar-collapse .language-switcher #language-button,
  .hero-section .header .navbar-collapse .language-switcher i {
    color: black !important;
  }
  .hero-section .fixed-header .fa-bars {
    color: black !important;
  }
  .hero-section main h1 {
    font-size: 30px;
  }
  .hero-section main p {
    font-size: 15px;
  }
  .hero-section main .stat-section .stat-number {
    font-size: 25px !important;
  }
  .hero-section main .stat-section .stat-title {
    font-size: 15px !important;
  }
  .hero-section main .stat-section .col-6:nth-child(1)::after,
  .hero-section main .stat-section .col-6:nth-child(2)::after, .hero-section main .stat-section i {
    display: none;
  }
  .hero-section main .stat-section .col-6 {
    justify-content: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .delivering-excellence .d-flex, .shipment-tracking .d-flex, .services-section .d-flex, .locations-section .d-flex {
    width: 80%;
    margin: auto;
  }
  .delivering-excellence .d-flex h1, .shipment-tracking .d-flex h1, .services-section .d-flex h1, .locations-section .d-flex h1 {
    font-size: 25px;
  }
  .freights-types {
    gap: 50px;
  }
  .shipment-tracking .card .card-title {
    font-size: 20px !important;
  }
  .shipment-tracking .card .card-text {
    font-size: 16px !important;
  }
  .services-section .row .col-md-6 {
    margin: 30px 0px !important;
  }
  .locations-section .globe div {
    width: 35%;
  }
  .locations-section .globe div img {
    width: 90%;
  }
  .footer img {
    margin-bottom: 20px;
  }
  .footer .footer-header p {
    font-size: 20px;
  }
}/*# sourceMappingURL=style.css.map */