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

/* Container */
.container {
    padding: 80px var(--autopad);
    background: var(--colorlight);
    position: relative;
}
.container:nth-child(odd) {
    background: var(--colorbg);
}
.container > ._title {
    max-width: 750px;
    margin: 0 auto 60px;
    text-align: center;
}
.container > ._title h2 {
    font-size: 2.3em;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.container > ._title h2 span {
    background: var(--color1);
    color: var(--colorwhite);
    padding: 7px 10px;
    border-radius: var(--inbradius);
    line-height: initial;
    font-size: .35em;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: .1em;
    font-weight: normal;
    align-self: center;
}
.container > ._title h2:after {
    content: '';
    display: block;
    width: 100px;
    height: 2px;
    background: var(--color2);
    margin: 10px auto;
}
.container > ._title p {
    font-size: 1.1em;
}
.container > ._title._left {
    text-align: left;
    margin: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex-basis: 50%;
    max-width: unset;
}
.container > ._title._left h2 span{
    align-self: flex-start!important;
}
.container > ._title._left h2:after {
    margin-left: 0;
}

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

/* Box Content */
.box-content {
    position: relative;
    width: 100%;
}
.box-content ._title {
    font-size: 1.4em;
    font-weight: 600;
    padding-bottom: 10px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
}
.box-content ._title:after {
    content: '';
    display: block;
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 60px;
    height: 2px;
    background: var(--color2);
}
.box-content ._title .m-icon {
    margin-bottom: .2em;
}

/* Loop */
.loop {
    border: 1px solid var(--colorborder);
    background: var(--colorlight);
    border-radius: var(--bradius);
    position: relative;
    transition: all .3s;
    overflow: hidden;
    width: 100%;
}
.loop:hover {
    box-shadow: 0 5px 0 var(--colorborder);
}
.loop ._pigura {
    width: 100%;
    height: 250px;
    overflow: hidden;
    display: block;
}
.loop ._pigura img {
    transition: all .3s ease;
}
.loop:hover ._pigura img {
    transform: scale(1.2);
}
.loop ._content {
    padding: 20px;
}
.loop ._content h3 {
    font-size: 1.4em;
    color: var(--colorbody);
}
.loop ._content h3 a {
    color: var(--colorbody);
}
.loop ._detail {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.loop ._detail li {
    display: flex;
    gap: 5px;
    align-items: center;
}

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

/* Loop List */
.list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.list .loop {
    display: flex;
    align-self: unset;
}
.list ._pigura {
    width: 45%;
    overflow: hidden;
    display: block;
}
.list ._content {
    width: 55%;
}


/* Header Wrap */
#header {
    width: 100%;
    /* background: linear-gradient(160deg, var(--color1) 30%, var(--color2)); */
    background: var(--color1);
}
#header:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    opacity: .1;
    /* z-index: -1; */
}
#header .bttn {
    height: 50px;
    border: 1px solid #ffffff20;
}
#header._sticky {
    position: sticky;
    top: 0;
    z-index: 999;
}
#header._slider {
    background: var(--colortrans);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
}
#header._sticky._slider {
    position: fixed;
}


/* Top Header */
.top-header {
    padding: 10px var(--autopad);
    border-bottom: 1px solid #ffffff20;
    color: var(--colorwhite);
    font-size: .95em;
    height: 50px;
    position: relative;
}
.top-header a {
    color: var(--colorwhite);
}
.socmed {
    margin-left: auto;
}
.socmed i {
    font-size: 1.2em;
}

/* Header */
.header {
    position: relative;
    padding: 0 var(--autopad);
    color: var(--colorwhite);
    height: 100px;
}
.top-logo b {
    font-size: 1.5em;
}
.top-logo a {
    color: var(--colorwhite);
}
.top-logo .logo-web {
    max-height: 70px;
    padding: 5px 0;
    display: block;
}
.top-logo .logo-web._white {
    filter: brightness(0) invert(1);
}
.top-logo._mobile {
    margin-right: auto!important;
}

