/*-- -------------------------- -->
<---          Contact           -->
<--- -------------------------- -*/

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  #contact-569 {
    padding: var(--sectionPadding);
    background-color: #fafbfc;
    position: relative;
    z-index: 1;
  }
  #contact-569 .cs-container {
    width: 100%;
    /* changes to 1064px at desktop */
    max-width: 34.375rem;
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 3rem;
  }
  #contact-569 .cs-left {
    max-width: 39.375rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 3rem;
  }
  #contact-569 .cs-content {
    /* set text aling to left if content needs to be left aligned */
    text-align: left;
    width: 100%;
    display: flex;
    flex-direction: column;
    /* centers content horizontally, set to flex-start to left align */
    align-items: flex-start;
  }

  #contact-569 .cs-form {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
  }
  #contact-569 .cs-label {
    /* 14px - 16px */
    font-size: clamp(0.875rem, 1.5vw, 1rem);
    width: 100%;
    color: var(--headerColor);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 0.25rem;
  }
  #contact-569 .cs-input {
    font-size: 1rem;
    width: 100%;
    height: 2.5rem;
    padding: 0;
    padding-left: 1.5rem;
    color: var(--headerColor);
    background-color: #fff;
    border: 1px solid #e0e0e0;
    /* prevents padding from adding to height and width */
    box-sizing: border-box;
    transition: border-color 0.3s;
  }
  #contact-569 .cs-input:hover {
    border-color: var(--secondary);
  }
  #contact-569 .cs-input:focus {
    outline: 1px solid var(--secondary);
  }
  #contact-569 .cs-input::placeholder {
    color: #7d799c;
    opacity: 0.6;
    font-size: 0.875rem;
  }
  #contact-569 .cs-textarea {
    /* 120px - 140px */
    min-height: clamp(7.5rem, 28vw, 8.75rem);
    padding-top: 1.5rem;
    margin-bottom: 0.75rem;
    font-family: inherit;
  }
  #contact-569 .cs-submit {
    /* 20px - 25px */
    font-size: clamp(1.25rem, 2.6vw, 1.5625rem);
    /* 56px - 70px */
    line-height: clamp(3.5rem, 7vw, 4.375rem);
    text-decoration: none;
    font-weight: 700;
    text-align: center;
    margin: 0;
    color: white;
    border-radius: 10px;
    border: none;
    width: 100%;
    padding: 0 1.5rem;
    background-color: var(--primary);
    transition: color 0.3s, background-color 0.3s;
    display: inline-block;
    position: relative;
    z-index: 1;
    /* prevents padding from adding to the width */
    box-sizing: border-box;
    transition: color 0.3s;
  }
  #contact-569 .cs-submit:before {
    content: "";
    position: absolute;
    height: 100%;
    width: 0%;
    background: var(--secondary);
    border-radius: 10px;
    opacity: 1;
    top: 0;
    left: 0;
    z-index: -1;
    transition: width 0.3s;
  }
  #contact-569 .cs-submit:hover {
    color: #fff;
    cursor: pointer;
  }
  #contact-569 .cs-submit:hover:before {
    width: 100%;
  }
  #contact-569 .cs-right {
    width: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: wrap;
    row-gap: 3rem;
  }
  #contact-569 .cs-flex {
    /* resets to 100% at desktop */
    width: 49%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
  #contact-569 .cs-header {
    /* 20px - 25px */
    font-size: clamp(1.25rem, 5vw, 1.5625rem);
    line-height: 1.2em;
    font-weight: 700;
    margin: 0;
    color: var(--headerColor);
    display: block;
  }
  #contact-569 .cs-link {
    /* 14px - 16px */
    font-size: clamp(0.875rem, 1.4vw, 1rem);
    line-height: 1.5em;
    text-decoration: none;
    margin: 0;
    color: var(--headerColor);
    display: block;
  }
  #contact-569 .cs-link:hover {
    text-decoration: underline;
  }
  #contact-569 .cs-phone {
    /* scoot it 8px up to override the 16px gap on the parent and make it 8px */
    margin-top: -0.5rem;
  }
  #contact-569 .cs-social {
    width: 100%;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: flex-start;
    align-items: center;

    /* 24px - 30px */
    gap: clamp(1.5rem, 3vw, 1.875rem);
  }
  #contact-569 .cs-li {
    list-style: none;
    margin: 0;
    padding: 0;
  }
  #contact-569 .cs-social-link {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 2.5rem;
    height: 2.5rem;
    background-color: var(--primary);
    border-radius: 50%;
    transition: background-color 0.3s, transform 0.3s;
  }
  #contact-569 .cs-social-link:hover {
    background-color: var(--secondary);
    transform: translateY(-0.25rem);
  }
  #contact-569 .cs-social-link:hover .cs-icon {
    /* turn icon white */
    filter: grayscale(1) brightness(1000%);
  }
  #contact-569 .cs-icon {
    width: auto;
    height: 0.9375rem;
  }
}
/* Tablet - 650px */
@media only screen and (min-width: 40.625rem) {
  #contact-569 .cs-label {
    width: 48.4%;
  }
  #contact-569 .cs-message {
    width: 100%;
  }
}
/* Small Desktop - 1024px */
@media only screen and (min-width: 64rem) {
  #contact-569 .cs-container {
    max-width: 66.5rem;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
  }
  #contact-569 .cs-left {
    width: 60%;
  }
  #contact-569 .cs-submit {
    width: 15rem;
  }
  #contact-569 .cs-right {
    width: 19rem;
    flex-direction: column;
    /* prevent flexbox from squishing it */
    flex: none;
  }
  #contact-569 .cs-flex {
    width: 100%;
  }
  #contact-569 .cs-social {
    /* adds an extra 16px + 48px row gap on the parent to make 64px space between */
    margin-top: 1rem;
  }
}

