.contact-us-block {
    display: flex;
    flex-direction: column;
    max-width: 1150px;
    width: 100%;
    margin: 30px auto;
}
.contact-us-title{
    color: #FFFFFF;
    font-size: 48px;
    width: 100%;
    text-align: center;
    margin-bottom: 36px;
}

.contact-info {
    display: flex;
    justify-content: space-between;
    width: 100%;
    margin-bottom: 34px;
    flex-wrap: wrap;
    padding: 0 16px;
    box-sizing: border-box;
}

@media (max-width: 915px) {
    .contact-info{
        justify-content: center;
    }
}

.contact-map {
    width: 100%;
    max-width: 640px;
    height: 445px;
    margin-bottom: 30px;
    border-radius: 12px;
    border: none;
    overflow: hidden;
}

.contact-map iframe{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-text{
    width: 240px;
    display: flex;
    flex-direction: column;
}

.contact-text-title{
    font-size: 24px;
    color: #FFFFFF;
    margin-bottom: 10px;
}

.table-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 4px 0;
}

.table-item div:first-of-type{
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
}

.table-item div:last-of-type{
    color: #FFFFFF;
    font-size: 14px;
}

.contact-comment {
    font-size: 14px;
    line-height: 20px;
    color: #FFFFFF;
    margin: 36px 0;
}

.contact-form {
    display: flex;
    width: 100%;
    justify-content: space-between;
    box-sizing: border-box;
}

@media (max-width: 915px) {
    .contact-form{
        flex-direction: column;
    }
}

.form-column {
    width: calc(50% - 15px);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

@media (max-width: 915px) {
    .form-column{
        width: 100%;
    }
}

.form-column input {
    width: calc(50% - 15px);
    height: 50px;
    margin-bottom: 20px;
    padding: 0 16px;
}

.form-column textarea {
    width: 100%;
    margin-bottom: 20px;
    height: 120px;
    padding: 16px 12px;
}

.form-column input,
.form-column textarea {
    background-color: transparent;
    color: #FFFFFF;
    border: 1px solid #E1E4EB;
    font-size: 16px;
    border-radius: 5px;
    box-sizing: border-box;
}

.form-column input::placeholder,
.form-column textarea::placeholder {
    color: #A9ABBD;
    font-size: 16px;
}

.form-block{
    display: flex;
    flex-direction: column;
    padding: 0 16px;
    box-sizing: border-box;
}
.contact-send-btn {
    background-color: #0A6CFF;
    color: #FFFFFF;
    width: 160px;
    height: 50px;
    margin-left: auto;
    border-radius: 5px;
    border: none;
    cursor: pointer;
    font-weight: bold;
}

