.contact_box {
    width: 100%;
    padding-top: calc(20px + 5rem);
    padding-bottom: calc(53px + 5rem);
}

.contact {
    max-width: 1480px;
    width: 85%;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact_left {
    width: 42.8378%;
}

.con_left_p1 {
    font-family: Century Gothic;
    font-weight: bold;
    font-size: calc(8px + 1rem);
    color: #006B98;
    line-height: calc(6px + 1.5rem);
}

.con_left_p2 {
    width: 100%;
    font-family: Century Gothic;
    font-weight: 400;
    font-size: calc(8px + 0.5rem);
    color: #333333;
    margin-top: calc(12px + 2rem);
    padding-bottom: calc(4px + 2rem);
    border-bottom: 1px solid #E7E7E9;
}

.con_left_text {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: calc(3px + 1.5rem);
    border-bottom: 1px solid #E7E7E9;
    margin-top: calc(8px + 1.5rem);
}

.con_left_text_item p:nth-of-type(1) {
    font-family: Century Gothic;
    font-weight: bold;
    font-size: calc(6px + 0.5rem);
    color: #999999;
}

.con_left_text_item p:nth-of-type(2) {
    font-family: Century Gothic;
    font-weight: bold;
    font-size: calc(10px + 0.5rem);
    color: #141212;
    margin-top: calc(1px + 0.5rem);
}

.contact_right {
    width: 48.3783%;

}

.con_right_p1 {
    font-family: Century Gothic;
    font-weight: bold;
    font-size: calc(6px + 1rem);
    color: #333333;
}

.con_right_msg_box {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    row-gap: calc(5px + 0.5rem);
    margin-top: calc(2px + 1.5rem);
}

.con_right_msg_box input {
    width: 48.8826%;
    height: calc(16px + 2rem);
    background: #F3F4F5;
    border-radius: calc(2px + 0.1rem);
    border: none;
    outline: medium;
    font-family: Century Gothic;
    font-weight: 400;
    font-size: calc(6px + 0.5rem);
    color: #666666;
    padding: 0 calc(7px + 1rem);
}

.con_right_msg_box input:nth-of-type(3) {
    width: 100%;
}

.con_right_msg_box textarea {
    width: 100%;
    height: calc(54px + 5rem);
    background: #F3F4F5;
    border-radius: calc(2px + 0.1rem);
    border: none;
    outline: medium;
    font-family: Century Gothic;
    font-weight: 400;
    font-size: calc(6px + 0.5rem);
    color: #666666;
    padding: calc(9px + 0.5rem) calc(7px + 1rem);
}

.con_right_msg_box input:nth-last-of-type(1) {
    width: calc(50px + 5rem);
    height: calc(6px + 2rem);
    background: #006B98;
    border-radius: calc(2px + 0.1rem);
    font-family: Century Gothic;
    font-weight: 400;
    font-size: calc(6px + 0.5rem);
    color: #FFFFFF;
    margin-top: calc(2px + 0.25rem);
}

@media (max-width: 1100px) {
    .contact {
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        gap: calc(10px + 2rem);
    }

    .contact_left {
        width: 100%;
    }

    .con_left_text {
        align-items: flex-start;
    }

    .con_left_p1 {
        font-size: calc(12px + 1rem);
        line-height: 1.5;
    }

    .con_left_p2 {
        font-size: calc(10px + 1rem);
        line-height: 1.5;
    }

    .con_left_text_item p:nth-of-type(1) {
        font-size: calc(10px + 1rem);
    }

    .con_left_text_item p:nth-of-type(2) {
        font-size: calc(10px + 1rem);
        line-height: 1.5 !important;
    }

    .contact_right {
        width: 100%;
    }

    .con_right_p1 {
        font-size: calc(12px + 1rem);
    }

    .con_right_msg_box input {
        height: calc(16px + 6rem);
        width: 100%;
        font-size: calc(10px + 1rem);
    }
    .con_right_msg_box textarea{
        font-size: calc(10px + 1rem);
    }
    .con_right_msg_box input:nth-last-of-type(1){
        width: 100%;
        font-size: calc(10px + 1rem);
        height: calc(6px + 6rem);
    }
}