/*-- -------------------------- -->
<---       Breadcrumbs         -->
<--- -------------------------- -*/

@media only screen and (min-width: 0px) {
  #breadcrumbs{
    padding: var(--sectionPadding);
    padding-top: 0.75rem;
    margin-top: 96px;
    padding-bottom: 0.75rem;
    border-top: 1px solid #292929;
    border-bottom: 1px solid #292929;
  }
  #breadcrumbs .cs-container{
    max-width: 1280px;
    display: flex;
    margin: auto;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
  }
  #breadcrumbs .arrow{
    width: 12px;
    height: 12px;
  }
  #breadcrumbs a{
    color: #bfbfbf;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s;
  }
  #breadcrumbs a:hover{
    color: var(--primary);
  }
  #breadcrumbs .current:hover{
    color: #e0e0e0;
  }
  #breadcrumbs .current{
    color: #e0e0e0;
  }
}
@media only screen and (min-width: 1024px) {
  #breadcrumbs{
    margin-top: 88px;
  }
}

/*-- -------------------------- -->
<---          Contact           -->
<--- -------------------------- -*/

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
    #contact-568 {
        padding: var(--sectionPadding);
        background-color: #0A0A0A;
        position: relative;
        z-index: 1;
        border-bottom: 1px solid #292929;
    }
    #contact-568 .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;
        /* changes to 20px at desktop */
        gap: 3rem;
    }
    #contact-568 .cs-left {
        max-width: 39.375rem;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 3rem;
    }
    #contact-568 .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-568 .cs-form {
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
        align-items: center;
        gap: 0.75rem;
    }
    #contact-568 .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-568 .cs-input {
        font-size: 1rem;
        width: 100%;
        height: 3.5rem;
        padding: 0;
        padding-left: 1.5rem;
        padding-right: 1.5rem;
        color: var(--headerColor);
        background-color: #191919;
        border: 1px solid #292929;
        /* prevents padding from adding to height and width */
        box-sizing: border-box;
        transition: border-color 0.3s;
    }
