@charset "UTF-8";
*{
    padding:0;
    margin:0;
}
body{
    background-color: black;
}
/*-----------------------------------------*/
        /* Contact Section Starts */
/*-----------------------------------------*/
.contact{
    width: 100%;
    height: auto;
    background: rgba(0, 0, 0, 0.541);
    background-image: url("/static/images/charlotte_skyline-contact.jpg");
    background-size: cover;     
    background-position: center;  
    background-repeat: no-repeat; 
    position: relative;
    z-index: 0;
}
.contact::after {
    content: "";
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    background: #00000041;
    z-index: 0;
}
.contact-section{
    width: 90%;
    height: auto;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}
.contact-section-main_content{
    display: flex;
    flex-direction: row;
    width: 100%;
    height: auto;
    padding: 7vw 0vw;
    justify-content: center;
    align-items: center;
    gap: 3vw;
}
.contact-section-info{
    display: flex;
    flex-direction: column;
    margin-top: 3vw;
    width: 40%;
}
.contact-section-info-header{
    display: block;
    width: 90%;
    margin-bottom: 2vw;
    h1{
        font-size: 2.85em;
        font-weight: 600;
        color: white;
    }
}
.contact-section-info-subheader{
    font-size: 1.35em;
    margin-bottom: 1.5vw;
    color: white;
}
.contact-section-info-contact_labels{
    display: flex;
    flex-direction: column;
    width: 85%;
    div:not(.contact-section-info-contact_labels-slogan){
        font-size: 1.25em;
        margin-bottom:0.75vw;
        div{
            display: flex;
            align-items: center;
            a{
                text-decoration: none;
                span{
                    color: white;
                    font-weight: 700;
                    letter-spacing: 1px;
                }
            }
        }
    }
}
.contact-section-socials{
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-top: 2vw;
}
.contact-section-info-contact_labels-slogan{
    color: white;
    font-weight: bold;
    font-size: 1.35em;
    margin-right: 1vw;
}
.contact-section-info-social_media{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    height: auto;
    width: 35%;
    margin-bottom: 0 !important;
    svg{
        height: 2vw;
        width: auto;
        path{
            fill: white;
        }
    }
}
#youtube-logo-contact{
    transform: translateX(0.25vw);
}
.contact-icon path:nth-of-type(1) {
    transition: fill 0.5s ease;
}
.contact-icon:hover path:nth-of-type(1) {
    fill: #F07452;
}
.contact-section-main_content-form_layout{
    display: flex;
    flex-direction: column;
    width: 40%;
    padding: 3vw;
    background: #0a314ace;
    backdrop-filter: blur(5px);  
    border-radius: 2rem;
    z-index: 0;
}
.contact-section-form-separator{
    border: none;
    background: #ffffff2f;
    margin: 0 0 1.5vw 0;
    height: 2px;
    width: 100%;
}
.contact-section-form-input_field{
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 0.25vw;
    z-index: 1;
    position: relative;
}
.contact-section-form-row {
    display: flex;
    flex-direction: column;
    width: 100%;
}
.two-columns {
    display: inherit;
    flex-direction: row;
    justify-content: space-between;
    gap: 2vw;
}
.half-column {
    width: 50%;
    display: flex;
    flex-direction: column;
}
.contact-section-form-input{
    border: 1px solid transparent;
    padding: 0.5vw 0 0vw 0vw;
    font-size: 1em;
    outline: none;
    margin-bottom: 0.25vw;
    color: rgba(255, 255, 255, 0.39);
}
select{
    background: transparent;
    > option{
        background: #14416c !important;
        color: rgba(255, 255, 255, 0.75);
        font-weight: 500;
    }
}
input{
    background-color: transparent;
}
input::placeholder{
    color: white;
}
.form-input-title{
    font-size: 1.25vw;
    color: white;
    font-weight: 700;
}
.contact-section-form-message-box {
    height: auto;
    min-height: 1.15em;
    max-height: 15vh;
    overflow-y: auto; 
    resize: none; 
    border: 1px solid transparent;
    color: white;
    padding: 0.5vw 0 0 0vw;
    width: 100%;
    outline: none;
    font-size: 1.15em;
    box-sizing: border-box;
}
textarea{
    background-color: transparent;
    color: black;
    height: auto;
}
textarea::placeholder {
  color: rgba(255, 255, 255, 0.39);
  opacity: 1; 
}
input::placeholder {
  color: rgba(255, 255, 255, 0.39);
  opacity: 1; 
  font-size: 0.75vw;
}
.contact-section-form-notice{
    color: white;
    font-size: 1vw;
}
.contact-section-form-submit{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    padding: 1rem 6rem 1rem 1.5rem;
    margin-top: 3vw;
    border: 1px solid white;
    border-radius: 2rem;
    background: rgba(255, 255, 255, 0.137);
    cursor: pointer;
    transition: 1s ease-in-out;
    position: relative;
    span:nth-child(1){
        font-size: 1vw;
        color: white;
        font-weight: 500;
        letter-spacing: 1px;
    }
}
.contact-section-form-submit:hover{
    transition: 0.5s ease-in-out 0.3s;
    background: transparent;
    border: 1px solid transparent;
    .submit-arrow{
        width: 100%;
        height: 100%;
        border-radius: 2rem;
        left: 0;
        transition: 0.5s ease-in-out 0.15s;
        svg{
            transform: rotate(45deg);
            transition: 0.5s ease-in-out;
        }
    }
}
.submit-arrow {
    display: flex;
    align-items: center;
    position: absolute;
    width: 2vw;
    height: 2vw;
    left: 9rem;
    border-radius: 50%;
    background: #F07452;
    transition: 0.5s ease-in-out;
    transform-origin: right center;
    svg{
        position: absolute;
        right: 0.65vw;
        width: 0.75vw;
        height: auto;
        display: block;
        transition: 0.5s ease-in-out;
    }
}
.submit-input{
    visibility: hidden;
    position: absolute;
}
.input-error-message{
    display: none;
    color: #F07452;
    font-size: 0.85em;
}
.form-submit-error-message{
    color: #F07452;
    font-size: 0.85em;
}
.submit-form-message{
    color: #0D813D;
    margin-top: 1.25vw;
    font-size: 0.85em;
}
/* --------------------- */
/*  DESKTOP BREAKPOINTS  */
/* --------------------- */
/* Small Desktops and Laptops */
@media (min-width: 1201px) and (max-width: 1680px) {
    /*---------------------------------*/
    /*      Contact Section Starts     */
    /*---------------------------------*/
    
    .contact-section-main_content {
        margin: unset;
        padding: 8vw 0vw 10vw 0vw;
        gap: 4vw;
    }
    .contact-section-info {
        width: 45%;
    }
    .contact-section-info-header{
        width: 100%;
        h1 {
            font-size: 2.15rem;
        }
    }
    .contact-section-info-contact_labels {
        width: 100%;
        div:not(.contact-section-info-contact_labels-slogan) {
            font-size: 1.35rem;
            margin-bottom: 1vw;
        }
    }
    .contact-section-info-contact_labels-slogan {
        font-size: 1.75rem;
        margin-right: 2vw;
    }
    .contact-section-info-social_media {
        svg {
            height: 3vw;
        }
    }
    .contact-section-info-subheader {
        font-size: 1.5rem;
        margin-bottom: 3vw;
    }
    .contact-section-main_content-form_layout {
        width: 40%;
    }
    .contact-section-form-input_field{
        width: 100%;
        gap: 1.25vw;
    }
    .form-input-title {
        font-size: 1.35rem;
    }
    .contact-section-form-row {
        display: flex;
        flex-direction: column;
        width: 100%;
    }
    .two-columns{
        flex-direction: row ;
        justify-content: space-between;
        gap: 2vw;
    }
    .contact-section-form-input{
        padding: 1vw 0 1vw 0vw;
        font-size: 1rem;
    }
    .contact-section-form-separator {
        height: 0.25vw;
        width: 100%;
    }
    .contact-section-form-message-box{
        height: 4.5vh;
        padding: 1vw 0 1vw 0vw;
        min-height: 4.5vh;
        max-height: 12.5vh;
        font-size: 1.25em;
    }
    textarea::placeholder {
        color: rgba(255, 255, 255, 0.39);
        opacity: 1; 
        font-size: 1.1rem;
        padding: 0;
    }
    input::placeholder {
        color: rgba(255, 255, 255, 0.39);
        opacity: 1; 
        font-size: 0.95rem;
    }
    .contact-section-form-submit {
        padding: 15px 55px 15px 30px;
        margin-top: 2vw;
        span:nth-child(1) {
            font-size: 1.15rem;
        }
    }
    .submit-arrow{
        width: 2vw;
        height: 2vw;
        left: 7.5rem;
        svg{
            width: 1vw;
            right: 0.5vw;
        }
    }
    .contact-section-form-notice{
        color: white;
        font-size: 1.25rem;
    }
    .input-error-message{
        margin-left: 0;
        font-size: 1rem;
    }
    .form-submit-error-message{
        margin-top: 3vw;
        font-size: 1rem;
    }
    .submit-form-message{
        margin-top: 3vw;
        font-size: 1rem;
    }
}

