.contactus {
    margin-top: 100px;
}

.contactus__inner {
    display: grid;
    min-height: 750px;
    grid-template-columns: repeat(2, 1fr);
}

.contactus__item {
    width: 100%;
    height: 100%;
}

.contactus__item iframe {
    width: 100%;
    height: 100%;
}

.contactus__title {
    margin-top: 80px;
    margin-bottom: 16px;
    text-align: left;
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 700;
    font-size: 40px;
    line-height: 60px;
    color: #000000;
}

.form__input {
    width: 100%;
    margin-bottom: 20px;
}

.form__input input {
    width: 100%;
    background: rgba(0, 0, 0, 0.04);
    padding: 12px 16px;

    font-family: 'Poppins';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    font-feature-settings: 'liga' off;
    color: #000;
}

.form__input input::placeholder {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    font-feature-settings: 'liga' off;
    color: #A5A5A5;
}

.form__textarea {
    margin-bottom: 20px;
}

.form__textarea textarea {
    border: none !important;
    width: 100% !important;
    background: rgba(0, 0, 0, 0.04) !important;
    padding: 12px 16px !important;
    box-sizing: border-box !important;
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    font-feature-settings: 'liga' off;
    color: #A5A5A5;
    all: revert;
    resize: vertical;
    min-height: 130px;
}

.form__textarea textarea::placeholder {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    font-feature-settings: 'liga' off;
    color: #A5A5A5;
}

.form__btn button {
    cursor: pointer;
    width: 100%;
    background: #00C050;
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 700;
    font-size: 16px;
    line-height: 24px;
    color: #FFFFFF;
    padding: 12px 0;
    transition: filter 0.2s ease-in-out;
    text-align: center;
}


.form__btn button:hover {
    filter: brightness(85%);
}

.form__btn button:active {
    transform: translateY(-1px);
}

.contactus__form {
    width: min(100% - 2rem, 488px);
    margin-inline: auto;
}

.contactus__tel {
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: -1;
    margin-bottom: 50px;
}

.contuctus__address {
    display: flex;
    align-items: center;
    z-index: -1;
    margin-bottom: 18px;

    gap: 7.5px;
    align-content: center;
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 21px;
    font-feature-settings: 'pnum' on, 'lnum' on;
    color: #8E8E8E;
}

.contactus__tel a {
    gap: 7.5px;
    display: flex;
    align-content: center;
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 21px;
    font-feature-settings: 'pnum' on, 'lnum' on;
    color: #8E8E8E;
}

.contactus__tel-border {
    display: block;
    width: 1px;
    height: 18px;
    content: "";
    background: #8E8E8E;
}

.contact__us-inputs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-column-gap: 20px;
    align-items: center;
}

.contactus__item #map {
    height: 100%;
    width: 100%;
}

@media screen and (max-width: 768px) {
    .contuctus__address {
        justify-content: center;
    }
    .contactus {
        margin-top: 90px;
    }
    .contactus__inner {
        grid-template-columns: 1fr;
        grid-row-gap: 50px;
    }

    .contactus__item:first-child {
        order: 2;
    }

    .contactus__item:last-child {
        order: 1;
        min-height: 480px;
    }

    .contactus__inner {
        padding-bottom: 80px;
    }

    .contactus__title {
        margin-top: 0;
    }
}

@media screen and (max-width: 480px) {
    .contactus__title {
        text-align: center;
        font-weight: 700;
        font-size: 32px;
        line-height: 48px;
        color: #000000;
    }

    .contactus__tel {
        flex-direction: column;
    }

    .contactus__tel-border {
        width: 80%;
        height: 1px;
        opacity: 0.2;
    }

    .contact__us-inputs {
        grid-template-columns: 1fr;
    }
}