#contact {
    margin-top: 80px;
    display: flex;
    flex-direction: column;
    padding-top: 70px;
}

.contact-wrapper {
    display: flex;
    width: 100%;
    justify-content: center;
}

#contact-form textarea {
    height: 20vh;
}

#contact-form {
    justify-content: center;
    width: 50%;
    padding: 55px;
}

.send-button {
    margin-top: 30px;
    padding: 10px;
    background: black;
    color: white;
    border: none;
    border-radius: 2px;
}

.direct-contact-container .contact-list {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
    list-style: none;
    font-size: 18px;
    font-weight: 500;
}

.contact-list .list-item {
    padding: 10px 5px;
}

.direct-contact-container {
    display: flex;
    align-items: center;
    padding-bottom: 50px;
    padding-top: 50px;
    justify-content: center;
    text-align: center;
    background: rgb(198, 198, 198);
}

@media only screen and (max-width: 750px) {
    .contact-wrapper {
        flex-direction: column;
    }

    #contact-form {
        width: 100%;
    }

    .direct-contact-container {
        width: 100%;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        font-size: 15px;
        padding-left: 15px;
        padding-bottom: 50px;
    }
}



@import url(https://fonts.googleapis.com/css2?family=Inconsolata&display=swap);

:root {
    --bg-color: #d2dfe300;
    --color: #ffffff;
    --tp-color: var(--tp-color);
    --card-color: #7f8e95
}

body {
    background-color: #8e99a0;
    font-family: Inconsolata, monospace
}

.mainbox {
    width: 100%;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center
}

.mainbox .leftbox {
    width: 100%;
    background-color: var(--card-color);
    box-sizing: border-box
}

.mainbox .leftbox .img {
    background: fixed content-box url(contactus.jpg) center center no-repeat;
    background-size: cover;
    width: 100%;
    height: 100vh;
    position: absolute
}

.mainbox .rightbox .img {
    width: 100%
}

.mainbox .leftbox .content {
    margin: 0;
    padding: 0
}

.mainbox .rightbox {
    margin: 50px 0 0 0;
    width: 100%;
    display: flex;
    background-color: var(--bg-color);
    color: var(--color);
    flex-direction: column;
    justify-content: center;
    align-items: center
}

.mainbox .rightbox .head {
    font-size: 250%;
    font-weight: 550;
    margin: 20px;
    padding: 10px;
    z-index: 2
}

.mainbox .rightbox .form {
    font-size: 120%;
    font-weight: 400;
    margin: 20px;
    padding: 20px;
    width: 50%;
    display: flex;
    justify-content: center;
    background: rgba(255, 255, 255, .25);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, .37);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, .18);
    padding: 10px
}

.mainbox .rightbox form {
    width: 85%
}

::placeholder {
    color: rgba(255, 255, 255, .781);
    font-size: large
}

.mainbox .rightbox .form input,
input:-internal-autofill-selected {
    border: 0;
    border-bottom: 1px solid #fff;
    border-radius: 10px;
    width: 100%;
    background-color: var(--bg-color);
    color: var(--color);
    text-align: start;
    font-size: xx-small;
    margin: 10px;
    padding: 10px
}

.mainbox .rightbox .form label {
    margin-left: 10px
}

input[type=text] :focus {
    border-bottom: 1px solid #fff
}

.mainbox .rightbox .form .submitbtn {
    width: 50%;
    text-align: center;
    background-color: var(--bg-color);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, .18);
    backdrop-filter: blur(2.5px);
    -webkit-backdrop-filter: blur(2.5px);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, .18);
    padding: 2px;
    font-size: medium
}

@media only screen and (max-width:500px) {
    .mainbox .rightbox .form{
        width: 80%;
    }
    .mainbox {
        width: 100%;
        display: flex;
        flex-direction: column;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center
    }

    .mainbox .leftbox {
        width: 100%;
    }

    .mainbox .rightbox {
        width: 90%;
    }

    .mainbox .rightbox .form {
        font-size: x-small;
        width: 80%
    }
}