main {
    padding: 0;
}

#contact-container {
    width: 100%;
    height: calc(100vh - var(--header-height));
    display: grid;
    align-items: center;
    background-color: #eaeaea;
}

h1 {
    font-size: 1.25rem;
    line-height: 1.75rem;
    font-weight: 700;

    text-align: center;
}

.contact-in {
    width: 80%;
    height: auto;
    margin: auto;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    padding: 10px;
    border-radius: 10px;
    background: #fff;
    box-shadow: 0px 0px 10px 0px #666;
}

.contact-map {
    width: 100%;
    height: auto;
    flex: 50%;
}
.contact-map iframe {
    width: 100%;
    height: 100%;
}
.contact-form {
    width: 100%;
    height: auto;
    flex: 50%;
    padding: 30px 5px;
    text-align: center;
}
.contact-form h1 {
    margin-bottom: 10px;
}

.contact-form-txt {
    width: 100%;
    height: 40px;
    color: #000;
    border: 1px solid #bcbcbc;
    border-radius: 50px;
    outline: none;
    margin-bottom: 20px;
    padding: 15px;
}
.contact-form-txt::placeholder {
    color: #aaa;
}
.contact-form-textarea {
    width: 100%;
    height: 130px;
    color: #000;
    border: 1px solid #bcbcbc;
    border-radius: 10px;
    outline: none;
    margin-bottom: 20px;
    padding: 15px;
    font-family: "Poppins", sans-serif;
}
.contact-form-textarea::placeholder {
    color: #aaa;
}

.contact-form-btn {
    width: 100%;
    border: none;
    outline: none;
    border-radius: 50px;
    background: rgb(220, 38, 38);
    color: #fff;
    text-transform: uppercase;
    padding: 10px 0;
    cursor: pointer;
    font-size: 18px;
}

@media (min-width: 425px) {
    .contact-form {
        padding: 30px 10px;
    }
}

@media (min-width: 768px) {
    .contact-in {
        flex-direction: row;
    }
}

@media (min-width: 1024px) {
    .contact-form {
        padding: 30px;
    }
}
