@import url('../../style.css');

/* #region: Mix */
._close {
    position: absolute;
    top: 0;
    right: 0;
    background: var(--colordarktrans);
    color: var(--colorwhite);
    width: 50px;
    height: 50px;
    font-size: 30px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-bottom: 5px;
    transition: .3s ease;
}
._close:hover {
    background: var(--color2);
}
/* #endregion */

/* #region: Container */
.container {
    position: relative;
    padding: 30px var(--autopad);
    background: var(--bodybg);
    z-index: 1;
}
#home-content .container:nth-child(odd):before{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: '';
    background-color: var(--color1);
    background-image: linear-gradient(160deg, #ffffffcc, transparent, #ffffffcc);
    opacity: .07;
    z-index: -1;
}
.container._wide {
    padding: 60px var(--autopad);
}
.container > ._title {
    margin: 0 auto 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 800px;
    gap: 10px;
    text-align: center;
    position: relative;
}
.container > ._title > * {
    margin: 0;
}
.container > ._title h2 {
    font-size: 2em;
    font-weight: 700;
    display: flex;
    flex-direction: column;
    color: var(--color1);
}
.container > ._title h2:after {
    content: '';
    display: block;
    width: 300px;
    height: 4px;
    border-radius: var(--bradius);
    background: linear-gradient(to right, transparent, var(--color2), transparent);
    margin: 10px auto;
}
.container > ._title h2 span {
    color: var(--color2);
    line-height: initial;
    font-size: .5em;
    text-transform: uppercase;
    letter-spacing: .1em;
    font-weight: normal;
    align-self: center;
}

/* Container Title Left */
.container > ._title._left {
    text-align: left;
    margin: 0 0 30px 0;
    max-width: 100%;
}
.container > ._title._left h2 span {
    align-self: flex-start !important;
}
.container > ._title._left h2:after {
    background: linear-gradient(to right, var(--color2), transparent);
    margin-left: 0;
}
.container > ._title._left h2,
.container > ._title._left p {
    max-width: calc(100% - 100px);
}
.container > ._title._left ._more {
    position: absolute;
    top: 5px;
    right: 0;
}

/* Container Two Column */
.container.two-column {
    display: flex;
    gap: 30px;
}
.container.two-column ._col1 {
    width: calc(100% - 372px);
    position: sticky;
    top: 20px;
    height: fit-content;
}
.container.two-column ._col2 {
    width: 352px;
    position: sticky;
    top: 20px;
    height: fit-content;
    flex-shrink: 0;
}

/* Box Content */
.box-content {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.box-content > ._title {
    display: flex;
    align-items:flex-start;
    position: relative;
}
.box-content > ._title:before {
    background: linear-gradient(to right, var(--color2), transparent);
    width: 250px;
    height: 4px;
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: var(--bradius);
}
.box-content > ._title h2,
.box-content > ._title h3,
.box-content > ._title h4 {
    margin: 0;
    font-size: 1.4em;
    padding-bottom: 10px;
    position: relative;
    color: var(--color1);
    flex-shrink: 0;
}
.box-content > ._title ._more{
    margin-left: auto;
}
/* #endregion */

/* #region: Loop */
.loop {
    border: 1px solid var(--colorborder);
    background: var(--colorbg);
    position: relative;
    transition: all .3s;
    overflow: hidden;
    width: 100%;
    border-radius: var(--x2bradius);
}
.loop:hover {
    box-shadow: 0 5px 0 var(--colorborder);
    transform: translateY(-5px);
}
.loop ._pigura {
    width: 100%;
    height: 230px;
    overflow: hidden;
    display: flex;
    flex-shrink: 0;
    position: relative;
}
.loop ._pigura img {
    transition: all .3s ease;
}
.loop:hover ._pigura img {
    transform: scale(1.1);
}
.loop ._content {
    padding: 15px;
}
.loop ._content h3 {
    font-size: 1.1em;
    color: var(--bodycolor);
}
.loop ._category {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}
.loop ._category a{
    color: var(--color2);
    line-height: 1em;
    font-size: .9em;
    border-radius: var(--bradius);
}
.loop ._category a:after{
    content: ',';
}
.loop ._category a:last-child:after{
    display: none;
}
.loop ._detail {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    font-size: .9em;
}
.loop ._detail li {
    display: flex;
    gap: 5px;
    align-items: center;
    opacity: .7;
}
.loop ._detail li._author,
.loop ._detail li._views,
.loop ._detail li._comments {
    display: none;
}
.loop ._excerpt p {
    margin: 0;
}
.loop .video-thumb {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    visibility: hidden;
    transition: all .3s ease;
}
.loop:hover .video-thumb {
    visibility: visible;
}
.loop .play-thumb {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--colordarktrans);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    fill: var(--colorwhite);
    stroke: var(--colorwhite);
    opacity: .6;
    z-index: 1;
}
.loop ._duration,
.loop .img-thumb {
    position: absolute;
    right: 10px;
    bottom: 10px;
    background: var(--colordarktrans);
    color: var(--colorwhite);
    padding: 7px;
    line-height: 1em;
    font-size: .8em;
    border-radius: var(--bradius);
}
.loop .img-thumb {
    left: 10px;
    bottom: 10px;
    top: unset;
    right: unset;
}
.loop ._excerpt,
.loop ._read-more {
    display: none;
}
.loop ._read-more {
    text-decoration: underline;
    /* dashed underline */
    text-decoration-style: dotted;
    text-underline-offset: 6px;
    text-decoration-thickness: 1px;
}

