@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700;800&display=swap");



#contact_us .container-fluid {
    position: relative;
    width: 100%;
    background-color: #fff;
    min-height: 100vh;
    overflow: hidden;
}

#contact_us .forms-container {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

#contact_us .signin-signup {
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    left: 75%;
    width: 50%;
    transition: 1s 0.7s ease-in-out;
    display: grid;
    grid-template-columns: 1fr;
    z-index: 5;
}

#contact_us form {
    display: flex;
    justify-content: center;
    flex-direction: column;
    padding: 0rem 10rem;
    transition: all 0.2s 0.7s;
    overflow: hidden;
    grid-column: 1 / 2;
    grid-row: 1 / 2;
}

#contact_us form.sign-up-form {
    opacity: 0;
    z-index: 1;
}

#contact_us form.sign-in-form {
    z-index: 2;
}

#contact_us .title {
    font-size: 2.2rem;
    color: #444;
    margin-bottom: 10px;
}

#contact_us .input-field {
    max-width: 380px;
    width: 100%;
    background-color: #f0f0f0;
    margin: 10px 0;
    height: 55px;
    border-radius: 55px;
    display: grid;
    grid-template-columns: 15% 85%;
    padding: 0 0.4rem;
    position: relative;
}

#contact_us .input-field i {
    text-align: center;
    line-height: 55px;
    color: #acacac;
    transition: 0.5s;
    font-size: 1.1rem;
}

#contact_us .input-field input {
    background: none;
    outline: none;
    border: none;
    line-height: 1;
    font-weight: 600;
    font-size: 1.1rem;
    color: #333;
}

#contact_us .input-field input::placeholder {
    color: #aaa;
    font-weight: 500;
}

#contact_us .social-text {
    padding: 0.7rem 0;
    font-size: 1rem;
}

#contact_us .social-media {
    display: flex;
    justify-content: center;
}

#contact_us .social-icon {
    height: 46px;
    width: 46px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 0.45rem;
    color: #333;
    border-radius: 50%;
    border: 1px solid #333;
    text-decoration: none;
    font-size: 1.1rem;
    transition: 0.3s;
}

#contact_us .social-icon:hover {
    color: #ff7a00;
    border-color: #ff7a00;
}

#contact_us .btn {
    width: 150px;
    background-color: #ff7a00;
    border: none;
    outline: none;
    height: 49px;
    border-radius: 49px;
    color: #fff;
    text-transform: uppercase;
    font-weight: 600;
    margin: 10px 0;
    cursor: pointer;
    transition: 0.5s;
}

#contact_us .btn:hover {
    background-color: #ff7a00;
}
#contact_us .panels-container {
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

#contact_us .container-fluid:before {
    content: "";
    position: absolute;
    height: 2000px;
    width: 2000px;
    top: -10%;
    right: 48%;
    transform: translateY(-23%);
    background-image: linear-gradient(-45deg, rgb(21, 33, 45) 0%, rgb(21, 33, 45) 100%);
    transition: 1.8s ease-in-out;
    border-radius: 50%;
    z-index: 6;
}

#contact_us .image {
    width: 100%;
    transition: transform 1.1s ease-in-out;
    transition-delay: 0.4s;
}

#contact_us .panel {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: space-around;
    text-align: center;
    z-index: 6;
}

#contact_us .left-panel {
    pointer-events: all;
    padding: 3rem 17% 2rem 12%;
}

#contact_us .right-panel {
    pointer-events: none;
    padding: 3rem 12% 2rem 17%;
}

#contact_us .panel .content {
    color: #fff;
    transition: transform 0.9s ease-in-out;
    transition-delay: 0.6s;
}

#contact_us .panel h3 {
    font-weight: 600;
    line-height: 1;
    font-size: 1.5rem;
}

#contact_us .panel .section-title p {
    margin: 0;
    font-size: 36px;
    font-weight: 700;
    text-transform: uppercase;
    font-family: "Poppins", sans-serif;
    color: #fff;
}

#contact_us .btn.transparent {
    margin: 0;
    background: none;
    border: 2px solid #fff;
    width: 130px;
    height: 41px;
    font-weight: 600;
    font-size: 0.8rem;
}

