.research-bg{
    width: 100%;
    height: 300px;
    background: #6ea8f7;
    text-align: center;
}
.research-title{
    padding-top: 120px;
}
.research-title>.big-title{
    font-size: 36px;
    color: #fff;
    letter-spacing: 12px;
}
.research-title>.sub-title{
    font-size: 16px;
    color: #fff;
    letter-spacing: 2px;
    margin-top:16px;
}

.div-inline{
    display: inline-block;
    width: 580px;
    overflow: hidden;
    margin-top: -5px;
    vertical-align: middle;
}
.div-inline>div{
    float: left;
}
.lable-span{
    color: #0F73FD;
    display: inline-block;
    margin-right: 30px;
    vertical-align: middle;
}

/*.footer-none{*/
/*    display: none;*/
/*}*/






.csscheckbox {
    margin: 1px 0;
    padding: 7px 0;
    position: relative;
    cursor: pointer;
    display: inline-block;
    vertical-align: middle;
    font-weight: 400;
}

.csscheckbox input {
    position: absolute;
    opacity: 0;
}

.csscheckbox span {
    position: relative;
    display: inline-block;
    margin-top: -2px;
    width: 14px;
    height: 14px;
    border-radius: 0px;
    background: rgba(250, 250, 250, .25);
    border: 1px solid #0F73FD;
    vertical-align: middle;
}

.csscheckbox span:hover {
    background: rgba(250, 250, 250, .75);
}

.csscheckbox span:after {
    content: "";
    position: absolute;
    top: 0px;
    right: 0px;
    bottom: 0px;
    left: 0px;
    border-radius: 0px;
    background-color: #0F73FD;
    opacity: 0;
    -webkit-transition: all .15s ease-out;
    transition: all .15s ease-out;
    -webkit-transform: scale(.5);
    transform: scale(.5);
}

.csscheckbox input:checked + span:after {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
}

.csscheckbox input:checked + span:after {
    background-color: #0F73FD;
}