/* Loop Grid */
.grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

/* Loop List */
.list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.list .loop {
    display: flex;
    align-self: unset;
}
.list ._pigura {
    width: 50%;
    overflow: hidden;
    display: block;
    position: relative;
}
.list ._pigura img {
    position: absolute;
    top: 0;
    left: 0;
}
.list .loop ._content {
    justify-content: center;
}

/* Loop List & Grid */
.list.grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

/* #endregion */

/* #region: Header */
#header {
    transition: all 0.3s ease-in-out;
    background: var(--color1);
    padding-bottom: 0;
    z-index: 99;
}
#header:before{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: '';
    background: linear-gradient(to top, #000 50%, transparent 50%);
    opacity: .15;
}

/* Top Header */
.top-header {
    background: var(--colorbg);
    padding: 20px;
    border-top-left-radius: var(--x2bradius);
    border-top-right-radius: var(--x2bradius);
    position: relative;
}

/* Top Logo */
.top-logo {
    max-width: 400px;
}
.top-logo b {
    font-size: 1.6em;
    font-weight: 700;
    color: var(--color1);
}
.top-logo .logo-web {
    max-width: 400px;
    max-height: 60px;
    width: auto;
    height: auto;
    padding: 5px 0;
    display: block;
    transition: all 0.3s ease-in-out;
}

.top-logo._mobile {
    margin-right: auto!important;
}

/* Header: Contact */
.top-contact {
    line-height: 1.2em;
    height: 40px;
    overflow: hidden;
}
.top-contact ._item {
    height: 40px;
}
.top-contact i {
    background: var(--color1);
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--colorbg);
    border-radius: var(--bradius);
    transition: all .3s ease;
    font-size: 16px;
}
.top-contact ._item:hover i {
    background: var(--color2);
}
.top-contact a {
    color: var(--bodycolor);
}

/* Header: Sosial Media */
#header .socmed {
    border-left: 1px solid var(--colorborder);
    padding-left: 15px;
}
#header .socmed a {
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--bradius);
    color: var(--colorwhite);
    font-size: 18px;
    transition: all .3s ease;
}
#header .socmed a:has(.icofont-facebook) {
    background: #3b5998;
}
#header .socmed a:has(.icofont-tiktok) {
    background: #000000;
}
#header .socmed a:has(.icofont-youtube-play) {
    background: #ff0000;
}
#header .socmed a:has(.icofont-instagram) {
    background: #c13584;
}
#header .socmed a:has(.icofont-x) {
    background: #1C95E6;
}
#header .socmed ._threads {
    background: #111;
}
#header .socmed a:hover {
    background: var(--color2);
}

