:root {
    --green: #6c8b3d;
    --green-bg: #ebf5d6;
    --green-md: #a8d644;
    --black: #000000;
    --gray: #333333;
    --darkgray: #666666;
    --white: #ffffff;
    --brown: #47211a;
    --brown-md: #7b3e22;
    --white-opacity: #ffffffcc;
}

@font-face {
  font-family: 'Rubik';
  font-style: italic;
  font-weight: 300 900;
  font-display: swap;
  src: url("fonts/Rubik-Italic-VariableFont_wght.ttf") format("truetype");
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;

}
@font-face {
  font-family: 'Rubik';
  font-style: normal;
  font-weight: 300 900;
  font-display: swap;
  src: url("fonts/Rubik-VariableFont_wght.ttf") format("truetype");
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;

}

.main-container{
    min-height:calc(100vh - 270px);
}
body {
    font-family: 'Rubik', sans-serif;
    font-size: 16px;
    line-height: 1.5;
    color: var(--gray);
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-color: var(--white);
}
h1, h2, h3, h4{
    color:var(--green);
}
h2{
    font-size:24px;
    font-weight:600;
}
header{
    min-height:139px;
}
header > nav {
    background-color: var(--brown);
    color: var(--white);
    border-bottom-left-radius: 6px;
    border-bottom-right-radius: 6px;
    max-width: 1800px;
    margin: 0 auto;
}
    header > nav .navbar-toggler{
        margin-top:3px;
        margin-bottom:3px;
    }
    header > nav.navbar {
        padding-top: 0;
        padding-bottom: 0;
        font-size: 12px;
        text-transform: uppercase;
    }
    header > nav .nav-link {
        padding-top: 0;
        padding-bottom: 0;
        padding-right:32px!important;
        white-space: nowrap;
    }
    .plogo{
        position:relative;
    }
        .plogo img{display:block;position:static;}

        .tit{
            font-size:48px;
            color:var(--green);
            line-height:1.2;
            font-weight:600;
        }
        .subtit{
            font-size:20px;
            color:var(--darkgray);
        }
        footer .tit{
            color:var(--white);
            font-size:24px;
        }
        footer .subtit{
            color:var(--white);
            font-size:14px;
        }

.carousel-caption {
    top: 20px;
    left: 5%;
    right: auto;
    bottom: auto;
    padding: 15px 30px 0;
    background-color: var(--white-opacity);
    text-align:left;
    max-width:420px;
}
    .carousel-caption h5{
        color:var(--brown);
        font-size:30px;
        font-weight: 600;
    }
    .carousel-caption p{
        color:var(--black);
        font-weight: 600;
        padding-left:20px;
        padding-right:20px;
    }
.carousel-indicators {
    justify-content: start;
    margin-left: 5%;
    margin-right: 5%;
    margin-bottom: 0;
}
    .carousel-indicators [data-bs-target]{
        width:25px;
        height:25px;
        border-radius:50%;
        position:relative;
    }
    .carousel-indicators [data-bs-target]:after {
        content: "";
        position:absolute;
        width:5px;
        height:5px;
        border-radius:50%;
        top:10px;
        left:10px;
        background-color:var(--brown);

    }
button:has(.roll):after {
    display:none;
}
    button:has(.roll):hover{
        opacity:1;
    }
.roll {
    display: block;
    padding: 15px;
    position: relative;
}
    .roll.up:after {
        content: "";
        position:absolute;
        left: 3px;
        bottom: 14px;
        border: 10px solid transparent;
        border-bottom: 10px solid var(--brown);
    }
    .roll.down:after {
        content: "";
        position:absolute;
        left: 3px;
        bottom: 1px;
        border: 10px solid transparent;
        border-top: 10px solid var(--brown);
    }
    .lmenu .nav-link {
        color: var(--brown);
        text-decoration: underline;
        font-weight: 600;
        padding: 3px 0;
    }
    .lmenu .nav-link:hover, .lmenu .nav-link.active{
        color: var(--green);
    }
.offleftmenu{
    position:fixed;
    top:45%;
    left:-40px;
    background-color:var(--brown);
    color:var(--white);
    border-top-right-radius:25px;
    border-bottom-right-radius:25px;
    font-size:50px;
    line-height:1;
    width:80px;
    height:50px;
    text-align:right;
    padding-right:10px;
    opacity:0.5;
    transition: all 500ms;
    cursor:pointer;
}
    .offleftmenu:hover{
        opacity:1;
        left:-10px;
    }
    .brown {
        color: var(--brown);
    }

    footer {
        background-color: var(--green-md);
        min-height: 75px;
        padding-top: 10px;
        padding-bottom: 10px;
        margin-top: 30px;
        color: var(--white);
    }
            footer .nav .nav-link {
                color: var(--white);
                white-space: nowrap;
                text-transform: uppercase;
                font-size: 12px;
                padding-left: 32px !important;
            }
.bggreen {
    background-color: var(--green-bg);
    color: var(--black);
}

.pagination {
    justify-content: center;
}
.pagination li a{
    margin:0 5px;
    text-decoration:none;
}
    .pagination li a:hover{
        font-weight: 500;
    }
    .pagination .currentPage {
        font-weight:700;
    }