/********************* Footer ******************************/
.footer {
    background-color: var(--red);
    padding: 120px 0;
    margin-top: 100px;
}

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

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

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

.footer_logo svg .st0 {
    fill: var(--white);
}

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

.footer .fa-copyright {
    margin-right: 5px;
}

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

.footer_wrapper .col h3 {
    color: var(--white);
    margin-top: -5px;
    margin-bottom: 0;
    font-size: 24px;
    font-weight: 500;
    opacity: 0.5;
}

.footer_wrapper .col li a {
    color: var(--white);
    font-weight: 400;
    margin-bottom: 10px;
    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 .social a {
    margin-top: 20px;
    transition: 0.2s all ease-in-out;
}

.footer .terms_link {
    width: 100%;
    color: var(--black);
    opacity: 0.7;
    transition: 0.2s all ease-in-out;
    margin-top: 5px;
}

.footer .terms_link:hover {
    opacity: 1;
    transition: 0.2s all ease-in-out;
}

/*************** Page Scroll Button ********************/
.page_scroll_button {
    background-color: var(--black);
    width: 46px;
    height: 46px;
    border-radius: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    outline: none;
    box-shadow: 0px 3px 10px #0000000D;
    transition: 0.1s all ease-in-out;
}

.page_scroll_button:hover {
    transition: 0.15s all ease-in-out;
}

.page_scroll_button:active {
    transform: scale(0.96);
    outline: none;
    background-position: 500px;
    transition: 0.1s all ease-in-out;
}

.page_scroll_button i {
    font-size: 16px;
    color: var(--white);
}

/*************** Social ********************/
.social a {
    color: var(--white);
    font-size: 18px;
    margin-right: 10px;
}

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

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

.footer_copyright a {
    margin-left: 20px;
    color: var(--white);
}

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

@media (max-width: 1150px) {
    .footer {
        padding: 50px 0;
    }

    .footer .col .copy {
        width: 450px;
    }

    .footer_wrapper,
    .footer_copyright {
        display: block;
    }

    .footer_wrapper .col {
        margin-bottom: 40px;
    }

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

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