@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&display=swap");

/* || RESET */

html {
    font-size: 10px;
}

* {
    font-family: "Roboto", sans-serif;
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    scroll-behavior: smooth;
}

/* || VARIABLES */

:root {
    --light-green: #73b89f;
    --green: #3c9278;
    --dark-green: #216751;
    --black: #221f1f;
    --white: #ffffff;

    --light: 300;
    --regular: 400;
    --bold: 700;

    --title: 6rem;
    --normal: 1.6rem;
}

/* || GLOBAL */
p,
a,
span {
    font-size: 1.6rem;
    text-decoration: none;
}

a {
    cursor: pointer;
    width: max-content;
}

ul {
    list-style: none;
}

.container {
    max-width: min(100%, 1920px);
    padding-left: 24px;
    padding-right: 24px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}

.flex {
    display: flex;
}

.column {
    flex-direction: column;
}

.row {
    flex-direction: row;
}

.f-center {
    justify-content: center;
    align-items: center;
}

.border {
    border: 1px solid currentColor;
}

.bgi-container {
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
}

.grid {
    display: grid;
}

.button {
    padding: 20px 40px 20px 50px;
    min-width: 200px;
    max-width: 250px;
    text-align: center;
    white-space: nowrap;
    border-radius: 0px;
    border: 1px solid currentColor;
    cursor: pointer;
    background-color: transparent;
    font-size: 1.2rem;
    line-height: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: none;
    border-style: solid !important;
    position: relative;
    transition: padding-left ease 0.35s;
}

.button.back {
    transition: padding-right ease 0.35s;
}

.button::after {
    content: "";
    background-image: url(/assets/images/big-arrow-down.svg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
    width: 15px;
    height: 40px;
    position: absolute;
    display: block;
    transform: translateY(-50%) rotate(-90deg);
    right: 45px;
    top: 50%;
    opacity: 0;
    transition: opacity ease 0.35s, right ease 0.35s;
}

.button.back::after {
    left: 45px;
    transform: translateY(-50%) rotate(90deg);
    transition: opacity ease 0.35s, left ease 0.35s;
}

@media (hover: hover) {
    .button:not(.back):hover {
        padding-left: 0;
    }

    .button.back:hover {
        padding-left: 40px;
        padding-right: 0;
    }

    .button:not(.back):hover::after {
        right: 30px;
        opacity: 1;
    }

    .button.back:hover::after {
        right: unset;
        left: 30px;
        opacity: 1;
    }
}

.divisor {
    margin-left: 12px;
    margin-right: 12px;
    width: 4px;
    height: 4px;
    background-color: var(--black);
    border-radius: 50%;
}

/* || COMPONENTS */
header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 99;
    transition: background-color ease 0.75s;
}

.tecnologies header{
    background-color: #fff;
}

.desktop {
    display: block;
}

.mobile {
    display: none;
}

header .container {
    display: flex;
    justify-content: space-between;
    padding-top: 20px;
    padding-bottom: 20px;
}

header nav {
    display: flex;
    align-items: flex-end;
}

header nav ul {
    display: flex;
    line-height: 22px;
    align-items: flex-end;
}

header nav a {
    font-size: 1.2rem;
    font-weight: var(--bold);
    letter-spacing: 2px;
    opacity: 1;
    transition: color ease 0.35s, opacity ease 0.35s;
}

header nav .languages-container a {
    opacity: 0.5;
}

header nav a::before {
    content: "";
    width: 0px;
    margin-left: auto;
    margin-right: auto;
    height: 2px;
    background-color: var(--dark-green);
    display: block;
    margin-bottom: 9px;
    transition: width ease 0.35s, opacity ease 0.35s;
}

html[lang="en"] header nav a.en::before,
html[lang="pt"] header nav a.pt::before {
    width: 24px;
}

@media (hover: hover) {
    header nav a:hover {
        opacity: 0.6;
        color: var(--dark-green);
    }

    header nav a:hover::before {
        opacity: 0.6;
        width: 24px;
    }
}

header nav li + li {
    margin-left: 3.4rem;
}

header nav .languages-container li + li {
    margin-left: 26px;
}

header nav section + section {
    margin-left: 54px;
}

header .links-container a {
    align-items: center;
    color: var(--black);
    font-size: 1.3rem;
    transition: color ease 0.3s, padding-left ease 0.3s;
    text-transform: uppercase;
}

header .languages-container a {
    line-height: 22px;
    color: var(--black);
    font-size: 1.6rem;
}

html[lang="pt"] header .languages-container a.pt,
html[lang="en"] header .languages-container a.en {
    color: var(--dark-green);
    font-weight: var(--bold);
    opacity: 1;
}

html[lang="en"] header .languages-container a.en::after,
html[lang="pt"] header .languages-container a.pt::after {
    opacity: 1;
}

footer {
    padding-top: 200px;
    padding-bottom: 35px;
    padding-left: 115px;
    padding-right: 115px;
    position: relative;
}

footer .up {
    display: grid;
    grid-template-columns:
        calc(14.66% - 80px) calc(28% - 80px) calc(14.66% - 80px)
        calc(28% - 80px) calc(14.66% - 80px);
    gap: 80px;
    justify-content: space-between;
}

footer .up .logo-container img {
    display: block;
    width: 100%;
}

footer .up address {
    font-style: normal;
}

footer .up address a,
footer .up address p {
    font-size: 3.2rem;
    line-height: 6rem;
    font-weight: var(--light);
    color: var(--black);
}

footer h3 {
    font-size: 3.2rem;
    line-height: 4rem;
    font-weight: var(--light);
    color: var(--black);
    text-transform: uppercase;
}

footer .up .social-icons {
    margin-top: 45px;
}

footer .up .icon + .icon {
    margin-left: 14px;
}

footer .up .icon {
    border: 1px solid var(--black);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    padding: 8px;
    display: inline-block;
    opacity: 1;
    transition: opacity ease 0.25s;
}

@media (hover: hover) {
    footer .up .icon:hover {
        opacity: 0.6;
    }
}

footer .up .icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

footer .up .newsletter-container .wrapper {
    margin-top: 45px;
}

footer .up .newsletter-container p + p {
    margin-top: 12px;
}

footer .up .newsletter-container p {
    font-size: var(--normal);
}