/* Top Menu */
.toggle-menu {
    font-size: 1.4em;
    display: none;
}
.top-menu > ul {
    display: flex;
    flex-wrap: wrap;
}
.top-menu a {
    color: var(--colorwhite);
}
.top-menu ul li {
    list-style: none;
    padding: 5px 10px;
    margin: 0;
    position: relative;
    transition: .3s;
    text-transform: capitalize;
}
.top-menu li a {
    text-decoration: none;
    line-height: normal;
}
.top-menu > ul > li {
    text-transform: uppercase;
}
.top-menu li li {
    padding: 5px 0 5px 20px;
}
.top-menu li li:before {
    content: '';
    position: absolute;
    top: 10px;
    left: 0;
    width: 10px;
    height: 10px;
    border-bottom: 1px solid #ddd;
    border-left: 1px solid #ddd
}
.top-menu > ul > li > span {
    cursor: pointer;
    position: absolute;
    right: 5px;
    top: 50%; /* Atur posisi atas ke 50% dari tinggi parent */
    transform: translateY(-50%); 
}
.top-menu>ul>li:has(.children),
.top-menu>ul>li:has(.sub-menu) {
    position: relative;
    padding-right: 30px;
}
.top-menu > ul > li > .children,
.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: 150px;
    max-width: 250px;
    background: var(--color1);
    display: none;
    padding: 15px 20px;
    border-bottom-left-radius: var(--bradius);
    border-bottom-right-radius: var(--bradius);
    border-top: 2px solid var(--color2);
    white-space: nowrap;
}
.top-menu > ul > li > .children::-webkit-scrollbar,
.top-menu > ul > li > .sub-menu::-webkit-scrollbar {
    display: none;
}
.top-menu > ul > li > .children:hover::-webkit-scrollbar,
.top-menu > ul > li > .sub-menu:hover::-webkit-scrollbar {
    display: block;
}

.top-menu._mobile {
    background: var(--color1);
    position: absolute;
    top: 100%;
    padding: 10px 15px;
    width: 300px;
    max-height: 500px;
    overflow-y: auto;
    overflow-x: hidden;
    display: none;
    border-bottom-left-radius: var(--bradius);
    border-bottom-right-radius: var(--bradius);
    border-top: 2px solid var(--color2);
    z-index: 99;
}
.top-menu._mobile::-webkit-scrollbar {
    display: none;
}
.top-menu._mobile:hover::-webkit-scrollbar {
    display: block;
}
.top-menu._mobile ul {
    flex-direction: column;
}
.top-menu._mobile > ul > li {
    border-bottom: 1px solid #ffffff20;
}
.top-menu._mobile ul li:last-child {
    border-bottom: none;
}

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

.top-menu._mobile > ul > li > .children,
.top-menu._mobile > ul > li > .sub-menu {
    position: relative;
    border: none;
    padding: 5px 0 0 10px;
    width: 100%;
}
.top-menu._mobile > ul > li > span {
    top: 6px;
    transform: none; 
}


/* Slider */
#topslider .slider-item{
    height: 800px;
}
#topslider .owl-item{
    overflow: hidden;
}
#topslider .slider-item:before {
    background: var(--color1);
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    opacity: .3;
}
#topslider .owl-dots {
    position: absolute;
    bottom: 40px;
    left: 0;
    right: 0;
}
#topslider .owl-nav {
    top: calc(50% + 75px);
}
.konten-slider {
    position: absolute;
    max-width: 768px;
    width: 60%;
    top: 150px;
    bottom: 0;
    left: var(--autopad);
    flex-direction: column;
    justify-content: center;
    color: var(--colorwhite);
    z-index: 1;
    text-shadow: 0px 1px 1px #333;
}
.konten-slider h2 {
    font-size: 3.4em;
    color: var(--colorwhite);
}
.konten-slider h2 span {
    color: var(--color2);
    font-size: .5em;
    line-height: 1.5em;
    font-weight: 400;
    display: block;
}
.konten-slider p {
    font-size: 1.2em;
}

/* About Us */
#about ._image {
    flex-basis: 50%;
    border-radius: var(--bradius);
    overflow: hidden;
}


