.content-box{
    padding-top:45px;
    padding-bottom:60px;
}
.contact_box{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.contact_box>div{
    width: 290px;
    height: 328px;
    background: #FFFFFF;
    border: 2px solid #EEEEEE;
    box-sizing: border-box;
}
.contact_box .contact-img-box{
    height: 218px;
    background-color:#5492DE;
    margin:-2px;
}
.contact-info{
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 300;
    color: #666666;
    line-height: 28px;
    box-sizing: border-box;
    padding:0 28px;
    height: 108px;
}
.contact-img-box.location{
    background-image: url("img/location.png");
    background-repeat: no-repeat;
    background-position: center;
}
.contact-img-box.phone{
    background-image: url("img/phone.png");
    background-repeat: no-repeat;
    background-position: center;
}
.contact-img-box.email{
    background-image: url("img/email.png");
    background-repeat: no-repeat;
    background-position: center;
}
.contact_box>div:last-child{
    background-color:#EEEEEE;
    background-image: url("../public/img/qr-code.png");
    background-repeat: no-repeat;
    background-position: center;
    background-position-y: 20px;
    font-size: 18px;
    font-weight: 300;
    color: #999999;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom:16px;
}
.contact_map{
    width: 100%;
    height: 570px;
    background: url("img/map.png");
    background-size: cover;
    margin-top:40px;
}
.contact_map>img{
    width: 100%;
    display: block;
}


.icon-box{
    display: flex;
    align-items: center;
}
.icon-box>div{
    width: 300px;
    height: 132px;
    display: flex;
    background-color: rgba(84, 146, 222, 0.2);
    align-items:flex-end;
    box-sizing: border-box;
    justify-content: center;
    font-size: 16px;
    font-weight: 200;
    color: #666666;
    padding-bottom:20px;
    background-position-x: center;
    background-position-y: 30px;
    background-repeat: no-repeat;
}
.icon-box>div:nth-child(even){
    background-color: rgba(84, 146, 222, 0.3);
}
.icon-box .icon-1{
    background-image: url("img/icon-1.png");
}
.icon-box .icon-2{
    background-image: url("img/icon-2.png");
}
.icon-box .icon-3{
    background-image: url("img/icon-3.png");
}
.icon-box .icon-4{
    background-image: url("img/icon-4.png");
}
.company-img img{
    width: 555px;
    height: 324px;
    display: block;
}
.content-about-company{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom:40px;
}
.company-title{
    font-size: 20px;
    font-weight: 400;
    color: #4D4D4D;
    margin-bottom:20px;
}
.company-profile{
    width: 596px;
    font-size: 18px;
    font-weight: 300;
    color: #666666;
    line-height: 33px;
    border-bottom:1px solid #DCDCDC;
    padding-bottom:35px;
}
.company-profile>div{
    text-indent: 32px;
}

.content-tab{
    padding-top:40px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.content-tab>a{
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    width: 183px;
    height: 50px;
    border: 1px solid #CED4DB;
    border-radius: 25px;
    cursor: pointer;
    color: #4D4D4D;
    font-weight: 300;
    font-size: 20px;
    margin-right: 28px;
}
.content-tab>a:last-child{
    margin-right: 0;
}
.content-tab>a.on{
    border-color:#5492DE;
    background: #5492DE;
    color:white;
}

@media screen and (max-width: 768px){
    .contact_map>img{
        max-width: 100%;
    }
    .contact_map{
        width: 100%;
        height: 43.7vw;
        margin-top:10px;
    }
    .contact_box{
        /*flex-direction: column;*/
        flex-wrap: wrap;
        justify-content: space-between;
    }
    .contact_box>div{
        width: 48%;
        margin-bottom:20px;
        height: 230px;
    }
    .contact-info{
        font-size: 14px;
        line-height: 22px;
        padding:0 15px;
    }
    .contact_box .contact-img-box{
        height: 135px;
        background-size: 80px;
    }
    .contact_box>div:last-child{
        background-size: 90%;
        font-size: 14px;
        padding-bottom:12px;
        background-position-y: 12px;
    }

    .content-about-company{
        flex-direction: column;
    }
    .company-img img{
        max-width: 100%;
        height: auto;
    }
    .company-profile{
        width: 100%;
        border-bottom:none;
    }
    .icon-box{
        flex-wrap: wrap;
    }
    .icon-box>div{
        width: 50%;
    }
    .icon-box>div:nth-child(3){
        background-color: rgba(84, 146, 222, 0.3);
    }
    .icon-box>div:nth-child(4){
        background-color: rgba(84, 146, 222, 0.2);
    }
    .content-tab{
        flex-wrap: wrap;
        justify-content: space-around;
    }
    .content-tab>a{
        font-size: 16px;
        width: 45%;
        margin-right: 0;
        margin-bottom:15px;
    }

}