body {
    font-family: 'Nunito Sans', 'Segoe UI', Arial, sans-serif;
    background: #fff;
    color: #282625;
    margin: 0;
    padding-top: 86px;
}

html {
    scroll-behavior: smooth;
}

.hero-img {
    position: static;
}

.navbar-light .navbar-toggler-icon {
    background-repeat: no-repeat;
    background-image: var(--navbar-toggle-src);
}

a {
    color: #0077cc;
}

button.accept-policy {
    font-size: 1rem;
    line-height: inherit;
}

main {
    display: block;
}

.border-top {
    border-top: 1px solid #e5e5e5;
}

.border-bottom {
    border-bottom: 1px solid #e5e5e5;
}

.box-shadow {
    box-shadow: 0 .25rem .75rem rgba(0, 0, 0, .05);
}

.navbar-light .navbar-toggler {
    color: transparent;
    border: none;
    padding: 0;
}

.navbar-toggler-icon {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 3px 0;
    gap: 15px;
    margin: 0 auto;
    width: 24px;
    height: 24px;
}

.navbar-light .navbar-toggler-icon {
    background-repeat: no-repeat;
    background-image: var(--navbar-toggle-src);
}

.navbar-light .navbar-nav .nav-link {
    color: #2E2E2E;
    padding-left: 0;
}

.navbar {
    width: 100%;
    background-color: #FDFFFA;
    box-shadow: 0px 4px 5px rgba(0, 0, 0, 0.15);
    padding: 0 32px;
}

    .navbar .container-fluid {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

.navbar-brand {
    padding: 0.25rem 0;
    white-space: normal;
    text-align: center;
    word-break: break-all;
}

.navbar-logo {
    height: 40px;
    width: auto;
    display: block;
}

.navbar-nav .nav-item {
    margin-left: 20px;
}

.navbar-nav .nav-link {
    font-weight: 600;
    color: #282625;
    height: 44px;
    padding: 12px 16px;
}

    .navbar-nav .nav-link:hover {
        color: #1a73e8;
    }

.nav-link.d-flex {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 12px 16px;
    gap: 8px;
    margin: 0 auto;
    width: 99px;
    height: 44px;
}

.nav-icon {
    width: 16px;
    height: 16px;
    flex: none;
}

.st-navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 86px;
    background: #FDFFFA !important;
    box-shadow: 0px 4px 5px rgba(0, 0, 0, 0.15) !important;
    padding: 0 32px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    z-index: 1000;
}

    .st-navbar .container-fluid {
        height: 100%;
        align-items: center;
    }

.st-navbar-collapse-box {
    position: static;
}

.st-navbar-collapse-box {
    margin-left: auto;
}

.site-footer {
    background: #2E7918;
    border-top: 4px solid #B4C93C;
    box-shadow: inset 0px 6px 10.4px rgba(0, 0, 0, 0.25);
    color: #EDFFDA;
    text-align: center;
    padding: 40px 20px;
    width: 100%;
}

.footer-content {
    max-width: 732px;
    margin: 0 auto;
    text-align: center;
}

    .footer-content h4 {
        font-weight: 600;
        font-size: 16px;
        line-height: 22px;
        color: #EDFFDA;
    }

    .footer-content p {
        font-weight: 600;
        font-size: 14px;
        color: #EDFFDA;
    }

    .footer-content span {
        font-style: italic;
        font-weight: 700;
    }

.footer-description {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 15px;
    line-height: 1.6;
    color: #FFFFFF;
    margin-bottom: 20px;
}

.footer-logo {
    width: 228.95px;
    height: 43px;
    margin: 16px;
}

.copyright {
    font-size: 12px;
    line-height: 18px;
    color: #FAFFE0;
}