/* Top Menu */
.toggle-menu {
    display: none;
    width: 34px;
    height: 34px;
    line-height: unset;
    border-radius: var(--bradius);
    font-size: 18px;
}
nav.top-menu i[class*="fa-"]{
    margin-right: 10px;
    width: 15px;
    text-align: center;
}
nav.top-menu {
    background: var(--color1);
    color: var(--colorwhite);
}
nav.top-menu > ul {
    display: flex;
    flex-wrap: wrap;
    /* justify-content: center; */
}
nav.top-menu ul li {
    list-style: none;
    padding: 15px;
    margin: 0;
    position: relative;
    transition: .3s;
    text-transform: capitalize;
    line-height: 1em;
}
nav.top-menu li a {
    text-decoration: none;
    line-height: 1em;
    color: var(--colorwhite);
}
nav.top-menu li a:hover {
    opacity: .7;
}
/* Sub Level 1 */
nav.top-menu > ul > li > a {
    font-weight: 500;
}
nav.top-menu li span.fas {
    cursor: pointer;
    position: absolute;
    right: 2px;
    top: 10px;
    font-size: 14px;
}
nav.top-menu li._active {
    color: var(--color2);
}
nav.top-menu li._active > a {
    color: var(--color2);
}
nav.top-menu li:has(.children),
nav.top-menu li:has(.sub-menu) {
    position: relative;
    padding-right: 25px;
}
nav.top-menu li .children,
nav.top-menu li .sub-menu {
    display: none;
}
/* Sub Menu Lvl 1 */
nav.top-menu > ul > li > span.fas {
    top: 50%;
    transform: translateY(-50%);
}
nav.top-menu > ul > li > .children,
nav.top-menu > ul > li > .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 98;
    max-height: 500px;
    overflow-y: auto;
    overflow-x: hidden;
    min-width: 200px;
    max-width: 250px;
    background: var(--color1);
    color: var(--colorwhite);
    display: none;
    white-space: nowrap;
    font-size: .95em;
    padding: 10px;
    border-top: 4px solid var(--color2);
    border-bottom-left-radius: var(--x2bradius);
    border-bottom-right-radius: var(--x2bradius);
}
nav.top-menu > ul > li > ul::-webkit-scrollbar,
nav.top-menu > ul > li > ul::-webkit-scrollbar {
    display: none;
}
nav.top-menu > ul > li > ul:hover::-webkit-scrollbar,
nav.top-menu > ul > li > ul:hover::-webkit-scrollbar {
    display: block;
}
nav.top-menu > ul > li > ul > li {
    padding: 0;
}
nav.top-menu > ul > li > ul > li {
    border-bottom: 1px solid #00000020;
}
nav.top-menu > ul > li > ul > li:last-child {
    border-bottom: none;
}
nav.top-menu li li a {
    padding: 10px ;
    display: block;
    color: var(--colorwhite);
}
nav.top-menu li li li:before {
    content: '';
    position: absolute;
    top: 7px;
    left: 15px;
    width: 7px;
    height: 7px;
    border-bottom: 1px solid var(--colorwhite);
    border-left: 1px solid var(--colorwhite);
}
nav.top-menu li li li {
    padding: 0 0 0 10px;
}
nav.top-menu li li li a {
    padding: 7px 7px 7px 20px;
}

nav.top-menu._mobile {
    background: var(--color1);
    position: absolute!important;
    top: 100%;
    padding: 10px;
    width: 300px;
    max-height: 500px;
    overflow-y: auto;
    overflow-x: hidden;
    display: none;
    border-top: 4px solid var(--color2);
    z-index: 99;
    border-bottom-left-radius: var(--x2bradius);
    border-bottom-right-radius: var(--x2bradius);
}
nav.top-menu._mobile > ul > li > a {
    color: var(--colorwhite);
    text-transform: capitalize;
    font-size: 1em;
}
nav.top-menu._mobile > ul > li > a:hover {
    color: #ffffff90;
}
nav.top-menu._mobile > ul > li {
    padding-left: 5px;
}
nav.top-menu._mobile::-webkit-scrollbar {
    display: none;
}
nav.top-menu._mobile:hover::-webkit-scrollbar {
    display: block;
}
nav.top-menu._mobile ul {
    flex-direction: column;
}
nav.top-menu._mobile > ul > li {
    border-bottom: 1px solid #00000020;
}
nav.top-menu._mobile ul li:last-child {
    border-bottom: none;
}

nav.top-menu._mobile > ul > li:has(.children),
nav.top-menu._mobile > ul > li:has(.sub-menu) {
    padding-right: 0;
}