#contact-568 select.cs-input {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M2 4l4 4 4-4' fill='none' stroke='%23666' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 20px center;
    background-size: 12px;
    padding-right: 45px;
}
    #contact-568 .cs-input:invalid,
    #contact-568 .cs-input::placeholder{
        color: #bfbfbf;
        opacity: 0.6;
    }
    #contact-568 .cs-input:hover {
        border-color: var(--primary);
    }
    #contact-568 .cs-input:focus {
        outline: 1px solid var(--primary);
    }
    #contact-568 .cs-textarea {
        /* 120px - 192px */
        min-height: clamp(7.5rem, 28vw, 12rem);
        padding-top: 1.5rem;
        margin-bottom: 0.75rem;
        font-family: inherit;
    }
    #contact-568 .cs-submit {
        font-size: 1rem;
        text-transform: capitalize;
        line-height: 3.5rem;
        text-decoration: none;
        font-weight: 700;
        text-align: center;
        margin: 0;
        color: #1a1a1a;
        border: none;
        font-family: 'Segoe UI', 'Roboto', Arial, sans-serif;
        width: 100%;
        padding: 0 1.5rem;
        background-color: var(--primary);
        display: inline-block;
        position: relative;
        z-index: 1;
        /* prevents padding from adding to the width */
        box-sizing: border-box;
        transition: color 0.3s;
    }
    #contact-568 .cs-submit:before {
        content: "";
        position: absolute;
        height: 100%;
        width: 0%;
        background: #000;
        opacity: 1;
        top: 0;
        left: 0;
        z-index: -1;
        transition: width 0.3s;
    }
    #contact-568 .cs-submit:hover {
        color: #fff;
        cursor: pointer;
    }
    #contact-568 .cs-submit:hover:before {
        width: 100%;
    }
    #contact-568 .cs-right {
        width: 100%;
        /* 36px - 72px top & bottom */
        /* 44px - 60px left & right */
        padding: 24px;
        /* prevents padding and border from affecting height and width */
        box-sizing: border-box;
        background-color: #191919;
        border: 1px solid #292929;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }
    #contact-568 .right {
        width: 100%;
        box-sizing: border-box;
        display: flex;
        flex-direction: column;
        gap: 24px;
        align-items: flex-start;
    }
    #contact-568 .cs-header {
        /* 13px - 16px */
        font-size: clamp(0.8125rem, 1.5vw, 1rem);
        line-height: 1.2em;
        text-transform: uppercase;
        font-weight: 700;
        margin: 0 0 0.5rem 0;
        color: var(--primary);
        display: block;
    }
    #contact-568 .cs-link {
        /* 16px - 20px */
        font-size: 16px;
        line-height: 1.5em;
        font-weight: 700;
        text-decoration: none;
        /* 24px - 32px */
        margin: 0 0 1rem 0;
        color: #e0e0e0;
        display: flex;
        gap: 1rem;
        align-items: center;
    }
    #contact-568 .cs-link:last-of-type {
      margin-bottom: 0;
    }
    #contact-568 .cs-link:hover {
        text-decoration: underline;
    }
    #contact-568 .cs-phone {
        /* 56px - 96px */
        margin-bottom: clamp(3.5rem, 7vw, 6rem);
    }
    #contact-568 .cs-social {
        margin: 0;
        padding: 0;
        display: flex;
        justify-content: flex-start;
        align-items: center;
        /* 24px - 30px */
        gap: clamp(1.5rem, 3vw, 1.875rem);
    }
    #contact-568 .cs-li {
        list-style: none;
        margin: 0;
        padding: 0;
    }
    #contact-568 .cs-social-link {
        display: flex;
        justify-content: center;
        align-items: center;
        /* 42px - 50px */
        width: clamp(2.625rem, 8vw, 3.125rem);
        height: clamp(2.625rem, 8vw, 3.125rem);
        background-color: var(--headerColor);
        border-radius: 50%;
        transition:
            background-color 0.3s,
            transform 0.3s;
    }
    #contact-568 .cs-social-link:hover {
        background-color: var(--primary);
        transform: translateY(-0.25rem);
    }
    #contact-568 .cs-icon {
        width: auto;
        /* 18px - 24px */
        height: clamp(1.125rem, 1vw, 1.5rem);
    }
  #contact-568 .cs-table {
    width: 100%;
    background-color: #191919;
    border: 1px solid #292929;
    border-top: 4px solid var(--primary);
    position: relative;
  }
#contact-568 .cs-table::after {
  content: 'Available for 24/7 callout';
  position: absolute;
  left: 12px;
  bottom: -28px;
}

#contact-568 .cs-table::before {
  content: '*';
  position: absolute;
  left: 0;
  bottom: -28px;
  color: red;
}
  #contact-568 .cs-table tr {
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5em;
    padding: 1rem 1.5rem;
    color: var(--bodyTextColorWhite);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    /* last table row shouldn't have border - the outer table's border-bottom is used instead */
  }
  #contact-568 .cs-table tr:last-of-type {
    border: none;
  }
  #contact-568 .cs-table th,
  #contact-568 .cs-table td {
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5em;
    color: var(--bodyTextColorWhite);
  }
  #contact-568 .cs-table td {
    text-align: right;
  }
}
/* Tablet - 650px */
@media only screen and (min-width: 40.625rem) {
    #contact-568 .cs-label {
        width: 48.6%;
    }
    #contact-568 .cs-message {
        width: 100%;
    }
}
/* Small Desktop - 1024px */
@media only screen and (min-width: 64rem) {
    #contact-568 .cs-container {
        max-width: 1200px;
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start;
        gap: clamp(1rem, 8vw, 110px);
    }
    #contact-568 .right {
        width: 38.6%;
        max-width: 350px;
    }
    #contact-568 .cs-left {
      max-width: 750px;
    }
}

@media only screen and (min-width: 0px) {                           
  #cta-1071 .cs-container {
    max-width: 1200px;
  }
}