.hero-section {
  position: relative;
  overflow: hidden;
  padding: 150px 0 90px 0;
  background: url(../../static/images/banner-bg-new.jpg) no-repeat center;
}

.hero-section .container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
  margin-top:45px;
}

.hero-section__inner {
  display: flex;
  align-items: center;
  gap: 42px;
}

.hero-section__social {
  flex-shrink: 0;
}

.hero-section__social-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.hero-section__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #ffffff;
  color: #1E266D;
  transition: background 0.5s ease , color 0.3s ease;
  font-weight: 500;
}

.hero-section__social-link:hover {
  background: linear-gradient(90deg, var(--c1, #00b3dA), var(--c2, #00daa6) 51%, var(--c1, #00b3dA)) var(--x, 0)/ 200%;
  --c2: #007dc3;
  --c1: #00e175;;
  color: #ffffff;
}

.hero-section__social-link .dws-icon {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.hero-section__content {
  flex: 1 1 auto;
  max-width: 605px;
}

.hero-section__heading {
 color: #FFF;
font-family: "Montserrat", sans-serif;
font-size: 50px;
font-style: normal;
font-weight: 300;
line-height: 65px;
}

.hero-section__heading strong,
.hero-section__heading b {
color: #FFF;
font-family: 'Montserrat', sans-serif;
font-size: 50px;
font-style: normal;
font-weight: 700;
line-height: 65px;
}

.hero-section__description {
  margin: 0;
  color: var(--white);
  font-size: 18px;
  line-height: 1.65;
  opacity: 0.9;
}

.hero-section__btn {
  margin: 30px 0 0;
}

.hero-section__media {
  flex-shrink: 0;
  width: 100%;
  max-width: 480px;
}

.hero-section__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Entrance animations: text flies in from the left, media flies in from the right.
   The transform uses a "back-out" easing curve so each box overshoots slightly
   past its final position, then eases back to settle into place. */
[data-hero-animate] {
  opacity: 0;
  transition: opacity 0.9s ease, transform 0.9s cubic-bezier(0.34, 1.56, 0.64, 1);
}

[data-hero-animate="left"] {
  transform: translateX(-60px);
}

[data-hero-animate="right"] {
  transform: translateX(60px);
}

.hero-section__social[data-hero-animate] {
  transition-delay: 0.1s;
}

.hero-section__content[data-hero-animate] {
  transition-delay: 0.25s;
}

.hero-section__media[data-hero-animate] {
  transition-delay: 0.25s;
}

.hero-section.is-in-view [data-hero-animate] {
  opacity: 1;
  transform: translateX(0);
}

@media (prefers-reduced-motion: reduce) {
  [data-hero-animate] {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

@media (max-width: 991px) {
  .hero-section__inner {
    flex-wrap: wrap;
    row-gap: 24px;
  }

  /* Social icons take the full row on their own line, which pushes
     content + media onto the next line together as a 2-column row. */
  .hero-section__social {
    order: 1;
    width: 100%;
  }

  .hero-section__social-list {
    flex-direction: row;
  }

  .hero-section__content {
    order: 2;
    flex: 1 1 300px;
  }

  .hero-section__media {
    order: 3;
    flex: 0 1 320px;
    max-width: 320px;
    margin: 0;
  }

  .hero-section__heading ,.hero-section__heading strong,
.hero-section__heading b {
    font-size: 34px;
    line-height: 44px;
  }
}

@media (max-width: 767px) {
  .hero-section {
    padding: 48px 0;
  }

  .hero-section__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 28px;
  }

  .hero-section__social {
    order: 3;
    width: auto;
  }

  .hero-section__social-list {
    flex-direction: row;
  }

  .hero-section__media {
    order: 1;
    flex: 0 0 auto;
    width: 100%;
    max-width: none;
  }

  .hero-section__content {
    order: 2;
    flex: 1 1 auto;
  }

  .hero-section__heading ,.hero-section__heading strong,
.hero-section__heading b {
    font-size: 28px;
    line-height: 36px;
  }

  .hero-section__description {
    font-size: 16px;
  }
}
@media (min-width:768px) and (max-width:991px){
  .hero-section {
      padding: 180px 0 90px 0;
  }}