/************ CONTACT FORM ***************/
/*****************************************/
/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
    #cs-contact-485 {
        padding: var(--sectionPadding);
        padding-top: 4rem;
        position: relative;
        z-index: 1;
    }
    #cs-contact-485 .cs-container {
        width: 100%;
        /* changes to 1440px at tablet */
        max-width: 34.375em;
        margin: auto;
        /* 20px - 80px */
        padding: clamp(1.25rem, 5.5vw, 5rem);
        /* prevents padding and border from affecting height and width */
        box-sizing: border-box;
        background-color: #14142b;
        /* 12px - 24px */
        border-radius: clamp(0.75rem, 3vw, 1.5rem);
        /* clips the glowing orb */
        overflow: hidden;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 3rem;
        position: relative;
        z-index: 1;
    }
    #cs-contact-485 .cs-container:before {
        /* glowing orb */
        content: "";
        width: 77.5rem;
        height: 7.625rem;
        background: #f1f1f4;
        opacity: 0.21;
        -webkit-filter: blur(152px);
        filter: blur(152px);
        transform: translateX(-50%) rotate(-38.5deg);
        position: absolute;
        display: block;
        top: 30%;
        left: 50%;
        z-index: -1;
    }
    #cs-contact-485 .cs-content {
        /* set text align to left if content needs to be left aligned */
        text-align: left;
        width: 100%;
        max-width: 36.75rem;
        display: flex;
        flex-direction: column;
        /* centers content horizontally, set to flex-start to left align */
        align-items: flex-start;
    }
    #cs-contact-485 .cs-title {
        font-size: var(--headerFontSize);
        font-weight: 900;
        line-height: 1.2em;
        text-align: inherit;
        max-width: 43.75rem;
        margin: 0 0 1rem 0;
        color: var(--headerColor);
        position: relative;
    }
    #cs-contact-485 .cs-text {
        font-size: var(--bodyFontSize);
        line-height: 1.5em;
        text-align: inherit;
        width: 100%;
        max-width: 40.625rem;
        margin: 0;
        color: var(--bodyTextColorWhite);
    }
    #cs-contact-485 .cs-title {
        max-width: 16ch;
        color: var(--bodyTextColorWhite);
    }
    #cs-contact-485 .cs-color {
        color: var(--primaryLight);
    }
    #cs-contact-485 .cs-text {
        /* 14px - 16px */
        font-size: clamp(0.875rem, 1.5vw, 1rem);
        /* 24px - 36px, matches the padding-bottom */
        margin: 0 0 clamp(1.5rem, 4vw, 2.25rem) 0;
        /* 24px - 36px */
        padding-bottom: clamp(1.5rem, 4vw, 2.25rem);
        color: var(--bodyTextColorWhite);
        position: relative;
    }
    #cs-contact-485 .cs-text:before {
        /* dashed border effect, by using this method we can control the width of the dashed lines */
        content: "";
        width: 100%;
        height: 1px;
        background-image: linear-gradient(
            90deg,
            #b3bac5,
            #b3bac5 50%,
            transparent 50%,
            transparent 0%
        );
        /* change the first left rem value to change the length of the dashes */
        background-size: 0.6rem 1px;
        opacity: 1;
        position: absolute;
        display: block;
        bottom: 0;
        left: 0;
    }
    #cs-contact-485 .cs-heading {
        /* 16px - 20px */
        font-size: clamp(1rem, 2vw, 1.25rem);
        line-height: 1.5em;
        font-weight: 700;
        text-align: left;
        color: var(--bodyTextColorWhite);
        display: block;
    }
    #cs-contact-485 .cs-heading:last-of-type {
        /* make the last one have the margin bottom to create the space between the contact info */
        margin-bottom: 0.75rem;
    }
    #cs-contact-485 .cs-link {
        /* 14px - 16px */
        font-size: clamp(0.875rem, 1.5vw, 1rem);
        line-height: 1.5em;
        font-weight: 400;
        text-align: left;
        text-decoration: none;
        margin: 0;
        color: var(--bodyTextColorWhite);
        display: block;
    }
    #cs-contact-485 #cs-form-485 {
        width: 100%;
        max-width: 38.625rem;
        padding: 2rem 1.5rem;
        background-color: #fff;
        /* prevents padding and border from affecting height and width */
        box-sizing: border-box;
        border-radius: 0.75rem;
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
        row-gap: 1.25rem;
    }
    #cs-contact-485 .cs-h3 {
        /* 20px - 31px */
        font-size: clamp(1.25rem, 4vw, 1.9375rem);
        line-height: 1.2em;
        font-weight: 700;
        text-align: left;
        width: 100%;
        /* 4px + the 20px gap on the #cs-form */
        margin: 0 0 0.25rem 0;
        color: #14142b;
    }
    #cs-contact-485 .cs-label {
        font-size: 1rem;
        line-height: 1.5em;
        width: 100%;
        margin: 0 0 0.375rem 0;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        color: #14142b;
    }
    #cs-contact-485 .cs-input,
    #cs-contact-485 .cs-textarea,
    #cs-contact-485 #cs-select-485 {
        font-size: 1rem;
        font-family: inherit;
        width: 100%;
        height: 3rem;
        margin: 0;
        padding: 0 1.25rem;
        /* prevents padding from affecting width and height */
        box-sizing: border-box;
        border-radius: 0.5rem;
        border: 1px solid #b4b2c7;
        background-color: transparent;
    }
    #cs-contact-485 .cs-input::placeholder,
    #cs-contact-485 .cs-textarea::placeholder,
    #cs-contact-485 #cs-select-485::placeholder {
        color: #7d799c;
        font-size: 1rem;
    }
    #cs-contact-485 .cs-textarea {
        min-height: 9.375rem;
        padding-top: 0.625rem;
    }
    #cs-contact-485 .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: #fff;
        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;
    }
    #cs-contact-485 .cs-button-solid:before {
        content: "";
        position: absolute;
        height: 100%;
        width: 0%;
        background: #000;
        opacity: 1;
        top: 0;
        left: 0;
        z-index: -1;
        border-radius: 0.25rem;
        transition: width 0.3s;
    }
    #cs-contact-485 .cs-button-solid:hover:before {
        width: 100%;
    }
    #cs-contact-485 .cs-button-solid {
        /* button override */
        width: 100%;
        border: none;
    }
    #cs-contact-485 .cs-background {
        width: 100%;
        height: 100%;
        display: block;
        position: absolute;
        top: 0;
        left: 0;
        z-index: -1;
    }
    #cs-contact-485 .cs-background:before {
        /* background color overlay */
        content: "";
        position: absolute;
        display: block;
        height: 100%;
        width: 100%;
        background: rgba(0, 0, 0, 0.5);
        backdrop-filter: blur(5px);
        -webkit-backdrop-filter: blur(5px);
        top: 0;
        left: 0;
        z-index: 1;
    }
    #cs-contact-485 .cs-background img {
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
        width: 100%;
        /* Makes img tag act as a background image */
        object-fit: cover;
    }
}
/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
    #cs-contact-485 .cs-container {
        max-width: 90rem;
        flex-direction: row;
        justify-content: space-between;
    }
    #cs-contact-485 .cs-label:nth-of-type(1),
    #cs-contact-485 .cs-label:nth-of-type(2) {
        width: clamp(45%, 17vw, 48.5%);
    }
}
/* Dark Mode */
@media only screen and (min-width: 0rem) {
    body.dark-mode #cs-contact-485 .cs-container {
        background-color: var(--bannerBGdark);
    }
    body.dark-mode #cs-contact-485 #cs-form-485 {
        background: var(--medium);
    }
    body.dark-mode #cs-contact-485 .cs-h3 {
        color: white;
    }
    body.dark-mode #cs-contact-485 .cs-label {
        color: white;
    }
    body.dark-mode #cs-contact-485 #cs-select-485 {
        color: white;
    }
    body.dark-mode #cs-contact-485 #cs-select-485 option {
        color: black;
    }
    body.dark-mode #cs-contact-485 .cs-input::placeholder,
    body.dark-mode #cs-contact-485 .cs-textarea::placeholder,
    body.dark-mode #cs-contact-485 #cs-select-485::placeholder {
        color: white;
    }
    body.dark-mode #cs-contact-485 .cs-background:before {
        background: rgba(0, 0, 0, 0.8);
    }
}

