:root {
--color1: #0340a5;
--color2: #e42032;
--colorbg: #fafafa;
--colorborder: #f5f5f5;
--colorbody: #333333;
--colordark: #222222;
--colorlight: #fefefe;
--colortrans: #00000050;
--colorwhite: #ffffff;
--maxwidth: 1250px;
--bradius: 10px;
--inbradius: calc(var(--bradius) / 2);
--autopad: calc((100% - var(--maxwidth)) / 2);
} body {
font-family: 'Arial', sans-serif;
font-size: 16px;
line-height: 1.6em;
color: var(--colorbody);
background: var(--colorlight);
margin: 0;
}
*,
:after,
:before {
box-sizing: border-box;
}
ul,
li {
margin: 0;
padding: 0;
} a{
color: var(--colorbody);
transition: .3s;
}
a:hover {
color: var(--color2);
}
a:active,
a:hover,
a:link,
a:visited {
text-decoration: none;
} h1 {
font-size: 2.2em;
}
h2 {
font-size: 1.8em;
}
h3 {
font-size: 1.4em;
}
h4 {
font-size: 1.2em;
}
h5 {
font-size: 1em;
}
h1,
h2,
h3,
h4,
h5 {
margin: 20px 0;
font-weight: 600;
line-height: 1.2em;
color: var(--colorbody);
}
h1:first-child, h2:first-child, h3:first-child, h4:first-child, h5:first-child, h6:first-child {
margin-top: 0;
}
b, strong {
font-weight: 600;
} input:not([type='radio']):not([type='checkbox']),
select,
textarea {
font-family: inherit;
font-size: inherit;
}
input[readonly],
textarea[readonly] {
background: var(--colorbg)!important;
color: #AAA!important;
}
input:not([type='radio']):not([type='checkbox']):not([type='submit']):not([type='image']):not([type='range']):not([type='file']),
select,
textarea {
padding: .6em .8em;
outline: 0;
background: var(--colorbg);
color: var(--colorbody);
border: 1px solid var(--colorborder);
border-radius: var(--inbradius);
line-height: normal;
}
select {
cursor: pointer;
}
input[type=text]:focus,
select:focus,
textarea:focus {
background: var(--colorbg);
}
textarea::placeholder,
input::placeholder {
color: #AAA;
} input[type="range"] {
-webkit-appearance: none;
appearance: none; 
width: 100%;
cursor: pointer;
outline: none;
overflow: hidden;
border-radius: var(--bradius);
} input[type="range"]::-webkit-slider-runnable-track {
height: 16px;
background: var(--colorborder);
border-radius: var(--bradius);
} input[type="range"]::-moz-range-track {
height: 16px;
background: var(--colorborder);
border-radius: var(--bradius);
} input[type="range"]::-webkit-slider-thumb {
-webkit-appearance: none;
appearance: none; 
height: 16px;
width: 16px;
background-color: var(--colorlight);
border-radius: var(--bradius);
border: 2px solid var(--color1);
box-shadow: -408px 0 0 400px var(--color1);
} input[type="range"]::-moz-range-thumb {
height: 16px;
width: 16px;
background-color: var(--colorlight);
border-radius: var(--bradius);
border: 2px solid var(--color1);
box-shadow: -408px 0 0 400px var(--color1);
} .bttn,
.button-primary,
input[type='submit'],
button {
cursor: pointer;
padding: .6em .8em;
background: var(--color1);
border: 0;
outline: 0;
color: var(--colorwhite);
transition: .3s;
display: inline-flex;
border-radius: var(--inbradius);
align-items: center;
justify-content: center;
gap: 8px;
line-height: normal;
font-family: inherit;
font-size: inherit;
}
.bttn:hover,
.button-primary:hover,
.form-submit input:hover,
button:hover {
color: var(--colorwhite);
background: var(--color2);
}
.bttn:focus {
color: var(--colorwhite);
}
.bttn._big {
padding: 15px 20px;
letter-spacing: .1em;
text-transform: uppercase;
} blockquote {
width: 90%;
margin: 30px auto;
padding: 35px 40px 30px;
border: 1px solid var(--colorborder);
position: relative;
background: linear-gradient(to bottom, var(--colorbg), var(--colorlight));
border-radius: var(--bradius);
}
blockquote::before {
font-family: Georgia, Times, 'Times New Roman', serif;
content: "\201C";
color: var(--color1);
font-size: 6em;
position: absolute;
left: 10px;
top: 15px;
} code {
background: var(--colorbg);
border: 1px solid var(--colorborder);
padding: 15px;
display: block;
border-radius: var(--inbradius);
} .wp-caption,
img.alignnone,
p img {
max-width: 100%!important;
width: auto;
}
img {
max-width: 100%;
height: auto;
}
a img {
border: none;
}
img.center {
display: block;
margin-left: auto;
margin-right: auto;
}
img.aligncenter {
display: block;
margin: 10px auto;
}
img.alignright {
display: inline;
float: right;
margin: 0 0 10px 10px;
}
img.alignleft {
display: inline;
float: left;
margin: 0 10px 10px 0;
}
.wp-caption img {
margin: 0;
padding: 0;
border: none;
}
.wp-caption p.wp-caption-text {
font-size: .85em;
margin: 0;
}
.wp-caption.aligncenter {
display: block;
margin: 10px auto;
text-align: center;
}
.wp-caption.alignleft {
float: left;
margin: 5px 10px 5px 0;
}
.wp-caption.alignright {
float: right;
margin: 5px 0 5px 10px;
}  @keyframes spin { 
100% { 
transform: rotateZ(360deg); 
}
} @keyframes blinker {
50% {
opacity: 0;
}
}
.blink {
animation: blinker 1s linear infinite;
} @keyframes moveInRight {
0% {
opacity: 0;
transform: translateX(-50px)
}
80% {
transform: translateX(10px)
}
100% {
opacity: 1;
transform: translateX(0px)
}
} ::-webkit-scrollbar {
width: 10px;
height: 10px;
}
::-webkit-scrollbar-track {
background: var(--colorborder);
}
::-webkit-scrollbar-thumb {
background: #ccc;
opacity: .1;
}
::-webkit-scrollbar-thumb:hover {
background: var(--color2);
}
body ::-webkit-scrollbar {
width: 6px;
height: 6px;
}  .small {
font-size: .8em!important;
}
.medium {
font-size: .9em!important;
}
.big {
font-size: 1.5em!important;
}
.jumbo {
font-size: 2.7em!important;
}
.hidden {
font-size: 0;
}
.color1 {
color: var(--color1);
}
.color2 {
color: var(--color2);
}
.swap {
background: var(--color2);
}
.swap.hover:hover {
background: var(--color1);
} .info,
.notice,
.sukses,
.warning {
width: 100%;
padding: 15px;
background: var(--colorbg);
border: 1px solid var(--colorborder);
overflow: hidden;
border-radius: var(--bradius);
}
.notice {
background: #FFFFEC;
border-color: #FFB973;
color: #FF8000;
}
.warning {
background: #ffe2e2;
border-color: #f7b1b1;
color: red;
}
.sukses {
color: #38baa7;
background-color: #ebf8f6;
border-color: #b7e1db;
} .underlink {
padding-bottom: 5px;
border-bottom: 1px dashed var(--colorbody);
font-weight: 500;
text-transform: uppercase;
font-size: .85em;
letter-spacing: .1em;
}
.underlink:hover {
border-color: var(--color2);
}
.rounded {
border-radius: var(--bradius);
}
.circle {
border-radius: 50%;
}
.nolist {
list-style: none;
}
.center {
text-align: center;
}
.coret {
text-decoration: line-through;
} .nm {
margin: 0 !important;
}
.nm-top {
margin-top: 0 !important;
}
.nm-bottom {
margin-bottom: 0 !important;
} .elipsis {
display: -webkit-box;
-webkit-box-orient: vertical;
overflow: hidden;
text-overflow: ellipsis;
-webkit-line-clamp: 1;
line-clamp: 1;
}
.elipsis.clamp2 {
-webkit-line-clamp: 2;
line-clamp: 2;
}
.elipsis.clamp3 {
-webkit-line-clamp: 3;
line-clamp: 3;
}
.elipsis.clamp4 {
-webkit-line-clamp: 4;
line-clamp: 4;
} .relative {
position: relative;
} .flexcon {
display: flex;
}
.flexcon.column {
flex-direction: column;
}
.flexcon.reverse {
flex-direction: row-reverse;
}
.flexcon.column.reverse {
flex-direction: column-reverse;
}
.flexcon.column.nm > * {
margin: 0;
}
.flexcon.inline {
display: inline-flex;
}
.flexcon.wrap {
flex-wrap: wrap;
} .gridcon {
display: grid;
grid-template-columns: repeat(1, 1fr);
}
.two-col {
grid-template-columns: repeat(2, 1fr)!important;
}
.three-col {
grid-template-columns: repeat(3, 1fr)!important;
}
.four-col {
grid-template-columns: repeat(4, 1fr)!important;
}
.five-col {
grid-template-columns: repeat(5, 1fr)!important;
}
.six-col {
grid-template-columns: repeat(5, 1fr)!important;
} .gap-5 {
gap: 5px!important;
}
.gap-10 {
gap: 10px!important;
}
.gap-15 {
gap: 15px!important;
}
.gap-20 {
gap: 20px!important;
}
.gap-30 {
gap: 30px!important;
}
.gap-40 {
gap: 40px!important;
}
.gap-50 {
gap: 50px!important;
} .row-gap-5 {
row-gap: 5px!important;
}
.row-gap-10 {
row-gap: 10px!important;
}
.row-gap-15 {
row-gap: 15px!important;
}
.row-gap-20 {
row-gap: 20px!important;
}
.row-gap-30 {
row-gap: 30px!important;
}
.row-gap-40 {
row-gap: 40px!important;
}
.row-gap-50 {
row-gap: 50px!important;
} .col-gap-5 {
column-gap: 5px!important;
}
.col-gap-10 {
column-gap: 10px!important;
}
.col-gap-15 {
column-gap: 15px!important;
}
.col-gap-20 {
column-gap: 20px!important;
}
.col-gap-30 {
column-gap: 30px!important;
}
.col-gap-40 {
column-gap: 40px!important;
}
.col-gap-50 {
column-gap: 50px!important;
} .align-center {
align-items: center!important;
}
.align-start {
align-items: flex-start!important;
}
.align-end {
align-items: flex-end!important;
}
.align-baseline {
align-items: baseline!important;
}
.align-self-center {
align-self: center!important;
}
.align-self-start {
align-self: flex-start!important;
}
.align-self-end {
align-self: flex-end!important;
}
.align-self-baseline {
align-self: baseline!important;
} .justify-center {
justify-content: center;
}
.justify-start {
justify-content: flex-start;
}
.justify-end {
justify-content: flex-end;
}
.justify-between {
justify-content: space-between;
}
.justify-around {
justify-content: space-around;
} .ofc {
display: block;
}
.ofc img {
width: 100%;
height: 100%;
object-fit: cover;
object-position: center center;
display: block;
} .bgtrans {
position: relative;
z-index: 1;
}
.bgtrans:before {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
opacity: .4;
filter: grayscale(1);
background-position: center center;
background-size: cover;
background-repeat: no-repeat;
z-index: -1;
}  .owl-dots {
display: flex;
justify-content: center;
margin-top: 20px;
}
.owl-dot {
display: block;
margin: 0 5px;
width: 10px;
height: 10px;
outline:  2px solid rgba(255,255,255,.9);
border-radius: 50%;
background-color: var(--colorbody)!important;
opacity: .4;
align-self: center;
}
.owl-dot.active {
opacity: 1;
width: 13px;
height: 13px;
background-color: var(--color1)!important;
}
.owl-nav {
display: flex;
justify-content: space-between;
align-items: center;
position: absolute;
top: 50%;
left: 50px;
right: 50px;
transform: translateY(-50%);
opacity: 0;
transition: ease-in-out .5s;
}
.owl-carousel:hover .owl-nav{
opacity: 1;
left: 30px;
right: 30px;
}
.owl-nav .owl-prev,
.owl-nav .owl-next {
display: flex;
justify-content: center;
align-items: center;
cursor: pointer;
width: 50px;
height: 50px;
border-radius: 50%;
border: 1px solid var(--colorlight)!important;
}
.owl-nav .owl-prev:hover,
.owl-nav .owl-next:hover {
background: var(--color2)!important;
}
.owl-nav .owl-prev span,
.owl-nav .owl-next span{
color: var(--colorlight)!important;
font-size: 40px;
padding-bottom: 18%;
} .post-slider .owl-item {
padding: 10px 0;
}
.post-slider .owl-nav {
top: -53px;
right: 0;
left: unset;
transform: none;
opacity: unset;
gap: 5px;
}
.post-slider:hover .owl-nav{
left: unset;
right: 0;
}
.post-slider .owl-nav .owl-prev,
.post-slider .owl-nav .owl-next {
width: 40px;
height: 40px;
background: var(--colorbg)!important;
border: 1px solid var(--colorborder)!important;
}
.post-slider .owl-nav .owl-prev span,
.post-slider .owl-nav .owl-next span {
color: var(--colorbody)!important;
font-size: 24px;
} .popup {
min-width: 300px;
max-width: 748px;
display: none;
border-radius: var(--bradius);
background: var(--colorlight);
}
.popup a {
outline: none;
}
.popup ul li {
padding: 10px 0;
}
.popup iframe, .popup img {
border-radius: var(--inbradius);
display: block;
}
.popup blockquote {
font-style: unset;
padding: 0;
border: none;
background: none;
margin: 0 auto!important;
}
.popup blockquote::before {
content: '';
}
.fancybox-button:hover svg {
color: var(--colorwhite);
}
.fancybox-close-small {
background: var(--colorlight);
transition: .3s;
} .tab-panel {
border: none;
border-top: 1px solid var(--colorborder);
padding: 20px 0;
background: var(--colorlight);
}
.tabset > label {
border-top-right-radius: var(--inbradius);
border-top-left-radius: var(--inbradius);
font-size: 1.2em;
padding: 10px 15px;
}
.tabset > label::after {
display: none;
}
.tabset label.edit-post a{
color: #ccc;
}
.tabset label.edit-post:hover a{
color: var(--color1);
}
.tabset > input:checked + label {
background: var(--colorlight);
border-color: var(--colorborder);
border-bottom: 1px solid var(--colorlight);
}
.tabset > label:hover,
.tabset > input:focus + label,
.tabset > input:checked + label {
color: var(--color1);
}
.tabset > label:hover::after,
.tabset > input:focus + label::after,
.tabset > input:checked + label::after {
background: var(--color2);
} .hscroll {
overflow-x: auto;
white-space: nowrap; 
}
.hscroll::-webkit-scrollbar {
display: none;
} .crumbs {
font-size: .9em;
} .wrap-post ul li,
.wrap-post ol li {
margin-left: 20px;
}
.wrap-post p:first-child {
margin-top: 0;
}
.wrap-post p:last-child {
margin-bottom: 0;
}
.wrap-post img {
border-radius: var(--bradius);
} .xeo {
position: absolute;
width: 1px;
height: 1px;
margin: -1px;
padding: 0;
overflow: hidden;
clip: rect(0, 0, 0, 0);
border: 0;
} .widgets .searchform div {
display: flex;
align-items: center;
gap: 10px;
}
.widgets .searchform label {
display: none;
}
.widgets .searchform input[type="text"] {
width: 70%;
height: 40px;
}
.widgets .searchform input[type="submit"] {
width: 30%;
height: 40px;
} .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 {
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 {
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 {
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;
} .grid {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 30px;
} .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 {
width: 100%; background: var(--color1);
}
#header:before {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: #000;
opacity: .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 {
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 {
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;
} .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%; 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; 
} #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 ._image {
flex-basis: 50%;
border-radius: var(--bradius);
overflow: hidden;
} .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);
} .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 ._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._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(//gilivisa.com/wp-content/themes/bizniz-per/assets/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 { background: var(--color2);
} #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  ._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);
}   .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.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;
} #home-cta ._title {
max-width: 80%;
margin-bottom: 0;
} .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 {
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-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 ._list li {
margin-left: 20px;
} #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.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 .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;
} .banner img {
display: block;
width: 100%;
border-radius: var(--bradius);
border: 1px solid var(--colorborder);
background: var(--colorlight);
} .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: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 {
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);
} .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 img {
width: 96px;
height: 96px;
overflow: hidden;
border-radius: var(--bradius);
float: left;
margin: 0 15px 5px 0;
} .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 .search-form input[type="search"] {
width: 70%;
padding: 20px;
}
#search .search-form button {
width: 30%;
padding: 20px;
} .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;
}