*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: "Montserrat", sans-serif;
}
a{
    text-decoration: none;
    cursor: pointer;
}
:root{
    interpolate-size: allow-keywords;
}
body{
    overflow-x: hidden;
}

/* WA & TO TOP*/
.to-top{
    position: fixed;
    bottom: 6rem;
    right: 2rem;
    width: 55px;
    height: 55px;
    border-radius: 100%;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    background: #512926;
    color: #fff; 
}
.redirect-wa{
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 55px;
    height: 55px;
    border-radius: 100%;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    background: #00b367;
    color: #fff;
}

.wrap{
    display: grid;
    width: 100%;
    height: 100vh;
    padding: 0;
}
.wrap.one{
    position: relative;
    background: url(images/LOGIN.webp);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    margin-bottom: 7rem;
    z-index: 2;
}
.wrap.one::before{  
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    background-color: rgba(255, 255, 255, .85);
    width: 100%;
    height: 100vh;
    z-index: 0;
}
.wrap.one::after{  
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    background: linear-gradient(0deg, #ffffff, transparent);
    width: 100%;
    height: 100vh;
    z-index: 0;
}
.menu-wrap{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: fit-content;
    padding: 0 10%;
    background-color: transparent;
    transition:
    transform .45s cubic-bezier(.4,0,.2,1),
    background .35s ease,
    box-shadow .35s ease,
    backdrop-filter .35s ease;
    z-index: 9999;
}
.menu-wrap.show{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    transform:translateY(0);
}
.menu-wrap.hide{
    transform:translateY(-100%);
}
.menu-wrap.scrolled{
    background:#fff;
    backdrop-filter:blur(18px);
    -webkit-backdrop-filter:blur(18px);
    box-shadow: 0 12px 35px rgba(0,0,0,.08);
}
.menu-left{
    width: 20%;
}
.menu-left img{
    width: 200px;
}
.menu-center{
    width: 60%;
}
.menu-center ul{
    padding: 0;
    margin: 0;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: center;
}
.menu-center ul li{
    padding: 2rem 1rem;
    position: relative;
}
.menu-center ul li a{
    text-decoration: none;
    color: #000;
    font-weight: 600;
    cursor: pointer;
    position: relative;
    margin-left: 1.5rem;
    padding: 2rem 0;
    transition: all .3s;
}
.menu-center > ul > li > a:hover{
    color: #027849;
}
.menu-center > ul > li > a:after{
    content:"";
    position:absolute;
    left:50%;
    bottom:0rem;
    width:0;
    height:2px;
    background:#027849;
    transition:.35s;
    transform:translateX(-50%);
}
.menu-center ul li a:hover:after{
    width:100%;
}
.menu-center ul li a.active{
    color:#027849;
    font-weight: 600;
}
.menu-center ul ul.dropdown-menu li a:before {
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    background: #00824b;
    transform: rotate(45deg);
    top: 2.25rem;
    left: -1.3rem;
}
.menu-center ul ul.dropdown-menu{
    display: flex;
    flex-flow: wrap;
    justify-content: flex-start;
    width: 400px;
    transition: all .3s;
    position: absolute;
    top: 100%;
    left: 0;
    padding: 0;
    background: #fff;
    border-radius: 5px;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform:translateY(10px);
    transition:.3s;
    /* background:rgba(255,255,255,.92); */
    backdrop-filter:blur(18px);
    box-shadow:0 15px 35px rgba(0,0,0,.08);
}
.menu-center ul li.dropdown-wrap:hover ul.dropdown-menu{
    opacity: 1;
    visibility:visible;
    transform:translateY(0);
}
.menu-center ul ul li.list-dropdown-menu{
    background: #fff;
    width: 50%;
    font-size: .9rem;
    padding: 1rem;
    cursor: pointer;
}
.menu-center ul ul li.list-dropdown-menu a:hover{
    color: #007748;
}
.menu-wrap.scrolled .menu-center > ul > li{
    padding: 2rem 1rem;
}
.menu-center ul ul li:first-child{
    padding-top: 1.5rem;
}
.menu-center ul ul li:last-child{
    padding-bottom: 1.5rem;
}
.menu-right{
    width: 20%;
    display: flex;
    justify-content: flex-end;
}
.menu-right a.register-wrap{
    text-decoration: none;
    color: #007f4d;
    background: transparent;
    margin-right: 1.5rem;
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    cursor: pointer;
}
.menu-right a.register-wrap i{
    font-size: 1.5rem;
    margin-right: .5rem;
}
.menu-right a.login-wrap{
    text-decoration: none;
    color: #fff;
    background: #027849;
    padding: .7rem 1.3rem;
    border-radius: 30px;
    display: flex;
    width: 130px;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: .9rem;
    cursor: pointer;
    transition: all .3s;
}
.menu-right a.login-wrap:hover{
    background: #03a765;
}
.menu-right a.login-wrap i{
    font-size: 1.5rem;
    margin-right: .5rem;
}
.mainheader-wrap{
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 0 10%;
    padding-top: 8rem;
    z-index: 1;
}
.articlesheader-wrap{
    position: relative;
    display: grid;
    width: 50%;
}
.articlesheader-wrap .titleheader h1{
    font-size: 1.3rem;
    margin-bottom: 0;
}
.articlesheader-wrap .titleheader h1:before{
    display: none;
}
.titleheader{
    text-align: center;
    margin-bottom: 1rem;
}
.titleheader h1{
    position: relative;
    font-weight: 500;
    line-height: 2.5rem;
    margin-bottom: 4rem;
}
.titleheader h1:before{
    content: '';
    position: absolute;
    left: 0;
    bottom: -3rem;
    right: 0;
    margin: auto;
    background: url(images/ICON7.png);
    background-repeat: no-repeat;
    background-size: contain;
    width: 400px;
    height: 30px;
}
.green-text{
    color: #007748;
    font-weight: 700;
    font-size: 2rem;
    line-height: 2.5rem;
}
.subtitleheader{
    text-align: center;
    margin-bottom: 1rem;
}
.subtitleheader h2{
    font-weight: 300;
    font-size: 1.3rem;
    line-height: 2.2rem;
}
.buttonsheader{
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 2rem;
    z-index: 2;
}
.buttonsheader a{
    text-decoration: none;
    /* background: #aaa; */
    padding: .7rem 1.3rem;
    border-radius: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    /* width: 200px; */
    /* color: #000; */
    margin: 0 .8rem;
}
.buttonsheader a.googleplay{
    background: linear-gradient(50deg, #009f93, #00dd94);
    color: #fff;
    font-weight: 600;
}
.buttonsheader a.appstore{
    /* background: linear-gradient(50deg, #00829f, #00ddd7); */
    background: linear-gradient(50deg, #512926, #8f5d59);
    color: #fff;
    font-weight: 600;
}
.buttonsheader a i{
    margin-right: .5rem;
    font-size: 1.5rem;
}
.imagesheader-wrap{
    position: relative;
    display: grid;
    align-items: center;
    justify-content: center;
    width: 50%;
    z-index: 0;
}
.imagesheader-wrap .smartphone{
    width: 25vw;
}
.wrap.two{
    margin: 0;
    margin-bottom: 7rem;
    padding: 0 10%;
    height: fit-content;
}
.wrap.one-plus1 {
    margin: 0;
    margin-bottom: 7rem;
    padding: 0 10%;
    height: 100%;
}
.wrap.one-plus1 .subtitleheader{
    margin-bottom: 0;
}
.wrap.one-plus1 .subtitleheader h2{
    font-style: italic;
}
.wrap.one-plus1 .subtitleheader h2 b{
    font-weight: 600;
    font-style: normal;
    color: #512926;
    line-height: 3rem;
}
.maintitle-wrap{
    display: grid;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: fit-content;
    margin-top: 2rem;
}
.mainbox-wrap{
    position: relative;
    display: flex;
    flex-flow: wrap;
    justify-content: center;
    gap: 2rem;
    padding: 2rem 0;
}
.boxcontent{
    position: relative;
    width: 30%;
    /* min-height: 350px; */
    background-color: #027849;
    padding: 4rem 2rem;      
    border-radius: 10px;
    box-shadow: 0px 6px 0px #005632;
    overflow: hidden;
}
.boxcontent:before{
    content: "";
    position: absolute;
    bottom: -1rem;
    right: -1rem;
    width: 150px;
    height: 150px;
    filter: grayscale(1);
    opacity: .1;
}
.boxcontent:nth-child(1):before{
    background: url(images/ICON3.png);
    background-repeat: no-repeat;
    background-size: contain;
}
.boxcontent:nth-child(2):before{
    background: url(images/ICON2.png);
    background-repeat: no-repeat;
    background-size: contain;
}
.boxcontent:nth-child(3):before{
    background: url(images/ICON4.png);
    background-repeat: no-repeat;
    background-size: contain;
}
.boxcontent:nth-child(4):before{
    background: url(images/ICON1.png);
    background-repeat: no-repeat;
    background-size: contain;
}
.boxcontent:nth-child(5):before{
    background: url(images/ICON5.png);
    background-repeat: no-repeat;
    background-size: contain;
}
.boxcontent h3{
    margin-bottom: 1rem;
    color: #fff;
}
.boxcontent article{
    color: #fff;
    line-height: 1.5rem;
}
.wrap.three{
    margin: 0;
    margin-bottom: 10rem;
    padding: 0 10%;
    height: fit-content;
}
.content-wrap{
    display: flex; 
}
.leftcontent{
    width: 35%;
}
.leftcontent img{
    width: 100%;
    filter: drop-shadow(-20px 25px 0px #eee);
}
.wrap.three .rightcontent{
    background: #fff;
}   
.rightcontent{
    width: 65%;
    display: grid;
    align-items: center;
    justify-content: center;
    height: fit-content;
    padding: 1rem 3rem;
    background: rgb(0 140 77 / 19%);
}
.rightcontent .titleheader h1,
.rightcontent .subtitleheader h2{
    text-align: left;
}
.rightcontent .titleheader h1:before {
    content: '';
    position: absolute;
    left: 0;
    bottom: -3rem;
    right: 0;
    margin: 0;
    background: url(images/ICON7.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: right;
    width: 256px;
    height: 30px;
}
.listcontent-wrap ul{
    list-style: none;
    position: relative;
}
.listcontent-wrap ul:before {
    content: '';
    position: absolute;
    bottom: -4rem;
    width: 100px;
    height: 10px;
    background: #00814a;
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
}
.listcontent-wrap ul li{
    position: relative;
    font-weight: 300;
    font-size: 1.3rem;
    line-height: 2.2rem;
    margin-bottom: 1rem;
    padding-left: 4rem;
}
.listcontent-wrap ul li > label{
    background: #003c23;
    padding: .5rem 1rem;
    margin-bottom: 0.3rem;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 600;
    display: inline-block;
}
.listcontent-wrap ul li:before{
    content: '';
    position: absolute;
    width: 15px;
    height: 15px;
    background: #007748;
    left: 1.5rem;
    top: .7rem;
    transform: rotate(45deg);
}
.wrap.five{
    margin: 0;
    margin-bottom: 8rem;
    padding: 0 10%;
    height: fit-content;
}
.colorbox-wrap{
    position: relative;
    background: #007748;
    padding: 4rem 5rem;
    border-radius: 15px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    height: 100%;
}
.colorbox-wrap:before {
    content: '';
    position: absolute;
    background: url(images/FLOWER.png);
    background-repeat: no-repeat;
    background-size: contain;
    width: 280px;
    height: 100%;
    left: 0rem;
    bottom: 0rem;
    filter: brightness(0) invert(1);
    opacity: .1;
    transform: rotate(180deg);
}   
.leftcolorbox{
    width: 50%;
    padding-right: 0;
}
.leftcolorbox .maintitle-wrap{
    padding: 1rem 0;
}
.leftcolorbox .subtitleheader{
    margin-bottom: 0;
}
.leftcolorbox h1,
.leftcolorbox h2{
    text-align: right;
    color: #fff;
}
.leftcolorbox .maintitle-wrap .titleheader h1:before {
    content: '';
    position: absolute;
    left: unset;
    bottom: -3rem;
    right: 0;
    margin: 0;
    background: url(images/ICON7.png);
    background-repeat: no-repeat;
    background-size: cover;
    width: 259px;
    height: 30px;
    filter: brightness(0) invert(1);
}
.leftcolorbox h1 .green-text{
    color: #fff;
}
/* .moonstar{
    display: flex;
    justify-content: flex-end;
    margin-bottom: 2rem;
    filter: brightness(0) invert(1);
    width: 100%;
}
.moonstar img{
    width: 65px;
} */
.colorbox-wrap .leftcolorbox .listcontent-wrap ul:before{
    display: none;
}
.colorbox-wrap .leftcolorbox .listcontent-wrap ul li{
    color: #fff;
    text-align: right;
    padding-left: 0;
}
.colorbox-wrap .leftcolorbox .listcontent-wrap ul li:before {
    display: none;
}
.rightcolorbox{
    position: absolute;
    width: 40%;
    right: 3rem;
    bottom: -4px;
}
.rightcolorbox img{
    width: 100%;
    filter: drop-shadow(0px 10px 0px rgb(0 0 0 / 10%));
}
.colorbox-wrap .rightcolorbox img{
    width: 100%;
    filter: drop-shadow(0px -10px 30px rgb(0 0 0 / 10%));
}
.wrap.four {
    margin: 0;
    margin-bottom: 7rem;
    padding: 0 10%;
    height: fit-content;
}
.mainiconbox-wrap{
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
}
.iconboxcontent{
    width: 25%;
}
.iconboxcontent .iconbox{
    font-size: 4rem;
    margin-bottom: .5rem;
    color: #007748;
}
.iconboxcontent h3{
    margin-bottom: .7rem;
    color: #434343;
}
.iconboxcontent article{
    line-height: 1.5rem;
    color: #555;
}
.wrap.six {
    margin: 0;
    margin-bottom: 10rem;
    padding: 0 10%;
    height: fit-content;
}
.vimi-wrap{
    position: relative;
    display: flex;
    margin-top: 2rem;
    gap: 4rem;
}
.vimi-wrap:before{
    content: '';
    position: absolute;
    margin: auto;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 7px;
    height: 100%;
    background: #00814a;
}
.vimi-wrap:after{
    content: '';
    position: absolute;
    margin: auto;
    left: 0;
    right: 0;
    bottom: -2.5rem;
    width: 40px;
    height: 40px;
    /* border-radius: 5px; */
    background: #00814a;
    transform: rotate(45deg);
}
.leftvimi{
    width: 50%;
}
.leftvimi .subtitleheader{
    text-align: right;
}
.rightvimi{
    width: 50%;
}
.rightvimi .subtitleheader{
    text-align: left;
}
.wrap.categorynews{
    margin: 0;
    margin-top: 3rem;
    margin-bottom: 8rem;
    padding: 0 10%;
    height: fit-content;
    display: flex;
    gap: 2.5rem;
}
.newest-wrap{
    width: 70%;
}
.newest-wrap .maintitle-wrap{
    display: flex;
    justify-content: space-between;
    margin-top: 0;
}
.newest-wrap .maintitle-wrap .titleheader{
    width: 100%;
    margin-bottom: 1.5rem;
}
.newest-wrap .maintitle-wrap .titleheader h1{
    text-align: left;
    line-height: 45px;
    border-left: 7px solid #007748;
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}
.newest-wrap .maintitle-wrap .titleheader h1:before {
    display: none;
}
.newest-wrap .maintitle-wrap .subtitleheader{
    width: 40%;
}
.newest-wrap .maintitle-wrap .subtitleheader h2{
    text-align: right;
}
.list-news-wrap{
    width: 100%;
    display: block;
}
.list-news-wrap ul{
    list-style: none;
    padding: 0;
    margin: 0;
}
.list-news-wrap ul li a{
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2.5rem;
    color: unset;
    cursor: pointer;
}
.list-news-wrap ul li a figure{
    width: 30%;
}
.list-news-wrap ul li a figure img{
    width: 100%;
    height: 200px;
    border-radius: 5px;
    object-fit: contain;
    object-position: center;
    background: #000;
}
.list-news-wrap ul li a .thumb-news{
    width: 70%;
}
.list-news-wrap ul li a .thumb-news h2{
    font-size: 1.2rem;
    margin-bottom: .5rem;
    line-height: 1.75rem;    
    color: #272727;
    font-weight: 600;
    text-align: left;
    /* word-break: break-all; */
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.list-news-wrap ul li a .thumb-news article{
    margin-bottom: .5rem;
    line-height: 1.5rem;
    text-align: left;
    /* word-break: break-all; */
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    color: #464646;
}
.list-news-wrap ul li a .thumb-news .date-news{
    font-size: .9rem;
    color: #434343;
    font-style: italic;
    display: flex;
    align-items: center;
}
.list-news-wrap ul li a .thumb-news .date-news i{
    font-size: 1.2rem;
    margin-right: .5rem;
}
.side-portalnews{
    width: 25%;
    position: sticky;
    top: 2rem;
    height: fit-content;
    background: #f5faf8;
    padding: 2rem;
    border-radius: 0 0 5px 5px;
    border-top: 5px solid #007748;
}
.side-portalnews h2{
    margin-bottom: 1rem;
    color: #008c4d;
}
.side-portalnews ul{
    list-style: none;
    padding: 0 3rem;
    margin: 0;
}
.side-portalnews ul li{
    padding: 1rem 0;
    border-bottom: 1px dashed #aaa;
}
.side-portalnews ul li a{
    width: 100%;
    display: flex;
    font-size: 1rem;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    color: unset;
    transition: all .3s;
}
.side-portalnews ul li a:hover{
    color: #008c4d;
}
.side-portalnews ul li a i{
    font-size: 1.5rem;
    margin-right: .5rem;
}
.wrap.seven {
    margin: 0;
    margin-bottom: 3rem;
    padding: 3rem 10%;
    height: fit-content;
    background: rgb(0 140 77 / 5%);
}
.wrap.seven .maintitle-wrap{
    display: flex;
    justify-content: space-between;
}
.wrap.seven .maintitle-wrap .titleheader{
    width: 40%;
}
.wrap.seven .maintitle-wrap .titleheader h1{
    text-align: left;
    line-height: 45px;
    border-left: 7px solid #00814a;
    padding-left: 1.5rem;
}
.wrap.seven .maintitle-wrap .titleheader h1:before {
    content: '';
    position: absolute;
    left: 0;
    bottom: -3rem;
    right: 0;
    margin: 0;
    margin-left: 2rem;
    background: url(images/ICON7.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: right;
    width: 256px;
    height: 30px;
}
.wrap.seven .maintitle-wrap .subtitleheader{
    width: 40%;
}
.wrap.seven .maintitle-wrap .subtitleheader h2{
    text-align: right;
}
.newsslide-wrap{
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
    overflow: hidden;
}
.testimonislide-wrap{
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
    overflow: hidden;
}
.galleryslide-wrap{
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
    overflow: hidden;
}
.galleryslide-wrap .owl-carousel .owl-item img {
    display: block;
    width: 100%;
    height: 400px;
    object-fit: cover;
    object-position: center;
    border-radius: 10px;
}
.itemboxcontent{
    position: relative;
    width: 100%;
} 
.itemboxcontent:hover:before{
    top: 0;
    cursor: pointer;
}
.itemboxcontent.green:before{
    background: #006f3f;
}
.itemboxcontent.blue:before{
    background: #004061;
}
.itemboxcontent.brown:before{
    background: #996618;
}
.itemboxcontent.greenlake:before{
    background: #00635b;
}
.itemboxcontent.violet:before{
    background: #583762;
}
.itemboxcontent:before{
    content: '\f061';
    transition: .3s all;
    top:-100%;
    font-family: 'Line Awesome Free';
    font-weight: 900;
    font-size: 3rem;
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    border-radius: 5px;
}
.itemboxcontent figure{
    margin-bottom: 1rem;
}
.itemboxcontent figure img{
    border-radius: 5px;
}
.itemboxcontent h3{
    margin-bottom: .7rem;
    color: #464646;
    line-height: 1.7rem;
    text-align: justify;
    word-break: break-all;
}
.itemboxcontent article{
    line-height: 1.5rem;
    color: #555;
    /* text-align: justify;
    word-break: break-all;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden; */
}
.ornament-text{
    position: relative;
    text-align: center;
    margin-bottom: 3rem;
    /* display: flex; */
    display: none;
    justify-content: center;
}
.ornament-text h3{
    position: relative;
    color: #d58200;
}
.ornament-text h3:before{
    content: '';
    position: absolute;
    left: 0;
    bottom: -2.5rem;
    right: 0;
    margin: auto;
    background: url(images/ICON7.png);
    background-repeat: no-repeat;
    background-size: contain;
    width: 100%;
    height: 20px;
}
.ornament-text h3 b{
    font-weight: 700;
    position: relative;
}
 .wrap.eight {
    margin: 0;
    margin-bottom: 8rem;
    padding: 0 10%;
    height: fit-content;
}
.wrap.nine{
    margin: 0;
    margin-bottom: 7rem;
    padding: 0 10%;
    height: fit-content;
}
.wrap.ten{
    margin: 0;
    margin-bottom: 7rem;
    padding: 0 10%;
    height: fit-content;
}
.wrap.ten .content-wrap{
    align-items: center;
    gap: 3rem;
}
.wrap.ten .content-wrap .leftcontent img{
    filter: none;
}
.wrap.ten .rightcontent{
    border-radius: 15px;
    padding: 3rem;
}
.wrap.two-plus1{
    margin: 0;
    margin-bottom: 7rem;
    padding: 0 10%;
    height: fit-content;
}
.wrap.two-plus1 .content-wrap{
    align-items: center;
    gap: 3rem;
}
.wrap.two-plus1 .content-wrap .leftcontent img{
    filter: none;
}
.wrap.two-plus1 .rightcontent{
    border-radius: 15px;
    padding: 3rem;
    width: 100%;
}
.wrap.two-plus1 .rightcontent .titleheader h1{
    text-align: center;
}
.wrap.two-plus1 .rightcontent .titleheader h1:before{
    background-size: contain;
    width: 400px;
    height: 30px;
    background-position: unset;
    margin: auto;
}
.wrap.two-plus1 .rightcontent .subtitleheader h2{
    text-align: center;
}
.wrap.two-plus1 .rightcontent .menu-center {
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
    margin-top: 1rem;
    margin-bottom: 2rem;
}
.wrap.two-plus1 .rightcontent .menu-center a {
    text-decoration: none;
    color: #fff;
    background: #00a564;
    padding: .7rem 1.3rem;
    border-radius: 30px;
    display: flex;
    width: fit-content;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: .9rem;
    cursor: pointer;
}
.wrap.two-plus1 .rightcontent .menu-center a i{
    margin-right: .5rem;
    font-size: 1.5rem;
}
.rightcontent .menu-right{
    width: 300px;
    display: flex;
    justify-content: flex-start;
    margin-top: 1rem;
}
.rightcontent .menu-right a{
    text-decoration: none;
    color: #fff;
    background: #00a564;
    padding: .7rem 1.3rem;
    border-radius: 30px;
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: .9rem;
    cursor: pointer;
}
.rightcontent .menu-right a i{
    font-size: 1.5rem;
    margin-right: .5rem;
}
.box-testimoni{
    position: relative;
    display: flex;
    gap: 1rem;
}
.box-testimoni figure{
    /* width: 30%; */
}
.box-testimoni figure img{
    width: 60px !important;
    height: 60px;
    object-fit: cover;
    object-position: center;
    border-radius: 100%;
}
.box-testimoni .sub-box-testimoni{
    /* width: 70%; */
}
.box-testimoni .sub-box-testimoni article{
    line-height: 1.8rem;
    margin-bottom: .5rem;
    color: #424242;
}
.box-testimoni .sub-box-testimoni h3{
    font-size: .9rem;
    line-height: 24px;
}
.pagination-news{
    display: block;
    margin-top: 3rem;
    padding-top: 1rem;
    border-top: 1px dashed #aaa;
}
.pagination-news ul{
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 2rem;
    justify-content: center;
    align-items: center;
}
.pagination-news ul li{
    color: #7b7b7b; 
    transition: all .3s;
}
.pagination-news ul li:hover{
    font-weight: bold;
}
.pagination-news ul li a{
    color: #7b7b7b; 
}
.pagination-news ul li.first-pag a,
.pagination-news ul li.last-pag a{
    color: #009950;
    font-weight: bold;
}
.pagination-news ul li.current-pag{
    border-radius: 100%;
    background: #009950;
    height: 40px;
    width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: bold;
    cursor: pointer;
}
.pagination-news ul li.current-pag a{
    color: #fff;
}
.detail-news-wrap{
    position: relative;
    display: block;
    width: 100%;
}
.detail-news-wrap  h2{
    color: #272727;
    font-weight: 600;
    line-height: 2.2rem;
    margin-bottom: 1rem;
}
.detail-news-wrap > figure{
    position: relative;
    display: block;
    width: 100%;
    margin-bottom: 1rem;
}
.detail-news-wrap > figure img{
    width: 80%;
    border-radius: 5px;
}
.detail-news-wrap > article{
    position: relative;
    display: block;
    width: 100%;
    line-height: 2rem;
    text-align: left;
}
.detail-news-wrap > article p,
.detail-news-wrap > article img{
    margin-bottom: .5rem;
    width: 100%;
    border-radius: 5px;
    line-height: 1.5rem;
}
.detail-news-wrap > article h2{
    margin-bottom: .5rem;
}
.detail-news-wrap > label{
    background: #007748;
    color: #fff;
    padding: .5rem 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    width: fit-content;
    border-radius: 5px;
    margin-bottom: .75rem;
    font-weight: 600;
}
.share-sosmed{
    position: relative;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}
.share-sosmed > label{
    margin-right: 1rem;
    font-weight: bold;
    /* color: #009950; */
}
.share-sosmed > ul{
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .75rem;
}
.share-sosmed > ul li{
    font-size: 1.5rem;
}
.share-sosmed > ul li a{
    display: flex;
    justify-content: center;
    align-items: center;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #f3f3f3;
    padding: 1rem;
    width: 40px;
    height: 40px;
    border-radius: 5px;
}
.x-share{
    padding: .7rem !important;
}
.copy-share{
    /* font-size: 1.9rem; */
    color: #282828;
}
.instagram-share{
    /* font-size: 2rem;  */
    color: #dd00e9;
}
.facebook-share{
    color: #006abf;
}
.side-othernews{
    width: 30%;
    position: sticky;
    top: 2rem;
    height: fit-content;
    background: rgb(0 119 72 / 4%);
    padding: 2rem;
    border-radius: 0 0 5px 5px;
    border-top: 5px solid #007748;
}
.side-othernews > h2{
    margin-bottom: .5rem;
    color: #008c4d;
    /* border-left: 5px solid #008c4d;
    padding-left: 1rem; */
}
.side-othernews ul{
    list-style: none;
    padding: 0;
    margin: 0;
}
.side-othernews ul li{
    padding: 1rem 0;
    border-bottom: 1px dashed #aaa;
}
.side-othernews ul li a{
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: .75rem
}
.side-othernews ul li a figure{
    display: flex;
    width: 30%;
    position: relative;
    justify-content: center;
    align-items: center;
}
.side-othernews ul li a figure img{
    width: 100%;
    border-radius: 5px;
}
.side-othernews ul li a .thumb-othernews{
    position: relative;
    width: 70%;   
}
.side-othernews ul li a .thumb-othernews > h2{
    color: #272727;
    font-size: .9rem;
    text-align: left;
    margin-bottom: 0;
    /* word-break: break-all; */
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.side-othernews ul li a .thumb-othernews > .date-news {
    font-size: .8rem;
    color: #272727;
    font-style: italic;
    margin-top: .3rem;
    display: block;
}
.side-othernews ul li a .thumb-othernews > .date-news i{
    margin-right: .3rem;
}

/* POPUP GALLERY HERE */
.gallery-modal {
    display: none;
    position: fixed;
    z-index: 99999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,.9);
    text-align: center;
    justify-content: center;
    align-items: center;
}
.gallery-modal img {
    max-width: 90%;
    max-height: 90%;
    margin-top: 2%;
    object-fit: contain;
}
.gallery-close {
    position: absolute;
    right: 30px;
    top: 20px;
    color: #fff;
    font-size: 40px;
    cursor: pointer;
}
.header-account-page{
    margin-top: 2rem;
    margin-bottom: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.back-to-home{
    display: block;
    padding: 0 10%;
    margin-top: 2rem;
    margin-bottom: 2rem;
    font-weight: bold;
    color: #007748;
}
.back-to-home i{
    margin-right: .5rem;
}
.logout-account{
    padding: 0 10%;
    margin-top: 2rem;
    margin-bottom: 2rem;
    font-weight: bold;
    color: #007748;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    text-align: right;
}
.logout-account i{
    margin-right: .5rem;
    font-size: 1.5rem;
}
.account-page{
    display: flex;
    padding: 0 10%;
}
.side-left-account{
    position: sticky;
    display: block;
    width: 25%;
    top: 2rem;
    height: fit-content;
}
.bio-account{
    width: 100%;
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}
.bio-account > figure{
    width: 60px;
    position: relative;
    height: 60px;
}
.bio-account > figure img{
    width: 100%;
    height: stretch;
    border: 1px solid #aaa;
    border-radius: 100%;
    object-fit: cover;
    object-position: center;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    margin: auto;
}
.bio-account > ul{
    list-style: none;
    padding: 0;
    margin: 0;
}
.bio-account > ul li:first-child{
    margin-bottom: .3rem;
}
.bio-account > ul li:nth-child(2){
    font-size: .9rem;
    font-style: italic;
    color: #464646;
    margin-bottom: .3rem;
}
.bio-account > ul li:last-child{
    font-size: .9rem;
    font-style: italic;
    color: #464646;
}
.menu-account{
    position: relative;
    display: block;
    margin: 3rem 0;
}
.menu-account ul{
    list-style: none;
    padding: 0;
    margin: 0;
}
.menu-account ul li{
    transition: all .3s;
    padding: .3rem 0;
    padding-left: 2rem;
    color: #272727;
    font-weight: normal;
    display: flex;
    align-items: center;
    margin-bottom: 1.2rem;
    cursor: pointer;
}
.menu-account ul li.active-link{
    transition: all .3s;
    color: #007748;
    font-weight: bold;
    border-left: 5px solid #007748;
}
.menu-account ul li i{
    transition: all .3s;
    font-size: 1.75rem;
    margin-right: .9rem;
}
.account-content{
    display:none;
}
.account-content.active-content{
    display:block;
}
.side-right-account{
    position: relative;
    display: block;
    width: 75%;
    /* background: #f9f9f9; */
    margin-bottom: 5rem;
    border-radius: 10px;
}
.content-loader{
    display:none;
    text-align:center;
    padding:50px 20px;
}
.loader-spinner{
    width:40px;
    height:40px;
    margin:0 auto 15px;
    border:4px solid #ddd;
    border-top:4px solid #00814a;
    border-radius:50%;
    animation:spin .8s linear infinite;
}
@keyframes spin{
    from{
        transform:rotate(0deg);
    }
    to{
        transform:rotate(360deg);
    }
}
.welcome-content{
    font-weight: bold;
    margin-bottom: 1rem;
    color: #00814a;
}
.account-content{
    background: #f7f7f7;
    padding: 1rem;
    border-radius: 10px;
}
.account-content table.account-user{
    background: #fff;
    padding: 1rem 1.5rem;
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    border-radius: 10px;
    overflow: hidden;
}
.account-content table.account-user td{
    border-bottom: 1px solid #eee;
    padding: 1rem .5rem;
    line-height: 24px;
}
.account-content table.account-user td:last-child {
    border-right: none;
}
.account-content table.account-user tr:last-child td {
    border-bottom: none;
}
.account-content .account-user td.label{
    width: 200px;
    font-weight: 600;
    color: #464646;
}
.accordion {
    width: 100%;
}
.accordion-item {
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 15px;
    background: #fff;
    transition: all .3s ease;
}
.accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 18px 20px;

    cursor: pointer;

    font-weight: 600;
    font-size: 16px;

    transition: all .3s ease;
}
.accordion-item.active .accordion-header {
    background: #f8fafc;
}
.accordion-icon {
    width: 24px;
    height: 24px;

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

    font-size: 24px;
    font-weight: 300;

    transition: all .35s ease;
}
.accordion-item.active .accordion-icon {
    transform: rotate(45deg);
}
.accordion-body {
    display: none;
    padding: 0 20px 20px;
    padding-top: 20px;
    color: #666;
    line-height: 1.8;
}
.title-gsm{
    margin-bottom: 1rem;
    display: block;
}
.diagram-wrap{
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    margin-top: 3rem;
}
.diagram-wrap ul{
    list-style: none;
    border-top: 10px solid #007748;
    border-bottom: 10px solid #007748;
    /* background-color: #007748; */
    /* background: linear-gradient(180deg, #053b10, #0d6735, #053b18); */
    background: url(images/BG.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    padding: 5rem;
    border-radius: 10px;
    position: relative;
    width: 500px;
    margin: 0 auto;
    /* top: 0;
    bottom: 0;
    left: 0;
    right: 0; */
    height: fit-content;
}
.diagram-wrap ul:before{
    content: '';
    position: absolute;
    background: linear-gradient(180deg, rgb(5 59 16 / 69%), #0d6735e3, #053b18);
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}
.diagram-wrap ul li.point-list{
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    position: relative;
    height: 120px;
}
.diagram-wrap ul li.point-list.last-point-list{
    height: unset;
}
.diagram-wrap ul li.point-list.last-point-list:before,
.diagram-wrap ul li.point-list.last-point-list:after{
    display: none;
}
.diagram-wrap ul li.point-list:before{
    content: '';
    position: absolute;
    height: 100%;
    width: 7px;
    background: #00c571;
    left: 1.34rem;
    top: .5rem;
}
.diagram-wrap ul li.point-list:after{
    content: "";
    /* width: 16px; */
    /* height: 16px; */
    position: absolute;
    left: 1.6rem;
    transform: translateX(-50%);
    filter: drop-shadow(cyan 0px 0px 20px);
    /* background: rgb(255, 255, 255); */
    /* border-radius: 50%; */
    border-top: 13px solid #fff;
    border-bottom: 13px solid transparent;
    border-left: 9px solid transparent;
    border-right: 9px solid transparent;
    animation: 2s linear 0s infinite normal none running flow;
}
.diagram-wrap ul li.point-list .bullet-point{
    width: 50px;
    height: 50px;
    background: #00c571;
    border-radius: 100%;
    position: relative;
    display: flex;
    align-items: center;
    box-shadow: 0 0 15px rgba(0, 210, 181, .6);
}
.diagram-wrap ul li.point-list .bullet-point label{
    margin-left: 6rem;
    width: max-content;
    position: absolute;
    font-weight: 600;
    color: #fff;
    font-size: 1.2rem;
    transition: all .3s;
}
.diagram-wrap ul li.point-list .bullet-point label:hover{
    transform: scale(1.1);
}
.diagram-wrap ul li.point-list .bullet-point:before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    width: 20px;
    height: 20px;
    background: #ffffff;
    border-radius: 100%;
    box-shadow: 0 0 25px rgb(255 255 255 / 60%);
    animation: pulse 2s infinite;
}
.caption-diagram{
    display: block;
    line-height: 1.5rem;
    text-align: center;
    margin-top: 3rem;
    color: #fff;
    font-style: italic;
    font-weight: 500;
    border-top: 1px solid #fff;
    padding-top: 2rem;
    position: relative;
}
@keyframes flow{
    0%{
        top: 1rem;
        opacity: 0;
    }
    20%{
        opacity: 1;
    }
    100%{
        top: 100%;
        opacity: 0;
    }
}
@keyframes pulse{
    0%,100%{   
        transform:scale(1);
    }
    50%{
        transform:scale(1.12);
    }
}

/* FOOTER HERE */
.footer-wrap{
    padding: 4rem 10%;
    padding-top: 15rem;
    display: grid;
    background: #008c4d;
    position: relative;
}
.footer-wrap:before{
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: url(images/FOOTER.svg);
    background-size: contain;
    background-repeat: no-repeat;
    top: 0;
    left: 0;
}
.footer-wrap:after{
    content: '';
    position: absolute;
    background: url(images/LOGO.svg);
    background-size: contain;
    background-repeat: no-repeat;
    top: 5rem;
    left: 0;
    right: 0;
    bottom: unset;
    margin: auto;
    width: 130px;
    height: 130px;
}
.subfooter-ontop{
    text-align: center;
    color: #fff;
    font-size: 1.3rem;
    margin-bottom: 4rem;
    font-style: italic;
}
.subfooter-top{
    display: flex;
    gap: 5rem;
}
.leftfooter{
    width: 60%;
}
.rightfooter{
    width: 40%;
}
.footer-wrap .leftfooter ul{
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-wrap .leftfooter ul li{
    display: grid;
    gap: .5rem;
    color: #fff;   
}
.footer-wrap .leftfooter ul li h4.title-footer{
    font-size: 1.5rem;
    margin-bottom: .5rem;
}
.footer-wrap .leftfooter ul li article{
    position: relative;
    padding-left: 3rem;
    line-height: 24px;
}
.footer-wrap .leftfooter ul li article > i{
    position: absolute;
    left: 10px;
    top: -1px;
    font-size: 1.5rem;
}
.footer-wrap .rightfooter ul{
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-wrap .rightfooter ul li{
    display: grid;
    gap: .5rem;
    color: #fff;   
}
.footer-wrap .rightfooter ul li h4.title-footer{
    font-size: 1.5rem;
    margin-bottom: .5rem;
}
.footer-wrap .rightfooter ul li article{
    position: relative;
    padding-left: 2.7rem;
    line-height: 24px;
}
.footer-wrap .rightfooter ul li article a{
    cursor: pointer;
    color: #fff;
}
.footer-wrap .rightfooter ul li article a > i{
    position: absolute;
    left: 10px;
    top: -1px;
    font-size: 1.5rem;
}
.subfooter-bottom{
    text-align: center;
    color: #fff;
    padding-top: 2rem;
    margin-top: 5rem;
    border-top-width: 1px;
    border-top-style: solid;
    border-top-color: rgb(255, 255, 255);
}

/* POPUP HERE */
.popup-overlay{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,.6);
    display:none;
    z-index:99999;
    justify-content:center;
    align-items:center;
}
.popup-content{
    position: absolute;
    max-width: 500px;
    width: 90%;
    height: fit-content;
    background: #fff;
    padding: 4rem;
    border-radius: 12px;
    text-align: center;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
}
.popup-content h2{
    margin-bottom: 4rem;
    position: relative;
    width: 100%;
}
.popup-content h2:before{
    content: '';
    position: absolute;
    left: 0;
    bottom: -2rem;
    right: 0;
    margin: auto;
    background: url(images/ICON7.png);
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: 20px;
}
.popup-content p{
    margin-bottom: 1rem;
    line-height: 25px;
}
.close-popup{
    position:absolute;
    right:15px;
    top:10px;
    border:none;
    background:none;
    font-size:24px;
    cursor:pointer;
}
.close-popup i{
    transform: rotate(45deg);
}

/* LOGIN PAGE HERE */
.login-page{
    position: relative;
    display: flex;
    background: url(images/BG.png);
    background-repeat: no-repeat;
    background-size: cover;
}
.login-page:before{
    content: '';
    position: absolute;
    background: #007748;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: .9;
}
.side-left{
    width: 60%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 7rem;
    position: relative;
}
.subside-form{
    background: #fff;
    border-radius: 5px;
    padding: 3rem;
    justify-content: center;
    align-items: center;
    height: 100%;
}
.subside{
    position: relative;
    display: block;
    width: 100%;
}
.subside h1{
    text-align: center;
    font-size: 1.5rem;
    margin-bottom: 2rem;
    position: relative;
}
.subside .back-home{
    margin-bottom: 2rem;
    font-weight: bold;
    color: #007748;
    display: block;
}
.subside .back-home i{
    margin-right: .5rem;
}
.subside .ornament-subsite{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 2rem;
}
.subside .ornament-subsite img{
    filter: brightness(0) invert(1);
    width: 30px;
}
.subside figure{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 2rem;
}
.subside figure img{
    width: 300px;
}
.subside article{
    color: #fff;
    text-align: center;
    line-height: 28px;
    margin-bottom: 2.5rem;
}
.subside .redirect-wrap{
    display: flex;
    justify-content: center;
    align-items: center;
}
.subside .redirect-wrap .redirect-register{
    text-align: center;
    border: 1px solid #fff;
    padding: .5rem 2rem;
    border-radius: 50px;
    color: #fff;
    font-weight: 600;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}
.subside .redirect-wrap .redirect-register i{
    margin-right: .5rem;
    font-size: 2rem;
}
.subside .message-form{
    background: #ffdbdb;
    border: 1px solid #ff9b9b;
    padding: 1rem;
    border-radius: 5px;
    color: #ff5b5b;
    margin-bottom: 1rem;
    text-align: center;
    font-size: .95rem;
}
.subside .message-form.success{
    background: #dbecff !important;
    border: 1px solid #9bc8ff !important;
    color: #0088cb !important;
    text-align: left !important;
}
.subside p{
    text-align: center;
}
.subside p a{
    color: #007748;
}
.side-right{
    width: 40%;
    height: 100vh;
    display: flex;
    align-items: center;
    padding: 1rem;
    position: relative;
}
.form-wrap{
    position: relative;
    display: grid;
}
.form-wrap .field-wrap{
    position: relative;
    width: 100%;
    display: block;
    margin-bottom: 1rem;
}
.form-wrap .field-wrap label{
    position: relative;
    display: block;
    width: 100%;
    font-size: .85rem;
    margin-bottom: .5rem;
}
.form-wrap .field-wrap input{
    width: 100%;
    padding: .8rem 1rem;
    border-radius: 5px;
    border: 1px solid #aaa;
    font-size: 1rem;
    padding-left: 3.5rem;
    position: relative;
}
.form-wrap .field-wrap input.field-password{
    padding-right: 3.5rem;
}
.form-wrap .field-wrap .field-icon{
    position: absolute;
    top: 2rem;
    left: 1rem;
    font-size: 1.7rem;
    color: #bfbfbf;
}
.form-wrap .field-wrap .field-icon-hide{
    position: absolute;
    top: 2.1rem;
    right: 1rem;
    font-size: 1.5rem;
    color: #737373;
    cursor: pointer;
}
.form-wrap .submit-form{
    width: 100%;
    text-align: center;
    font-weight: bold;
    background: #007748;
    color: #fff;
    margin-top: 1rem;
    margin-bottom: 2rem;
    border: 1px solid #007748;
    border-radius: 5px;
    padding: 1rem;
    cursor: pointer;
}
.form-wrap .submit-login i{
    margin-left: .5rem;
}

/* NOT FOUND */
.not-found{
    position: relative;
    height: 60vh;
}
.not-found .subcontent{
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: fit-content;
    height: fit-content;
    margin: auto;
}
.not-found .subcontent img{
    width: 300px;
}
.not-found .subcontent p{
    text-align: center;
    margin-top: 2rem;
}

.icon-menu-mobile{
    display: none;
}
.dropdown-close{
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    border: unset;
    background: #fff;
    box-shadow: unset;
    cursor: pointer;
    color: #000;
    z-index: 1;
    padding: 1rem;
    font-size: 1rem;
}
.menu-otherpage{
    display: none;
}


/* RESPONSIVE */
@media screen and (max-width: 2560px){

}
@media screen and (max-width: 1440px){
	
}
@media screen and (max-width: 1199px){
    .menu-center{
        position: fixed;
        bottom: 0;
        left: 0;
        background: #fff;
        width: 100%;
        box-shadow: 0 12px 35px rgb(0 0 0 / 25%);
    }
    .menu-center.menu-otherpage{
        display: block;
        z-index: 1;
    }
    .icon-menu-mobile {
        display: block;
        font-size: 2rem;
        margin-bottom: .3rem;
        color: #464646;
    }
    .menu-wrap {
        position: fixed;
        padding: 0rem 1rem;
        height: 70px;
    }
    .menu-wrap.show {
        position: fixed;
        top: unset;
        transform: unset;
    }
    .menu-wrap.hide {
        transform: unset;
        position: fixed;
        top: 0;
    }
    .menu-wrap.scrolled {
        backdrop-filter: unset;
        -webkit-backdrop-filter: unset;
    }
    .menu-center > ul > li,
    .menu-wrap.scrolled .menu-center > ul > li {
        padding: 1rem 1rem 1rem 2rem;
    }
    .menu-center ul {
        gap: 2rem;
    }
    .menu-center ul li a {
        text-align: center;
        font-size: .8rem;
        font-weight: 500;
        margin-left: 0;
    }
    .mainheader-wrap{
        padding: 0rem 1rem;
    }
    .wrap.one-plus1,
    .wrap.two,
    .wrap.two-plus1,
    .wrap.three,
    .wrap.four,
    .wrap.five,
    .wrap.six,
    .wrap.seven,
    .wrap.eight,
    .wrap.nine,
    .wrap.ten {
        padding: 0 1rem;
    }
    .footer-wrap:before {
        height: 100px;
        top: -2px;
    }
    .subfooter-bottom {
        margin-bottom: 3rem;
    }
    .redirect-wa {
        bottom: 6rem;
    }
    .to-top {
        bottom: 10rem;
    }
    .dropdown-menu{
        display:none;
    }
    .menu-center ul ul.dropdown-menu{
        display: none;
        width: 100%;
        opacity: 1;
        visibility: visible;
        top: 0;
        position: fixed;
        box-shadow: 0px 5px 15px rgb(0 0 0 / 15%);
        border-bottom: 1px solid #ccc;
        padding: 3.5rem 0 1rem 0;
        border-top-left-radius: 0;
        border-top-right-radius: 0;
        border-bottom-left-radius: 0;
        border-bottom-right-radius: 0;
        transform: translateY(0px);
        backdrop-filter: unset;
        background: #fff;
    }
    .menu-center ul ul li.list-dropdown-menu:first-child{
        border-top: 1px solid #aaa;
        padding-top: 2rem;
    }
    .menu-center ul ul li.list-dropdown-menu{
        width: 100%;
        padding-left: 2.5rem;
    }
    .menu-center ul ul li.list-dropdown-menu a{
        text-align: left;
        width: 100%;
        display: block;
        padding: 0rem 0;
    }
    .menu-center ul ul.dropdown-menu li a:before {
        width: 6px;
        height: 6px;
        top: .2rem;
        left: -1rem;
    }
    .mainbox-wrap {
        flex-flow: wrap;
        gap: 1.5rem 1rem;
        padding: 1rem 0;
    }
    .wrap.categorynews.elsenews {
        flex-flow: column;
        gap: 5rem;
    }
    .detail-news-wrap > figure img {
        width: 100%;
    }
    .detail-news-wrap h2 {
        font-size: 1.2rem;
    }
    .side-othernews {
        width: 100%;
    }
    .side-othernews > h2 {
        font-size: 1.2rem;
    }
    .wrap.categorynews {
        flex-flow: column-reverse;
        margin-top: 1rem;
        padding: 0 1rem;
        gap: 1rem;
    }
    .side-portalnews {
        width: 100%;
        padding: 1rem;
        top: 1rem;
        border-radius: 10px;
        border-top: unset;
    }
    .side-portalnews > ul:before {
        content: '';
        height: 100%;
        width: 80px;
        background: linear-gradient(90deg, #f5faf8, transparent);
        position: absolute;
        top: 0;
        left: 0;
        z-index: 1;
    }
    .side-portalnews > ul:after {
        content: '';
        height: 100%;
        width: 80px;
        background: linear-gradient(90deg, transparent, #f5faf8);
        position: absolute;
        top: 0;
        right: 0;
        z-index: 1;
    }
    .side-portalnews ul {
        display: flex;
        /* flex-wrap: nowrap; */
        overflow-x: scroll;
        gap: .5rem;
        -webkit-overflow-scrolling: touch;
        scroll-behavior: smooth;
        scroll-snap-type: x proximity;
        scrollbar-width: none;
    }
    .side-portalnews ul::-webkit-scrollbar {
        display: none; /* Chrome, Edge, Safari */
    }
    .side-portalnews ul li {
        padding: .5rem 1rem;
        flex: 0 0 auto;
        white-space: nowrap;
        border-radius: 50px;
        background: #fff;
        border-bottom: unset;
        flex: 0 0 auto;
        white-space: nowrap;
        scroll-snap-align: start;
    }
    .side-portalnews ul li a{
        font-size: .8rem;
    }
    .side-portalnews h2 {
        font-size: .8rem;
        font-weight: 500;
        position: relative;
        z-index: 2;
    }
    .back-to-home {
        padding: 0 1rem;
        margin-top: 1rem;
        margin-bottom: 1rem;
    }
    .newest-wrap {
        width: 100%;
    }
    .newest-wrap .maintitle-wrap .titleheader {
        margin-bottom: 1rem;
    }
    .titleheader h1 {
        line-height: 2rem;
        font-size: 1.2rem;
        margin-bottom: 2rem;
    }
    .green-text {
        font-size: 1.3rem;
        line-height: 2rem;
    }
    .subtitleheader h2 {
        font-size: 1rem;
    }
    .listcontent-wrap ul li {
        font-size: 1rem;
    }
}
@media screen and (max-width: 1024px){
    .imagesheader-wrap{
        display: none;
    }
    .articlesheader-wrap {
        width: 100%;
    }
}
@media screen and (max-width: 991px){
    .wrap.one {
        display: block;
        margin-bottom: 0;
    }
    .mainheader-wrap{
        height: 100%;
    }
    .menu-wrap {
        padding: 0rem 1rem;
    }
    .menu-right a.register-wrap {
        margin-right: 1rem;
    }
    .menu-right a.login-wrap,
    .menu-right a.register-wrap {
        font-size: .8rem;
    }
    .subtitleheader h2 {
        font-size: 1rem;
        line-height: 1.8rem;
        padding: 0 5rem;
    }
    .titleheader h1:before {
        bottom: -2rem;
        width: 280px;
        height: 20px;
    }
    .boxcontent{
        width: 40%;
    }
    .wrap.two {
        margin-bottom: 3rem;
    }
    .wrap.one-plus1 {
        margin-bottom: 3rem;
    }
    .rightcontent .titleheader h1:before {
        bottom: -2rem;
        width: 170px;
        height: 20px;
    }
    .wrap.three .subtitleheader h2 {
        padding: 0;
    }
    .listcontent-wrap ul li {
        padding-left: 2rem;
        font-size: 1rem;
    }
    .listcontent-wrap ul li:before {
        width: 10px;
        height: 10px;
        left: .5rem;
    }
    .listcontent-wrap ul:before {
        bottom: -3rem;
        width: 65px;
        height: 10px;
    }
    .wrap.three {
        margin-bottom: 5rem;
    }
    .mainiconbox-wrap {
        margin-top: 1rem;
        flex-flow: wrap;
    }
    .iconboxcontent {
        width: 40%;
    }
    .wrap.four {
        margin-bottom: 8rem;
    }
    .wrap.five {
        margin-bottom: 3rem;
    }
    .wrap.six .subtitleheader h2 {
        padding: 0;
    }
    .vimi-wrap {
        margin-top: 0rem;
    }
    .wrap.seven .maintitle-wrap {
        display: block;
        margin-top: 3rem;
    }
    .wrap.seven .maintitle-wrap .titleheader {
        width: 100%;
    }
    .wrap.seven .maintitle-wrap .titleheader h1 {
        text-align: center;
        line-height: 32px;
        border-left: unset;
        padding-left: unset;
    }
    .wrap.seven .maintitle-wrap .titleheader h1:before {
        bottom: 0;
        top: 4.5rem;
        margin: 0 auto;
        margin-left: auto;
        background-size: contain;
        width: 280px;
        height: 20px;
    }
    .wrap.seven .maintitle-wrap .subtitleheader {
        width: 100%;
    }
    .wrap.seven .maintitle-wrap .subtitleheader h2{
        text-align: center;
    }
    .wrap.seven .maintitle-wrap .titleheader h1 > b{
        display: block;
    }
    .wrap.eight {
        margin-bottom: 3rem;
    }
    .wrap.nine {
        margin-bottom: 3rem;
    }
    .wrap.ten .subtitleheader h2{
        padding: 0;
    }
    .wrap.two-plus1 .subtitleheader h2{
        padding: 0;
    }
    .newest-wrap .maintitle-wrap .titleheader h1 {
        line-height: 25px;
    }
    .side-left{
        display: none;
    }
    .side-right {
        width: 100%;
    }
    .wrap.one-plus1 .subtitleheader h2 b {
        line-height: 0rem;
    }
    .diagram-wrap {
        margin-top: 1rem;
    }
    .wrap.two-plus1 .rightcontent .titleheader h1:before{
        bottom: -2rem;
        width: 280px;
        height: 20px;
    }
}
@media screen and (max-width: 768px){
    .ornament-text h3 {
        font-size: 1rem;
    }
    .boxcontent{
        width: 100%;
    }
    .subtitleheader h2 {
        padding: 0 1rem;
    }
    .leftcontent{
        display: none;
    }
    .maintitle-wrap {
        margin-top: 0rem;
    }
    .wrap.two-plus1 .rightcontent {
        padding: 2rem;
    }
    .wrap.ten .rightcontent {
        padding: 2rem;
    }
    .rightcontent {
        width: 100%;
        padding: 0rem 0rem;
    }
    .rightcontent .titleheader h1, .rightcontent .subtitleheader h2 {
        text-align: center;
    }
    .rightcontent .titleheader h1:before {
        bottom: -2rem;
        width: 280px;
        height: 20px;
        margin: auto;
    }
    .listcontent-wrap ul:before {
        bottom: -2rem;
        width: 65px;
        height: 7px;
        margin: auto;
        left: 0;
        right: 0;
        border-radius: 50px;
    }
    .iconboxcontent .iconbox,
    .iconboxcontent h3,
    .iconboxcontent article {
        text-align: center;
    }
    .rightcolorbox{
        display: none;
    }
    .leftcolorbox {
        width: 100%;
    }
    .leftcolorbox h1, .leftcolorbox h2 {
        text-align: center;
        margin-bottom: 0;
    }
    .leftcolorbox .maintitle-wrap .titleheader h1:before { 
        bottom: -1.5rem;
        left: 0;
        margin: auto;
        width: 280px;
        height: 20px;
        background-size: contain;
    }
    .colorbox-wrap {
        padding: 2rem 2rem;
    }
    .colorbox-wrap .leftcolorbox .listcontent-wrap ul li {
        color: #fff;
        text-align: center;
        line-height: 1.8rem;
    }
    .colorbox-wrap:before {
        width: 220px;
    }
    .iconboxcontent {
        width: 100%;
    }
    .wrap.four {
        margin-bottom: 3rem;
    }
    .rightcontent .menu-right {
        width: 100%;
    }
    .footer-wrap:after {
        top: 3rem;
        width: 70px;
        height: 70px;
    }
    .footer-wrap {
        padding-top: 10rem;
    }
    .footer-wrap .leftfooter ul li h4.title-footer,
    .footer-wrap .rightfooter ul li h4.title-footer {
        font-size: 1.2rem;
    }
    .subfooter-top {
        gap: 2rem;
        flex-flow: wrap;
    }
    .leftfooter,
    .rightfooter {
        width: 100%;
    }
    .wrap.ten {
        margin-bottom: 3rem;
    }
    .wrap.two-plus1{
        margin-bottom: 3rem;
    }
    .subfooter-bottom {
        margin-top: 2rem;
        margin-bottom: 3rem;
    }
    .subfooter-bottom > p{
        line-height: 1.5rem;
    }
    .to-top, .redirect-wa {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }
    .to-top {
        bottom: 9rem;
    }
    .list-news-wrap ul li a {
        align-items: flex-start;
        gap: 1rem;
        margin-bottom: 1.5rem;
    }
    .list-news-wrap ul li a figure img {
        height: 90px;
    }
    .list-news-wrap ul li a .thumb-news {
        width: 70%;
        position: relative;
        top: -4px;
    }
    .list-news-wrap ul li a .thumb-news h2 {
        font-size: 1rem;
        margin-bottom: .5rem;
        line-height: 1.5rem;
    }
    .list-news-wrap ul li a .thumb-news article {
        line-height: 1.3rem;
    }
    .detail-news-wrap h2 {
        line-height: 1.6rem;
    }
    .menu-center ul {
        align-items: flex-start;
    }
    .menu-wrap.scrolled .menu-center > ul > li {
        /* width: 65px; */
        text-align: center;
    }
    .icon-menu-mobile {
        font-size: 1.5rem;
    }
    .menu-center ul li a {
        font-size: .65rem;
    }
    .menu-center > ul > li,
    .menu-wrap.scrolled .menu-center > ul > li {
        padding: .5rem 1rem;
        text-align: center;
    }
    .buttonsheader {
        flex-flow: wrap;
    }
    .buttonsheader a {
        width: 100%;
        margin: 0 10%;
        margin-bottom: 1rem;
    }
    .diagram-wrap ul{
        width: 100%;
        padding: 2rem 1rem;
    }
    .diagram-wrap ul li.point-list {
        height: 90px;
    }
    .diagram-wrap ul li.point-list .bullet-point {
        width: 35px;
        height: 35px;
    }
    .diagram-wrap ul li.point-list .bullet-point:before {
        width: 15px;
        height: 15px;
    }
    .diagram-wrap ul li.point-list:before {
        width: 5px;
        left: .94rem;
        top: .5rem;
    }
    .diagram-wrap ul li.point-list:after {
        left: 1.1rem;
    }
    .diagram-wrap ul li.point-list .bullet-point label {
        margin-left: 3rem;
        font-size: 1rem;
    }
}
@media screen and (max-width: 480px){
    .menu-center ul {
        gap: 1rem;
    }
    .icon-menu-mobile {
        font-size: 1.5rem;
        margin-bottom: 0;
    }
    .menu-left img {
        width: 130px;
    }
    .menu-right a.login-wrap {
        padding: .4rem 1rem;
    }
    .popup-content {
        padding: 2rem 1rem;
    }
    .popup-content h2 {
        font-size: 1.2rem;
    }
    .popup-content p {
        font-size: 1rem;
    }
    .popup-content h2:before {
        background-position: center;
    }
    .popup-content h2 {
        margin-bottom: 3rem;
    }
    .buttonsheader a {
        padding: .7rem .5rem;
        /* width: 150px; */
        font-size: 0.8rem;
        /* margin: 0 .3rem; */
    }
    .subtitleheader h2{
        padding: 0 0;
    }
    .boxcontent {
        padding: 2rem 2rem;
    }
    .vimi-wrap:before {
        left: 1rem;
        right: unset;
    }
    .vimi-wrap:after {
        right: unset;
        bottom: -1rem;
        left: .55rem;
        width: 20px;
        height: 20px;;
            
    }
    .vimi-wrap {
        display: block;
    }
    .leftvimi,
    .rightvimi {
        width: 100%;
        padding-left: 2.5rem;
        padding-top: 1rem;
    }
    .wrap.six .subtitleheader h2{
        text-align: left;
    }
    .wrap.six {
        margin-bottom: 5rem;
    }
}
@media screen and (max-width: 425px){
    .menu-center ul li a {
        font-size: .7rem;
    }
}
@media screen and (max-width: 375px){
    .menu-center ul {
        gap: 0rem;
    }
}
@media screen and (max-width: 320px){
    .menu-center > ul > li, 
    .menu-wrap.scrolled .menu-center > ul > li{
        padding: 1rem .5rem;
    }
}
/* #desktop-only-message{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:#fff;
    z-index:999999;
    display:flex;
    justify-content:center;
    align-items:center;
    text-align:center;
    padding:20px;
} */