.contact_content_left_des{
    font-size: 1.6rem;
    line-height: 1.5em;
    a{
        color: #0d6efd;
    }
}
.contact_content_left_des *{
    font-size: 1.6rem;
    line-height: 1.5em;
}
.contact_content_left_title{
    text-align: left;
}
.contact_content_left_map{
    width: 100%;
    border-radius: 1rem;
    height: 38.5rem;
    margin-bottom: 1.5rem;
    & iframe{
        width: 100%;
        height: 100%;
    }
}
.contact_content_left{
    width: 60%;
}
.contact_content_left_right{
    width: calc(40% - 6rem);
}
.contact_content_inner{
    display: flex;
    justify-content: space-between;
    padding-block: 5rem;
}
.contact_content_left_title{
    margin-bottom: 1.5rem;
}
.contact_content_left_right_form_label{
    font-weight: 600;
}
.contact_content_left_right_form_col{
    &:focus{
        color: #0563D5;
    }
    & input, textarea{
        border-radius: 0;
        overflow: hidden;
        border: none;
        border-bottom: 1px solid #ccc;
        padding: 0;
        margin-bottom: 1.5rem;
        width: 100%;
        font-size: 1.6rem;
        &::placeholder{
            transition: all .4s ease;
            color: #d6d7d8;
        }
    }
    & input{
        height: 4.5rem;

    }
    & input:focus, textarea:focus{
        color: #212529;
        border-color: #0563D5;
        outline: 0;
        box-shadow: unset;
    }
}
.contact_content_left_right_form_col_inner{
    display: flex;
    .form-input{
        width: 80%;
    }
    .form_file{
        width: calc(20% - .8rem);
        display: none;
    }
    .fileUpload_label{
        width: calc(20% - .8rem);
        display: flex;
        justify-content: center;
        align-items: center;
        cursor: pointer;
        &:hover{
            svg{
                color: #0563D5;
            }
        }
        svg{
            transition: all .4s ease;
            width: 2.5rem;
            color: #222;
        }
    }
}
.has-file svg{
    color: #125309 !important;
}
.contact_content_left_right_form_button{
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 30.0rem;
    width: 100%;
    height: 4.0rem;
    font-size: 1.4rem;
    font-weight: 500;
    text-transform: uppercase;
    color: rgb(255, 255, 255);
    box-shadow: rgba(99, 99, 99, 0.2) 0rem .2rem .8rem .0rem;
    background-color: #0563D5;
    border-radius: 3.0rem;
    margin: auto;
    border: none;
    margin-inline: auto;
    transition: all 0.3s ease ;
    cursor: pointer;
    &:hover{
        background-color:#111;
    }
}
.contact_content_left_right_form_button_wrap{
    width: 100%;
}
@media screen and (max-width:991px) {
    .contact_content_inner{
        flex-direction: column;
        gap: 3.5rem;
    }
    .contact_content_left{
        order: 2;
        width: 100%;
    }
    .contact_content_left_right{
        width: 100%;
    }
    .contact_content_left_right_form_col_inner{
        .fileUpload_label{
            svg{
                width: 3rem;
                height: 3rem;
            }
        }
    }
    .productdetail_breadcrumb{
        padding-inline: 0;
    }
}