﻿#ContactUsContainer {
    background-color: #fff;
    color: #18184b;
}

.ContactInfoContainer {
    background-color: #18184b;
    font-size: clamp(16px,3vw,20px);
    color: #fff;
}
.user-input-wrp input:not(:focus):valid ~ .floating-label {
    top: 0px;
    left: 0px;
    font-family: 'Calibri-Bold';
    opacity: 1;
    color: #18184b;
}
.ContactEmail {
    color: #fff;
}
.ContactEmail:hover {
    color: #fff !important;
}

.inputText {
    width: 100%;
    border: none;
    outline: none;
    border-bottom: 1px solid #ADADAD;
    background: none;
    color: #000;
}

.user-input-wrp {
    position: relative;
    margin-bottom: 8px;
}

    .user-input-wrp span.floating-label {
        position: absolute;
        left: 1px;
        top: 23px;
        color: #000;
        
        pointer-events: none;
       transition: all 0.5s ease-in-out;
        font-size: clamp(16px, 3vw, 18px);
       font-family: 'Calibri';
    }

    .user-input-wrp input:focus ~ .floating-label {
        top: 0px;
        left: 0px;
        
        opacity: 1;
        color: #18184b;
         font-family: 'Calibri-Bold';
        /*font-family:'Calibri';*/
    }

#ContactUsHeading {
    color: #18184b;
    font-family: "Cambria-Bold";
    text-align: left !important;
}

.custom-button-reverse {
   
    border-radius: 7px;
    
    padding: 8px 10px;
   
    width: 116px;
    color: #fff;
    background-color: #18184b;
    border: 1px solid #18184b;
}

    .custom-button-reverse:hover {
        border-radius: 7px;
        transition: 0.3s ease-in-out;
        background-color: #fff;
        border: 1px solid #18184b;
        color: #18184b;
    }

.custom-button {
    background-color: #e6e6e6;
    border-radius: 7px;
    border: 1px solid #e6e6e6;
    padding: 8px 10px;
    color: #000;
}

    .custom-button:hover {
        background-color: #000;
        border-radius: 7px;
        border: 1px solid #000;
        transition: 0.3s ease-in-out;
        color: #fff;
    }
.directionbtn {
    background-color: white;
    color: black;
}

.ContactInfoInnerTxt a:hover {
    color: #fff !important;
}
.ContactInfoInnerTxt .directionbtn:hover {
    background-color: white;
    color: black !important;
}