nav.top-menu._mobile > ul > li > .children,
nav.top-menu._mobile > ul > li > .sub-menu {
    position: relative;
    padding: 5px 0 0 0;
    width: 100%;
    border: none;
    background: none;
    max-width: calc(100% - 5px);
}
nav.top-menu._mobile > ul > li > span {
    top: 10px;
    transform: none; 
    color: var(--colorwhite);
}
/* #endregion */

/* #region: Hero Slider */
#hero {
    overflow: hidden;
}
#hero ._item ._content {
    max-width: 500px;
    color: var(--colorwhite);
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: var(--autopad);
    text-shadow: 1px 1px 0 rgba(0,0,0,0.25);
}
#hero ._item ._content._stats {
    padding-bottom: 60px;
}
#hero ._item:before {
    background: #000;
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}
#hero ._item ._content h2 {
    color: var(--colorwhite);
    font-size: 3em;
    font-weight: bold;
    line-height: 1.2em;
}
#hero ._item ._content h2 span {
    color: var(--color2);
    line-height: initial;
    font-size: .4em;
    text-transform: uppercase;
    letter-spacing: .1em;
    align-self: center;
    display: block;
}
#hero ._item ._content p {
    font-size: 1.2em;
    line-height: 1.4em;
}
/* #endregion */

/* #region: Statistik */
#stats._hero{
    margin-top: -60px;
    padding-top: 10px;
    padding-bottom: 20px;
    background: none!important;
}
#stats._hero:before,
#stats._hero:after {
    display: none;
}
#stats ._content {
    background: var(--color1);
    border-radius: var(--x2bradius);
    overflow: hidden;
    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.15);
    height: 120px;
}
#stats ._item {
    flex: 1;
    padding: 25px 15px;
    text-align: center;
    color: var(--colorwhite);
    position: relative;
    list-style: none;
}
#stats ._item:not(:last-of-type)::after {
    content: "";
    position: absolute;
    right: -5px;
    top: 0;
    width: 10px;
    height: 100%;
    background: rgba(0, 0, 0, 0.15);
    transform: skewX(-20deg);
    z-index: 1;
}
#stats ._item h3 {
    font-size: 2.5em;
    margin: 0;
    font-weight: 700;
    line-height: 1.2;
    color: var(--colorwhite);
    transition: all 0.3s ease-in-out;
}
#stats ._item p {
    margin: 5px 0 0;
    opacity: 0.9;
}
#stats ._item:hover h3 {
    transform: scale(1.2);
    text-shadow: 1px 3px 0 rgba(0,0,0,0.25);
}
/* #endregion */

/* #region: Welcome */
#welcome ._image {
    width: 270px;
    max-height: 350px;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
    border-radius: var(--x2bradius);
    transition: all .3s;
    border: 1px solid var(--colorborder);
}
#welcome ._image:hover {
    box-shadow: 0 5px 0 var(--colorborder);
    transform: translateY(-5px);
}
#welcome ._image img {
    transition: all .3s;
}
#welcome ._image:hover img {
    transform: scale(1.1);
}
#welcome ._title h2,
#welcome ._title p {
    max-width: 100%;
}
#welcome ._principle {
    border-top: 1px solid var(--colorborder);
    margin-top: 20px;
    padding-top: 20px;
}
/* #endregion */

/* #region: Information */
#information .box-content {
    flex: 1;
    transition: all .3s;
    border: 1px solid var(--colorborder);
    border-radius: var(--x2bradius);
    padding: 15px;
    background: var(--colorbg);
}
#information ._item:hover {
    box-shadow: 0 5px 0 var(--colorborder);
    transform: translateY(-5px);
}
#information ._more {
    margin-top: auto;
}
#information .loop {
    border: none;
    border-bottom: 1px dashed var(--colorborder);
    background: none;
    box-shadow: none;
    border-radius: unset;
    padding-bottom: 10px;
}
#information .loop:hover {
    box-shadow: none;
    transform: unset;
}
#information .loop ._content {
    padding: 0;
}
#information .loop:not(._agenda):first-child ._excerpt {
    display: -webkit-box;
}
#information .loop:first-child ._read-more {
    display: inline-block;
}
#information .loop:last-child {
    border: none;
}

