

.carousel-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    /* padding: 20px; */
    flex-wrap: wrap;
  }
  
  .text-box {
    max-width: 50%;
    padding: 20px;
  }
  
  .text-box h2 {
    font-size: 2em;
    margin-bottom: 20px;
    color: rgb(255, 255, 255);
  }
  
  .text-box p {
    font-size: 1em;
    margin-bottom: 20px;
    color: #fff;
  }
  
  .text-box .btn {
    padding: 10px 20px;
    background-color: #007bff;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
  }
  
  .slide-img {
    max-width: 50%;
    height:400px
  }
  
  /* Responsive adjustments */
  @media (max-width: 768px) {
    .carousel-content {
      flex-direction: column;
      align-items: flex-start;
    }
  
    .text-box {
      max-width: 100%;
      padding: 10px;
    }
  
    .slide-img {
      max-width: 100%;
      margin-top: 20px;
    }
  
    .text-box h2 {
      font-size: 1.5em;
    }
  
    .text-box p {
      font-size: 0.9em;
    }
  
    .text-box .btn {
      padding: 8px 16px;
      font-size: 0.9em;
    }
  }
  
  @media (max-width: 480px) {
    .text-box h2 {
      font-size: 1.2em;
    }
  
    .text-box p {
      font-size: 0.8em;
    }
  
    .text-box .btn {
      padding: 6px 12px;
      font-size: 0.8em;
    }
  }

  .nav-desktop {
    padding: 10px 20px;
  }

  .nav-text {
    color: #fff;
    text-decoration: none;
    padding: 10px 10px;
    font-size: 12px;
    display: block;
  }

  .dropdown {
    position: relative;
  }

  .dropdown-menu {
    display: none;
    position: absolute;
    list-style: none;
    margin: 0;
    padding: 0;
    top: 100%;
    left: 0;
  }

  .dropdown-menu li {
    width: 200px;
  }

  .dropdown-menu a {
    padding: 10px 20px;
  }

  .dropdown:hover>.dropdown-menu {
    display: block;
  }

  .dropdown-menu .dropdown {
    position: relative;
  }

  .dropdown-menu .dropdown-menu {
    top: 0;
    left: 70%;
  }

  .btn-bg {
    background: linear-gradient(90deg,
        rgba(255, 255, 255, 0.1) 0%,
        rgba(48, 48, 48, 0.1) 100%);
    backdrop-filter: blur(15px);
  }

  .btn-bg:hover {
    background: linear-gradient(90deg,
        rgba(255, 255, 255, 0.15) 0%,
        rgba(48, 48, 48, 0.1) 100%);
  }

  .wrapper-vertical-text {
    position: relative;
    height: 200px;
    /* Adjust the height as needed */
  }

  .vertical-text {
    position: absolute;
    right: 0;
    font-size: 28px;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    white-space: nowrap;
    text-align: center;
    text-decoration: underline;
  }
  .parallax-1 {
position: relative;
background: url('img/about/cranes.jpg') repeat fixed 100%;
background-size: cover;
color: aliceblue;
/* min-height: 70vh;  */
}

.parallax-1::before {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: #1d618bb0; /* Adjust opacity and color as needed */
}

@media (max-width: 640px) {
.parallax-1 {
min-height: auto !important;
}

      }
      .carousel-control-next-icon {
        background-color: black;
      }
      .carousel-control-prev-icon {
        background-color: black;
      }