﻿#ContactUsContainer {
    background-color: #fff;
    color: #006b33;
}

.ContactInfoContainer {
    background-color: #006b33fa;
    font-size: clamp(16px,3vw,20px);
    color: #fff;
}
.user-input-wrp input:not(:focus):valid ~ .floating-label {
    top: 0px;
    left: 0px;
    font-size: 1rem;
    opacity: 1;
    color: #006b33;
}
.ContactEmail {
    color: #fff;
}

.inputText {
    width: 100%;
    border: none;
    outline: none;
    border-bottom: 1px solid #ADADAD;
    background: none;
    color: #5f5f5f;
}

.user-input-wrp {
    position: relative;
    margin-bottom: 8px;
}

    .user-input-wrp span.floating-label {
        position: absolute;
        left: 1px;
        top: 23px;
        color: #000;
        font-size: 1.1rem;
        pointer-events: none;
        transition: 0.2s ease all;
    }

    .user-input-wrp input:focus ~ .floating-label {
        top: 0px;
        left: 0px;
        font-size: 1rem;
        opacity: 1;
        color: #006b33;
    }

#ContactUsHeading {
    color: #006b33;
}

.custom-button-reverse {
    background-color: #006b33;
    border-radius: 7px;
    border: 1px solid #006b33;
    padding: 8px 10px;
    color: #fff;
}

    .custom-button-reverse:hover {
        background-color: #fff;
        border-radius: 7px;
        border: 1px solid #006b33;
        transition: 0.3s ease-in-out;
        color: #006b33;
    }

.custom-button {
    background-color: #006b33;
    border-radius: 7px;
    border: 1px solid #006b33;
    padding: 8px 10px;
    color: #fff;
    text-decoration:none;
}

    .custom-button:hover {
        background-color: #fff;
        border-radius: 7px;
        border: 1px solid #006b33;
        transition: 0.3s ease-in-out;
        color: #006b33;
        text-decoration: none;
    }