/* --------------------- */
/*   TABLET BREAKPOINTS  */
/* --------------------- */
@media (min-width: 768px) and (max-width: 1200px) and (orientation: portrait) {
    /*---------------------------------*/
        /* Contact Section Starts */
    /*---------------------------------*/
    .contact-section{
        width: 100%;
    }
    .contact-section-main_content{
        flex-direction: column;
        width: 75%;
        margin: 0 auto;
        padding:10vw 0vw 15vw 0;
        gap: 5vw;
    }
    .contact-section-info{
        width: 100%;
    }
    .contact-section-info-header{
        width: 100%;
        h1{
            font-size: 2.5rem;
        }
    }
    .contact-section-info-subheader{
        font-size: 1.25rem;
        margin: 1vw 0 5vw 0;
        font-weight: 400;
    }
    .contact-section-info-contact_labels{
        width: 100%;
        div:not(.contact-section-info-contact_labels-slogan){
            font-size: 1.25rem;
            margin-bottom:1.25vw;
        }
    }
    .contact-section-info-contact_labels-slogan{
        font-size:1.5rem;
        margin-right: 5vw;
        margin-top: 1.5vw;
    }
    .contact-section-socials{
        margin-top: 0vw;
    }
    .contact-section-info-social_media{
        width: 50%;
        margin-top: 2vw;
        margin-bottom: 9vw;
        justify-content: unset;
        gap: 2vw;
        svg{
            height: 5vw;
            width: auto;
        }
    }
    .contact-section-main_content-form_layout{
        width: 90%;
        border-radius: 1rem;
        padding: 5vw 5vw;
    }
    .contact-section-form-separator{
        margin: 0 0 3vw 0;
        height: 0.3vw;
        width: 100%;
    }
    .form-input-title{
        font-size: 1.75rem;
    }
    .contact-section-form-input_field{
        width: 100%;
        gap: 1vw;
        margin-bottom: 2vw;
    }
    .contact-section-form-input{
        padding: 1vw 0 1vw 0vw;
        font-size: 1.1rem;
    }
    .contact-section-form-message-box{
        padding: 3vw 0 1vw 0vw;
        min-height: 5vh;
        max-height: 20vh;
        font-size: 0.85rem;
    }
    .contact-section-form-submit{
        margin-top: 6vw;
        padding: 0.75rem 4rem 0.75rem 1.5rem;
        span:nth-child(1){
            font-size: 1.5rem;
        }
    }
    .submit-arrow{
        width: 4vw;
        height: 4vw;
        left: 8.75rem;
        svg{
            width: 2vw;
            right: 1.1vw;
        }
    }
    .contact-section-form-row {
        display: flex;
        flex-direction: column;
        width: 100%;
    }
    .two-columns {
        display: inherit;
        flex-direction: column;
        justify-content: space-between;
        gap: 0vw;
    }
    .half-column {
        width: 100%;
        display: flex;
        flex-direction: column;
    }
    textarea{
        background-color: transparent;
        color: black;
        height: auto;
    }
    textarea::placeholder {
        color: rgba(255, 255, 255, 0.39);
        opacity: 1; 
        font-size: 1.25rem;
        padding: 0;
    }
    input::placeholder {
        color: rgba(255, 255, 255, 0.39);
        opacity: 1; 
        font-size: 1.1rem;
    }
    .contact-section-form-notice{
        color: white;
        font-size: 1.2rem;
    }
    .input-error-message{
        margin-left: 0;
        font-size: 1.2rem;
    }
    .form-submit-error-message{
        margin-top: 3vw;
        font-size: 1.2rem;
    }
    .submit-form-message{
        margin-top: 3vw;
        font-size: 1.2rem;
    }
}
  
