:root {
    --color-primary: #486221;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

::-webkit-scrollbar-track {
    background-color: #F4F4F4;
}
::-webkit-scrollbar {
    width: 8px;
    background: #F4F4F4;
}
::-webkit-scrollbar-thumb {
    background: #7e7e7e;
    border-radius: 3px;
}

.color-primary {
    color: var(--color-primary);
}

.background-primary {
    background-color: var(--color-primary);
}

.seo-only {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.section-view-height {
    height: 590px;
}

.divisor {
    width: 100%;
    height: 100px;
}

.line {
    width: 190px;
    height: 4px;
    background-color: var(--color-primary);
}

.wpp-flutuante {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    position: fixed;
    right: 16px;
    bottom: 16px;
    z-index: 99;
}

.subtitle {
    width: 50%;
}

#myCarousel {
    padding: 0 60px;
}

.swiper-slide.card .card-img-top {
    max-height: 350px;
}

.swiper-button-prev:after, .swiper-button-next:after{
    content: '';
}

.swiper-button-next {
    right: 60px;
    transform: translateX(150%);
}

.swiper-button-prev {
    left: 60px;
    transform: translateX(-150%);
}

.swiper-pagination-bullet-active {
    background-color: var(--color-primary);
}

footer {
    height: 400px;
    background-image: url(assets/bg-footer.png);
}

footer .content {
    height: 100%;
    padding-top: 8rem;
}

footer .copyright {
    height: 48px;
    font-size: 14px;
}

@media screen and (max-width: 1400px) {
    .swiper-slide.card .card-img-top {
        max-height: 290px;
    }
}

@media screen and (max-width: 1200px) {
    .swiper-slide.card .card-img-top {
        max-height: 230px;
    }
}

@media screen and (max-width: 991px) {
    .swiper-slide.card .card-img-top {
        max-height: 256px;
    }
}

@media screen and (max-width: 767px) {
    .line {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }

    .subtitle {
        width: 100%;
    }

    .swiper-slide.card .card-img-top {
        max-height: 396px;
    }

    footer {
        height: 100%;
    }

    footer .content {
        height: auto;
        padding-top: 4rem;
    }
}

@media screen and (max-width: 425px) {
    .section-view-height {
        height: auto;
    }
}

@media screen and (max-width: 369px) {
    footer .copyright {
        flex-wrap: wrap;
    }

    footer .copyright .desktoponly {
        display: none;
    }
}