html {
    scroll-behavior: smooth;
}

body {
    margin: 0px;
}

.contact-us-section {
    position: relative;
    min-height: 500px;
    width: 70%;
    margin: auto;
    margin-top: 20px;
    font-family: Santral;
}

.contact-us-header {
    font-family: SterlingDisplay Roman;
    font-size: 36px;
    border-bottom: 1px solid rgb(200, 200, 200);
}

.message-textarea {
    display: block;
    min-height: 100px;
    min-width: 400px;
    padding: 10px;
    height: 200px;
    width: 50%;
    margin-top: 40px;
    font-family: Nunito;
    font-size: 14px;
    background-color: rgb(250, 250, 250);
    border-radius: 10px;
    border: 1px solid rgb(200, 200, 200);
}

.message-textarea:focus {
    outline-color: black;
}

.character-counter {
    font-family: Santral Medium;
    font-size: 12px;
}

.email-input-wrap {
    position: relative;
    opacity: 1;
    transform: translateY(0px);
    transition: 0.5s;
}

.email-input-wrap-disappear {
    position: absolute;
    opacity: 0;
    transform: translateY(-10px);
    z-index: -1;
}

.email-input-title {
    display: block;
    margin-top: 10px;
    color: rgb(60, 60, 60);
    font-family: Santral Medium;
    font-size: 14px;
}

.message-email-input {
    display: inline-block;
    padding: 4px 0px 4px 10px;
    font-family: Nunito;
    font-size: 14px;
    background-color: rgb(250, 250, 250);
    border: 1px solid rgb(200, 200, 200);
}

.message-email-input:focus {
    outline-color: black;
}

.send-button-email-disclaimer-wrap {
    transition: 0.2s;
}

.error-warning {
    display: inline-block;
    max-height: 0px;
    color: red;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
    font-size: 12px;
    overflow: hidden;
    transition: 0.2s;
}

.error-show {
    max-height: 100px;
}

.send-message-button {
    display: block;
    height: 40px;
    width: 120px;
    margin-top: 10px;
    color: white;
    font-family: Montserrat;
    background-color: rgb(20, 20, 20);
    border-radius: 10px;
    border: none;
    transition: background-color 0.2s;
}

    .send-message-button:hover {
        cursor: pointer;
        background-color: rgb(238, 36, 69);
    }

.email-disclaimer {
    display: block;
    font-size: 12px;
    opacity: 1;
    transition: 0.3s;
}

.contact-us-email-subheader {
    margin-bottom: 4px;
    font-size: 16px;
}

.aurum-email-text {
    font-family: Santral Bold;
    font-weight: bold;
}

.message-sent-wrap {
    display: none;
    padding-top: 50px;
    padding-bottom: 50px;
}

.message-sent-notification {
    display: inline-block;
    width: 100%;
    font-size: 14px;
}

.send-another-message-button {
    display: inline-block;
    height: 40px;
    margin-top: 10px;
    padding-left: 20px;
    padding-right: 20px;
    color: white;
    font-family: Montserrat;
    background-color: rgb(20, 20, 20);
    border-radius: 10px;
    border: none;
    transition: background-color 0.2s;
}

    .send-another-message-button:hover {
        cursor: pointer;
        background-color: rgb(238, 36, 69);
    }

.contact-us-ring-background-image {
    position: absolute;
    top: 0px;
    right: 0px;
    filter: invert(100%) sepia(0%) saturate(7254%) hue-rotate(51deg) brightness(118%) contrast(57%);
    z-index: -1;
}

@media only screen and (max-width: 768px) {
    .prevent-scrolling {
        overflow: hidden;
    }

    .contact-us-section {
        width: 100%;
        padding-left: 20px;
        padding-right: 20px;
        margin-top: 20px;
        font-family: Nunito;
        box-sizing: border-box;
    }

    .contact-us-content {
        font-size: 14px;
    }

    .message-textarea {
        height: 140px;        
        width: 100%;
        min-width: 0px;
        margin-top: 20px;
        font-family: Santral Medium;
        background-color: rgba(250, 250, 250, 0.8);
    }
    
    .send-message-button {
        font-family: Santral Medium;
    }

    .error-warning {
        font-family: Nunito;
    }

    .message-email-input {
        height: 32px;
        width: 200px;
        border-radius: 10px;
    }

    .contact-us-email-subheader {
        font-size: 14px;
    }

    .aurum-email-text {
        font-size: 14px;
    }

    .send-another-message-button {
        margin-top: 4px;
        font-family: Santral Medium;
    }

    .contact-us-ring-background-image {
        filter: invert(100%) sepia(6%) saturate(531%) hue-rotate(222deg) brightness(114%) contrast(90%);
    }
}

@media only screen and (max-width: 285px) {
    .email-wrap {
        display: flex;
        flex-direction: column;
    }
}