#contact-1392 {
  display: none;
}

.cs-social-icon {
  filter: grayscale(1) invert(1) brightness(1112%);
}

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  #cta-403 {
    padding: var(--sectionPadding);
    position: relative;
  }
  #cta-403 .cs-background {
    width: 100%;
    height: 100%;
    background-blend-mode: multiply;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
  }
  #cta-403 .cs-background:before {
    /* background color overlay */
    content: "";
    position: absolute;
    display: block;
    height: 100%;
    width: 100%;
    background: #1a1a1a;
    opacity: 0.8;
    top: 0;
    left: 0;
    z-index: 1;
  }
  #cta-403 .cs-background img {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    /* Makes img tag act as a background image */
    object-fit: cover;
    /* positions the image inside the parent */
    object-position: 0% 30%;
  }
  #cta-403 .cs-container {
    width: 100%;
    max-width: 80rem;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* 48px - 64px */
    gap: clamp(3rem, 6vw, 4rem);
  }
  #cta-403 .cs-content {
    /* set text align to left if content needs to be left aligned */
    text-align: center;
    width: 100%;
    max-width: 32.3125rem;
    display: flex;
    flex-direction: column;
    /* centers content horizontally, set to flex-start to left align */
    align-items: center;
  }
  #cta-403 .cs-title,
  #cta-403 .cs-text {
    color: var(--bodyTextColorWhite);
  }
  #cta-403 .cs-text {
    opacity: 0.8;
    margin-bottom: 1rem;
  }
  #cta-403 .cs-text:last-of-type {
    margin-bottom: 2rem;
  }
  #cta-403 .cs-button-solid {
    font-size: 1rem;
    /* 46px - 56px */
    line-height: clamp(2.875rem, 5.5vw, 3.5rem);
    text-decoration: none;
    font-weight: 700;
    text-align: center;
    margin: 0;
    color: #000;
    min-width: 9.375rem;
    padding: 0 1.5rem;
    background-color: var(--primary);
    border-radius: 0.25rem;
    display: inline-block;
    position: relative;
    z-index: 1;
    /* prevents padding from adding to the width */
    box-sizing: border-box;
  }
  #cta-403 .cs-button-solid:before {
    content: "";
    position: absolute;
    height: 100%;
    width: 0%;
    background: #fff;
    opacity: 1;
    top: 0;
    left: 0;
    z-index: -1;
    border-radius: 0.25rem;
    transition: width 0.3s;
  }
  #cta-403 .cs-button-solid:hover:before {
    width: 100%;
  }
}
/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
  #cta-403 .cs-background {
    /* clips the black slant so it doesnt overflow */
    overflow: hidden;
  }
  #cta-403 .cs-background:before {
    width: 40%;
    opacity: 1;
  }
  #cta-403 .cs-background:after {
    /* black slant */
    content: "";
    width: 31.25rem;
    height: 93.75rem;
    margin-right: -3.125rem;
    background: -moz-linear-gradient(
      left,
      #1a1a1a 0%,
      #1a1a1a 57%,
      rgba(26, 26, 26, 0) 100%
    );
    background: -webkit-linear-gradient(
      left,
      #1a1a1a 0%,
      #1a1a1a 57%,
      rgba(26, 26, 26, 0) 100%
    );
    background: linear-gradient(
      to right,
      #1a1a1a 0%,
      #1a1a1a 57%,
      rgba(26, 26, 26, 0) 100%
    );
    opacity: 1;
    position: absolute;
    display: block;
    top: 50%;
    right: 50%;
    transform: rotate(10deg) translateY(-50%);
  }
  #cta-403 .cs-background img {
    width: 60%;
    object-position: right;
    left: auto;
    right: 0;
  }
  #cta-403 .cs-container {
    flex-direction: row;
    justify-content: space-between;
  }
  #cta-403 .cs-content {
    text-align: left;
    align-items: flex-start;
    width: 45%;
  }
  #cta-403 .cs-text,
  #cta-403 .cs-title {
    margin-left: 0;
  }
}