/* Agenda */
.loop._agenda {
    display: flex;
    gap: 10px;
    padding: 10px;
}
#information .loop._agenda {
    padding: 0;
    padding-bottom: 10px;
}
.loop._agenda ._content {
    justify-content: center;
    padding: 0;
}
.loop._agenda ._detail {
    flex-wrap: nowrap;
}
.loop._agenda ._detail li._time {
    flex-shrink: 0;
}
.loop._agenda ._start {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: var(--colorborder);
    border-radius: var(--bradius);
    text-align: center;
    line-height: 1;
    overflow: hidden;
    flex-shrink: 0;
}
.loop._agenda ._day,
.loop._agenda ._year {
    display: none;
}
.loop._agenda ._date {
    font-size: 1.8em;
    font-weight: 700;
    color: var(--color1);
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .3s;
}
.loop._agenda._expired ._date {
    color: #777777;
}
.loop._agenda ._month {
    padding: 10px 7px;
    width: 100%;
    background: var(--color1);
    color: var(--colorwhite);
    font-size: .8em;
    transition: all .3s;
}
.loop._agenda._expired ._month {
    background: #777777;
}
.loop._agenda:hover ._date {
    color: var(--color2);
}
.loop._agenda:hover ._month {
    background: var(--color2);
}

/* Berita */
#information .loop._berita:first-child ._content {
    padding-top: 10px;
}
#information .loop._berita ._pigura {
    border-radius: var(--bradius);
    height: 180px;
}
#information .loop._berita:not(:first-child) ._pigura {
    display: none;
}
#information .loop._berita ._category {
    display: none;
}

/* #endregion */

/* #region: Benefits */
#benefit ._icon {
    font-size: 30px;
    color: var(--colorwhite);
    background: var(--color1);
    width: 62px;
    height: 62px;
    padding: 20px;
    align-self: center;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--x2bradius);
    transition: all .3s;
    margin-top: -40px;
}
#benefit ._item {
    border: 1px solid var(--colorborder);
    transition: all .3s;
    border-radius: var(--x2bradius);
    padding: 20px;
    background: var(--colorbg);
    margin-top: 30px;
}
#benefit ._item:hover {
    box-shadow: 0 5px 0 var(--colorborder);
    transform: translateY(-5px);
}
#benefit ._item:hover ._icon {
    transform: scale(1.2);
    background: var(--color2);
}

/* #endregion */

/* #region: Program */
#program._thumb {
    padding-top: 0;
}
#program._thumb ._title {
    min-height: 330px;
    margin-bottom: 0;
}
#program._thumb ._title h2,
#program._thumb ._title p {
    max-width: 50%;
}
#program._thumb ._img {
    max-width: 49%;
    position: absolute;
    right: 0;
    bottom: 0;
}
#program._thumb > ._content {
    padding-top: 20px;
    border-top: 1px solid var(--colorborder);
}
#program._thumb > ._title._left ._more {
    align-self: flex-start;
    position: relative;
}
.loop._program h3 {
    font-size: 1.2em;
    text-align: center;
}
/* #endregion */

/* #region: Staf */
.loop._staf ._pigura {
    height: 360px;
}
.loop._staf ._content,
.loop._staf ._detail {
    align-items: center;
    text-align: center;
    gap: 5px!important;
}
/* #endregion */

/* #region: Fasilitas */
.loop._fasilitas {
    flex-direction: row-reverse;
}
.loop._fasilitas h3 {
    font-size: 1.2em;
}
.loop._fasilitas ._excerpt {
    display: -webkit-box;
}
.loop._fasilitas ._read-more {
    display: inline-block;
}
/* #endregion */

/* #region: Ekstrakurikuler */
.loop._ekskul h3 {
    font-size: 1.2em;
}
.loop._ekskul ._read-more {
    display: inline-block;
}
/* #endregion */

/* #region: Galeri */
.loop._galeri h3 {
    text-align: center;
}
/* #endregion */

/* #region: Testimonial */
#testi {
    padding-bottom: 90px;
}
#testi ._item {
    border: 1px solid var(--colorborder);
    background: var(--colorbg);
    padding: 30px;
    border-radius: var(--x2bradius);
    margin-top: 30px;
    transition: all .3s;
}
#testi ._item:hover {
    box-shadow: 0 5px 0 var(--colorborder);
    transform: translateY(-5px);
}
#testi ._img {
    border-radius: var(--bradius);
    width: 100px;
    height: 100px;
    overflow: hidden;
    margin-top: -50px;
    border: 1px solid var(--colorborder);
}
#testi ._item ._user b {
    font-size: 1.2em;
    color: var(--color1);
}

