/********************* Footer ******************************/
.footer {
    position: relative;
    background-color: var(--black);
    padding: 80px 0 40px;
    margin-bottom: 40px;
    border-radius: 20px;
}

.footer .wrapper_large {
    z-index: 0;
}

.footer_wrapper,
.footer_copyright {
    display: flex;
    justify-content: space-between;
    align-items: start;
}

.footer_container {
    display: flex;
    align-items: start;
}

.footer_wrapper .col {
    margin-right: 120px;
}

.footer_wrapper .col:last-of-type {
    margin-right: 0;
}

.footer_logo {
    margin-right: 0;
    margin-bottom: 25px;
    cursor: pointer;
}

.footer .col .copyright {
    width: 250px;
    color: var(--grey);
    line-height: 1.8;
}

.footer .col .copyright span {
    opacity: 0.5;
}

.footer_wrapper .col h3 {
    color: var(--grey);
    margin: -5px 0 30px 0;
    font-size: 24px;
}

.footer_wrapper .col ul {
    margin-bottom: 0;
}

.footer_wrapper .col li a {
    color: var(--grey);
    font-weight: 400;
    margin-bottom: 20px;
    display: flex;
    transition: 0.2s all ease-in-out;
}

.footer_wrapper .col li a i {
    font-size: 18px;
    width: 30px;
    padding-top: 3px;
    box-sizing: border-box;
}

.footer_wrapper .col li a .fa-map-marker-alt {
    padding-left: 3px;
}

.footer_separator {
    width: 100%;
    height: 2px;
    background-color: var(--grey);
    margin: 60px 0 40px;
    opacity: 50%;
}

.base_footer_wrapper,
.base_footer_container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.base_footer_wrapper p {
    color: var(--grey);
    margin: 0 50px 0 0;
}

.base_footer_wrapper ul {
    display: flex;
    align-items: center;
    margin-left: auto;
}

.base_footer_wrapper ul li {
    margin-left: 50px;
}

.base_footer_wrapper ul li a {
    color: var(--grey);
    transition: 0.2s all ease-in-out;
}

.footer .subscribe_wrapper {
    margin-left: auto;
}

/*************** Copyright ********************/
.footer_copyright {
    flex-flow: row-reverse;
    align-items: center;
    color: var(--grey);
    opacity: 0.5;
    font-size: 16px;
    margin-top: 25px;
}

.footer_copyright p {
    margin: 0 20px 0 0;
    font-size: 16px;
}

.footer_copyright a {
    margin-left: 20px;
    color: var(--grey);
    transition: 0.2s all ease-in-out;
}

.footer_wrapper .col li a:hover,
.footer_copyright a:hover,
.social a:hover,
.base_footer_wrapper ul li a:hover {
    color: var(--green);
    transition: 0.2s all ease-in-out;
}

@media (max-width: 1550px) {
    .footer_wrapper .col {
        margin-right: 80px;
    }
}

@media (max-width: 1450px) {
    .base_footer_wrapper {
        align-items: flex-start;
        margin-top: -10px;
    }

    .base_footer_container,
    .base_footer_wrapper ul {
        flex-direction: column;
        align-items: flex-start;
        margin: 0;
    }

    .base_footer_wrapper ul {
        align-items: flex-end;
    }

    .base_footer_container p,
    .base_footer_container li {
        margin-top: 10px;
    }
}

@media (max-width: 1400px) {
    .footer_wrapper {
        flex-direction: column;
    }

    .footer_wrapper .col {
        margin-right: 140px;
    }

    .footer_wrapper .third_col {
        margin-right: 0px;
    }

    .footer_wrapper .subscribe_wrapper {
        margin-top: 80px;
        margin-left: 0;
        margin-right: auto;
    }

    .footer_separator {
        margin-top: 40px;
    }
}

@media (max-width: 1350px) {
    .footer .col .copyright {
        width: 220px;
    }
}

@media (max-width: 1250px) {
    .footer {
        margin-bottom: 25px;
    }
}

@media (max-width: 1150px) {
    .footer .col .copyright,
    .footer .col .copy {
        width: 450px;
    }

    .footer_wrapper .col:last-of-type {
        margin-bottom: 0;
    }
    
    .footer_copyright a {
        margin-left: 0;
    }
}

@media (max-width: 900px) {
    .footer_container {
        flex-direction: column;
    }

    .col,
    .footer_wrapper .subscribe_wrapper {
        margin-top: 30px;
    }

    .col:first-of-type {
        margin-top: 0;
    }
}

@media (max-width: 800px) {
    .footer {
        margin-bottom: 20px;
    }
}

@media (max-width: 600px) {
    .footer .col .copy {
        width: 100%;
    }

    .base_footer_wrapper {
        flex-direction: column;
    }

    .base_footer_container {
        align-items: flex-start !important;
    }

    .base_footer_wrapper ul li {
        margin-left: 0;
    }

    .footer_wrapper .col li a {
        margin-bottom: 10px;
    }

    .footer_wrapper .col h3 {
        margin-bottom: 20px;
    }

    .footer .subscribe_wrapper {
        width: 100%;
    }

    .footer_separator {
        margin-top: 30px;
    }
}