@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");

body {
    font-family: "Roboto", sans-serif;
    color: #333;
    line-height: 1.5;
    font-size: 16px;
}

:root {
    --global: #00420d;
    --white: #ffffff;
    --gray: #c1c1c1;
}

.borderGlobal {
    border-color: var(--global);
}

.bgGlobal {
    background: var(--global);
}

.textGlobal {
    color: var(--global);
}

.textGray {
    color: var(--gray);
}

/* pagination */
.pagination {
    display: flex;
    justify-content: center;
}

.pagination li {
    float: left;
    text-decoration: none;
    border: 1px solid #dddddd;
    margin: 0px 2px;
}

.pagination li.active {
    border-color: var(--global) !important;
}

.pagination li a,
.pagination li span {
    float: left;
    width: 100%;
    padding: 8px 16px;
    display: flex;
}

.pagination li.active span {
    background-color: var(--global);
    color: white;
}

.pagination a:hover:not(.active) {
    background-color: #ddd;
}

.clamp {
    overflow: hidden;
    word-break: break-word;
    display: -webkit-box;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
}

.clamp1 {
    -webkit-line-clamp: 1;
}

.clamp2 {
    -webkit-line-clamp: 2;
}

.clamp3 {
    -webkit-line-clamp: 3;
}

.clamp4 {
    -webkit-line-clamp: 4;
}

#scrollUp {
    box-shadow: 0 0 15px 0px rgb(50 50 50 / 20%);
    transition: 0.3s;
    position: fixed;
    bottom: 25px;
    right: 25px;
    cursor: pointer;
    z-index: 99999;
    width: 35px;
    height: 35px;
}

.box_content img {
    margin: 10px auto;
    max-width: 100%;
    height: auto !important;
}

.box_content ul {
    list-style: disc;
    padding-left: 20px;
    margin-bottom: 10px;
}

.box_content p {
    margin-bottom: 10px;
    font-size:16px
}

.box_content h2,
.box_content h3,
.box_content h4,
.box_content h5 {
    color: var(--global);
    margin-bottom: 10px;
}

.box_content h2 {
    font-size: 18px;
    font-weight: bold;
}

.box_content h3 {
    font-size: 16px;
    font-weight: 600;
}

.box_content h4,
.box_content h5 {
    font-weight: 500;
}

.boxImage img {
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

.hover:hover .boxImage img {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
}

.delay01 {
    animation-delay: 0.1s;
}

.delay02 {
    animation-delay: 0.2s;
}

.delay03 {
    animation-delay: 0.3s;
}

.delay04 {
    animation-delay: 0.4s;
}
/* header */
.effect:before {
    z-index: 1;
    content: "";
    position: absolute;
    left: 10px;
    right: 10px;
    top: 30px;
    bottom: 30px;
    border-top: 1px solid #fff;
    border-bottom: 1px solid #fff;
    transform: scale(0, 1);
    -moz-transform: scale(0, 1);
    -webkit-transform: scale(0, 1);
    -ms-transform: scale(0, 1);
    transition: all 0.4s ease-in-out 0s;
    -moz-transition: all 0.4s ease-in-out 0s;
    -webkit-transition: all 0.4s ease-in-out 0s;
}
.effect:after {
    z-index: 1;
    content: "";
    position: absolute;
    left: 30px;
    right: 30px;
    top: 10px;
    bottom: 10px;
    border-left: 1px solid #fff;
    border-right: 1px solid #fff;
    transform: scale(1, 0);
    -moz-transform: scale(1, 0);
    -webkit-transform: scale(1, 0);
    -ms-transform: scale(0, 1);
    transition: all 0.4s ease-in-out 0s;
    -moz-transition: all 0.4s ease-in-out 0s;
    -webkit-transition: all 0.4s ease-in-out 0s;
}
.effect:hover:before,
.effect:hover:after {
    transform: scale(1, 1);
    -moz-transform: scale(1, 1);
    -webkit-transform: scale(1, 1);
    -ms-transform: scale(1, 1);
}