/* Benefit Point */
.benefit ._icon {
    font-size: 50px;
    color: var(--color1);
    width: 70px;
    height: 70px;
    align-self: center;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all .3s;
}
.benefit ._title {
    font-size: 1.3em;
    font-weight: 500;
}
.benefit ._item {
    border: 1px solid var(--colorborder);
    transition: all .3s;
    border-radius: var(--bradius);
    padding: 20px;
    background: var(--colorlight);
}
.benefit ._item:hover {
    box-shadow: 0 5px 0 var(--colorborder);
}
.benefit ._item:nth-child(even) ._icon {
    color: var(--color2);
}
.benefit ._item:hover ._icon {
    color: var(--colorwhite);
    font-size: 35px;
    background: var(--color1);
}
.benefit ._item:nth-child(even):hover ._icon {
    background: var(--color2);
}

/* How it Work */
.hiw ._pigura {
    width: 280px;
    height: 280px;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
}
.hiw ._item {
    overflow: hidden;
    padding: 15px 0;
}
.hiw ._item img {
    transition: all .3s ease;
}
.hiw ._item:hover img {
    transform: scale(1.2);
}
.hiw ._item:hover ._border:before {
    border-color: var(--color2);
}
.hiw ._item:hover ._counter:before {
    background: var(--color2);
}
.hiw ._border {
    position: relative;
    margin-bottom: 20px!important;
}
.hiw ._border:before {
    position: absolute;
    content: '';
    height: calc(100% + 24px); 
    width: calc(100% + 24px); 
    border: 2px dashed var(--color1);
    top: -12px;
    left: -12px;
    border-radius: 50%;
    animation: spin 50s linear infinite;
    transition: .3s ease;
}
.hiw ._counter {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2em;
    font-weight: 500;
    color: var(--colorwhite);
    width: 30%;
    height: 30%;
    overflow: hidden;
    border-radius: 50%;
}
.hiw ._counter:before {
    position: absolute;
    content: '';
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    background: var(--color1);
    z-index: -1;
    opacity: .8;
    transition: .3s ease;
}
.hiw ._title {
    font-size: 1.4em;
}

/* Paket Pricing */
._paket ._item {
    border: 1px solid var(--colorborder);
    border-radius: var(--bradius);
    background: var(--colorlight);
    transition: all .3s;
    padding: 60px 30px;
    align-self: flex-end;
    position: relative;
    overflow: hidden;
    z-index: 1;
}
._paket ._item:hover {
    box-shadow: 0 5px 0 var(--colorborder);
    transform: translateY(-20px);
}
._paket ._list li {
    padding-bottom: 5px;
    border-bottom: 1px dashed var(--colorborder);
    margin-bottom: 5px;
}
._paket ._price ._ammount {
    font-size: 2.4em;
    font-weight: 700;
    color: var(--color2);
}
._paket ._item._featured:after {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    background: linear-gradient(to top, var(--color1), var(--color2));
    opacity: .05;
    z-index: -1;
}
._paket ._badge {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 10;
    background: var(--color2);
    color: var(--colorwhite);
    padding: 7px 15px;
    border-bottom-left-radius: var(--bradius);
}
._paket ._item._more {
    display: none;
}

/* Statistic */
#statistic._pattern {
    position: relative;
    z-index: 1;
    background: var(--colorlight);
}
#statistic._pattern:before {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    background: linear-gradient(to bottom right, var(--color1), var(--color2));
    opacity: .05;
    z-index: -1;
}
#statistic._pattern:after {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    background-image: url(../img/pattern.png);
    opacity: .7;
    z-index: -1;
}
#statistic ._icon {
    font-size: 20px;
    color: var(--colorwhite);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--color1);
    transition: .3s ease;
}
#statistic h3 {
    font-size: 3em;
}
#statistic ._label {
    color: var(--color2);
    font-size: 1.1em;
}
#statistic ._item:hover ._icon {
    /* transform: scale(1.2); */
    background: var(--color2);
}

