/*-- -------------------------- -->
<---           Hero             -->
<--- -------------------------- -*/
/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  #hero-1059 {
    /* Centers button */
    text-align: left;
    /* 200px - 300px - leaving extra space for the navigation */
    padding: clamp(12rem, 31.95vw, 14rem) 1rem 0;
    /* Laptop Image Styles */
    /* 130px - 200px */
    padding-bottom: clamp(8.125rem, 16.5vw, 12.5rem);
    position: relative;
    z-index: 1;
    background-color: var(--backgroundColor);
  }
  #hero-1059 .laptop-image-container {
    position: relative;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
  }
  #hero-1059 .laptop-image-container img {
    width: 100%;
    height: auto;
    display: block;
    max-width: 100%;
  }
}
@media only screen and (min-width: 0rem) and (min-width: 768px) {
  #hero-1059 .laptop-image-container {
    max-width: 400px;
  }
}
@media only screen and (min-width: 0rem) {
  #hero-1059 .cs-background {
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -2;
    background-color: var(--backgroundColor);
  }
  #hero-1059 .cs-background:before {
    /* Overlay */
    content: "";
    width: 100%;
    height: 100%;
    background: #1a1a1a;
    opacity: 0.84;
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    z-index: 1;
    /* prevents the cursor from interacting with it */
    pointer-events: none;
  }
  #hero-1059 .cs-background img {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    object-fit: cover;
    /* makes the top of the image start at the top of the parent */
    object-position: top;
  }
  #hero-1059 .cs-container {
    width: 100%;
    max-width: 80rem;
    margin: auto;
    display: flex;
    justify-content: space-between;
  }
  #hero-1059 .cs-content {
    /* set text align to left if content needs to be left aligned */
    text-align: center;
    width: 100%;
    max-width: 39.375rem;
    display: flex;
    flex-direction: column;
    /* centers content horizontally, set to flex-start to left align */
    align-items: center;
    /* centers content vertically */
    justify-content: center;
  }
  #hero-1059 .cs-title {
    /* 39px - 61px */
    font-size: clamp(2.4375rem, 6.4vw, 3.8125rem);
    font-weight: 700;
    line-height: 1.2em;
    text-align: inherit;
    max-width: 51.8125rem;
    margin: 0 auto 1rem 0;
    color: var(--bodyTextColorWhite);
    position: relative;
  }
  #hero-1059 .cs-text {
    /* 16px - 20px */
    font-size: clamp(1rem, 1.95vw, 1.25rem);
    line-height: 1.5em;
    text-align: inherit;
    width: 100%;
    /* 464px - 622px */
    max-width: clamp(29rem, 60vw, 38.785rem);
    margin: 0 0 2.5rem 0;
    color: var(--bodyTextColorGray);
  }
  #hero-1059 .cs-button-solid {
    font-size: 1rem;
    line-height: 1.2em;
    text-decoration: none;
    font-weight: 700;
    text-align: center;
    margin: 0;
    color: #fff;
    min-width: 9.375rem;
    padding: 0.875rem 1.75rem;
    border-radius: 0.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
    box-sizing: border-box;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(50, 69, 71, 0.9);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(50, 69, 71, 0.25);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  }
  #hero-1059 .cs-button-solid:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.12) 0%, transparent 100%);
    z-index: -1;
  }
  #hero-1059 .cs-button-solid:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    opacity: 0.85;
    z-index: -1;
    transition: opacity 0.3s ease;
  }
  #hero-1059 .cs-button-solid:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.25);
  }
  #hero-1059 .cs-button-solid:hover:after {
    opacity: 0.95;
  }
  #hero-1059 .cs-button-solid:active {
    transform: translateY(0);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  }
}
@media only screen and (min-width: 0rem) and (max-width: 720px) {
  #hero-1059 .cs-container {
    flex-direction: column;
    align-items: flex-start;
  }
  #hero-1059 .cs-container img {
    padding-top: 2.5rem;
    max-width: 90%;
    margin: auto;
  }
}
/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
  #hero-1059 .cs-content {
    text-align: left;
    align-items: flex-start;
  }
  #hero-1059 .cs-background:before {
    background: linear-gradient(to right, rgba(0, 0, 0, 0.94) 0%, rgba(0, 0, 0, 0.94) 2%, rgba(0, 0, 0, 0) 100%);
    opacity: 1;
  }
}