#header-banner{
  overflow: hidden;
  position: relative;
}

.header-banner-inner-container{
  padding: 160px 0 60px;
}

.listing-page-banner .header-banner-inner-container{
  padding: 300px 0 360px;
}

@media screen and (max-width: 480px){
  .listing-page-banner .header-banner-inner-container{
    padding: 200px 0;
  }
}

.wave-shape-divider-bottom {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.wave-shape-divider-bottom svg,
.wave-shape-divider-bottom img{
    position: relative;
    display: block;
    width: calc(100%);
}

.wave-shape-divider-bottom .shape-fill {
    fill: #FFFFFF;
}

.header-top-text{
  line-height: 1.2;
}

.header-bottom-text{
  line-height: 1;
}

.header-banner-inner-container h1{
  position: relative;
}

.header-banner-inner-container h1:after{
  width: 175px;
  height: 25px;
}

@media screen and (min-width: 768px){
  .header-banner-inner-container h1:after{
    width: 370px;
    height: 37px;
  }
}

.header-circle-container{
  position: absolute;
  -webkit-animation-name: bob-float, bob;
  animation-name: bob-float, bob;
  -webkit-animation-duration: .3s, 1.5s;
  animation-duration: .3s, 1.5s;
  -webkit-animation-delay: 0s, .3s;
  animation-delay: 0s, .3s;
  -webkit-animation-timing-function: ease-out, ease-in-out;
  animation-timing-function: ease-out, ease-in-out;
  -webkit-animation-iteration-count: 1, infinite;
  animation-iteration-count: 1, infinite;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  -webkit-animation-direction: normal, alternate;
  animation-direction: normal, alternate;
}

.header-circle-container,
.header-circle-container img{
  border-radius: 100%;
  z-index: 10;
}

@media screen and (min-width: 1200px){
  #header-circle-image-1{
    top: 260px;
    left: 2%;
  }
  
  #header-circle-image-1:after{
    width: 88px;
    height: 88px;
    right: -45px;
  }

  #header-circle-image-2{
    bottom: 0;
    left: 7%;
  }
  
  #header-circle-image-2:after{
    width: 70px;
    height: 70px;
    right: 35px;
  }

  #header-circle-image-3{
    bottom: 100px;
    right: 13%;
  }
  
  #header-circle-image-3:after{
    width: 70px;
    height: 70px;
    right: -20px;
    bottom: 10px;
  }

  #header-circle-image-4{
    top: 300px;
    right: -50px;
  }
  
  #header-circle-image-4:after{
    width: 120px;
    height: 120px;
    left: -50px;
    top: -35px;
  }
}

@media screen and (min-width: 1024px) and (max-width: 1199.0px){
  #header-circle-image-1{
    top: 260px;
    left: -8%;
  }
  
  #header-circle-image-1:after{
    width: 88px;
    height: 88px;
    right: -45px;
  }

  #header-circle-image-2{
    bottom: 0;
    left: 3%;
  }
  
  #header-circle-image-2:after{
    width: 70px;
    height: 70px;
    right: 35px;
  }

  #header-circle-image-3{
    bottom: 100px;
    right: 5%;
  }
  
  #header-circle-image-3:after{
    width: 70px;
    height: 70px;
    right: -20px;
    bottom: 10px;
  }

  #header-circle-image-4{
    top: 300px;
    right: -150px;
  }
  
  #header-circle-image-4:after{
    width: 120px;
    height: 120px;
    left: -50px;
    top: -35px;
  }
}

@media screen and (max-width: 1023.9px){
  .header-circle-container,
  .header-circle-container img{
    height: 100px;
    width: 100px;
  }
  
  #header-circle-image-1{
    top: 20%;
    left: 5%;
  }

  #header-circle-image-2{
    bottom: 30%;
    left: 7%;
  }

  #header-circle-image-3{
    bottom: 20%;
    right: 5%;
  }

  #header-circle-image-4{
    top: 10%;
    right: 5%;
  }
}

@media screen and (max-width: 480px){
  #header-circle-image-1{
    top: 15%;
    left: 3%;
  }

  #header-circle-image-2{
    bottom: 10%;
    left: 7%;
  }

  #header-circle-image-3{
    bottom: 15%;
    right: 5%;
  }

  #header-circle-image-4{
    top: 20%;
    right: -20px;
  }
}

@-webkit-keyframes bob {
  0% {
    -webkit-transform: translateY(-8px);
    transform: translateY(-8px);
  }
  50% {
    -webkit-transform: translateY(-4px);
    transform: translateY(-4px);
  }
  100% {
    -webkit-transform: translateY(-8px);
    transform: translateY(-8px);
  }
}
@keyframes bob {
  0% {
    -webkit-transform: translateY(-8px);
    transform: translateY(-8px);
  }
  50% {
    -webkit-transform: translateY(-4px);
    transform: translateY(-4px);
  }
  100% {
    -webkit-transform: translateY(-8px);
    transform: translateY(-8px);
  }
}

@-webkit-keyframes bob-float {
  100% {
    -webkit-transform: translateY(-8px);
    transform: translateY(-8px);
  }
}
@keyframes bob-float {
  100% {
    -webkit-transform: translateY(-8px);
    transform: translateY(-8px);
  }
}