footer .up .newsletter-container form {
    margin-top: 24px;
    border-bottom: 1px solid var(--black);
    padding-bottom: 8px;
    display: flex;
    justify-content: space-between;
}

footer .up .newsletter-container input {
    border: none;
    outline: none;
    border-radius: 0;
    font-size: var(--normal);
    font-weight: var(--bold);
    letter-spacing: 1px;
    min-width: min(300px, 80%);
}

footer .up .newsletter-container input[type="submit"] {
    background-color: transparent;
    background-image: url(/assets/images/big-arrow-down.svg);
    transform: rotate(-90deg);
    width: 34px;
    height: 34px;
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
    cursor: pointer;
    min-width: unset;
}

footer .up .newsletter-container input::placeholder {
    font-size: 1.2rem;
    text-transform: uppercase;
    color: var(--black);
    opacity: 0.9;
    letter-spacing: 1px;
    font-weight: var(--bold);
}

footer .up .certify-container {
    filter: grayscale(100%);
    opacity: 0.3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

footer .up .certify-container span {
    width: 90px;
    height: 90px;
}

footer .up .certify-container img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

footer .down {
    padding-top: 125px;
    display: flex;
    justify-content: space-between;
    opacity: 0.4;
}

footer .down > * {
    display: flex;
    align-items: center;
}

footer .down .terms a {
    color: var(--black);
}

@media (hover: hover) {
    footer .down .terms a:hover {
        text-decoration: underline;
    }
}

footer .back-to-top {
    position: absolute;
    right: 40px;
    top: -270px;
    opacity: 0.6;
    transition: opacity ease 0.35s;
}

footer .back-to-top img {
    position: relative;
    bottom: 0;
    transition: bottom ease 0.35s;
    transform: rotate(180deg);
    max-height: 9rem;
}

@media (hover: hover) {
    footer .back-to-top:hover {
        opacity: 1;
    }

    footer .back-to-top:hover img {
        bottom: 10px;
    }
}

footer .back-to-top a {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

footer .back-to-top span {
    display: block;
    margin-top: 30px;
    font-weight: var(--bold);
    font-size: var(--normal);
    color: var(--dark-green);
    text-transform: uppercase;
    letter-spacing: 1px;
}
/* || PAGES */
.home #hero {
    height: 100vh;
    position: relative;
}

.home .find-more {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 70px;
}

.home .find-more img {
    position: relative;
    bottom: 0;
    transition: bottom ease 0.35s;
    max-height: 9rem;
}

@media (hover: hover) {
    .home .find-more:hover img {
        bottom: -10px;
    }
}

.home .find-more a {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.home .find-more span {
    display: block;
    margin-top: 30px;
    font-weight: var(--bold);
    font-size: var(--normal);
    color: var(--dark-green);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.home #hero .splide {
    height: 100%;
}

.home #hero .splide__track {
    height: 100%;
}

.home .splide .slide-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.home ul.splide__pagination {
    bottom: 70px;
    left: 185px;
    right: unset;
}

.home .splide__slide {
    position: relative;
}
.home .splide__slide .details-container {
    position: absolute;
    left: 185px;
    top: 50%;
    transform: translateY(-50%);
    max-width: 700px;
}

.home .splide__slide .details-container h2 {
    font-size: var(--title);
    color: var(--dark-green);
    font-weight: var(--light);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.home .splide__slide .details-container p {
    font-size: 4.3rem;
    font-weight: var(--bold);
    color: var(--dark-green);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 50px;
}

.home .splide__slide .details-container .button {
    margin-top: 60px;
    color: var(--dark-green);
    font-weight: var(--regular);
}

.home ul.splide__pagination button.splide__pagination__page.is-active,
.home ul.splide__pagination button.splide__pagination__page {
    margin: 0;
    height: auto;
    width: auto;
    padding: 0;
    background-color: transparent;
    font-size: var(--normal);
    color: var(--dark-green);
    border-radius: 0;
    transform: none;
}

.home ul.splide__pagination button.splide__pagination__page.is-active {
    font-weight: var(--bold);
    opacity: 1;
}

.home ul.splide__pagination > li + li {
    margin-left: 20px;
}

.home section#sustainability {
    position: relative;
    padding-top: 125px;
    padding-bottom: 125px;
    padding-left: 44px;
    padding-right: 44px;
    background-image: url(/assets/images/topographic-background.png);
    background-size: 750px;
    background-color: #73b89f;
    display: flex;
    justify-content: center;
}

.home section#sustainability .logo-container {
    position: absolute;
    left: 185px;
    top: 140px;
}

.home section#sustainability .logo-container img {
    height: 100%;
    object-fit: contain;
}

.home section#sustainability .details {
    max-width: min(600px, 100%);
}

.home section#sustainability .details h2 {
    font-weight: var(--light);
    color: var(--dark-green);
    text-transform: uppercase;
    font-size: var(--title);
    line-height: 90px;
    margin-bottom: 65px;
}

.home section#sustainability .details p {
    font-size: var(--normal);
    font-weight: var(--regular);
    color: var(--white);
    line-height: 2.6rem;
    max-width: 400px;
}

.home section#sustainability .details .button {
    color: var(--dark-green);
    margin-top: 50px;
}

section#seller-points {
    padding-top: 50px;
    padding-bottom: 50px;
    padding-left: 70px;
    padding-right: 70px;
    border-bottom: 2px solid var(--green);
}

.seller-points-container {
    display: flex;
    justify-content: center;
}

.seller-points-container .seller-point {
    width: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
}

.seller-points-container .seller-point .icon-container {
    
}

.seller-point .icon-container img {
   
}

.seller-point h4 {
    font-size: var(--title);
    font-weight: var(--bold);
    color: var(--green);
}

.seller-point p {
    font-size: 2.4rem;
    font-weight: var(--regular);
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--green);
}

section#key-points #accordion .acc_content .image-container {
    width: min(100%, 500px);
    height: min(100%, 300px);
}

section#key-points #accordion .acc_content .image-container img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

section#contact-us {
    background-color: var(--light-green);
    background-image: url(/assets/images/white-package.png);
    background-repeat: no-repeat;
    background-size: 40%;
    background-position: center left;
    padding-top: 120px;
    padding-bottom: 120px;
    padding-left: 275px;
    padding-right: 275px;
}

section#contact-us .wrapper {
    gap: 100px;
    display: flex;
    justify-content: center;
}

