#hero-banner {
  background-image: url(http://localhost:8000/assets/img/photographs/hero-image.png);
  background-size: cover;
  background-position: left top;
  padding: 130px 0px 100px 0px;
  position: relative;
}

#hero-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(to bottom, transparent, #f1f1f1);
  z-index: 1; /* Place the gradient layer above the background image */
}

#hero-banner-content {
  backdrop-filter: blur(15px);
  background-color: rgba(204,231,250, 0.5);
  width: 70%;
  margin-left: auto;
  padding: 50px 30px;
  box-shadow: 0 0 10px 0 #888;
  position: relative;
  z-index: 2;
}

#hero-banner-inside {
    width: 100%;
    margin-right: auto;
    max-width: calc(var(--content-width) * 0.7);
    min-height: 420px;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: flex-start;
    align-content: space-between;
}

#hero-banner-inside h1{
  font-weight: 400;
  font-family: 'Poppins';
  font-size: 60px;
  line-height: 70px;
  margin-bottom: 30px;
}

#hero-banner-inside p {
  font-size: 18px;
  max-width: 480px;
}

div#discover-button {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: flex-start;
  align-content: center;
  gap: 30px;
}

#discover-button img{
  width: 50px;
}

#discover-button a {
  display: flex;
  cursor: pointer;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
  align-content: center;
  align-items: center;
  text-decoration: none;
  color: black;
  font-weight: 300;
}

#our-clients-container {
  padding: 50px 30px 50px;
}

#our-clients {
  max-width: var(--content-width);
  width: 100%;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-content: flex-start;
}

#our-clients h2 {
  width: 100%;
  text-align: center;
  font-weight: 400;
  font-size: 40px;
  margin-bottom: 30px;
}

#our-clients .individual-client {
  width: 18%;
  text-align: center;
}

#our-clients .client-icon{
  display: inline-block;
  padding: 20px;
  background-color: white;
  box-shadow: 0px 0px 10px -5px #0e70b4;
  border-radius: 100px;
  margin-bottom: 20px;
}

#our-clients svg{
  width: 60px;
  height: 60px
}

#our-clients h3 {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 20px;
}

#our-clients p{
  font-size: 16px;
}

#steps-container {
  background-color: white;
  box-shadow: inset 0px 0px 30px 0px #1f4e55;
  width: calc(100% + 40px);
  margin-left: -20px;
  padding: 100px 60px;
}

#steps {
  width: 100%;
  max-width: var(--content-width);
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: space-between;
  align-content: flex-start;
}

#steps .steps-item {
  width: 31%;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: space-between;
  align-content: flex-start;
}

#steps .step-count {
  width: 10%;
  font-size: 50px;
  line-height: 50px;
  color: #a8cee9;
}

#steps .step-content {
  width: 90%;
}

#steps h3 {
  font-size: 20px;
  font-weight: 600;
  line-height: 26px;
  margin-bottom: 15px;
  min-height: 80px;
}

#steps p {
  margin-bottom: 20px;
}

#steps .step-note{
  padding: 10px;
  box-shadow: 0px 0px 10px -3px #0e70b4;
  min-height: 140px;
}


@media only screen and (max-width: 500px) {
  #hero-banner-content,
  #our-clients .individual-client,
  #steps .steps-item{
    width: 100%;
  }

  #hero-banner-inside p {
    max-width: 100%;
    width: 100%;
    margin-bottom: 30px;
  }

  div#discover-button{
    gap: 10px;
  }

  #hero-banner-inside{
    max-width: none;
    margin: 0;
  }

  #hero-banner-inside h1 {
    font-size: 30px;
    line-height: 40px;
  }
  
  #our-clients .individual-client{
    margin-bottom: 30px;
  }

  #steps .steps-item{
    margin-bottom: 30px;
  }

  #steps .step-count{
    width: 15%;
  }

  #steps .step-content {
    width: 85%;
  }
}