﻿/*-------footer----------*/
.footer {
    color: white;
    width: 100%;
    background-color: #152539;
    padding: 80px 0 120px 0;
}

.footer_container {
    width: 86%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-direction: row;
    flex-wrap: nowrap;
}

.footer_section h2 {
    color: rgba(255,255,255,.9);
    font-size: 20px;
    padding-bottom: 16px;
    font-weight: 400;
}

.footer_section p {
    color: rgba(255, 255, 255,.4);
    padding-top: 8px;
}

.footer_section p:nth-of-type(2n+1) {
    color: rgba(255,255,255,.9);
    padding-top: 16px;
}

.footer_section li a{
    display: block;
    color: rgba(255, 255, 255,.4);
    padding-top: 16px;
    transition: all 300ms ease;
    font-weight: 300;
}

.footer_section li a:hover{
    color:rgb(250, 250, 250);
}

.footer_right img {
    width: 160px;
    height: 160px;
    opacity: .8;
    margin-left: 8px;
    border-radius: 8px;
}

.footer_right p {
    text-align: right;
}

.line {
    width: 90%;
    height: 1px;
    background-color: rgba(255, 255, 255, .2);
    margin: 0 auto;
    margin-top: 80px;
}