.left {
    width: 50%;
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    background-size: cover;
    background-position: 50% 0;
    background-color: #000;
    background-image: url('../images/banner.jpg');
}

.right {
    float: right;
    width: 50%;
}

.right-content {
    width: 100%;
    height: 100vh;
    font-weight: 300;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.right-content .avator {
    border-radius: 50%;
    width: 140px;
    height: 140px;
}

.right-content .username {
    font-size: 30px;
    margin-top: 20px;
}

.right-content .user-description {
    width: 70%;
    font-size: 16px;
    line-height: 30px;
    font-weight: inherit;
    text-align: center;
    margin: 20px auto;
}

.right-content .site { 
    color: #3c3c3c;
    line-height: 1.8;
    font-size: 14px
}
.right-content .site .ico_map {
    margin-right: 6px;
    vertical-align: middle;
    background-image: url(../images/map.svg);
    background-size: 100%;
    width: 16px;
    height: 16px;
    display: inline-block;
    margin-top: -2px
}

.right-content .nav-container {
    margin-top: 20px;
}

.right-content .nav-container .nav-item {
    display: inline-block;
    text-decoration: underline;
    margin: 6px;
}

.right-footer {
    background: #f5f5f5;
    padding: 20px 50px;
    font-size: 12px;
    color: #555;
    display: table;
    width: 100%;
}

@media(max-width: 768px) {
    .left {
        display: none
    }

    .right {
        width: 100%
    }
}