.banner-section {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  align-items: center !important;
  gap: 24px;
}

.banner-wrapper {
  padding: 64px 0px 120px;
}

.banner-content {
  display: flex;
  flex-direction: column;
  flex: 0 0 calc((6 / 12) * 100%);
  width: calc((6 / 12) * 100%);
  max-width: calc((6 / 12) * 100%);
  gap: 16px;
}

.banner-img img {
  width: 100%;
}

.banner-img {
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
}

.banner-content h1 {
  font-family: Gotham;
  font-size: 48px;
  font-style: normal;
  font-weight: 700;
  line-height: 50px;
  color: var(--neutral-800);
}

.banner-content p {
  font-family: Gotham;
  font-size: 22px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
  letter-spacing: .15px;
  color: var(--neutral-800);
}

.banner-content a {
  border-color: var(--brand-primary);
  color: var(--neutral-white);
  background: var(--brand-primary);
  border-radius: 8px;
  border-style: solid;
  border-width: 1px;
  box-shadow: none;
  display: inline-block;
  font-family: Gotham;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  letter-spacing: .25px;
  line-height: 20px;
  padding: 12px 16px;
  text-decoration: none;
  align-self: start;
}

.banner-content a:hover {
  background: var(--shades-primary-1);
}
.banner-img-mob{
  display:none;
}
@media(max-width:1250px){
  .banner-wrapper {
    padding: 64px 20px 120px;
  }
}
@media(max-width:830px){
  .banner-section {
    flex-direction: column;
    align-items: flex-start !important;!i;!;
  }

  .banner-content {
    flex: 0 100%;
    max-width: 100%;
    width: 100%;
  }

  .banner-wrapper {
    padding: 140px 20px 50px;
  }

  .banner-img {
    flex: 0 100%;
    text-align: left;
  }
}
@media(max-width:570px){
  .banner-content h1 {
    font-size: 36px;
    line-height: 40px;
  }

  .banner-content a {
    align-self: initial;
    text-align: center;
  }
  .banner-img {
    width: 100%;
    display:none;
  }
  .banner-img-mob{
    display:block;
    
    text-align:center;
  }
  .banner-img img {
  }
  .banner-img-mob img {
    max-width: 100%;
    height: auto;
    display: block;
    
    display:inline-block;
    max-width:350px;
  }
}