section#contact-us .details {
    width: min(600px, 100%);
}

section#contact-us h2 {
    font-size: 4.3rem;
    font-weight: var(--light);
    text-transform: uppercase;
    color: var(--dark-green);
}

section#contact-us p {
    font-size: 4.3rem;
    font-weight: var(--bold);
    color: var(--white);
}

section#contact-us .button {
    margin-top: 50px;
    color: var(--dark-green);
}

#hero {
    height: calc(766px + 93px);
    position: relative;
}

#hero .content {
    height: 100%;
    width: 80%;
    margin-left: auto;
}
#hero .content img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#hero .content .title {
    position: absolute;
    bottom: 110px;
    left: 0;
    font-size: var(--title);
    line-height: 9rem;
    max-width: 860px;
    color: var(--black);
    font-weight: var(--light);
}

.about #sustainability,
.about #experience {
    margin-top: 90px;
    padding-left: 190px;
}

.about h2.title {
    font-size: 4rem;
    font-weight: var(--light);
    color: var(--black);
}

.about section#experience p {
    font-size: var(--normal);
    line-height: 2.6rem;
    font-weight: var(--regular);
}

.about section .content-container {
    margin-top: 44px;
}

.about section#experience .content-container {
    max-width: 630px;
}

.about section#experience .key-points {
    margin-top: 70px;
}

.about section#experience .row {
    display: flex;
    align-items: center;
    gap: 24px;
}

.about section#experience .row + .row {
    margin-top: 40px;
}

.about section#experience .icon {
    flex-basis: 64px;
    height: 64px;
}

.about section#experience .icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.about section#experience .key-points p {
    color: var(--dark-green);
    flex-basis: 100%;
}

.about section#sustainability .sustainability-divisor {
    margin-top: 30px;
    position: relative;
}

.about section#sustainability .divisor-bar {
    height: 2px;
    width: 80%;
    background-color: var(--black);
    z-index: 1;
}

.about section#sustainability .divisor-image {
    width: 490px;
    height: 490px;
    border-radius: 50%;
    overflow: hidden;
    position: absolute;
    right: 0;
    top: -270px;
    z-index: -1;
}

.about section#sustainability .divisor-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about section#sustainability .content-container {
    max-width: 800px;
}

.about section#sustainability .description {
    margin-top: 44px;
}

.about section#sustainability h4 {
    color: var(--dark-green);
    text-transform: uppercase;
    font-size: var(--normal);
    font-weight: var(--bold);
    line-height: 2.6rem;
    margin-top: 44px;
    margin-bottom: 44px;
}

.about section#sustainability .points {
    background-color: var(--light-green);
    color: var(--white);
    margin-top: 44px;
    padding-left: 220px;
    padding-right: 220px;
    padding-top: 60px;
    padding-bottom: 60px;
    font-size: var(--normal);
    font-weight: var(--bold);
    line-height: 2.6rem;
}

.about section#sustainability .points li + li {
    margin-top: 27px;
}

.tecnologies section#technology {
    margin-top: 100px;
}

.tecnologies section#technology .content-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
}

.tecnologies section#technology article {
    padding: 80px 110px;
}

.tecnologies section#technology article .content {
    max-width: min(630px, 80%);
}

.tecnologies section#technology article.align-right {
    grid-column: 3 / 2;
}

.tecnologies section .color-green {
    background-color: var(--light-green);
}

.tecnologies section h3 {
    font-size: 4rem;
    font-weight: var(--light);
    margin-bottom: 44px;
}

.tecnologies section .color-green {
    color: var(--dark-green);
}

.tecnologies section p + p {
    margin-top: 12px;
}

.tecnologies section p {
    font-size: var(--normal);
    font-weight: var(--regular);
    line-height: 2.6rem;
}

.tecnologies section#quality {
    margin-top: 110px;
    max-width: min(800px, 80%);
    padding-left: 110px;
}

.tecnologies section#operations {
    margin-top: 78px;
    max-width: 80%;
}

.tecnologies section#operations .content {
    padding-left: 110px;
    padding-bottom: 97px;
    padding-top: 97px;
}

.project section#process ul li,
.tecnologies section#operations ul li {
    font-size: 3rem;
    font-weight: var(--light);
    line-height: 3.6rem;
}

.project section#process ul li::before,
.tecnologies section#operations ul li::before {
    content: "";
    width: 115px;
    height: 2px;
    background-color: var(--dark-green);
    margin-right: 14px;
    display: inline-block;
}

.project section#process ul li + li,
.tecnologies section#operations ul li + li {
    margin-top: 24px;
}

.project #hero {
    z-index: -1;
}

.project #hero .content {
    width: 100%;
}

.project .text {
    position: absolute;
    top: 400px;
    left: 120px;
    width: min(600px, 100%);
}

.project .text h1 {
    font-size: 4.2rem;
    color: var(--dark-green);
    font-weight: var(--light);
    margin-bottom: 45px;
}

.project .text p {
    font-size: 4.2rem;
    color: var(--white);
    font-weight: var(--bold);
}

.project #process .content {
    width: 50%;
    padding-left: 80px;
    margin-left: auto;
    margin-top: -180px;
}

.project section#process ul li::before {
    background-color: var(--green);
    transition: background-color ease 0.3s;
}

.project section#process ul li {
    color: var(--green);
    cursor: pointer;
    transition: color ease 0.3s;
    width: max-content;
}

.project #contact .submit .button-submit {
    padding-top: 18px;
    padding-bottom: 18px;
    width: 200px;
    border: 1px solid var(--white);
    cursor: pointer;
    transition: background-color ease 0.35s, color ease 0.35s;
}

@media (hover: hover) {
    .project #contact .submit .button-submit:hover {
        color: var(--dark-green);
        background-color: var(--white);
    }
}

@media (hover: hover) {
    .project section#process ul li:hover {
        color: var(--dark-green);
    }

    .project section#process ul li:hover::before {
        background-color: var(--dark-green);
    }
}

.project #contact {
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin-top: 100px;
}

.project #contact .description {
    padding-left: 190px;
    padding-right: 190px;
    padding-top: 135px;
}

.project #contact .form-contact {
    padding: 135px;
}

.project #contact h4 {
    font-size: 4rem;
    font-weight: var(--light);
    margin-bottom: 50px;
}

