/*-- -------------------------- -->
<---          Banner            -->
<--- -------------------------- -*/
/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  #banner-1106-1112 {
    padding: var(--sectionPadding);
    padding-top: 23.125rem;
    padding-bottom: 18vw;
    /* clips the line from causing overflow issues for going off screen */
    overflow: hidden;
    position: relative;
    z-index: 1;
  }
  #banner-1106-1112 .cs-container {
    text-align: center;
    width: 100%;
    max-width: 80rem;
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
    gap: 0.75rem;
  }
  #banner-1106-1112 .cs-int-topper {
    font-size: var(--topperFontSize);
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.01em;
    margin: 0;
    padding: 0 0 0 1.25rem;
    color: var(--secondary);
    display: block;
    position: relative;
  }
  #banner-1106-1112 .cs-int-topper:before {
    /* yellow line */
    content: "";
    width: 50vw;
    height: 2px;
    background: var(--secondary);
    opacity: 1;
    position: absolute;
    display: block;
    top: 50%;
    right: 100%;
    transform: translateY(-50%);
  }
  #banner-1106-1112 .cs-int-title {
    /* 39px - 61px */
    font-size: clamp(2.4375rem, 6.3vw, 5.25rem);
    font-weight: 900;
    line-height: 1.2em;
    text-align: inherit;
    margin: 0;
    color: var(--bodyTextColorWhite);
    position: relative;
    text-transform: uppercase;
  }
  #banner-1106-1112 .cs-breadcrumbs {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  #banner-1106-1112 .cs-link {
    /* 16px - 20px */
    font-size: clamp(1rem, 1.5vw, 1.25rem);
    line-height: 1.2em;
    text-decoration: none;
    color: var(--bodyTextColorWhite);
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  #banner-1106-1112 .cs-link:last-of-type {
    /* remove the chevron on the last list item */
  }
  #banner-1106-1112 .cs-link:last-of-type::after {
    display: none;
  }
  #banner-1106-1112 .cs-link:after {
    /* chevron - added as pseudo to make adding and removing them easier */
    content: "";
    width: 1.875rem;
    height: 0.125rem;
    /* 12px - 24px */
    margin: 0 clamp(0.75rem, 2vw, 1.5rem);
    background-color: #fff;
  }
  #banner-1106-1112 .cs-link.cs-active {
    color: var(--secondary);
  }
  #banner-1106-1112 .cs-background {
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    top: 1rem;
    left: 0;
    z-index: -1;
  }
  #banner-1106-1112 .cs-background:before {
    /* background color overlay */
    content: "";
    position: absolute;
    display: block;
    height: 100%;
    width: 100%;
    background: -moz-linear-gradient(left, rgba(26, 26, 26, 0.94) 0%, rgba(26, 26, 26, 0) 100%);
    /* FF3.6-15 */
    background: -webkit-linear-gradient(left, rgba(26, 26, 26, 0.94) 0%, rgba(26, 26, 26, 0) 100%);
    /* Chrome10-25,Safari5.1-6 */
    opacity: 1;
    top: 0;
    left: 0;
    z-index: 1;
  }
  #banner-1106-1112 .cs-background img {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    /* Makes img tag act as a background image */
    object-fit: cover;
  }
  #banner-1106-1112 .cs-graphic {
    z-index: 10;
    position: absolute;
    bottom: -1px;
    left: 0;
    display: flex;
    align-items: flex-end;
    height: auto;
    width: 100%;
    pointer-events: none;
  }
}
/*-- -------------------------- -->
<---          Contact           -->
<--- -------------------------- -*/
/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  #contact-1780 {
    padding: var(--sectionPadding);
    padding-top: 15vw;
    padding-bottom: 15vw;
    background-color: #1d1c1c;
    overflow: hidden;
    position: relative;
    z-index: 1;
  }
  #contact-1780 .cs-container {
    width: 100%;
    /* changes to 1024 on desktop */
    max-width: 44rem;
    background-color: #1d1c1c;
    margin: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: stretch;
    /* 48px - 64px */
    gap: clamp(3rem, 5vw, 4rem);
  }
  #contact-1780 .cs-content {
    /* set text align to center if content needs to be centrally aligned */
    text-align: left;
    width: 100%;
    display: flex;
    flex-direction: column;
    /* aligns content to the left, set to center to centrally align */
    align-items: flex-start;
  }
  #contact-1780 .cs-form-group {
    /* set text align to left if content needs to be left aligned */
    text-align: center;
    width: 100%;
    /* resets to 0 at tablet */
    margin: auto;
    /* prevents padding and border from affecting height and width */
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    /* centers content horizontally, set to flex-start to left align */
    align-items: center;
  }
  #contact-1780 .cs-title {
    margin: 0 0 1.5rem;
    color: var(--bodyTextColorWhite);
  }
  #contact-1780 .cs-form {
    width: 100%;
    /* prevents flexbox from affecting height and width */
    box-sizing: border-box;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 1rem;
  }
  #contact-1780 .cs-label {
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.2em;
    color: var(--bodyTextColorWhite);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    grid-column: span 12;
    gap: 0.5rem;
  }
  #contact-1780 .cs-input {
    font-size: 1rem;
    width: 100%;
    /* 46px - 56px */
    height: clamp(2.875rem, 4.5vw, 3.5rem);
    /* prevents padding from adding to height and width */
    box-sizing: border-box;
    padding: 0;
    padding-left: 1.5rem;
    background-color: var(--dark);
    color: var(--bodyTextColorWhite);
    border: none;
  }
  #contact-1780 .cs-input::placeholder {
    color: var(--bodyTextColorWhite);
  }
  #contact-1780 .cs-textarea {
    font-family: inherit;
    min-height: 7.5rem;
    padding-top: 1.5rem;
  }
  #contact-1780 .cs-button-solid {
    font-size: clamp(1.125rem, 1.5vw, 1.25rem);
    /* 46px - 56px */
    line-height: clamp(2.875em, 5.5vw, 3.5em);
    text-decoration: none;
    font-weight: 700;
    text-align: center;
    margin: 0;
    color: var(--headerColor);
    min-width: 5rem;
    padding: 0 1rem;
    background-color: var(--primary);
    display: inline-block;
    position: relative;
    z-index: 1;
    /* prevents padding from adding to the width */
    box-sizing: border-box;
    border: 2px solid var(--headerColor);
    border-radius: 1rem;
    transition: all 0.4s;
  }
  #contact-1780 .cs-button-solid:hover {
    background-color: var(--secondary);
  }
  #contact-1780 .cs-submit {
    margin: 1rem 0 0;
    color: var(--headerColor);
    grid-column: span 12;
    justify-self: flex-start;
  }
  #contact-1780 .cs-submit:hover {
    cursor: pointer;
  }
  #contact-1780 .cs-info .cs-topper {
    letter-spacing: 0.05em;
  }
  #contact-1780 .cs-info-group {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
  #contact-1780 .cs-detail {
    font-size: var(--bodyFontSize);
    font-weight: 400;
    line-height: 1.2em;
    color: var(--bodyTextColorWhite);
    display: block;
    margin-bottom: 0.5rem;
    text-decoration: none;
  }
  #contact-1780 .cs-picture-group {
    width: 110%;
    height: 100vw;
    /* removed at desktop */
    max-height: 31.375rem;
    margin-top: 3rem;
    overflow: hidden;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
  }
  #contact-1780 .cs-iframe {
    width: 100%;
    height: 100%;
    display: block;
  }
  #contact-1780 .cs-top {
    top: 0;
  }
  #contact-1780 .cs-left {
    left: 4%;
    transform: rotate(270deg);
    transform-origin: left;
  }
  #contact-1780 .cs-bottom {
    bottom: 0;
    left: 0;
    transform: rotateX(180deg);
  }
  #contact-1780 .cs-dark {
    display: none;
  }
  #contact-1780 .cs-graphic {
    z-index: 10;
    position: absolute;
    bottom: -1px;
    display: flex;
    align-items: flex-end;
    height: auto;
    width: 100%;
    pointer-events: none;
  }
  #contact-1780 .cs-graphic2 {
    left: 0;
    top: -1px;
    bottom: auto;
    transform: scaleY(-1) scaleX(-1);
  }
}
/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
  #contact-1780 {
    /* using flex: 1 on both group elements to ensure they're both the same width */
  }
  #contact-1780 .cs-container {
    flex-direction: row;
    align-items: center;
  }
  #contact-1780 .cs-form-group {
    flex: 1;
  }
  #contact-1780 .cs-info-group {
    flex: 1;
  }
}
/* Desktop - 1024px */
@media only screen and (min-width: 64rem) {
  #contact-1780 .cs-container {
    max-width: 60rem;
    margin: 0 auto 0 0;
    padding: 2.5rem 1rem 2.5rem 5.5rem;
    border-radius: 1.5rem;
  }
  #contact-1780 .cs-picture-group {
    width: 90%;
    height: 100%;
    max-height: 100%;
    margin: 0;
    position: absolute;
    top: 0;
    right: 0;
    left: auto;
    z-index: -1;
    transform: none;
  }
  #contact-1780 .cs-picture-group {
    margin-left: -12.75rem;
    left: 50%;
  }
}
/* Large Desktop - 1300px */
@media only screen and (min-width: 81.25rem) {
  #contact-1780 .cs-label:nth-of-type(2),
  #contact-1780 .cs-label:nth-of-type(3) {
    grid-column: span 6;
  }
}
/* Largest Desktop - 1920px */
@media only screen and (min-width: 120rem) {
  #contact-1780 {
    padding-top: 7vw;
    padding-bottom: 9vw;
  }
  #contact-1780 .cs-container {
    margin: 0 auto;
    transform: translateX(-22rem);
  }
}
/* Dark Mode */
@media only screen and (min-width: 0rem) {
  body.dark-mode #contact-1780 {
    background-color: var(--dark);
  }
  body.dark-mode #contact-1780 .cs-container {
    background-color: var(--dark);
  }
  body.dark-mode #contact-1780 .cs-label,
  body.dark-mode #contact-1780 .cs-detail {
    color: var(--bodyTextColorWhite);
  }
  body.dark-mode #contact-1780 .cs-input {
    background-color: var(--medium);
    color: var(--bodyTextColorWhite);
    border-color: rgba(255, 255, 255, 0.2);
  }
  body.dark-mode #contact-1780 .cs-input::placeholder {
    color: #fff;
    opacity: 0.5;
  }
  body.dark-mode #contact-1780 .cs-light {
    display: none;
  }
  body.dark-mode #contact-1780 .cs-dark {
    display: block;
  }
}