#contact_us .btn.transparent:hover {
    margin: 0;
    background: #ff7a00;
    border: 2px solid #fff;
    width: 130px;
    height: 41px;
    font-weight: 600;
    font-size: 0.8rem;
}

#contact_us .right-panel .image,
#contact_us .right-panel .content {
    transform: translateX(800px);
}

/* ANIMATION */

#contact_us .container-fluid.sign-up-mode:before {
    transform: translate(100%, -50%);
    right: 52%;
}

#contact_us .container-fluid.sign-up-mode .left-panel .image,
#contact_us .container-fluid.sign-up-mode .left-panel .content {
    transform: translateX(-800px);
}

#contact_us .container-fluid.sign-up-mode .signin-signup {
    left: 25%;
}

#contact_us .container-fluid.sign-up-mode form.sign-up-form {
    opacity: 1;
    z-index: 2;
}

#contact_us .container-fluid.sign-up-mode form.sign-in-form {
    opacity: 0;
    z-index: 1;
}

#contact_us .container-fluid.sign-up-mode .right-panel .image,
#contact_us .container-fluid.sign-up-mode .right-panel .content {
    transform: translateX(0%);
}

#contact_us .container-fluid.sign-up-mode .left-panel {
    pointer-events: none;
}

#contact_us .container-fluid.sign-up-mode .right-panel {
    pointer-events: all;
}

.lg_dark_container{
    padding: 0!important;
}

.lg_dark_container .hero-waves-inverse{
    margin: 0 auto;
    transform: translateY(0%) rotateX(-180deg) rotateY(180deg);
}

.lg_dark_container .hero-waves {
    display: none;
}

#contact_us .php-email-form {
    width: 100%;
    background: #fff;
}

#contact_us .php-email-form .form-group {
    padding-bottom: 8px;
}

#contact_us .php-email-form .validate {
    display: none;
    color: #ff7a00;
    margin: 0 0 15px 0;
    font-weight: 400;
    font-size: 13px;
}

#contact_us .php-email-form .error-message {
    display: none;
    color: #fff;
    background: #ff7a00;
    text-align: left;
    padding: 15px;
    font-weight: 600;
}

#contact_us .php-email-form .error-message br + br {
    margin-top: 25px;
}

#contact_us .php-email-form .sent-message {
    display: none;
    color: #fff;
    background: #ff7a00;
    text-align: center;
    padding: 15px;
    font-weight: 600;
}

#contact_us .php-email-form .loading {
    display: none;
    background: #fff;
    text-align: center;
    padding: 15px;
}

#contact_us .php-email-form .loading:before {
    content: "";
    display: inline-block;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    margin: 0 10px -6px 0;
    border: 3px solid #ff7a00;
    border-top-color: #eee;
    -webkit-animation: animate-loading 1s linear infinite;
    animation: animate-loading 1s linear infinite;
}

#contact_us .php-email-form input, .contact .php-email-form textarea {
    border-radius: 4px;
    box-shadow: none;
    font-size: 14px;
}

#contact_us .php-email-form input {
    height: 44px;
}

#contact_us .php-email-form textarea {
    padding: 10px 12px;
}

#contact_us .php-email-form button[type="submit"] {

    background: #fff;
    border: 1px solid #ff7a00;
    padding: 10px 35px;
    color: #ff7a00;
    transition: 0.4s;
    border-radius: 50px;
}

#contact_us .php-email-form button[type="submit"]:hover {
    background: #ff7a00;
    color: #fff;
}

@-webkit-keyframes animate-loading {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes animate-loading {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}


.form-control:focus {
    color: #495057;
    background-color: #fff;
    border-color: #ff7a00;
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgba(255, 122, 0, .1);
}

.text-center button:focus{
    outline: 1px dotted;
}



#contact_us .info-box {
    color: #2d405f;
    text-align: center;
    box-shadow: 0 0 30px rgba(214, 215, 216, 0.6);
    padding: 20px 0 30px 0;
    background: #fff;
}

#contact_us .info-box i {
    font-size: 32px;
    color: #ff7a00;
    padding: 8px;
}

#contact_us .info-box h3 {
    font-size: 20px;
    color: #777777;
    font-weight: 700;
    margin: 10px 0;
}

