.home-hero.gw-hero {
  position: relative;
  overflow: hidden;
  background: #0a021c;
}

.home-hero.gw-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    #0a021c 0%,
    #0a021c 38%,
    rgba(10, 2, 28, .9) 50%,
    rgba(10, 2, 28, 0) 70%
  );
  z-index: 1;
  pointer-events: none;
}

.home-hero.gw-hero .container {
  width: min(100%, 1320px);
  margin-inline: auto;
  position: relative;
  z-index: 2;
}

.home-hero.gw-hero .row {
  display: block;
  margin-left: 0;
  margin-right: 0;
}

.home-hero.gw-hero .column {
  position: relative;
  z-index: 2;
  max-width: 520px;
  padding-top: 135px;
}

.home-hero.gw-hero .gw-hero-image {
  position: absolute;
  top: 0;
  right: max(20px, calc((100vw - 1320px) / 2));
  bottom: 0;
  width: 58vw;
  max-width: 780px;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
}

.home-hero.gw-hero .home-hero__media {
  width: 100%;
  height: 100%;
  display: block;
}

.home-hero.gw-hero .home-hero__media img,
.home-hero.gw-hero img.home-hero__media {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right top;
  display: block;
}

/* Medium desktop */
@media (max-width: 1200px) {

  .home-hero.gw-hero .gw-hero-image {
    width: 70vw;
    right: -120px;
  }

  .home-hero.gw-hero .column {
    padding-top: 140px;
    padding-bottom:40px;
  }

}

/* Small desktop / tablet landscape */
@media (max-width: 1000px) {

  .home-hero.gw-hero::before {
    background: linear-gradient(
      to right,
      #0a021c 0%,
      #0a021c 30%,
      rgba(10, 2, 28, .6) 45%,
      rgba(10, 2, 28, 0) 60%
    );
  }

  .home-hero.gw-hero .gw-hero-image {
    width: 85vw;
    right: -180px;
    opacity: .5;
  }

  .home-hero.gw-hero .column {
    padding-top: 90px;
    padding-bottom:70px;
  }

}

/* Mobile */
@media (max-width: 768px) {

  .home-hero.gw-hero::before {
    content: none;
  }

  .home-hero.gw-hero .column {
    max-width: none;
    padding-bottom:0;
  }

  .home-hero.gw-hero .gw-hero-image {
    position: relative;
    inset: auto;
    width: 100%;
    max-width: none;
    margin-top: 32px;
    right: auto;
    opacity: 1;
  }

  .home-hero.gw-hero .home-hero__media,
  .home-hero.gw-hero .home-hero__media img,
  .home-hero.gw-hero img.home-hero__media {
    height: auto;
  }

  .home-hero.gw-hero .home-hero__media img,
  .home-hero.gw-hero img.home-hero__media {
    object-position: center;
    margin-top:-60px;
  }

}

/* Trustpilot Copy ============================ */

.gw-inline-badges {
  padding-top:5px;
  display: inline-flex;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
  vertical-align: middle;
  margin-left:-6px;
}

.gw-inline-badges > * + * {
  margin-left: 8px;
}

.gw-inline-badges img {
  display: inline-block;
  width: auto;
  height: 22px;
  object-fit: contain;
  vertical-align: middle;
  border-radius:0;
}

.gw-inline-badges img.gw-trustpilot-logo {
  margin-top:-4px;
}

.gw-inline-badges img.gw-trustpilot-stars {
  margin-top:-1px;
}

/* Trustpilot Copy ============================ */

.gw-btn {
  margin-top:26px;
  display: inline-block;
  padding: 14px 28px;
  background: #D97706;
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  border: 0;
  border-radius: 0;
  cursor: pointer;
  transition: background-color .2s ease;
  text-align: center;
  text-transform: capitalize;
}

.gw-btn:hover,
.gw-btn:focus {
  background: #B85F05; 
  color: #fff;
  text-decoration: none;
}

.gw-btn:active {
  transform: translateY(1px);
}

/* Google Maps Iframe ============================ */

.gw-map-embed {
  position: relative;
  width: 100%;
  min-height: 320px;
  border-radius: 15px;
  overflow: hidden;
}

.gw-map-embed iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 320px;
  border: 0;
}

/* Free Demo Form Styles ============================ */

.gw-form {
    display: grid;
    gap: 20px;
    width:100% !important;
}

.gw-form > div {
    width:100% !important;
}

.gw-form__field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.gw-form__field label {
    font-weight: 600;
}

.gw-form__field input,
.gw-form__field select,
.gw-form__field textarea {
    width: 100%; 
}

.gw-form__submit {
    margin-top: 10px;
}