@media (min-width: 768px) and (max-width: 1200px) and (orientation: landscape) {
    /*---------------------------------*/
    /*      Contact Section Starts     */
    /*---------------------------------*/
    .contact-section-main_content {
        margin: unset;
        padding: 8vw 0vw 10vw 0vw;
        gap: 4vw;
    }
    .contact-section-info {
        width: 45%;
    }
    .contact-section-info-header{
        width: 100%;
        h1 {
            font-size: 2.15rem;
        }
    }
    .contact-section-info-contact_labels {
        width: 100%;
        div:not(.contact-section-info-contact_labels-slogan) {
            font-size: 1.35rem;
            margin-bottom: 1.5vw;
        }
    }
    .contact-section-info-contact_labels-slogan {
        font-size: 1.75rem;
        margin-right: 2vw;
    }
    .contact-section-info-social_media {
        svg {
            height: 3.5vw;
        }
    }
    .contact-section-info-subheader {
        font-size: 1.5rem;
        margin-bottom: 3vw;
    }
    .contact-section-main_content-form_layout {
        width: 40%;
    }
    .contact-section-form-input_field{
        width: 100%;
        gap: 1.25vw;
    }
    .form-input-title {
        font-size: 1.35rem;
    }
    .contact-section-form-row {
        display: flex;
        flex-direction: column;
        width: 100%;
    }
    .two-columns{
        flex-direction: row !important;
        justify-content: space-between;
        gap: 2vw;
    }
    .contact-section-form-input{
        padding: 1vw 0 1vw 0vw;
        font-size: 1rem;
    }
    .contact-section-form-separator {
        height: 0.25vw;
        width: 100%;
    }
    .contact-section-form-message-box{
        height: 4.5vh;
        padding: 1vw 0 1vw 0vw;
        min-height: 4.5vh;
        max-height: 12.5vh;
        font-size: 1.25em;
    }
    textarea::placeholder {
        color: rgba(255, 255, 255, 0.39);
        opacity: 1; 
        font-size: 1.1rem;
        padding: 0;
    }
    input::placeholder {
        color: rgba(255, 255, 255, 0.39);
        opacity: 1; 
        font-size: 0.95rem;
    }
    .contact-section-form-submit {
        padding: 15px 45px 15px 30px;
        margin-top: 2vw;
        span:nth-child(1) {
            font-size: 1.15rem;
        }
    }
    .submit-arrow{
        width: 2.5vw;
        height: 2.5vw;
        left: 7rem;
        svg{
            width: 1.4vw;
            right: 0.5vw;
        }
    }
    .contact-section-form-notice{
        color: white;
        font-size: 1.15rem;
    }
    .input-error-message{
        margin-left: 0;
        font-size: 1rem;
    }
    .form-submit-error-message{
        margin-top: 3vw;
        font-size: 1rem;
    }
    .submit-form-message{
        margin-top: 3vw;
        font-size: 1rem;
    }
}