/************* MAP ***********************/
/*****************************************/
/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  #map-1834 {
    min-height: 33.75rem;
    padding: var(--sectionPadding);
    /* 268px - 450px */
    padding-top: clamp(16.75rem, 20vw, 28.125rem);
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
  }
  #map-1834 .cs-icon {
    width: 3.25rem;
    height: auto;
    display: block;
    position: absolute;
    top: 7rem;
  }
  #map-1834 .cs-container {
    width: 100%;
    max-width: 20.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
  }
  #map-1834 .cs-card-group {
    width: 100%;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    /* 16px - 20px */
    gap: clamp(1rem, 2.5vw, 1.25rem);
  }
  #map-1834 .cs-item {
    text-align: center;
    list-style: none;
    width: 100%;
    max-width: 28.875rem;
    /* prevents padding from affecting height and width */
    box-sizing: border-box;
    /* 32px - 40px top & bottom */
    /* 16px - 32px left & right */
    padding: clamp(2rem, 3vw, 2.5rem) clamp(1rem, 4.2vw, 2rem);
    background-color: var(--dark);
    overflow: hidden;
    border-radius: 16.25rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    grid-column: span 12;
    /* 8px - 12px */
    gap: clamp(0.5rem, 1.2vw, 0.75rem);
    position: relative;
    z-index: 1;
    transition: background-color 0.3s;
  }
  #map-1834 .cs-item:before {
    content: '';
    width: 100%;
    height: 100%;
    background: var(--primary);
    opacity: 0.05;
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    z-index: -1;
  }
  #map-1834 .cs-item:hover {
    background-color: var(--accent);
    cursor: pointer;
  }
  #map-1834 .cs-item:hover .cs-h2 {
    color: var(--bodyTextColorWhite);
  }
  #map-1834 .cs-item:hover .cs-item-text {
    color: var(--bodyTextColorWhite);
    opacity: 0.9;
  }
  #map-1834 .cs-h2 {
    /* 20px - 25px */
    font-size: clamp(1.25rem, 2.5vw, 1.5625rem);
    font-weight: 700;
    line-height: 1.2em;
    margin: 0;
    color: var(--bodyTextColorWhite);
  }
  #map-1834 .cs-item-text {
    /* 14px - 16px */
    font-size: clamp(0.875rem, 1.6vw, 1rem);
    line-height: 1.5em;
    margin: 0;
    color: var(--bodyTextColorWhite);
  }
  #map-1834 .cs-background {
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
  }
  #map-1834 .cs-background iframe {
    width: 100%;
    height: 100%;
    /* Makes img tag act as a background image */
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
  }
  #map-1834 .cs-background:before {
    content: "";
    width: 100%;
    height: 100%;
    background: #000000;
    opacity: 0.16;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    /* prevents the mouse from interacting with it */
    pointer-events: none;
  }
}
/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
  #map-1834 .cs-container {
    max-width: 107.5rem;
  }
  #map-1834 .cs-item {
    max-width: 100%;
    grid-column: span 6;
  }
}
/* Large Desktop - 1300px */
@media only screen and (min-width: 81.25rem) {
  #map-1834 .cs-item {
    grid-column: span 3;
  }
}
/* Dark Mode */
@media only screen and (min-width: 0rem) {
    body.dark-mode #map-1834 .cs-background:before {
        opacity: 0.3;
    }
}