/* Testimonial */
#testimonial:after {
    background: linear-gradient(to top left, var(--color1), var(--color2));
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    opacity: .8;
    z-index: -1;
}
#testimonial ._title {
    text-align: left;
    margin: 0;
    max-width: 700px;
    position: relative;
}
#testimonial ._title h2 span{
    align-self: flex-start!important;
}
#testimonial ._title h2 {
    color: var(--colorwhite);
}
#testimonial ._title h2:after {
    margin-left: 0;
}
.testimonial ._content {
    padding: 20px;
    border: 1px solid var(--colorborder);
    border-radius: var(--bradius);
    background: var(--colorlight);
    position: relative;
}
.testimonial ._content::before {
    position: absolute;
    font-family: Georgia, Times, 'Times New Roman', serif;
    content: "\201C";
    color: var(--colorborder);
    font-size: 150px;
    bottom: 10px;
    right: 30px;
}
.testimonial b {
    font-size: 1.2em;
}
.testimonial ._pigura {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
}
.testimonial ._rate {
    font-size: 22px;
}
.testimonial .fill {
    color: var(--color2);
}
.testimonial .empty {
    color: #999;
}
.testimonial .owl-nav {
    top: -80px;
    gap: 15px;
}
.testimonial .owl-nav .owl-prev,
.testimonial .owl-nav .owl-next {
    border: 1px solid var(--colorlight)!important;
    background: none!important;
}
.testimonial .owl-nav .owl-prev span,
.testimonial .owl-nav .owl-next span {
    color: var(--colorlight)!important;
}
.testimonial .owl-item {
    padding: 0;
}
.testimonial {
    margin: 0;
    width: 100%;
}

/* Paket Loop */
._paket.loop  ._price {
    background: var(--colorbg);
    border: 1px solid var(--colorborder);
    padding: 10px 15px;
    border-radius: var(--inbradius);
}
._paket.loop  ._price ._ammount {
    font-size: 1.2em;
    color: var(--color1);
}

/* Portofolio Loop */
/* ._porto.loop ._pigura {
    height: 360px;
}
._porto.loop ._content{
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1;
}
._porto.loop ._content::before {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: var(--colorlight);
    opacity: .9;
    z-index: -1;
} */

/* Galeri */
.galeri-featured {
    position: relative;
    overflow: hidden;
    border-radius: var(--bradius);
}
.galeri-featured .ofc {
    width: 100%;
    height: 500px;
}
.galeri-featured .lSGallery {
    margin-top: 10px!important;
}
.galeri-featured img {
    border-radius: var(--bradius);
    display: block;
}
.galeri-featured .lSAction>.lSNext {
    right: 20px;
}
.galeri-featured .lSAction>.lSPrev {
    left: 20px;
}

/* Blog */
._blog.loop ._category {
    position: absolute;
    top: 20px;
    left: 20px;
}
._blog.loop ._category a{
    background: var(--color1);
    color: var(--colorwhite);
    padding: 5px 7px;
    line-height: 1em;
    border-radius: var(--inbradius);
    font-size: .9em;
}
._blog.loop ._category a:hover {
    background: var(--color2);
}
._blog.loop ._excerpt p{
    margin: 0;
}

/* CTA */
#home-cta ._title {
    max-width: 80%;
    margin-bottom: 0;
}

/* Scrollup */

.scrollup {
    display: none;
    align-items: center;
    justify-content: center;
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    color: var(--color2);
    background: var(--colorlight);
    border-radius: 50%;
    z-index: 3;
    cursor: pointer;
    transition: 0.3s;
}
.scrollup:hover {
    color: var(--color1);
}

/* Footer */

#footer {
    display: grid;
    grid-template-columns: 40fr 20fr 20fr 20fr;
    gap: 50px;
    padding: 80px var(--autopad);
    background: var(--color1);
    color: var(--colorwhite);
}
#footer:before {
    opacity: .12;
}
#footer > div {
    position: relative;
    gap: 30px!important;
}
#footer h4 {
    font-size: 1.4em;
    color: var(--colorwhite);
}
#footer a {
    color: var(--colorwhite);
}
#footer a:hover {
    color: var(--color2);
    border-bottom: 1px dotted var(--color2);
}
#footer .widgets ul li {
    margin-left: 20px;
    margin-bottom: 10px;
}
.copyright {
    padding: 20px var(--autopad);
    background: var(--color1);
    color: var(--colorwhite);
    border-top: 1px solid #ffffff20;
    text-align: center;
}
.copyright a {
    color: var(--colorwhite);
}
.copyright h5 {
    color: var(--colorwhite);
    display: inline-block;
    margin: 10px;
    font-weight: 500;
}

