/*=============== FOOTER ===============*/

.footer {
    position: relative;
    overflow: hidden;
    font-family: var(--body-font) !important;
}

.footer__picture {
    width: 100%;
    background-color: #78b249;
    background-size: cover;
    background-repeat: no-repeat;
    z-index: var(--z-fixed);
}

.footer__copy img {
    width: 150px;
}

.footer__img-one:hover, .footer__img-two:hover {
    transform: translateY(-.5rem);
}

.footer__container {
    row-gap: 2rem;
}

.footer__logo {
    display: flex;
    align-items: center;
    column-gap: .5rem;
    margin-bottom: var(--mb-1);
    font-weight: var(--font-medium);
    color: var(--title-color);
}

.footer__logo .footer__logo-img {
    width: 200px;
}

.footer__description {
    margin-bottom: var(--mb-2-5);
}

.footer__social {
    display: flex;
    column-gap: .75rem;
}

.footer__social-link {
    display: inline-flex;
    /* background: var(--container-color); */
    padding: .25rem;
    border-radius: .25rem;
    color: var(--title-color);
    font-size: 1rem;
}

.footer__social-link_hover {
    background: var(--body-color);
}

.footer__title {
    font-size: var(--h3-font-size);
    margin-bottom: var(--mb-1) !important;
    color: var(--white-color);
}

.footer__links {
    display: grid;
    row-gap: .35rem;
}

.footer__links li {
    padding-left: 0px !important;
    padding-top: 0px !important;
    padding-bottom: 0px !important;
}

.footer__link,
.footer__link-info {
    font-size: var(--small-font-size);
    color: #fff !important;
    transition: .3s;
}

.footer__link:hover {
    color: #0A4661 !important;
}

.footer__copy {
    display: flex;
    align-items: center;
    justify-content: space-around;
    flex-direction: column;
    color: #fff !important;
}

.footer__copy span {
    font-size: var(--smaller-font-size);
    display: flex;
    align-items: center;
    flex-direction: column;
    padding-top: 2rem;
    padding-bottom: 2rem;
    color: #fff !important;
}

.footer__copy .social_icon {
    width: 25px;
}

/*=============== SCROLL BAR ===============*/

/* ::-webkit-scrollbar {
    width: 0.6rem;
    background: #413e3e;
}

::-webkit-scrollbar-thumb {
    background: #272525;
    border-radius: .5rem;
} */

/*===============  BREAKPOINTS ===============*/

/* For small devices */

@media screen and (max-width: 320px) {
    .home__buttons {
        flex-direction: column;
        width: max-content;
        row-gap: 1rem;
    }
    .category__container, .trick__container {
        grid-template-columns: .8fr;
        justify-content: center;
    }
    .footer__copy span {
        text-align: center;
    }
}

@media screen and (max-width: 768px) {
    .footer__picture {
        background-position-x: -55rem;
    }
}

/* For medium devices */

@media screen and (min-width: 576px) {
    .about__container {
        grid-template-columns: .8fr;
        justify-content: center;
    }
    .newsletter__container {
        display: grid;
        grid-template-columns: .7fr;
        justify-content: center;
    }
    .newsletter__description {
        padding: 0 3rem;
    }
    .footer__copy span {
        font-size: var(--smaller-font-size);
        display: flex;
        align-items: center;
    }
}

@media screen and (min-width: 767px) {
    .newsletter__container {
        grid-template-columns: .5fr;
    }
    .footer__picture {
        width: 100%;
        background-image: url('../../default/img/bg-img/footer_bg_green.png');
        background-color: transparent;
        background-size: cover;
        background-repeat: no-repeat;
        padding-top: 39rem;
        z-index: var(--z-fixed);
    }
    .footer__container {
        grid-template-columns: repeat(3, 1fr);
        justify-items: center;
        column-gap: 1rem;
    }
    .footer__content {
        display: flex;
        flex-direction: column;
        row-gap: .5rem;
    }
    .footer__copy {
        display: flex;
        align-items: center;
        justify-content: space-around;
        flex-direction: row;
    }
    .footer__copy span {
        font-size: var(--smaller-font-size);
        display: flex;
        align-items: center;
        flex-direction: row;
        padding-top: 0rem;
        padding-bottom: 0rem;
    }
}

/* For large devices */

@media screen and (min-width: 992px) {
    .footer__copy {
        margin-top: 4rem;
    }
    .footer__copy img {
        width: 200px;
    }
}

@media screen and (min-width: 1200px) {
    .swiper-pagination {
        margin-top: var(--mb-2-5);
    }
}