
.form-wrapper .form-container p {
    color: #58595B;
    font-size: 17px;
    font-weight: 600;
    line-height: 1.8em;
}

.form-wrapper .form-container input, .form-wrapper .form-container textarea {
    border-radius: 0;
    background-color: #fff;
    padding: 10px 15px;
    font-size: 14px;
    color: #58595B;
    line-height: 21px;
    border: 1px solid #69727d;
    margin-bottom: 10px;
}

.form-wrapper label {
    color: #58595B;
    font-weight: 300;
    font-size: 14px;
    padding-bottom: 10px;
}

.form-wrapper .form-container input:focus, .form-wrapper .form-container textarea:focus {
    outline: none;
    box-shadow: none;
}

.form-wrapper .form-container textarea {
    width: 100%;
}

.form-wrapper .form-container .btn-submit-wrapper button {
    border-radius: 0;
    background-color: #000;
    color: #fff;
    padding: 10px;
    width: 40%;
}

@media (max-width: 992px) {
    .form-wrapper .form-container .btn-submit-wrapper button {
        width: 100%;
    }
}

/*form end*/

.form-wrapper h2 {
    font-size: 22px;
    font-weight: 600;
    line-height: 1.8em;
    color: #000000;
}

.form-wrapper .contact-info-items {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: start;
}

.form-wrapper .contact-info-items .contact-info {
    display: flex;
    align-items: start;
    gap: 10px;
}

.form-wrapper .contact-info-items .contact-info span {
    font-size: 18px;
    font-weight: 600;
    color: #58595B;
}

.form-wrapper .contact-info-items .contact-info p {
    font-size: 16px;
    font-weight: 300;
    line-height: 1.8em;
    letter-spacing: 0.5px;
    color: #000000;
}

/*map start*/

.form-wrapper .map {
    filter: grayscale(1);
    transition: all 0.3s ease;
    height: 400px;
}

.form-wrapper .map:hover {
    filter: grayscale(0);
}