/* Single */
.single-content ._featured {
    border-radius: var(--bradius);
    overflow: hidden;
    height: 500px;
}
.single-content ._featured p {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--colortrans);
    color: var(--colorwhite);
    padding: 20px;
    margin: 0;
    font-size: .9em;
}
.single-content._blog  ._detail ._category a{
    padding: 5px;
    line-height: 1em;
    border-radius: var(--inbradius);
    font-size: .9em;
    border: 1px solid var(--colorborder);
    background: var(--colorlight);
}

/* Spesifikasi - Paket */
.spesifikasi ._list li {
    margin-left: 20px;
}

/* Sidebar */
#sidebar .widgets{
    border: 1px solid var(--colorborder);
    background: linear-gradient(to top, var(--colorlight), var(--colorbg));
    padding: 20px;
    border-radius: var(--bradius);
}
#sidebar .widgets h4 {
    font-size: 1.4em;
    padding: 20px;
    background: var(--colorlight);
    border-bottom: 1px solid var(--colorborder);
    border-top-left-radius: var(--bradius);
    border-top-right-radius: var(--bradius);
    margin: -20px -20px 20px -20px;
}
#sidebar .widgets ul li {
    list-style: none;
    margin-bottom: 10px;
    border-bottom: 1px solid var(--colorborder);
    padding-bottom: 10px;
}
#sidebar .widgets ul li:last-child {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0
}

/* Sidebar Blog */
#sidebar ._blog.loop ._pigura {
    height: auto;
}
#sidebar ._blog.loop  h3 {
    font-size: 1em;
}
#sidebar ._blog.loop ._category {
    position: static;
    overflow: hidden;
    white-space: nowrap;
    padding: 2px 0;
}

/* Sidebar Close */
#sidebar .side-close {
    width: 40px;
    height: 40px;
    position: fixed;
    right: 0;
    top: 0;
    border-radius: 0;
    border-bottom-left-radius: var(--bradius);
    border-left: 1px solid #ffffff20;
    border-bottom: 1px solid #ffffff20;
    display: none;
}
#sidebar._left .side-close {
    right: unset;
    left: 0;
    border-radius: 0;
    border-bottom-right-radius: var(--bradius);
    border-right: 1px solid #ffffff20;
    border-bottom: 1px solid #ffffff20;
}

/* Ads */
.banner img {
    display: block;
    width: 100%;
    border-radius: var(--bradius);
    border: 1px solid var(--colorborder);
    background: var(--colorlight);
}

/* Komentar */
.comment-form {
    display: grid;
    grid-template-columns: repeat(2, 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: bold;
}
.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;
    border-radius: var(--inbradius);
    border: 1px solid var(--colorborder);
}
.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);
    border-radius: 0;
}
.comment_text .depth-1:last-child {
    border: none;
}
.comment_text .children {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.comment_text .children li {
    padding: 20px;
}
.comment_text li,
.comment_text li li li {
    background: var(--colorlight);
}
.comment_text li li,
.comment_text li li li li {
    background: var(--colorbg);
}
.comment_text li li input:focus,
.comment_text li li textarea:focus,
.comment_text li li li li input:focus,
.comment_text li li li li textarea:focus{
    background: var(--colorlight);
}
.comment_text li li img {
    width: 40px;
    height: 40px;
}

/* Contact */
#contact:before {
    opacity: .2;
}
#contact ._title h2 {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
#contact ._title h2:after {
    content: '';
    display: block;
    width: 100px;
    height: 2px;
    background: var(--color2);
}
#contact ._content li i {
    font-size: 26px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--colorwhite);
    background: var(--color1);
    transition: .3s;
}
#contact ._content li b {
    font-size: 1.1em;
}
#contact ._content li a {
    color: var(--colorbody);
}
#contact ._content li a:hover {
    color: var(--color2);
}
#contact ._content li:hover i {
    background: var(--color2);
}
#contact .socmed {
    padding-top: 15px;
    margin-top: 10px;
    border-top: 1px solid #00000010;
    flex-wrap: wrap;
}
#contact .socmed b {
    display: none;
}
#contact .socmed i {
    font-size: 26px;
}
#contact .socmed:before {
    display: block;
    flex-basis: 100%;
    margin-bottom: -5px;
}

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

/* Share */
.shareit {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.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;
}

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

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

/* Search Popup */
#search .search-form input[type="search"] {
    width: 70%;
    padding: 20px;
}
#search .search-form button {
    width: 30%;
    padding: 20px;
}

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