#locationSec {
  position: relative;
  margin-bottom: var(--space-between-sections);
  overflow: hidden;
}

#locationSec .travelBox {
  float: right;
  margin-right: calc(0px - var(--container-padding));
  font-family: var(--font-title-family);
  font-size: 170px;
  color: var(--color-grey-soft);
  line-height: 140px;
  text-transform: uppercase;
  position: relative;
  z-index: 1;
}

#locationSec .beHappyBox {
  float: left;
  margin-left: calc(0px - var(--container-padding));
  padding: 70px 0 70px 140px;
  font-family: var(--font-title-family);
  font-size: 170px;
  color: var(--color-grey-soft);
  line-height: 140px;
  text-transform: uppercase;
  position: relative;
  z-index: 1;
}

#locationSec .bgBox {
  width: 385px;
  background: var(--color-grey);
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  z-index: 0;
}

#locationSec .location {
  float: left;
  width: 100%;
  position: relative;
  z-index: 2;
}

#locationSec .location span.title {
  display: block;
  margin: -70px 0 40px 0;
  font-family: var(--font-cursive-family);
  font-size: var(--font-subtitle-cursive-size);
  color: var(--color-primary);
  line-height: 50px;
  text-align: center;
}

#locationSec .location .content {
  float: right;
  width: 50%;
}

#locationSec .location .content h3 {
  margin: 0 0 40px 0;
  font-family: var(--font-title-family);
  font-size: var(--font-title-size);
  color: var(--color-black);
  line-height: 58px;
  text-transform: uppercase;
}

#locationSec .location .content p {
  margin: 0 0 20px 0;
  font-size: var(--font-text-size);
  color: var(--color-black);
  font-weight: 400;
}

#locationSec .location .content p:last-child {
  margin-bottom: 0;
}

#locationSec .location .image {
  position: relative;
  float: left;
  width: calc(50% + var(--container-padding));
  margin-left: calc(0px - var(--container-padding));
}

#locationSec .location .image:after {
  content: "";
  width: 70%;
  height: 100%;
  background: rgb(2 8 21 / 50%);
  background: linear-gradient(
    90deg,
    rgba(2, 8, 21, 0) 5%,
    var(--color-white-transparent) 65%,
    var(--color-white) 95%
  );
  position: absolute;
  top: 0;
  right: 0;
}

#locationSec .location .image img {
  width: 100%;
  height: auto;
}
@media only screen and (min-width: 1180px) and (max-width: 1366px) {
  #locationSec .travelBox {
    font-size: 150px;
    line-height: 120px;
  }
  #locationSec .beHappyBox {
    font-size: 150px;
    line-height: 120px;
  }
}

@media only screen and (min-width: 959px) and (max-width: 1180px) {
  #locationSec .travelBox {
    font-size: 120px;
    line-height: 90px;
  }
  #locationSec .beHappyBox {
    font-size: 120px;
    line-height: 90px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 959px) {
  #locationSec .travelBox {
    font-size: 110px;
    line-height: 90px;
  }
  #locationSec .beHappyBox {
    padding-left: 0;
    font-size: 110px;
    line-height: 90px;
  }
  #locationSec .bgBox {
    width: 170px;
  }
  #locationSec .location span.title {
    margin: -70px 0 40px 0;
    font-size: var(--font-subtitle-cursive-size);
    line-height: 40px;
    text-align: left;
  }
  #locationSec .location .content {
    float: left;
    width: 100%;
  }
  #locationSec .location .content h3 {
    margin: 0 0 20px 0;
    font-size: 35px;
    line-height: 45px;
  }
  #locationSec .location .content p {
    margin: 0 0 20px 0;
    font-size: 16px;
    line-height: 28px;
  }
  #locationSec .location .image {
    float: left;
    width: calc(100% + 30px);
    margin-left: -15px;
  }
  #locationSec .location .image:after {
    background: linear-gradient(
      180deg,
      rgba(2, 8, 21, 0) 5%,
      var(--color-white-transparent) 65%,
      var(--color-white) 95%
    );
    width: 100%;
    height: 50%;
  }
}

@media only screen and (max-width: 767px) {
  #locationSec .travelBox {
    display: none;
    font-size: 70px;
    line-height: 70px;
  }
  #locationSec .beHappyBox {
    display: none;
    padding-left: 0;
    font-size: 70px;
    line-height: 70px;
  }
  #locationSec .bgBox {
    display: none;
    width: 170px;
  }
  #locationSec .location span.title {
    margin: 0 0 20px 0;
    font-size: var(--font-subtitle-cursive-size);
    line-height: 40px;
    text-align: left;
  }
  #locationSec .location .content {
    float: left;
    width: 100%;
  }
  #locationSec .location .content h3 {
    margin: 0 0 20px 0;
    font-size: var(--font-title-size);
    line-height: 45px;
  }
  #locationSec .location .content p {
    margin: 0 0 20px 0;
    font-size: var(--font-text-size);
    line-height: 28px;
  }
  #locationSec .location .image {
    float: left;
    width: calc(100% + 30px);
    margin-left: -15px;
  }
  #locationSec .location .image:after {
    background: linear-gradient(
      0deg,
      rgba(2, 8, 21, 0) 5%,
      var(--color-white-transparent) 65%,
      var(--color-white) 95%
    );
    width: 100%;
    height: 50%;
  }
}
