.contact{
    display: flex;
    flex-wrap: wrap;
}
.contact>div,
.contact>form{
    padding: 20px;
    /* flex:1; */
}
.map{
    flex:0 0 65%;
}
.contact-info{
    flex:0 0 35%;
}
.contact-info a img{
    vertical-align: middle;
    margin-left: 2px;
    display: inline-block;
    transition: 0.3s all;
}
.contact-info a:hover img{
    transform:translate3d(0,-5px,-5px);
}
.bottom_contact {
    flex: 0 0 50%;
    display: flex;
    flex-wrap: wrap;
}
.bottom_contact>div{
    flex:0 0 50%;  
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center; 
    margin-bottom: 20px;
}
.bottom_contact>div>img{
    width: 32px;

}
.bottom_contact>div span{
    font-size: 15px;
    margin: 5px 0;
    color: #010101;
}
.bottom_contact>div a{
    font-size: 24px;
    margin: 5px 0;
    color: #010101;
    font-weight: 600;
}
.bottom_contact+div{
    flex:0 0 50%; 
}
.bottom_contact+div img{
    max-width: 100%;
}
.bottom_contact>div a img{
    transition: 0.3s all;
}
.bottom_contact>div a:hover img{
    transform:translate3d(0,-5px,-5px);
}
.contact-info h3{
    line-height: 35px;
    border-bottom: 1px solid #000;
    margin-bottom:10px;
    font-size: 20px;
}
.contact-info>div{
    margin-bottom: 25px;

}
.contact-info p,
.contact-info a{
    /* display: flex;
    align-items: flex-start;
    margin-bottom: 20px; */
    font-size: 16px;
    color: #010101;

}
.contact-info>p svg{
    flex: 0 0 30px;
    margin-right: 10px;
}
form h1,
.contact-info h1{
    font-size: 20px;
    margin-bottom: 20px;
}

.form-col {
    line-height: 35px;
    font-size: 14px;
    margin-bottom: 5px;
}

#check-code {
    line-height: 35px;
    font-size: 15px;
}

.form-col label {
    flex: 1;
    display: block;
    box-sizing: unset!important;
    font-size: 16px;
    line-height: 35px;
}

.form-col>input,
.form-col>textarea {
    background-color: #f9fbfc;
    color: #666;
    font-size: 15px;
    border: 1px solid #d9e1e3;
    border-radius: 6px;
    padding: 12px 15px;
    resize: vertical;
    /* width: calc(100% - 120px); */
}

#check-code>input {
    background-color: #f9fbfc;
    color: #666;
    font-size: 15px;
    border: 1px solid #d9e1e3;
    border-radius: 6px;
    padding: 12px 15px;
    resize: vertical;
    width: 60%;
    float: left;
}

#check-code>label {
    display: block;
}

.form-col>textarea {
    min-height: 200px;
}

.code {
    color: #666;
    font-size: 16px;
    border-radius: 6px;
    resize: vertical;
    padding: 0 10px;
    font-size: 30px;
    font-style: italic;
    line-height: 50px;
    font-weight: bold;
    text-align: center;
    width: 40%;
    cursor: pointer;
    float: left;
}

.submit input {
    width: 100%;
    display: block;
    border: none;
    padding: 12px 15px;
    border-radius: 6px;
    transition: 0.3s all;
    cursor: pointer;
    background: rgb(35 31 32);
    color: #fff;
    font-size: 18px;
}

.inputfocus {
    border: 1px solid green;
}

.submit input:hover {
    background: #000;
}

.contact-box>div:nth-child(1) {
    float: left;
    width: 50%;
    padding: 20px;
    font-size: 16px;
    line-height: 28px;
}

.contact-box>div.info-box {
    float: left;
    width: 50%;
    padding: 20px;
    font-size: 16px;
    line-height: 28px;
}

.contact-box .fa {
    font-size: 30px;
    float: left;
    margin-right: 10px;
    color: #5eb52a;
}

.submit {
    clear: both;
    overflow: hidden;
    margin-top: 20px;
}

.form-title {
    margin-bottom: 20px;
}

.form-title>p {
    font-size: 28px;
    font-weight: 600;
}

.form-title>p.sub-title {
    font-size: 16px;
    font-weight: 400;
}

@media screen and (max-width:760px) {
    .contact>div, .contact>form {
        padding: 0;
        flex: 0 0 100%;
        margin-bottom: 20px;
    }
}
@media screen and (max-width:480px) {
    .bottom_contact>div span {
        font-size: 13px;
        margin: 5px 0;
        color: #010101;
    }
    .bottom_contact>div a {
        font-size: 16px;
        margin: 5px 0;
        color: #010101;
        font-weight: 600;
    }
}