/* start of footer section */
.footer {
    position: relative;
    border-top: 2px solid var(--wc-green);
}

.footer::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--wc-dark);
    z-index: -1;
    /* opacity: 0.2; */
}

.footer hr {
    border-color: var(--wc-white);
}

.footer>div {
    max-width: var(--vw);
    margin: auto;
    padding: 3rem 0.5rem 1rem;
}

.footer .logo-section {
    text-align: center;
    flex: 0 0 100%;
}

.footer .logo-section img {
    width: 100%;
    max-width: 300px;
}

.footer .logo-section .tagline {
    color: var(--wc-green-2);
    font-size: 1.5em;
    font-weight: bold;
    margin-top: 1rem;
}

.footer .links-section {
    flex: 0 0 100%;
}

.footer .links-section>div {
    flex-grow: 1;
    flex-basis: 100%;
}

.footer h5 {
    color: var(--wc-white);
}

.footer .links-section a {
    color: var(--wc-white);
    text-decoration: none;
    display: flex;
    gap: 0.5rem;
}

.footer .links-section .icon {
    width: 20px;
    display: inline-block;
    margin-right: 0.5rem;
    transition: all ease 300ms;
}

.footer .links-section a:hover {
    color: var(--wc-green-2);
}

.footer .links-section ul li {
    padding: 0.3rem 0;
}

.footer .links-section a {
    font-size: 0.8em;
}

.footer .social-links .icon {
    display: block;
    height: 40px;
    filter: saturate(0) brightness(10);
}

.footer .social-links a:hover .icon {
    filter: saturate(1.5) brightness(1);
}

.footer .gmaps {
    margin-top: 2rem;
}

.footer .gmaps iframe {
    width: 100%;
    height: 400px;
    border-radius: 1rem;
    border: 4px solid var(--wc-green) !important;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.footer .cp {
    opacity: 0.75;
    color: var(--wc-white);
}

.footer  .cp a {
    color: #FF8404;
}

@media screen and (min-width: 576px) {
    .footer .links-section>div {
        flex-basis: 50%;
    }
}

@media screen and (min-width:768px) {
    .footer .logo-section {
        flex-basis: 30%;
    }

    .footer .links-section {
        flex-basis: 70%;
        padding-left: 2rem;
    }

    .footer .logo-section img {
        max-width: 250px;
    }

    .footer .links-section>div {
        flex-basis: 33%;
    }
}

/* end of footer section */