﻿.footer{
    height: 260px;
    background-color: #00374c;
}
.footer-con{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 35px 0 30px;
    overflow: hidden;
    height: 100%;
    box-sizing: border-box;
}

.footer-con .footer-item{
    flex: 1;
    color: #ecf6f7;
}
.footer-con .footer-item:nth-child(1){
    line-height: 35px;
    flex: 0 0 384px;
    height: 80px;
    margin-right: 50px;
}

.footer-con .footer-item.logo{
    background-image: url(../img/logo-top.png);
    background-repeat: no-repeat;
    background-size: calc(100% - 40px);
    background-position: center;
}


.footer-con .footer-info-title{
    font-size: 18px;
    position: relative;
    padding: 8px 0;
    margin-bottom: 10px;
}
.footer-con .footer-info-title::before{
    position: absolute;
    left: 0;
    bottom: 0;
    display: block;
    width: 20px;
    padding-bottom: 1px;
    background-color: #fff;
    content: " ";
}
.footer-con .footer-infos{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 15px;
}
.footer-con .footer-infos .infos-item{
    color: #a9b0b3;
    font-size: 12px;
    margin-right: 30px;
    line-height: 2;
    transition: color .2s;
}
.footer-con .footer-item:nth-child(2) .footer-infos:last-child{
    margin-bottom: 0;
}
.footer-con .footer-item:nth-child(2) .footer-infos:nth-last-child(2){
    margin-bottom: 20px;
}
.footer-con .footer-infos a.infos-item:hover{
    color: #fff;
}
.footer-con .footer-infos a.infos-item:active{
    color: #1684bf;
}

@media only screen and (max-device-width: 1199px){
    .footer{
        height: auto;
    }
    .footer-con{
        display: block;
        padding: 3vw;
    }
    .footer-con .footer-item:nth-child(1){
        height: 20vw;
        width: 80vw;
        margin: 0 auto 5vw;
    }
    .footer-con .footer-info-title{
        font-size: 4.2vw;
        padding: 2vw 0;
    }
    .footer-con .footer-info-title::before{
        width: 4.5vw;
        padding-bottom: 3px;
    }
    .footer-con .footer-infos{
        margin: 2.5vw 0;
    }
    .footer-con .footer-infos:not(.no-flex) .infos-item{
        font-size: 3.5vw;
        width: calc(50% - 15px);
        margin-right: 15px;
        line-height: 3.5;
    }
    .footer-con .footer-infos:not(.no-flex) .infos-item:nth-child(2n){
        margin-right: 0;
        margin-left: 15px;
    }
    .footer-con .footer-infos.no-flex{
        display: block;
    }
    .footer-con .footer-infos.no-flex .infos-item{
        font-size: 3.5vw;
        line-height: 2.5;
    }
    .footer-con .footer-infos.last{
        background-color: #2e7cac;
        text-align: center;
        width: 100vw;
        position: relative;
        left: -3vw;
        bottom: -3vw;
    }
    .footer-con .footer-infos.last .infos-item{
        color: #fff;
        line-height: 4;
    }
}