.project #contact p {
    font-size: var(--normal);
    line-height: 2rem;
    font-weight: var(--regular);
}

.project #contact div.info {
    color: var(--green);
    padding-left: 50px;
    padding-right: 50px;
    margin-top: 40px;
}

.project #contact .form-contact * {
    border: none;
    background-color: transparent;
}

.project #contact .form-contact {
    background-color: var(--dark-green);
    color: var(--white);
    font-size: 1.2rem;
    font-weight: var(--regular);
}

.project #contact .input-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.project #contact .input-field + .input-field {
    margin-top: 33px;
}

.project #contact .input-field textarea,
.project #contact .input-field input {
    border-bottom: 1px solid var(--white);
    outline: none;
    color: var(--white);
    font-size: 1.4rem;
    letter-spacing: 1px;
    padding: 4px;
    resize: none;
}

.project #contact .input-field .required::after {
    content: "*";
    padding-left: 4px;
    position: relative;
    top: -4px;
}

.project #contact input[type="file"] {
    display: none;
}

.project #contact .custom-file-input {
    width: 100%;
    display: flex;
}

.project #contact .custom-file-input button {
    flex-basis: 24px;
    height: 24px;
    margin-left: 14px;
    display: block;
    cursor: pointer;
}

.project #contact .custom-file-input img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.project #contact .custom-file-input input {
    flex-basis: 100%;
    margin-left: 24px;
}

.project #contact .verify-code input {
    text-transform: uppercase;
}

.project #contact .terms #terms {
    display: none;
}

.project #contact .terms label {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    cursor: pointer;
}

.project #contact .terms #terms ~ .custom-checkbox::after {
    content: "";
    display: block;
    width: 10px;
    height: 10px;
    margin-left: 2px;
    margin-top: 2px;
    background-color: var(--white);
    opacity: 0;
    transition: opacity ease 0.3s;
}

.project #contact .terms #terms:checked ~ .custom-checkbox::after {
    opacity: 1;
}

.project #contact .terms .custom-checkbox {
    flex-grow: 0;
    flex-shrink: 0;
    flex-basis: 16px;
    height: 16px;
    border: 1px solid var(--white);
    background-color: transparent;
}

.project #contact .terms .terms-agreement a,
.project #contact .terms .terms-agreement {
    font-size: 1.2rem;
    color: var(--white);
}

@media (hover: hover) {
    .project #contact .terms .terms-agreement a:hover {
        text-decoration: underline;
    }
}

.contact #contacts {
    margin-top: 92px;
    background-color: var(--light-green);
    padding-left: 115px;
    padding-right: 115px;
    padding-top: 135px;
    padding-bottom: 135px;
}

.contact #contacts h1 {
    font-size: var(--title);
    font-weight: var(--light);
    color: var(--black);
}

.contact #contacts a,
.contact #contacts p {
    font-size: 3.1rem;
    line-height: 6rem;
    font-weight: var(--light);
    color: var(--black);
    font-style: normal;
}

.contact #contacts a {
    display: block;
}

@media (hover: hover) {
    .contact #contacts a:hover {
        text-decoration: underline;
    }
}

.contact #contacts .info {
    display: flex;
    margin-top: 120px;
}

.contact #contacts .info li {
    width: 33.33%;
}

.contact #map iframe {
    height: 511px;
    width: 100%;
}

.products #hero {
    height: 450px;
    margin-top: 94px;
}

.products #catalog {
    margin-top: 10px;
}

.products #catalog .filters {
    width: 80%;
    margin-left: auto;
    padding-top: 28px;
    padding-bottom: 28px;
    padding-left: 80px;
    padding-right: 80px;
    background-color: #eeefea;
    position: sticky;
    top: 104px;
    z-index: 11;
}

.products #catalog .filters-container {
    display: flex;
    gap: 100px;
}

.products #catalog .filters-container > div {
    width: 200px;
}

.products #catalog .filters-container button {
    font-size: 1.4rem;
    font-weight: var(--regular);
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--black);
    border: none;
    background-color: transparent;
    border-bottom: 1px solid var(--black);
    padding: 6px;
    padding-bottom: 8px;
    outline: none;
    box-shadow: none;
    width: 100%;
    text-align: start;
    cursor: pointer;
    position: relative;
    z-index: 1;
    transition: background-color ease 0.2s;
}

.products #catalog .filters-container button::after {
    content: "";
    width: 20px;
    height: 20px;
    display: inline-block;
    background-image: url(/assets/images/arrow-right.svg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
    transform: rotate(90deg);
    position: absolute;
    right: 6px;
    transition: transform ease 0.2s;
}

.products #catalog .filters-container .title {
    width: max-content;
}

.products #catalog .filters-container .title button {
    color: var(--green);
    border: none;
    text-align: center;
    cursor: default;
}

.products #catalog .filters-container .title button::after {
    content: none;
}

.products #catalog .filter {
    position: relative;
}

.products #catalog .filter.active ul {
    transform: scale(1);
}

.products #catalog .filter.active button {
    background-color: var(--white);
    border-bottom: 0px;
}

.products #catalog .filter ul {
    transform: scale(0);
    position: absolute;
    left: 0;
    width: 100%;
    background-color: var(--white);
    box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.15);
    transition: transform ease 0.15s;
    transform-origin: top center;
    max-height: 155px;
    overflow-y: auto;
    padding-top: 6px;
    padding-bottom: 6px;
}

.products #catalog .filter ul li {
    font-size: 1.4rem;
    font-weight: var(--regular);
    columns: var(--black);
    padding-left: 28px;
    padding-right: 6px;
    padding-top: 8px;
    padding-bottom: 8px;
    cursor: pointer;
    transition: color ease 0.3s;
}

@media (hover: hover) {
    .products #catalog .filter ul li:hover {
        color: var(--green);
    }
}

.products #catalog .filter.active button::after {
    transform: rotate(-90deg);
}

.products #catalog .main-content {
    display: flex;
    gap: 24px;
}

.products #catalog .side-menu {
    width: calc(20% - 24px);
}

.products #accordion .acc_head {
    font-size: var(--normal);
    color: var(--black);
    font-weight: var(--regular);
    padding: 0;
    padding-top: 11px;
    padding-bottom: 11px;
    gap: 0px;
    justify-content: space-between;
    text-transform: none;
}