/* -------------------- */
/*  MOBILE BREAKPOINTS  */
/* -------------------- */
@media (max-width: 767px) and (orientation: portrait) {
    /*---------------------------------*/
        /* Contact Section Starts */
    /*---------------------------------*/
    .contact-section{
        width: 80%;
    }
    .contact-section-main_content{
        flex-direction: column;
        width: 100%;
        margin: 0 auto;
        padding:20vw 0vw 25vw 0;
        gap: 10vw;
    }
    .contact-section-info{
        width: 100%;
    }
    .contact-section-info-header{
        width: 100%;
        h1{
            font-size: 1.9rem;
        }
    }
    .contact-section-info-subheader{
        font-size: 1.1rem;
        margin: 1vw 0 10vw 0;
        font-weight: 400;
    }
    .contact-section-info-contact_labels{
        width: 100%;
        div:not(.contact-section-info-contact_labels-slogan){
            font-size: 1rem;
            margin-bottom:1.25vw;
        }
    }
    .contact-section-info-contact_labels-slogan{
        font-size:1.5rem;
        margin-right: 5vw;
        margin-top: 2vw;
    }
    .contact-section-socials{
        margin-top: 1vw;
    }
    .contact-section-info-social_media{
        width: 50%;
        margin-top: 2vw;
        margin-bottom: 9vw;
        svg{
            height: 9vw;
            width: auto;
        }
    }
    .contact-section-main_content-form_layout{
        width: 90%;
        border-radius: 1rem;
        padding: 8vw 6vw;
    }
    .contact-section-form-separator{
        margin: 0 0 4vw 0;
        height: 0.6vw;
        width: 90%;
    }
    .form-input-title{
        font-size: 1.25rem;
    }
    .contact-section-form-input_field{
        width: 100%;
        gap: 5vw;
        margin-bottom: 5vw;
    }
    .contact-section-form-input{
        padding: 2vw 0 1vw 0vw;
        font-size: 1.1rem;
    }
    .contact-section-form-message-box{
        padding: 3vw 0 1vw 0vw;
        min-height: 5vh;
        max-height: 20vh;
        font-size: 0.85rem;
    }
    .contact-section-form-submit{
        margin-top: 9vw;
        padding: 0.75rem 5rem 0.75rem 1.5rem;
        span:nth-child(1){
            font-size: 1.25rem;
        }
    }
    .submit-arrow{
        width: 8vw;
        height: 8vw;
        left: 8.5rem;
        svg{
            width: 4vw;
            right: 2vw;
        }
    }
    .contact-section-form-row {
        display: flex;
        flex-direction: column;
        width: 100%;
    }
    .two-columns {
        display: inherit;
        flex-direction: column;
        justify-content: space-between;
        gap: 2vw;
    }
    .half-column {
        width: 100%;
        display: flex;
        flex-direction: column;
    }
    textarea{
        background-color: transparent;
        color: black;
        height: auto;
    }
    textarea::placeholder {
        color: rgba(255, 255, 255, 0.39);
        opacity: 1; 
        font-size: 0.85rem;
        padding: 0;
    }
    input::placeholder {
        color: rgba(255, 255, 255, 0.39);
        opacity: 1; 
        font-size: 0.75rem;
    }
    .contact-section-form-notice{
        color: white;
        font-size: 1.15rem;
    }
    .input-error-message{
        margin-left: 0;
        font-size: 1.15rem;
    }
    .form-submit-error-message{
        margin-top: 3vw;
        font-size: 1.15rem;
    }
    .submit-form-message{
        margin-top: 3vw;
        font-size: 1.15rem;
    }
}
  
