.banner {
    position: relative;
    height: 100vh;
    overflow: hidden;

    display: flex;
    justify-content: center;
    align-items: center;

    .img-banner {
        position: absolute;
        top: 0;
        left: 0;

        width: 100%;
        height: 100%;

        object-fit: cover;
        z-index: 1;
    }

    .arrow-down {
        z-index: 11;
    }
}

.filter-banner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(360deg, rgba(2, 5, 8, 0.44) 0%, rgba(2, 5, 8, 0.7) 100%);
    opacity: 0.90;
    pointer-events: none;
    z-index: 2;
}

.arrow-down {
    bottom: 3%;

    transition: transform 0.3s ease, bottom 0.3s ease;
}

.arrow-down:hover {
    transform: scale(1.1);
    bottom: 5%;
}

.section-built {
    height: 522px;
    background-image: url(../images/backgrounds/bg-built.png);
    display: grid;
    place-items: center;
    background-position-x: 20%;
    background-size: cover;

    article {
        text-align: center;

        h2 {
            font-weight: 600;
            font-size: 47px;
            line-height: 62px;
        }

        p:nth-of-type(2) {
            font-size: 20px;
            font-weight: 300;
            line-height: 28px;
        }

        div {
            margin-top: 30px;

            a:nth-of-type(1) {
                margin: 0 7px 0 0;
            }

            a:nth-of-type(2) {
                border: 1px solid #0D8837;
                margin: 0 0 0 7px;
            }
        }
    }
}

.section-central {
    padding: 100px 0;
    position: relative;
}

.section-central::before {
    content: "";
    position: absolute;
    width: 571px;
    height: 922px;
    right: 0%;
    bottom: 39%;

    background-image: url("../images/backgrounds/four.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    z-index: -1;
}

.section-proof {
    display: grid;
    grid-template-columns: 1fr 1fr;

    .article-1 {
        p:nth-of-type(2) {
            font-weight: 300;
            font-size: 17px;
            line-height: 28px;
        }
    }

    .article-2 {
        display: flex;
        align-items: center;
        justify-content: end;

        img {
            position: relative;
            top: 5%;
        }
    }
}

.section-markets {
    padding: 80px 0;
    text-align: center;

    .article-agriculture {
        margin: 40px 0 10px 0;
    }

    .card-large {
        background: url(../images/home/agriculture.jpg) center/cover no-repeat;
        border-radius: 24px;
        position: relative;
        padding: 40px;
        color: #fff;
        display: flex;
        align-items: flex-end;
        overflow: hidden;
        height: 482px;
        width: 451px;
    }

    .card-large.second {
        background: url(../images/home/animal.jpg) center/cover no-repeat;
    }

    .card-large::after {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(180deg, rgba(3, 28, 11, 0) 0%, rgba(3, 28, 11, 0.5) 47.33%, #031C0B 100%);
    }

    .card-overlay {
        position: relative;
        z-index: 2;
        text-align: start;

        h3 {
            font-size: 26px;
            font-weight: 700;
        }

        p {
            font-weight: 400;
            font-size: 17px;
            line-height: 28px;
            margin: 0;
        }

        hr {
            margin: 10px 0;
        }
    }

    .card-small {
        background: #fff;
        border-radius: 20px;
        height: 100%;
        min-height: 180px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        font-weight: 600;
        transition: 0.3s ease;
        border: 1px solid rgba(229, 227, 227, 1);
        padding: 35px 0px;

        img {
            padding-bottom: 10px;
        }
    }

    .card-small:hover {
        transform: translateY(-6px);
    }

    .cards-row {
        position: relative;
        top: 5%;
    }

    .cards-row.second {
        position: relative;
        left: 18%;
    }

    .card-large-second {
        position: relative;
        right: 7%;
    }
}

.points {
    max-width: 500px;
    padding: 20px 0 0 20px;

    article {
        display: flex;
        align-items: start;
        gap: 15px;

        h3 {
            font-size: 18px;
            line-height: 20px;
            font-weight: 600;
            color: #333333;
        }

        p {
            font-size: 16px;
            line-height: 20px;
            font-weight: 300;
        }

        div:nth-of-type(1) {
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
        }

        div:nth-of-type(2) {
            padding-top: 5px;
        }
    }

    hr {
        background-color: #DBDBDBEE;
        height: 40px;
        width: 1px;
        border: none;
        opacity: 1;
        margin: 10px 0;
    }
}

.section-value {
    background-color: #F7F9FD;
    padding: 50px 0;

    article {
        display: grid;
        grid-template-columns: 1fr 1fr;

        div:nth-of-type(1) {
            position: relative;
            top: 5%;
        }

        div:nth-of-type(2) {
            display: flex;
            flex-direction: column;
            justify-content: center;

            p:nth-of-type(2) {
                font-weight: 300;
                font-size: 17px;
                line-height: 28px;
                margin-bottom: 0px;
            }
        }
    }
}

.section-why {
    position: relative;
    text-align: center;
    padding: 100px 0 50px 0;

    article {
        margin: 70px 0 50px 0;

        .card-why {
            background: #fff;
            border-radius: 20px;
            height: 100%;
            min-height: 180px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
            font-weight: 600;
            transition: 0.3s ease;
            border: 1px solid #EEEEEE;
            padding: 35px 0px;
            box-shadow: 0px 8px 24px 0px #959DA533;

            img {
                padding-bottom: 10px;
            }
        }

        .card-why:hover {
            transform: translateY(-6px);
        }
    }
}

.section-why-partner {
    position: relative;
}

.section-why-partner:before {
    content: "";
    position: absolute;
    width: 571px;
    height: 922px;
    left: 0px;
    bottom: -73%;

    background-image: url("../images/backgrounds/four-second.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    z-index: -1;
}

@media screen and (max-width: 550px) {
    .section-built {
        article {
            max-width: 370px;
            display: flex;
            flex-direction: column;
            align-items: center;

            h2 {
                font-size: 32px;
                line-height: 42px;
            }

            p:nth-of-type(2) {
                font-size: 17px;
            }

            div {
                margin: 0;
                display: flex;
                flex-direction: column;
                gap: 20px;
                width: 48%;

                a:nth-of-type(1) {
                    margin: 0;
                    padding: 8px 0px 8px 0px;
                }

                a:nth-of-type(2) {
                    margin: 0 7px 0 7px;
                    padding: 8px 0px 8px 0px;
                }
            }
        }
    }
}