.products .accordionjs .acc_section {
    opacity: 1;
    transition: opacity ease 0.3s;
}

@media (hover: hover) {
    .products .accordionjs .acc_section:hover {
        opacity: 0.6;
    }
}

.products .accordionjs .acc_section.acc_active {
    opacity: 1;
}

.products .accordionjs .acc_section .acc_head span {
    width: 22px;
    height: 22px;
    border: none;
}

.products .accordionjs .acc_section .acc_head span::before,
.products .accordionjs .acc_section .acc_head span::after {
    background-color: var(--black);
    height: 1px;
}

.products .accordionjs .acc_section.acc_active .acc_head span {
    background-color: transparent;
}

.products .accordionjs .acc_section .acc_content {
    background-color: transparent;
    flex-direction: column;
    gap: 14px;
    padding: 0;
}

.products .accordionjs .acc_section .acc_content li {
    font-size: var(--normal);
    opacity: 0.7;
    transition: color ease 0.25s, opacity ease 0.25s;
    cursor: pointer;
}

.products .accordionjs .acc_section .acc_content li a {
    color: inherit;
}

.products .accordionjs .acc_section .acc_content li::before {
    content: "";
    width: 40px;
    height: 2px;
    opacity: 0.7;
    background-color: var(--black);
    margin-right: 16px;
    display: inline-block;
    transition: background-color ease 0.25s, opacity ease 0.25s;
}

@media (hover: hover) {
    .products .accordionjs .acc_section .acc_content li:hover {
        color: var(--green);
        opacity: 0.95;
    }
    .products .accordionjs .acc_section .acc_content li:hover::before {
        background-color: var(--green);
        opacity: 0.95;
    }
}

.products .catalog-container {
    padding: 24px;
    width: 80%;
}

.products .catalog-container .category-container.hide {
    display: none;
}

.products .catalog-container .category-container h2 {
    font-size: 4rem;
    font-weight: var(--light);
    color: var(--black);
    margin-bottom: 44px;
    margin-top: 44px;
}

.products .catalog-container .grid {
    display: grid;
    width: 100%;
    gap: 36px;
    grid-template-columns: repeat(4, 1fr);
}

.products .catalog-container .product-card .image-container {
    width: 100%;
    height: 310px;
    overflow: hidden;
}

.products .catalog-container .product-card .image-container img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform ease 0.4s;
}

.products .category-container[data-hide-category="true"],
.products .product-card[data-hide-capacity="true"],
.products .product-card[data-hide-format="true"] {
    display: none;
}

.products .product-card .details {
    font-size: var(--normal);
    font-weight: var(--regular);
    line-height: 2.5rem;
    color: var(--black);
    position: relative;
    overflow: hidden;
    width: 100%;
}

.products .product-card .details::after {
    content: "";
    background-image: url(/assets/images/arrow-right-green.svg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
    width: 24px;
    height: 24px;
    position: absolute;
    left: 100%;
    top: 50%;
    transform: translateY(-50%);
    display: block;
    transition: left ease 0.4s;
}

.products .product-card .details p {
    width: max-content;
    transform: translateX(-50%);
    left: 50%;
    position: relative;
    transition: transform ease 0.4s, left ease 0.4s, color ease 0.4s;
}

.products .product-card .details p:first-child {
    opacity: 0.5;
}

@media (hover: hover) {
    .products .product-card:hover .details p {
        left: 0;
        transform: translateX(0%);
    }

    .products .product-card:hover .details p:not(:first-child) {
        color: var(--green);
    }

    .products .product-card:hover .details::after {
        left: calc(100% - 30px);
    }

    .products .product-card:hover .image-container img {
        transform: scale(1.15);
    }
}

.products .product-card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.products .filters-container-mobile .close-icon {
    width: 32px;
    height: 32px;
}

.products .filters-container-mobile .close-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.product #hero .content {
    width: 100%;
}

.product #hero .text {
    position: absolute;
    left: 120px;
    bottom: 120px;
    max-width: 600px;
}

.product #hero span.title {
    font-size: var(--normal);
    font-weight: var(bold);
    line-height: 2rem;
    color: var(--green);
    text-transform: uppercase;
    display: block;
    margin-bottom: 10px;
}

.product #hero h1 {
    font-size: var(--title);
    font-weight: var(--light);
    color: var(--black);
    line-height: 80px;
    margin-bottom: 45px;
}

.product #hero .description {
    font-size: var(--normal);
    font-weight: var(--regular);
    line-height: 26px;
    color: var(--black);
    margin-bottom: 100px;
}

.product #hero .back {
    color: var(--green);
}

.product #product .breadcrumbs {
    margin-top: 24px;
    margin-bottom: 24px;
}

.product #product .breadcrumbs .breadcrumb {
    color: #a6a8ab;
    opacity: 0.5;
    display: inline-block;
    position: relative;
    padding-left: 6px;
    padding-right: 6px;
}

.product #product .breadcrumbs .breadcrumb.current {
    color: var(--black);
    opacity: 0.7;
}

.product #product .breadcrumbs a + span::before {
    content: "/";
    padding-right: 6px;
}

@media (hover: hover) {
    .product #product .breadcrumbs a:hover {
        text-decoration: underline;
    }
}

.product #product .grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.product #product .grid .image-container {
    width: 100%;
    height: 480px;
}

.product #product .grid .image-container img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.product #product .grid .details {
    display: flex;
    flex-direction: column;
    padding-left: 44px;
}

.product #product .grid .details h2 {
    font-size: 4rem;
    font-weight: var(--light);
    color: var(--black);
    line-height: 60px;
}

.product #product .grid .details p.description {
    font-size: var(--normal);
    font-weight: var(--regular);
    line-height: 2.4rem;
    color: var(--black);
    margin-top: 50px;
}

.product #product .grid .details #accordion {
    margin-top: 60px;
}

.product #product .grid .details #accordion .acc_section {
    opacity: 1;
}

.product #product .grid .details #accordion .acc_head {
    padding-left: 0;
    padding-right: 0;
    font-size: var(--normal);
    justify-content: space-between;
    letter-spacing: 1px;
}

.product
    #product
    .grid
    .details
    #accordion
    .acc_section.acc_active
    .acc_head
    span::after {
    background-color: var(--dark-green);
}

.product #product .grid .details #accordion .acc_head span {
    background-color: transparent;
    width: 16px;
    height: 16px;
    border-radius: 0;
    border: none;
}

