﻿@import url('https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

.content {
    padding: 0;
    margin-top: 77px;
    margin-bottom: 0;
}

.container {
    max-width: 100%;
}

.page-title {
    display: none;
}


.text-green {
    color: #096d00;
}

.text-bold {
    font-weight: bold;
}

.row-section {
    background-repeat: no-repeat, no-repeat;
    background-position: center;
    background-size: cover;
    --hr-color: white;
}

    .row-section .text-section {
        padding: 64px 6vw;
        display: flex;
        flex-direction: column;
        justify-content: center;
        min-height: 80vh;
    }

    .row-section.row-green-h {
        background-image: linear-gradient(90deg, #a6ee45 0%, #61c419 50%);
        background-repeat: no-repeat, no-repeat;
    }
    .row-section.row-gray {
        position: relative;
        --hr-color: #096d00;
    }
        .row-section.row-gray:before {
            content: "";
            position: absolute;
            inset: 0;
            background-image: var(--image);
            background-size: cover;
            background-position: center;
            filter: grayscale(100%);
            opacity: 0.5;
            z-index: -1;
        }
    .row-section.row-white {
        background-blend-mode: color;
        background-color: rgba(255, 255, 255, 0.7);
        background-image: var(--image);
        --hr-color: #096d00;
    }
    .row-section.row-black {
        background-blend-mode: color;
        background-color: rgba(0, 0, 0, 0.8);
        color: white;
        background-image: var(--image);
    }
    .row-section.row-green-h > div:last-child {
        background-image: linear-gradient(90deg, #61c419 0%, rgba(97, 196, 25, 0) 100%), var(--image);
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center;
    }

    .row-section h2 {
        line-height: 1.1;
        letter-spacing: .3px;
        font-size: 3em;
        font-family: 'Raleway', sans-serif;
    }

    .row-section h3 {
        line-height: 1.1;
        letter-spacing: .3px;
        font-size: 3em;
        font-weight: normal;
        font-family: 'Raleway', sans-serif;
    }

        .row-section h2::after, .row-section h3::after {
            content: "";
            display: block;
            width: 86px;
            height: 3px;
            background: var(--hr-color);
            margin-top: 18px;
        }

.row-section p {
    font-size: 1.2em;
    text-align: justify;
    margin: 16px 0 0 0;
    font-family: 'Roboto', sans-serif;
}

.row-section-1 {
    --image: url('image-1w.jpg');
}

.row-section-2 {
    --image: url('image-2w.jpg');
}

.row-section-3 {
    --image: url('image-3w.jpg');
}

.row-section-4 {
    --image: url('image-4w.jpg');
}

.row-section-5 {
    --image: url('image-5w.jpg');
}

.row-section-6 {
    --image: url('image-6w.jpg');
}

@media (max-width: 992px) {
    .row-section.row-green-h {
        background-image: linear-gradient(90deg, rgba(166, 238, 69, 1) 0%, rgba(97, 196, 25, 0.9) 50%, rgba(97, 196, 25, 0.6) 110%), var(--image);
        background-repeat: no-repeat, no-repeat;
        background-size: cover;
        background-position: center;
    }
}

@media (max-width: 500px) {
    .content {
        margin-top: 55px;
    }
}