#testi .splide__pagination {
    bottom: -40px;
}

/* #endregion */

/* #region: Banner */
.banner {
    min-height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-radius: var(--x2bradius);
    overflow: hidden;
    background: var(--colorbg);
    border: 1px solid var(--colorborder);
}
/* #endregion */

/* #region: CTA */
#cta._thumb ._title {
    min-height: 240px;
    padding-left: calc(40% + 30px);
    max-width: 100%;
    margin: 0;
}
#cta._thumb ._img {
    width: 40%;
    position: absolute;
    left: 0;
    bottom: -60px;
}
/* #endregion */

/* #region: Footer */

#footer {
    background: var(--color1);
    color: var(--colorwhite);
    overflow: hidden;
}
#footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: -120%;
    width: 100%;
    background: radial-gradient(circle, #ffffff10, #00000020 50%);
    pointer-events: none;
}
#footer a {
    color: var(--colorwhite);
}
#footer a:hover {
    opacity: 0.7;
}
#footer h4 {
    color: var(--colorwhite);
    font-size: 1.3em;
    display: flex;
    gap: 10px;
    align-items: center;
    flex-wrap: wrap;
}
#footer h4:after {
    content: '';
    flex: 1 0 100%;
    height: 4px;
    border-radius: var(--bradius);
    background: linear-gradient(to right, var(--color2), transparent);
}
#footer > div {
    flex: 1;
    position: relative;
}
#footer .widgets ul li {
    border: none;
}

#footer .widget-sekolah ._logo {
    max-width: 300px;
}
#footer .widget-sekolah ul li {
    margin-left: 0;
}
#footer .widget-sekolah i.fas,
#footer .widget-sekolah i[class*="icofont-"] {
    width: 20px;
}

#footer .socmed {
    font-size: 22px;
}
#footer .socmed a {
    background: var(--colordarktrans);
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--bradius);
    transition: 0.3s;
}
#footer .socmed a:hover {
    background: var(--colorbgtrans);
}

/* #endregion */

/* #region: Copyright */
#copyright {
    padding: 30px var(--autopad);
    background: var(--color1);
    color: var(--colorwhite);
    text-align: center;
    position: relative;
    border-top: 1px solid var(--colorbgtrans);
    overflow: hidden;
}
#copyright:before {
    content: "";
    position: absolute;
    top: -150%;
    left: 0;
    bottom: 0;
    width: 100%;
    background: radial-gradient(circle,transparent, #00000040 50%);
}
#copyright a {
    color: var(--colorwhite);
}
#copyright h5 {
    color: var(--colorwhite);
    font-weight: normal;
}
/* #endregion */

/* #region: Single Content*/
.single-content ._featured {
    overflow: hidden;
    max-height: 500px;
    border: 1px solid var(--colorborder);
    background: var(--colorbg);
    border-radius: var(--x2bradius);
}
.single-content ._featured._fullheight {
    max-height: unset;
}
.single-content ._featured._fullheight img {
    margin: 0 auto;
    display: block;
}
.single-content ._featured-caption {
    font-size: .9em;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--colorborder);
}
.single-content h1 {
    font-weight: 700;
}
.single-content ._detail li {
    display: flex;
    gap: 5px;
    align-items: center;
}
.single-content ._detail .shareit {
    margin-left: auto;
}
.single-content ._category a:after{
    content: ',';
}
.single-content ._category a:last-child:after{
    display: none;
}
.single-content ._artikel {
    font-size: inherit;
    line-height: 1.6em;
}
.single-content._staf ._featured {
    width: 300px;
}
.single-content._staf ._detail {
    flex: 1;
}
.single-content._staf ._detail li {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
}
/* #endregion */

/* #region: Single > Gallery & Video */
.single-content ._video iframe {
    width: 100%;
    height: 400px;
    border-radius: var(--x2bradius);
    overflow: hidden;
}

/* Gallery Carousel */
#post-galeri .lslide img {
    display: block;
    margin: 0 auto;
}
.single-content .lslide ,
.single-content .lSGallery img {
    background: var(--colorbg);
    border-radius: var(--x2bradius);
    border: 1px solid var(--colorborder);
    overflow: hidden;
}
.single-content .lSGallery {
    margin-top: 10px!important;
}
/* #endregion */