.product #product .grid .details #accordion .acc_head span::after,
.product #product .grid .details #accordion .acc_head span::before {
    width: 75%;
}

.product #product .grid .details #accordion .acc_content {
    background-color: transparent;
    padding: 14px;
    gap: 36px;
}

.product #product .grid .details .tables-container {
    display: flex;
    flex-direction: column;
}

.product #product .grid .details table {
    font-size: var(--normal);
    max-width: 300px;
}

.product #product .grid .details table h6 {
    text-transform: uppercase;
    font-size: var(--normal);
    font-weight: var(--bold);
    color: var(--black);
}

.product #product .grid .details table td {
    padding-bottom: 12px;
}

.product #product .grid .details table td.value {
    opacity: 0.5;
}

.product #product .grid .details table .colors-container {
    display: flex;
    gap: 6px;
}

.product #product .grid .details table .colors-container .color {
    width: 14px;
    height: 14px;
}

.product #product .grid .details table .colors-container .color img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.product #product .others .button {
    color: var(--dark-green);
}

.product #product .details .technical-container {
    font-size: var(--normal);
}
/* || MEDIA QUERIES */
@media screen and (min-width: 1025px) {
    header.has-scroll {
        background-color: var(--white);
    }

    header::after {
        content: "";
        width: 100%;
        height: 8px;
        background: linear-gradient(
            180deg,
            rgba(2, 0, 36, 0.1) 0%,
            rgba(255, 255, 255, 0) 100%
        );
        position: absolute;
        top: 100%;
        left: 0;
        display: block;
        opacity: 0;
        transition: opacity ease 0.75s;
    }

    header.has-scroll::after {
        opacity: 1;
    }
}

@media screen and (max-width: 1366px) {
    footer {
        padding-top: 170px;
        padding-left: 24px;
        padding-right: 24px;
    }

    footer .up {
        grid-template-columns: 1fr 1fr;
        row-gap: 60px;
    }

    footer .up .logo-container {
        width: 200px;
    }

    footer .up address a,
    footer .up address p {
        font-size: 2.4rem;
        line-height: 3.8rem;
    }

    footer .up .certify-container {
        grid-column: 3 / 1;
        flex-direction: row;
    }

    footer .down {
        padding-top: 60px;
    }

    .project #contact .description {
        padding-left: 90px;
        padding-right: 90px;
    }

    .products .catalog-container .grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
    }
}

@media screen and (max-width: 1024px) {
    :root {
        --normal: 14px;
    }

    header {
        background-color: var(--white);
    }

    .home section#sustainability {
        flex-direction: column;
        align-items: center;
    }

    .home section#sustainability .logo-container {
        position: static;
        width: min(600px, 100%);
        height: 90px;
    }

    .home section#sustainability .details {
        margin-top: 44px;
    }

    .container {
        padding-left: 14px;
        padding-right: 14px;
    }

    .mobile {
        display: block;
    }

    .desktop {
        display: none;
    }

    header .container {
        display: block;
        padding-bottom: 0;
        padding-top: 0;
    }

    header nav ul {
        flex-direction: column;
        align-items: flex-start;
    }

    header .logo-container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding-top: 14px;
        padding-bottom: 14px;
    }

    header .menu-icon {
        width: 32px;
        height: 32px;
    }

    header nav {
        display: block;
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background-color: #f1f8f5;
        padding: 24px;
        transition: left ease 0.35s;
    }

    header nav.active {
        left: 0;
    }

    header nav .close {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    header .logo {
        height: 36px;
    }

    header nav .close-icon {
        width: 32px;
        height: 32px;
        object-fit: contain;
        cursor: pointer;
    }

    header .links-container {
        margin-top: 44px;
    }

    header .links-container ul {
        border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    }

    header .links-container li {
        padding: 14px;
        width: 100%;
    }

    header .links-container li + li {
        border-top: 1px solid rgba(0, 0, 0, 0.08);
        margin-left: 0;
    }

    header .links-container a.active {
        color: var(--dark-green);
        font-weight: var(--bold);
        position: relative;
        padding-left: 24px;
    }

    header nav .links-container a::before {
        content: "";
        width: 12px;
        height: 2px;
        border-radius: 3px;
        display: inline-block;
        opacity: 0;
        top: 50%;
        left: 0;
        transform: translateY(-50%);
        position: absolute;
    }

    header .links-container a.active::before {
        opacity: 1;
        margin-right: 14px;
        margin-bottom: 0;
    }

    header .languages-container {
        position: absolute;
        bottom: 14px;
        right: 44px;
    }

    header .languages-container ul {
        display: flex;
        justify-content: flex-end;
    }

    header .languages-container li + li {
        margin-left: 14px;
    }

    header nav section + section {
        margin-left: 0;
    }

    header nav .languages-container ul {
        flex-direction: row;
        justify-content: flex-end;
        align-items: flex-end;
    }

    section#contact-us {
        padding-left: 120px;
        padding-right: 120px;
    }

    #hero .content {
        width: 100%;
    }

    #hero .content .title {
        padding-left: 24px;
        padding-right: 24px;
    }

    .about #sustainability,
    .about #experience {
        padding-left: 90px;
    }

    .about section#sustainability .divisor-image {
        width: 390px;
        height: 390px;
    }

    .tecnologies section#technology article {
        padding: 60px;
    }

    .tecnologies section#technology article .content {
        max-width: 100%;
    }

    .tecnologies section#technology {
        margin-top: 66px;
    }

    .tecnologies section#quality {
        max-width: 100%;
        padding: 60px;
        margin-top: 66px;
    }

    .tecnologies section#operations {
        max-width: 100%;
        margin-top: 66px;
        padding: 0px;
    }

    .project section#process ul li::before,
    .tecnologies section#operations ul li::before {
        width: 50px;
    }

    .project section#process ul li,
    .tecnologies section#operations ul li {
        font-size: 2.8rem;
        line-height: 3rem;
    }

    .project #contact .description {
        padding-left: 60px;
        padding-right: 60px;
    }

    .project #contact .form-contact {
        padding: 80px;
    }

    .project #contact div.info {
        padding-left: 0;
        padding-right: 0;
    }

    .contact #contacts {
        padding-left: 80px;
        padding-right: 80px;
        padding-top: 100px;
        padding-bottom: 100px;
    }

    .contact #contacts .info li {
        width: 50%;
    }

    .products #catalog .filters {
        width: 100%;
        padding-top: 14px;
        padding-bottom: 14px;
        padding-left: 44px;
        padding-right: 44px;
        top: 73px;
    }

    .products #catalog .filters-container {
        justify-content: space-between;
        align-items: center;
    }

    .products #catalog .filters-container .filter.mobile {
        width: 36px;
        height: 36px;
        padding-bottom: 0;
        padding-top: 0;
    }

    .products #catalog .filters-container .filter.mobile .icon {
        width: 100%;
        height: 100%;
    }

    .products #catalog .filters-container .filter.mobile .icon img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

    .products .catalog-container .product-card .image-container {
        height: 220px;
    }

    .products .accordionjs .acc_section .acc_content li::before {
        width: 10px;
        height: 1px;
        margin-right: 8px;
    }

    .products #hero {
        margin-top: 68px;
    }

    .products .catalog-container .grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .products .catalog-container {
        width: 100%;
    }

    .products .filters-container-mobile {
        left: -100%;
        width: 70vw;
        height: calc(100vh - 88px);
        position: fixed;
        top: 78px;
        z-index: 13;
        background-color: #f1f8f5;
        font-size: 1.6rem;
        line-height: 2.4rem;
        padding: 24px;
        box-shadow: 15px 0px 10px 5px rgba(0, 0, 0, 0.1);
        transition: left ease 0.4s;
    }

    .products .filters-container-mobile.active {
        left: 10px;
    }

    .products .filters-container-mobile .header {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .products .filters-container-mobile .header h4 {
        font-size: 3.2rem;
        font-weight: var(--regular);
    }

    .products .filters-container-mobile .content {
        margin-top: 32px;
        padding-left: 14px;
        padding-right: 14px;
    }

    .content .filter-mobile + .filter-mobile {
        margin-top: 24px;
    }

    .content .filter-mobile h5 {
        font-size: 2.4rem;
        font-weight: var(--regular);
    }

    .content .filter-mobile ul {
        padding-left: 14px;
        padding-right: 14px;
        margin-top: 14px;
        font-size: 1.6rem;
    }

    .content .filter-mobile ul li + li {
        margin-top: 6px;
    }
}

