body{
    padding: 0;
    margin: 0;
    height: 100%;
}

.width-container {
    width: 97%;
    max-width: 1400px;
    margin: 0 auto;
}

.background {
  background-image: url("https://images.unsplash.com/photo-1480714378408-67cf0d13bc1b?q=80&w=2070&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D"); /* Replace with your own construction image */
  background-size: cover;
  background-position: center;
  height: 100vh;
  position: relative;
}

.overlay {
  background-color: rgba(0, 0, 0, 0.7);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.content {
  position: relative;
  z-index: 1;
  color: #fff;
  text-align: center;
  top: 50%;
  transform: translateY(-50%);
  padding: 0 20px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}

.left-logo-sec{
    width: 15%;
    margin-bottom: 20px;
}
.left-logo-sec img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}

h1 {
  font-size: 4rem !important;
  margin-bottom: 1rem !important;
  color: #fff !important;
  text-transform: uppercase;
  font-weight: 300 !important;
  text-align: center;
}
h1 span{
    font-weight: 600;
    /* color: #f6630d !important; */
}

p {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto 1.5rem;
}

.tagline {
  font-style: italic;
  font-size: 1rem;
  color: #f6630d;
}

.ft-icon{
    position: absolute;
    bottom: 0;
    width: 100%;
}


@media (max-width: 800px) {
    .left-logo-sec {
        width: 22%;
    }
  h1 {
    font-size: 2rem !important;
  }
  p {
    font-size: 1rem;
  }
}

@media (max-width: 500px) {
  .left-logo-sec {
    width: 30%;
  }
}




