
.contact-US{
    margin: 0 2rem;
}
.contact-US .title {

    right: 2rem;
    top: 50%;
    color: var(--white);
    display: grid;
    align-content:center


}

.contact-US .title h2 {

    margin: 2rem;
    width: 100%;
    text-align: center;
}

.contact-US .title p { 
    height: 100%;
    display: flex;
    line-height: 1.6em;
    font-size: 18px;
    margin: auto;
    text-align: center;

}

.contact-US .contact-form {
    display: grid;
    background: var(--white);
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    border-radius: 2rem;
    width: 30rem;
    padding: 2rem;
    position: absolute;
    right: 3rem;
    bottom: -24rem;
    overflow: hidden;
}

.contact-US .contact-form::after {
    content: "";
    background: var(--active);
    height: 1rem;
    width: 7rem;
    position: absolute;
    left: -2rem;
    top: 2rem;
    transform: rotate(-51deg);
}

.contact-US .contact-form h2 {
    font-size: 34px;
    font-weight: bold;
    width: 100%;
    text-align: center;
    margin: 1rem 0;
}

.contact-US .contact-form span {
    line-height: 1.6em;
    font-size: 18px;
    text-align: center;
    font-weight: bold;
}

.contact-US .contact-form div {
    display: grid;
    margin: 0.4rem 0;
}

.contact-US .contact-form div input {

    outline: none;
    border-radius: 1rem;
    margin: 1rem 0;
    padding: 1rem;
    box-shadow: rgba(0, 0, 0, 0.02) 0px 1px 3px 0px, rgba(27, 31, 35, 0.15) 0px 0px 0px 1px;
    border: none;

}


.contact-US .contact-form div textarea {
    outline: none;
 
    border-radius: 1rem;
    margin: 1rem 0;
    padding: 1rem;
    box-shadow: rgba(0, 0, 0, 0.02) 0px 1px 3px 0px, rgba(27, 31, 35, 0.15) 0px 0px 0px 1px;
    border: none;
    height: 10rem;
}

.contact-US .contact-form div input:hover {
    box-shadow: var(--active) 0px 1px 3px 0px, var(--active) 0px 0px 0px 1px;

}


.contact-US .contact-form #Submit {

    background: #1e7dab;
    cursor: pointer;
    padding: 1rem;
    padding: 1rem;
    color: var(--white);
    border-radius: 1rem;
    text-align: center;
    display: block;

}


.contact-US {
    height: 30rem;
    background: linear-gradient(rgba(0, 0, 0, 0.527), rgba(0, 0, 0, 0.5)), url("../images/background-main.png") no-repeat center center fixed;

    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    position: relative;
    justify-content: center;
    display: grid;
    grid-template-columns: repeat(2, 1fr);

}


@media only screen and (max-width: 888px) {
  
    .contact-US{
        margin: 0.2rem;
    }
    .contact-US .contact-form {
       
        left: 0!important;
        right: 0!important;
        width:100%!important;
    }
    .contact-US .title {
        display: none!important;
    }
}

