#contactUs {
    width: 100%;
    height: 100%;
    background-color: #111;
    margin-top: 10%;
    margin-bottom: 10%;
}

.contactUsDiv {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 6%;
}

.contactUsTitle {
    color: #fff;
    font-size: 48px;
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}

.contactUsTitle:after {
    content: '';
    height: 4px;
    border-radius: 8px;
    width: 50%;
    background-color: #1579D6;
    position: absolute;
    bottom: 0;
    left: calc(50% - 25%);
    top: 1.5em;
}

.contactUsDiv2 {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin: 0 auto;
}

.contactBox {
    /* background-color: cyan; */
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(109.61deg, rgba(255, 255, 255, 0.078) 4.21%, rgba(255, 255, 255, 0) 100%);
    border-radius: 32px;
    box-shadow: 0px 0px 8px rgba(10, 122, 224, 0.8);
    height: 100%;
    width: 55%;
}

.contactBox form {
    width: 100%;
}

.contactFormDiv {
    width: 100%;
    margin: auto;
}

.contact-form {
    margin: 6% 0;
    width: 100%;
}

.contactBox input,
.contactBox textarea {
    width: 70%;
    padding: 0.9rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-sizing: border-box;
    border-radius: 8px;
    border-width: 1px;
    background: transparent;
    color: #fff;
    outline: none;
    border-radius: 5px;
    outline: none;
}

.contactBox input:focus,
.contactBox textarea:focus {
    border: 1px solid rgba(10, 122, 224, 0.8);
    border-width: 0px 0px 2px 0px;
    background-color: #272727;
}

.contactBox textarea {
    resize: none;
}

.contactBox label {
    display: block;
    text-align: left;
    color: #fff;
    opacity: 0.8;
    margin-left: 15%;
    padding: 10px 0;
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-weight: normal;
    font-size: 18px;
}

.contactBox input[type="email"] {
    font-size: 18px;
}

.contactBox textarea {
    font-size: 18px;
    font-family: 'Inter', sans-serif;
}

.Message {
    margin-bottom: 0px;
}

.contactBox .sendBtn {
    margin: 1rem auto;
    text-decoration: none;
    width: 160px;
    height: 48px;
    background: #1579D6;
    color: #fff;
    border-radius: 8px;
    font-size: 20px;
    font-weight: 200;
    cursor: pointer;
    transition: 0.3s ease-in;
    border: none;
    outline: none;
    vertical-align: middle;
    padding: 0px;
}

.contactBox .sendBtn:hover {
    background-color: #0649ad;
    font-size: 18px;
}

.contactBox .sendBtn:focus {
    border: none;
    border-width: 0px;
    background-color: #0649ad;
}


/* Responsive styles Title*/

@media only screen and (max-width: 1000px) {
    .contactUsTitle {
        font-size: 40px;
    }
}

@media only screen and (max-width:550px) {
    .contactUsTitle {
        font-size: 32px;
    }
}

@media only screen and (max-width:360px) {
    .contactUsTitle {
        font-size: 28px;
    }
}


/* Responisve styles */

@media only screen and (max-width:1090px) {
    .contactBox {
        width: 60%;
    }
}

@media only screen and (max-width:970px) {
    .contactBox {
        width: 65%;
    }
}

@media only screen and (max-width:840px) {
    .contactBox {
        width: 70%;
    }
}

@media only screen and (max-width:800px) {
    .contactBox .sendBtn {
        width: 140px;
        height: 42px;
        font-size: 18px;
    }
}

@media only screen and (max-width:740px) {
    .contactBox {
        width: 80%;
    }
    .contactUsDiv {
        margin-bottom: 8%;
    }
}

@media only screen and (max-width:630px) {
    .contactBox {
        width: 85%;
    }
    .contactBox label {
        font-size: 16px;
    }
    .contactBox input[type="email"] {
        font-size: 16px;
    }
    .contactBox textarea {
        font-size: 16px;
    }
    .Message {
        margin: 0% auto;
    }
}

@media only screen and (max-width:550px) {
    .contactBox .sendBtn {
        width: 130px;
        height: 40px;
        font-size: 16px;
    }
}

@media only screen and (max-width:540px) {
    .contactBox {
        width: 90%;
    }
    .contactBox label {
        font-size: 14px;
    }
    .contactBox input[type="email"] {
        font-size: 14px;
    }
    .contactBox textarea {
        font-size: 14px;
    }
}

@media only screen and (max-width:480px) {
    .contactBox label {
        font-size: 12px;
    }
    .contactBox {
        width: 95%;
    }
}

@media only screen and (max-width:380px) {
    .contactUsDiv {
        margin-bottom: 10%;
    }
}