.masthead {
  position: relative;
  height: 300px;
  width: 100%;
  display: flex;
  background-color: #fff4ee;
}

.masthead .right-image {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 400px;
  height: 88%;
  background-size: cover;
  background-repeat: no-repeat;
}

.masthead .banner-title {
  font-size: 48px;
  letter-spacing: 1px;
  font-weight: 700;
  color: #e87722;
  margin-left: 7%;
  margin-top: 64px;
  align-self: center;
}

/******* [ Smaller screen Version ] ********/

@media screen and (max-width: 1024px) {
  .masthead .banner-title {
    font-size: 44px;
  }

  .masthead .right-image {
    height: 64%;
    width: 290px;
  }
}

/******* [ Smaller screen Version ] ********/

@media screen and (max-width: 768px) {
  .masthead .right-image {
    height: 50%;
    width: 214px;
    background-position: bottom;
    background-size: contain;
  }
}

/******* [ Mobile Version ] ********/

@media screen and (max-width: 460px) {
  .masthead .banner-title {
    width: 50%;
    font-size: 32px;
    margin-top: 56px;
    line-height: 1.3;
  }

  .masthead .right-image {
    width: 60%;
    height: 100%;
    background-position: right;
    background-size: cover;
  }
}