/* #region: Single > Page Links */
.page-links {
    border-top: 1px solid var(--colorborder);
    padding-top: 10px;
    display: flex;
    gap: 10px;
    align-items: center;
    font-size: 1.1em;
}
.page-links .post-page-numbers {
    min-width: 40px;
    padding: 5px 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--bradius);
    background: var(--colorbg);
    border: 1px solid var(--colorborder);
}
.page-links .post-page-numbers:hover {
    background: var(--color2);
    color: var(--colorwhite);
}
.page-links .post-page-numbers.current {
    background: var(--color1);
    color: var(--colorwhite);
}
/* #endregion */

/* #region: Archive */
.archive ._excerpt {
    display: -webkit-box;
}
.archive.list ._pigura {
    height: auto;
}
.archive ._read-more {
    display: inline-block;
}

/* Author Box */
.author img {
    width: 90px;
    height: 90px;
    overflow: hidden;
    float: left;
    margin: 0 15px 5px 0;
    border-radius: var(--bradius);
}
/* #endregion */

/* #region: PPDB */
.ppdb-step {
    display: none;
    flex-direction: column;
    gap: 10px;
}
.ppdb-step.active {
    display: flex;
}
.ppdb-step ._title {
    margin-bottom: 10px;
}
.ppdb-row {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}
.ppdb-label {
    width: 35%;
    font-weight: 600;
}
.ppdb-label span {
    color: red;
}
.ppdb-field {
    width: 65%;
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.ppdb-navigation {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid var(--colorborder);
    display: flex;
    gap: 10px;
    justify-content: space-between
}
.ppdb-next,
.ppdb-submit-btn {
    background: var(--color1);
    color: var(--colorwhite);
}
.ppdb-prev {
    background: var(--colordarktrans);
}
.ppdb-progress {
    height: 16px;
    background: var(--colorborder);
    border-radius: var(--bradius);
    margin-bottom: 30px;
}
.ppdb-progress-bar {
    height: 16px;
    width: 33%;
    background: var(--color1);
    border-radius: var(--bradius);
    transition: 0.3s;
}
.ppdb-next,
.ppdb-submit-btn {
    margin-left: auto;
}

.ppdb-bttn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    height: 40px;
    gap: 20px;
    padding: 10px;
    border-radius: var(--bradius);
    background: linear-gradient(to right, var(--color2) 40px, var(--color1) 0%);
    box-shadow: 0 2px 1px rgba(60, 67, 74, .15);
}
.ppdb-bttn:hover {
    background: linear-gradient(to right, var(--color2) 40px, var(--color1) 0%);
    transform: translateY(-2px);
}
.ppdb-bttn._left {
    right: 80px;
}

/* #endregion */

/* #region: Widgets */
.widgets ul li {
    margin-left: 20px;
    margin-bottom: 5px;
    border-bottom: 1px solid var(--colorborder);
    padding-bottom: 5px;
}
.widgets ul li:last-child {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0
}

/* #endregion */

/* #region: Sidebar */

/* Loop Post */
#sidebar .box-content {
    border: 1px solid var(--colorborder);
    border-radius: var(--x2bradius);
    padding: 15px;
    background: var(--colorbg);
}
#sidebar .loop {
    border: none;
    border-radius: 0;
    border-bottom: 1px solid var(--colorborder);
    padding-bottom: 15px;
}
#sidebar .loop:last-child {
    border-bottom: none;
    padding-bottom: 0;
}
#sidebar .loop:hover {
    box-shadow: none;
    transform: none;
}
#sidebar .loop ._pigura {
    width: 90px;
    height: auto;
    border-radius: var(--bradius);
}
#sidebar .loop h3 {
    font-size: 1em;
}

#sidebar ._related .loop ._content {
    padding: 5px 5px 5px 10px;
}
#sidebar ._related .loop ._category {
    display: none;
}

#sidebar ._latest .loop ._content {
    padding: 0;
}
/* #endregion */