@media screen and (max-width: 768px) {
    :root {
        --title: 3.6rem;
    }

    .home .find-more {
        display: none;
    }

    .home .splide__slide .details-container {
        left: 50%;
        top: 50%;
        transform: translateX(-50%) translateY(-50%);
        min-width: min(550px, 100%);
    }

    .home ul.splide__pagination {
        bottom: 50px;
        left: 50px;
    }

    .home section#sustainability {
        padding-top: 60px;
        padding-bottom: 60px;
    }

    section#seller-points {
        padding-left: 24px;
        padding-right: 24px;
    }

    .seller-point h4 {
        font-size: 4rem;
    }

    .seller-point p {
        font-size: 2rem;
    }

    section#contact-us {
        padding-left: 44px;
        padding-right: 44px;
        padding-top: 60px;
        padding-bottom: 60px;
    }

    section#contact-us .wrapper {
        gap: 60px;
    }

    section#contact-us p {
        font-size: 3.6rem;
    }

    footer .down {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    footer .up .newsletter-container .wrapper,
    footer .up .social-icons {
        margin-top: 24px;
    }

    footer .up {
        gap: 40px;
    }

    footer {
        padding-top: 60px;
        padding-bottom: 24px;
    }

    footer .back-to-top {
        display: none;
    }

    #hero .content .title {
        font-size: 3.6rem;
        line-height: 4.4rem;
        padding-left: 14px;
        padding-right: 14px;
        max-width: 70%;
    }

    .about #sustainability,
    .about #experience {
        padding-left: 0;
    }

    .about section#sustainability .divisor-image {
        width: 250px;
        height: 250px;
        top: -150px;
    }

    .about section#sustainability .points {
        padding: 60px;
    }

    .about section#experience .content-container {
        max-width: 100%;
    }

    .about section#sustainability .divisor-image {
        opacity: 0.35;
    }

    .tecnologies section#technology .content-grid {
        display: flex;
        flex-direction: column;
        gap: 24px;
    }

    .project #process .content {
        margin-top: 44px;
        width: 100%;
        padding-left: 0;
    }

    .project section#process ul li + li,
    .tecnologies section#operations ul li + li {
        margin-top: 18px;
    }

    .project #contact {
        display: flex;
        flex-direction: column;
        margin-top: 80px;
    }

    .project #contact .description {
        padding-top: 0px;
        padding-bottom: 44px;
    }

    .contact #contacts {
        padding-top: 60px;
        padding-bottom: 60px;
        padding-left: 44px;
        padding-right: 44px;
    }

    .contact #contacts .info {
        margin-top: 60px;
    }

    .contact #contacts a,
    .contact #contacts p {
        font-size: 2.2rem;
        line-height: 3.6rem;
    }

    .products #hero {
        height: 300px;
    }

    .products .catalog-container .grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .products .catalog-container .category-container h2 {
        font-size: 3rem;
        margin-top: 24px;
        margin-bottom: 24px;
    }

    .products .catalog-container .product-card .image-container {
        height: 180px;
    }
}