@media (max-width: 767px) and (orientation: landscape) {
    /*---------------------------------*/
        /* Contact Section Starts */
    /*---------------------------------*/
    .contact-section{
        width: 100%;
    }
    .contact-section-main_content{
        flex-direction: column;
        width: 60%;
        margin: 0 auto;
        padding:10vw 0vw 15vw 0;
        gap: 5vw;
    }
    .contact-section-info{
        width: 100%;
    }
    .contact-section-info-header{
        width: 100%;
        h1{
            font-size: 2rem;
        }
    }
    .contact-section-info-subheader{
        font-size: 1.25rem;
        margin: 1vw 0 5vw 0;
        font-weight: 400;
    }
    .contact-section-info-contact_labels{
        width: 100%;
        div:not(.contact-section-info-contact_labels-slogan){
            font-size: 1.25rem;
            margin-bottom:1.25vw;
        }
    }
    .contact-section-info-contact_labels-slogan{
        font-size:1.5rem;
        margin-right: 5vw;
        margin-top: 1.5vw;
    }
    .contact-section-socials{
        margin-top: 0vw;
    }
    .contact-section-info-social_media{
        width: 50%;
        margin-top: 2vw;
        margin-bottom: 9vw;
        justify-content: unset;
        gap: 2vw;
        svg{
            height: 5vw;
            width: auto;
        }
    }
    .contact-section-main_content-form_layout{
        width: 85%;
        border-radius: 1rem;
        padding: 5vw 5vw;
    }
    .contact-section-form-separator{
        margin: 0 0 3vw 0;
        height: 0.3vw;
        width: 100%;
    }
    .form-input-title{
        font-size: 1.5rem;
    }
    .contact-section-form-input_field{
        width: 100%;
        gap: 0vw;
        margin-bottom: 2vw;
    }
    .contact-section-form-input{
        padding: 1vw 0 1vw 0vw;
        font-size: 1.1rem;
    }
    .contact-section-form-message-box{
        padding: 3vw 0 1vw 0vw;
        min-height: 5vh;
        max-height: 20vh;
        font-size: 0.85rem;
    }
    .contact-section-form-submit{
        margin-top: 6vw;
        padding: 0.75rem 4rem 0.75rem 1.5rem;
        span:nth-child(1){
            font-size: 1.25rem;
        }
    }
    .submit-arrow{
        width: 4vw;
        height: 4vw;
        left: 8rem;
        svg{
            width: 2vw;
            right: 1.1vw;
        }
    }
    .contact-section-form-row {
        display: flex;
        flex-direction: column;
        width: 100%;
    }
    .two-columns {
        display: inherit;
        flex-direction: column;
        justify-content: space-between;
        gap: 0vw;
    }
    .half-column {
        width: 100%;
        display: flex;
        flex-direction: column;
    }
    textarea{
        background-color: transparent;
        color: black;
        height: auto;
    }
    textarea::placeholder {
        color: rgba(255, 255, 255, 0.39);
        opacity: 1; 
        font-size: 0.85rem;
        padding: 0;
    }
    input::placeholder {
        color: rgba(255, 255, 255, 0.39);
        opacity: 1; 
        font-size: 0.85rem;
    }
    .contact-section-form-notice{
        color: white;
        font-size: 1.15rem;
    }
    .input-error-message{
        margin-left: 0;
        font-size: 1.15rem;
    }
    .form-submit-error-message{
        margin-top: 3vw;
        font-size: 1.15rem;
    }
    .submit-form-message{
        margin-top: 3vw;
        font-size: 1.15rem;
    }
}