/* Contnent */
/* footer */
.footer{
	background: #111111;
}
.content-footer {
    padding: 60px 0 60px;
}
.container-footer{
    margin-left: 100px;
    margin-right: 100px;
    display: flex;
}
.content-footer-logo {
    width: calc(100% / 4);
    padding-left: 15px;
    padding-right: 15px;
}
.content-footer-link-list {
    list-style: none
}
.content-footer-logo a img{
    max-width: 210px;
}
.content-footer-link {
    /* width: calc(100% / 4); */
}
.content-footer-link-title {
    color: #799DD2;
    text-transform: uppercase;
    font-weight: bold;
    font-size: 18px;
    margin-bottom: 10px;
}
.content-footer-link-item {
    line-height: 25px;
}
.content-footer-link-item a {
    color: #fff;
    font-size: 13px;
    font-weight: 400;
}
.content-footer-link-item a:hover {
    text-decoration: none;
}
.content-footer-link-item a:hover {
    color: #799DD2;
}
.social-link-list {
    display: flex;
}
.social-link img {
    background: #fff;
    border: 1px solid #fff;
    max-width: 30px;
    margin-right: 8px;
    border-radius: 50%;
}
.copy-right-footer {
    background: #000;
    padding: 10px 0;
    font-size: 13px;
    color: #fff;
}

.container-copyright div{
    padding-left: 15px;
}
.container-copyright div a{
    color: #799cd2;
} 
.container-copyright div a:hover{
    color: #23527c;
    text-decoration: none;
    cursor: pointer;
}
@media screen and (max-width: 900px) {
    .container-footer {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    .content-footer-logo {
        width: 100% !important;
        padding: 0;
        text-align: center;      
    }
    .content-footer-link {
        width: 100% !important;
        text-align: center;
        margin-top: 20px !important;
    }
    .social-link-list {
        display: flex;
        justify-content: center;
    }
    .container-copyright {
        margin: 0;
        padding-left: 15px;
        padding-right: 15px;
    }
}