@media screen and (max-width: 576px) {
    .button {
        min-width: 100%;
        max-width: unset;
        padding-top: 16px;
        padding-bottom: 16px;
        padding-left: 44px;
        padding-right: 44px;
        font-size: var(--normal);
        line-height: 1.6rem;
    }

    #hero {
        height: min(90vh, 650px);
        margin-left: -14px;
        margin-right: -14px;
        width: calc(100% + 28px);
    }

    .home .splide__slide .details-container p {
        margin-top: 38px;
        font-size: 3.2rem;
    }

    .home .splide__slide .details-container {
        padding-left: 24px;
        padding-right: 24px;
    }

    footer .up {
        display: flex;
        flex-direction: column;
    }

    footer {
        padding-left: 0;
        padding-right: 0;
    }

    section#contact-us,
    section#seller-points,
    .home section#sustainability {
        padding-left: 14px;
        padding-right: 14px;
        padding-top: 44px;
        padding-bottom: 44px;
    }

    .home ul.splide__pagination {
        left: 50%;
        bottom: 24px;
        transform: translateX(-50%);
    }

    .home ul.splide__pagination button.splide__pagination__page.is-active,
    .home ul.splide__pagination button.splide__pagination__page {
        font-size: 1.8rem;
    }

    .home section#sustainability .logo-container {
        height: 50px;
    }

    .home section#sustainability .details h2 {
        line-height: 5rem;
        margin-bottom: 44px;
    }

    section#seller-points {
        overflow-x: auto;
    }

    .seller-points-container {
        flex-direction: column;
        gap: 1.5rem;
    }

    .seller-points-container .seller-point {
        gap: 14px;
    }

    .seller-points-container .seller-point .icon-container {
        
    }

    .seller-point .icon-container img {
        
    }

    .seller-point h4 {
        font-size: 3.2rem;
    }

    .seller-point p {
        font-size: 1.8rem;
    }

    section#contact-us .wrapper {
        flex-direction: column;
        gap: 44px;
    }

    section#contact-us h2 {
        font-size: var(--title);
    }

    section#contact-us p {
        font-size: 3rem;
    }

    section#contact-us {
        background-size: contain;
    }

    footer {
        padding-top: 44px;
    }

    footer .up address a,
    footer .up address p {
        font-size: var(--normal);
        line-height: 2rem;
    }

    footer h3 {
        font-size: 2rem;
        line-height: 2.4rem;
    }

    footer .up .icon {
        width: 28px;
        height: 28px;
        padding: 6px;
    }

    footer .up .newsletter-container .wrapper,
    footer .up .social-icons {
        margin-top: 18px;
    }

    footer .up .certify-container span {
        width: 60px;
        height: 60px;
    }

    footer .down {
        padding-top: 44px;
    }

    .divisor {
        display: none;
    }

    footer .down > * {
        flex-direction: column;
        gap: 6px;
    }

    footer .down > * + * {
        margin-top: 12px;
    }

    #hero .content .title {
        top: 50%;
        transform: translateY(-50%);
        max-width: 100%;
    }

    .about h2.title {
        font-size: 3rem;
    }

    .about #sustainability,
    .about #experience {
        margin-top: 66px;
    }

    .about section#experience .row {
        flex-direction: column;
    }

    .about section#sustainability .points {
        padding: 44px 14px;
    }

    .about section#sustainability .points li + li {
        margin-top: 14px;
    }

    .tecnologies section#quality,
    .tecnologies section#technology article {
        padding: 44px 14px;
    }

    .tecnologies section h3 {
        margin-bottom: 32px;
    }

    .tecnologies section#operations,
    .tecnologies section#quality,
    .tecnologies section#technology {
        margin-top: 44px;
    }

    .tecnologies section#operations .content {
        padding: 44px 14px;
    }

    .project section#process ul li::before,
    .tecnologies section#operations ul li::before {
        width: 14px;
    }

    .project section#process ul li + li,
    .tecnologies section#operations ul li + li {
        margin-top: 14px;
    }

    .project section#process ul li,
    .tecnologies section#operations ul li {
        font-size: 2.2rem;
        line-height: 2.4rem;
    }

    .project .text {
        top: 50%;
        left: 50%;
        transform: translateY(-50%) translateX(-50%);
    }

    .project .text p {
        font-size: 3.6rem;
    }

    .project .text {
        padding-left: 14px;
        padding-right: 14px;
    }

    .project #contact .description {
        padding-left: 0;
        padding-right: 0;
    }

    .project #contact .form-contact {
        padding-left: 24px;
        padding-right: 24px;
        padding-top: 44px;
        padding-bottom: 44px;
    }

    .project #contact div.info {
        margin-top: 14px;
    }

    .project #contact h4 {
        margin-bottom: 24px;
    }

    .project #contact .submit .button-submit {
        width: 100%;
    }

    .contact #contacts {
        padding-left: 24px;
        padding-right: 24px;
        padding-top: 44px;
        padding-bottom: 44px;
    }

    .contact #contacts .info {
        margin-top: 44px;
        display: flex;
        flex-direction: column;
    }

    .contact #contacts .info li {
        width: 100%;
    }

    .contact #contacts a,
    .contact #contacts p {
        font-size: 2rem;
        line-height: 4.4rem;
    }

    .products #catalog .filters {
        padding: 8px;
    }

    .products .catalog-container {
        padding-left: 0;
        padding-right: 0;
    }

    .products .catalog-container .grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .products .catalog-container .category-container h2 {
        font-size: 2.4rem;
        margin-bottom: 14px;
    }

    .products .filters-container-mobile {
        width: 100vw;
        padding: 14px;
        height: calc(100vh - 68px);
        top: 68px;
        box-shadow: none;
    }

    .products .filters-container-mobile.active {
        left: 0;
    }

    .products .filters-container-mobile .header h4 {
        font-size: 2.2rem;
    }

    .content .filter-mobile h5 {
        font-size: 2rem;
    }

    .content .filter-mobile ul {
        font-size: 1.4rem;
    }

    .product #hero .text {
        width: 90%;
        height: max-content;
        left: 50%;
        top: 50%;
        transform: translateY(-50%) translateX(-50%);
    }

    .product #product .grid {
        display: flex;
        flex-direction: column;
    }

    .product #product .grid .image-container {
        height: 360px;
    }

    .product #product .grid .details {
        padding-left: 0;
    }

    .products #catalog .mobile .filter + .filter {
        margin-top: 8px;
    }

    .products #catalog .mobile .filter button {
        background-color: transparent;
        border: none;
        box-shadow: none;
        color: var(--dark-green);
        font-size: 1.8rem;
        border-bottom: 1px solid var(--dark-green);
        transition: border-color ease 0.3;
    }

    .products #catalog .mobile .filter.active button {
        border-color: transparent;
    }

    .products #catalog .mobile.filter + .filter {
        margin-top: 22px;
    }

    .products #catalog .mobile.filter ul {
        transform: scaleY(0);
        transform-origin: top center;
    }

    .products #catalog .mobile.filter.active ul {
        transform: scaleY(1);
        z-index: 1;
    }

    .products #catalog .mobile .filter button::before {
        content: attr(data-label);
        display: block;
        color: var(--black);
        font-size: var(--normal);
        font-weight: var(--light);
        text-align: start;
        margin-bottom: 6px;
        margin-left: -14px;
    }
}
