body {
    font-size: 16px;
    line-height: 1.6;
}

.fa, .fab {
    padding: 0;
    margin: 0;
}

.footer_wave {
    margin-top: 0px;
}

.footer {
    position: relative;
    background-color: var(--green);
    padding: 0 0 100px 0;
    margin-top: -60px;
    overflow: hidden;
}

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

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

.footer_logo {
    display: block;
    width: 220px;
    cursor: pointer;
}

.footer_logo svg {
    width: 220px;
}

.footer .col .copy {
    opacity: 0.75;
    width: 220px;
    margin-top: 20px;
    color: var(--white);
    font-size: 16px;
}

.footer_wrapper .col h3 {
    color: var(--white);
    margin-top: -5px;
    font-family: "BPreplay";
    font-weight: 400;
    font-style: normal;
    font-size: 20px;
}

.footer_wrapper .col li a {
    color: var(--white);
    font-weight: 400;
    margin-bottom: 10px;
    display: flex;
    opacity: 0.75;
    transition: all 0.3s 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_children {
    position: absolute;
    top: 30px;
    right: -100px;
    width: 560px;
    opacity: 10%;
}

.footer_children svg {
    width: 560px;
}

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

.page_scroll_button:hover {
    background-color: #11abbf;
    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: 16px;
    margin-right: 15px;
    opacity: 0.75;
    transition: all 0.3s ease-in-out;
}

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

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

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

.footer_wrapper .col li a:hover,
.footer_copyright a:hover,
.social a:hover {
    opacity: 1;
    transition: all 0.3s ease-in-out;
}

.dh-credit a {
    color: #34499f;
    margin-left: 5px;
    margin-right: 20px;
    font-weight: 600;
}

hr {
    flex-grow: 1;
    height: 2px;
    background-color: var(--white);
    border: none;
}

@media (max-width: 1600px) {
    .footer {
        margin-top: -40px;
        padding: 30px 0 100px 0;
    }

    .footer_wave {
        margin-top: 50px;
    }
}

@media (max-width: 1150px) {
    .footer {
        padding: 0px 0 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: 950px) {
    .footer {
        padding: 30px 0 50px 0;
    }
}

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

    .footer .col .copy {
        width: 100%;
    }

    .footer_children {
        top: 60px;
        right: -200px;
        opacity: 10%;
    }
}