/* #region: Komentar */
.comment-form {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 15px;
}
.comment-form p {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin: 0;
}
.comment-notes,
.comment-form-comment,
.comment-form-cookies-consent,
.form-submit {
    grid-column: span 2;
}
.comment-form .comment-form-cookies-consent {
    display: block;
}
.form-submit {
    align-items: flex-start;
}
.comments label {
    font-weight: 600;
}
.comments .avatar {
    float: left;
    margin: 0 10px 2px 0;
    border-radius: 50%
}
.comments .comment-respond {
    margin-top: 20px;
}
.comment .comment-respond {
    border: none;
    border-radius: 0;
    background: none;
}
.comments .comment-reply-title small {
    margin-left: 10px;
}
.comment_text li {
    list-style-type: none;
    overflow: hidden;
    margin-left: 20px;
}
.comment_text {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.comment_text .depth-1 {
    padding-bottom: 20px;
    margin-left: 0;
    border: none;
    border-bottom: 1px solid var(--colorborder);
}
.comment_text .depth-1:last-child {
    border: none;
}
.comment_text .children {
    margin-top: 10px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.comment_text .children li {
    padding: 20px;
}
.comment_text li li li {
    background: var(--colorbg);
}
.comment_text li li,
.comment_text li li li li {
    background: var(--colorbg);
    border: 1px solid var(--colorborder);
    border-radius: var(--x2bradius);
}
.comment_text li li input:not([type="submit"]),
.comment_text li li textarea,
.comment_text li li li li input:not([type="submit"]),
.comment_text li li li li textarea{
    background: var(--colorbg);
}
.comment_text li li img {
    width: 40px;
    height: 40px;
}
/* #endregion */

/* #region: Tags */
.tags {
    display: flex;
    gap: 5px;
    flex-wrap: wrap;
    align-items: center;
}
.tags > * {
    padding: 5px;
    border: 1px solid var(--colorborder);
    background: var(--colorbg);
    line-height: 1em;
    font-size: .9em;
    border-radius: var(--bradius);
}
.tags b {
    background: none;
    border: none;
    padding-left: 0;
}
/* #endregion */

/* #region: Share */
.shareit {
    display: flex;
    align-items: center;
    gap: 5px;
    flex-wrap: wrap;
}
.shareit a {
    border-radius: var(--bradius);
    height: 32px;
    width: 32px;
    padding: 0;
}
.shareit ._threads {
    background: #0A0A0A;
}
.shareit ._threads img {
    filter: invert(1);
    width: 20px;
}
.shareit a:has(.icofont-facebook) {
    background: #1877f2;
}
.shareit a:has(.icofont-x) {
    background: #333;
}
.shareit a:has(.icofont-brand-whatsapp) {
    background: #25d366;
}
.shareit a:has(.icofont-pinterest) {
    background: #bd081c;
}
.shareit a:hover {
    transform: translateY(-3px);
    opacity: .8;
}
/* #endregion */

/* #region: Pagination */
.pagination {
    width: 100%;
    text-align: center;
    padding-top: 10px;
}
.pagination a, .pagination > .current {
    border: 1px solid var(--colorborder);
    padding: 5px 10px;
    background: var(--colorbg);
    margin: 0 2px;
    display: inline-block;
    min-width: 40px;
    border-radius: var(--bradius);
    
}
.pagination a:hover {
    color: var(--colorwhite);
    background: var(--color2);
}.pagination > .current {
    color: var(--colorwhite);
    background: var(--color1);
}
/* #endregion */

/* #region: Lain-lain */

/* Scroll Up */
.scrollup {
    display: none;
    align-items: center;
    justify-content: center;
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    color: var(--color1);
    border: 1px solid var(--colorborder);
    background: var(--colorbg);
    font-size: 20px;
    border-radius: var(--bradius);
    z-index: 99;
    cursor: pointer;
    transition: 0.3s;
    box-shadow: 0 2px 1px rgba(60, 67, 74, .15);
}
.scrollup:hover {
    color: var(--color2);
    transform: translateY(-2px);
}
.scrollup._show {
    display: flex;
    animation: fadeIn 0.3s ease-in-out;
}

/* Maintenance */
.maintenis {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    height: 50px;
    background: #ff0000a1;
    z-index: 999;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--colorwhite);
    font-size: 15px;
}

/* Light/Dark Mode */
.dark-mode {
    border-left: 1px solid var(--colorborder);
    padding-left: 15px;
}
.light-dark {
    font-size: 20px;
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: .3s;
    border-radius: var(--bradius);
    background: var(--colorbg);
    border: 1px solid var(--colorborder);
}
.light-dark:hover {
    background: var(--color1);
    color: var(--colorwhite);
}

/* #endregion */