.reviews-section-container {
    background-color: #E4E0DF;
    padding: 50px 0;
    display: flex;
    flex-direction: column;
    gap: 50px;
}

    .reviews-section-container h1 {
        color: #282625;
        font-weight: 800;
        font-size: 32px;
        text-align: center;
    }

    .reviews-section-container .reviews-container {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 13.17px;
        max-width: 72.64%;
        margin: 0 auto;
        overflow-x: auto;
    }

    .reviews-section-container .review {
        background-color: #FFFFFF;
        border-radius: 13.17px;
        padding: 17.56px;
        display: flex;
        flex-direction: column;
        gap: 13.17px;
        width: 340.25px;
    }

        .reviews-section-container .review .rating-container {
            display: flex;
            justify-content: space-between;
        }

        .reviews-section-container .review p {
            color: #58524F;
            font-weight: 600;
            font-size: 15.37px;
        }

        .reviews-section-container .review hr {
            border: 1px solid #D9D9D9;
            margin-top: auto;
            margin-bottom: 0;
        }

        .reviews-section-container .review .author {
            color: #599D15;
            font-weight: 700;
            font-size: 13.17px;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

.st-navbar .navbar-nav {
    margin-left: auto;
    display: flex;
    flex-direction: row;
    align-items: center;
}

@media (max-width: 768px) {

    html, body {
        width: 100%;
        overflow-x: hidden;
        padding-top: 35px;
    }

    .st-navbar {
        padding: 3px 16px !important;
        height: 71px;
        position: fixed;
    }

        .st-navbar .navbar-logo {
            width: 193px;
            height: auto;
        }

    .st-navbar-collapse-box {
        position: absolute !important;
        top: 60px !important;
        right: 16px;
        width: 176px;
        padding: 8px;
        gap: 10px;
        display: flex;
        flex-direction: column;
        background: #FDFFFA;
        border: 1px solid #E4E3E0;
        border-radius: 12px;
        z-index: 1050;
        box-sizing: border-box;
    }

        .st-navbar-collapse-box.collapse,
        .st-navbar-collapse-box.collapsing {
            top: 60px !important;
            right: 16px !important;
            width: 176px !important;
            overflow: hidden;
        }

        .st-navbar-collapse-box .navbar-nav {
            width: 100%;
            display: flex;
            flex-direction: column;
            align-items: flex-start;
        }

            .st-navbar-collapse-box .navbar-nav .nav-link {
                display: flex;
                flex-direction: row;
                align-items: center;
                gap: 8px;
                width: 100%;
                height: 44px;
                font-size: 14px;
                color: #2E2E2E;
                text-decoration: none;
            }

        .st-navbar-collapse-box .nav-icon {
            width: 16px;
            height: 16px;
        }

    .navbar-expand-md .navbar-toggler {
        display: block;
    }

    .site-footer {
        padding: 24px;
    }

    .footer-content {
        max-width: 345px;
        width: 100%;
        margin: 0 auto;
    }

        .footer-content p {
            font-size: 12px;
            line-height: 16px;
            margin: 4px 0;
        }

    .footer-logo {
        width: 180px;
        margin: 12px 0;
        height: auto;
    }

    .copyright {
        font-size: 10px;
        line-height: 14px;
        width: 100%;
    }


    .reviews-section-container {
        padding: 24px 0;
        gap: 23px;
    }

        .reviews-section-container h1 {
            font-size: 20px;
        }

        .reviews-section-container .reviews-container {
            display: flex;
            flex-wrap: nowrap;
            overflow-x: auto;
            gap: 20px;
            max-width: 100%;
            scroll-snap-type: x mandatory;
            -webkit-overflow-scrolling: touch;
        }

        .reviews-section-container .review {
            width: 310px;
            flex: 0 0 auto;
            gap: 8px;
        }

            .reviews-section-container .review:first-child {
                margin-left: 16px;
            }

            .reviews-section-container .review:last-child {
                margin-right: 16px;
            }

            .reviews-section-container .review p {
                font-size: 14px;
            }

            .reviews-section-container .review .author {
                font-size: 12px;
            }
}