#contact_us .info-box p {
    padding: 0;
    line-height: 24px;
    font-size: 14px;
    margin-bottom: 0;
}



#mobile_contact{
    padding: 1em 25px;
    display: none;
}

#mobile_contact .info-box {
    color: #2d405f;
    text-align: center;
    box-shadow: 0 0 30px rgba(214, 215, 216, 0.6);
    padding: 20px 0 30px 0;
    background: #fff;
}

#mobile_contact .info-box i {
    font-size: 32px;
    color: #ff7a00;
    padding: 8px;
}

#mobile_contact .info-box h3 {
    font-size: 20px;
    color: #777777;
    font-weight: 700;
    margin: 10px 0;
}

#mobile_contact .info-box p {
    padding: 0;
    line-height: 24px;
    font-size: 14px;
    margin-bottom: 0;
}

.comments
{
    font-style: italic;
    font-size: 12px;
    color: red;
    height: 25px;
}

.thank-you
{
    color: green;
    text-align: center;
    margin-top: 15px;
    font-weight: bold;
    font-size: 22px;
}

.error{
    color: red;
    text-align: center;
    margin-top: 15px;
    font-weight: bold;
    font-size: 22px;
}

.mobile_item{
    display: none;
}

/*--- MEDIA QUERY  ---*/


@media (max-width: 870px) {
    #contact_us .container-fluid {
        min-height: 800px;
        height: 100vh;
    }
    #contact_us .signin-signup {
        width: 100%;
        top: 95%;
        transform: translate(-50%, -100%);
        transition: 1s 0.8s ease-in-out;
    }

    #contact_us .signin-signup,
    .container-fluid.sign-up-mode .signin-signup {
        left: 50%;
    }

    #contact_us .panels-container {
        grid-template-columns: 1fr;
        grid-template-rows: 1fr 2fr 1fr;
    }

    #contact_us .panel {
        flex-direction: row;
        justify-content: space-around;
        align-items: center;
        padding: 2.5rem 8%;
        grid-column: 1 / 2;
    }

    #contact_us .right-panel {
        grid-row: 3 / 4;
    }

    #contact_us .left-panel {
        grid-row: 1 / 2;
    }

    #contact_us .image {
        width: 200px;
        transition: transform 0.9s ease-in-out;
        transition-delay: 0.6s;
    }

    #contact_us .panel .content {
        padding-right: 15%;
        transition: transform 0.9s ease-in-out;
        transition-delay: 0.8s;
    }

    #contact_us .panel h3 {
        font-size: 1.2rem;
    }

    #contact_us .panel p {
        margin: 0;
        font-size: 12px;
        font-weight: 700;
        text-transform: uppercase;
        font-family: "Poppins", sans-serif;
        color: #fff;
    }

    #contact_us .btn.transparent {
        width: 110px;
        height: 35px;
        font-size: 0.7rem;
    }

    #contact_us .container-fluid:before {
        width: 1500px;
        height: 1500px;
        transform: translateX(-50%);
        left: 30%;
        bottom: 68%;
        right: initial;
        top: initial;
        transition: 2s ease-in-out;
    }

    #contact_us .container-fluid.sign-up-mode:before {
        transform: translate(-50%, 100%);
        bottom: 32%;
        right: initial;
    }

    #contact_us .container-fluid.sign-up-mode .left-panel .image,
    #contact_us .container-fluid.sign-up-mode .left-panel .content {
        transform: translateY(-300px);
    }

    #contact_us .container-fluid.sign-up-mode .right-panel .image,
    #contact_us .container-fluid.sign-up-mode .right-panel .content {
        transform: translateY(0px);
    }

    #contact_us .right-panel .image,
    #contact_us .right-panel .content {
        transform: translateY(300px);
    }

    .mobile_item{
        display: block;
    }
}

@media (max-width: 570px) {

    .lg_dark_container .hero-waves {
        display: block;
        width: 100%;
        height: 60px;
        position: relative;
        transform: translateY(0%);
    }

    #contact_us{
        display: none;
    }

    #mobile_contact{
        padding: 5em 25px;
        display: block;
    }

    .mobile_item{
        display: block;
    }
}









