.solution-hero-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
  margin: 0 auto;
  min-height: 820px; 
}

.solution-hero-video-wrapper {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: -1;
}

.solution-hero-bg {
  width: 100%; height: 100%;
  object-fit: cover;
}

.solution-hero-image-wrapper {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: -1;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;  
}

.solution-hero-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: 1;
  
  background: radial-gradient(circle at right top, rgba(115,115,115,0) 37%, rgba(3,0,1,0.96) 64%);
  mix-blend-mode: normal;
  opacity: 0.74;
}

.solution-hero-content {
  position: relative;
  z-index: 2;
  text-align: left;
  color: #fff;
  padding: 315px 32px 90px;
  max-width: 1424px;
  width: 100%;
  margin: auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-end; 
  height: 100%;
}

.solution-hero-inner {
  display: flex;
  flex-direction: column;
  row-gap: 20px; 
}

.solution-hero-title h2 {
  font-size: 72px;
  color: #ffffff;
  line-height: 1;
  font-weight: 400 !important;
  margin: 0; 
  max-width: 640px;
}

.solution-hero-description h5 {
  font-size: 24px;
  color: #ffffff;
  font-weight: 400;
  line-height: 1.2;
  max-width: 620px;
  margin: 0;
}

.solution-hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.solution-hero-btn {
  display: inline-flex !important;   
  align-items: center;               
  justify-content: center;           
  text-align: center;                
  white-space: normal;               
  word-break: break-word;            
  padding: 14px 26px !important;
  border: 1px solid #fff !important;
  border-radius: 25px;
  color: #fff !important;
  text-decoration: none !important;
  font-weight: 700;
  font-size: 17px;
  line-height: 20px;
  letter-spacing: 0.34px;
  transition: background-color 0.3s ease-in-out;
}


.solution-hero-btn:hover {
  background: #cfcfcf;
  color: #000;
  border-color: #fff;
  font-weight: 700;
}


@media (max-width: 1024px) {
  .solution-hero-image-wrapper {
    background-attachment: fixed;
  }

  .solution-hero-content {
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 100%;
    height: 100%;
    overflow-y: auto; 
    padding: 40px 20px;
  }
}

@media (max-width: 1025px) {
  .solution-hero-image-wrapper {
    background-attachment: scroll;
  }

  .solution-hero-content {
    position: relative;
    transform: none;
    top: auto;
    left: auto;
    height: auto;
    overflow: visible;
    padding: 315px 32px 90px;
    max-width: 1360px;
  }
}

@media (max-width: 768px) {
  .solution-hero-title h2 {
    font-size: 42px;3
    max-width: 400px !important;
    line-height: 1.1;


  }
  .solution-hero-description h5 {
    font-size: 22px;
    line-height: 1.3;

  }
  .solution-hero-content {
    padding: 280px 16px 70px;
  }
}

@media (min-width: 768px) and (max-width: 1024px) {
  .solution-hero-title h2 {
    font-size: 48px;
    max-width: 400px !important;
    line-height: 1.1;

  }
  .solution-hero-description h5 {
    font-size: 20px;
    line-height: 1.3;
  }
}

@media (max-width: 767px) {

  .solution-hero-title h2 {
    font-size: 42px;
    max-width: 400px !important;
    line-height: 1;
  }

  .solution-hero-description h5 {
    font-size: 22px;
  }
}

@media (max-width: 450px) {

  .solution-hero-title h2 {
    max-width:385.5px !important;
  }

   .solution-hero-description h5 {
    max-width:385.5px !important;
  }

  
}

@media (max-width: 400px) {

  .solution-hero-title h2 {
    max-width:335.5px !important;
  }

   .solution-hero-description h5 {
    max-width:335.5px !important;
  }

  
}

@media (max-width: 340px) {

  .solution-hero-title h2 {
    max-width:280.5px !important;
  }

  .solution-hero-description h5 {
    max-width:280.5px !important;
  }

}

