@charset "utf-8";

/* IMPORT RESET */
@import url("normalize.css");

* {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	*behavior: url(../../js/boxsizing.htc);
	/*
		If you need support for IE7 and lower make
		sure the boxsizing.htc file is linked properly.
		More info here:  https://github.com/Schepp/box-sizing-polyfill
	*/
}

::-webkit-scrollbar {
    width: 7px;
    height: 10px;
    padding: 5px 3px;
}

::-webkit-scrollbar-track {
    background: #fff;
}

::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 6px;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    -ms-border-radius: 6px;
    -o-border-radius: 6px;
}

@font-face
{
    font-family: 'segoe-ui';
    src: url('../../fonts/segoeui.ttf');
}

.ft-segoe-ui {
    font-family: segoe-ui;
}

@font-face
{
    font-family: 'segoe-ui-bold';
    src: url('../../fonts/segoeuib.ttf');
}

.ft-segoe-ui-bold {
    font-family: segoe-ui-bold;
}

@font-face
{
    font-family: 'segoe-ui-semibold';
    src: url('../../fonts/seguisb.ttf');
}

.ft-segoe-ui-semibold {
    font-family: segoe-ui-semibold;
}

@font-face
{
    font-family: 'segoe-ui-italic';
    src: url('../../fonts/segoeuii.ttf');
}

.ft-segoe-ui-italic {
    font-family: segoe-ui-italic;
}


/* Global */
html, body {
    padding: 0px;
    margin: 0px;
    background: #fff;
    scroll-behavior: smooth;
    width: 100%;
    overflow-x: hidden;
}

img {
	max-width: 100%;
}

a {
	color: inherit;
	text-decoration: none;
}

a:hover {
	/*color: inherit;*/
	text-decoration: none;
}

a:focus {
	outline: 0;
}

h1, h2, h3 {
    margin: 0px;
}

.window-width {
	position: fixed;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 0px;
}

.window-height {
	position: fixed;
	top: 0px;
	left: 0px;
	height: 100vh;
	width: 0px;
}

.mid {
	position: relative;
	width: 100%;
	height: 100%;

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

.container {
	position: relative;
	display: block;
    width: 100%;
	overflow: hidden;
    color: #222;
}

.header-container {
	position: fixed;
	display: block;
	/* width: calc(100% - (16px * 2)); */
	width: 100%;
	height: calc(73px + 16px);
    /* padding: 16px 16px 0px; */
	background: transparent;
	left: 0px;
	top: 0px;
	z-index: 1000;
}
/*
.header-container:before {
    content: '';
    position: absolute;
    display: block;
    width: 100vw;
    top: 0px;
    left: 0px;
    height: 16px;
    background: #fff;
} */

.header-content {
    position: relative;
    display: block;
    width: calc(100% - (16px * 2));
    height: 100%;
    max-width: 1408px;
    margin: 0px auto;
}

.header-logo {
    position: absolute;
    top: 16px;
    left: 0px;
    width: calc(354px + 16px);
    /* padding-left: 16px; */
    height: calc(100% - 16px);
    top: 16px;
    z-index: 1;
    opacity: 1;
    align-content: center;
    /* text-align: center; */
    -webkit-transition: opacity 0.4s;
    -moz-transition: opacity 0.4s;
    -ms-transition: opacity 0.4s;
    -o-transition: opacity 0.4s;
}

.header-logo-img {
    position: relative;
    display: block;
    width: calc(100% - 16px);
    /* margin-left: 16px; */
    /* background: url('../../img/front/pt_sarana_nikoteknik_white_logo.svg') no-repeat; */
    background: url('../../img/front/pt_sarana_nikoteknik_red_logo.svg') no-repeat;
    background-size: contain !important;
    background-position: center left !important;
}
/*
.header-logo-img:after {
    content: '';
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    left: 0px;
    top: 0px;
    opacity: 0;
    background: url('../../img/front/pt_sarana_nikoteknik_red_logo.svg') no-repeat;
    background-size: contain !important;
    background-position: center;

    -webkit-transition: opacity: 0.4s;
    -moz-transition: opacity: 0.4s;
    -ms-transition: opacity: 0.4s;
    transition: opacity: 0.4s;
} */

.header-logo img {
    position: relative;
    display: block;
	width: 274px;
    margin: 0px auto;
    opacity: 0;
}


.not-active.headroom--pinned {
    opacity: 1 !important;
	top: 0px !important;
    background: #fff !important;
	background: transparent;

    -webkit-transition: opacity 0.4s, top 0.4s, background 0.4s, height 0.4s;
    -moz-transition: opacity 0.4s, top 0.4s, background 0.4s, height 0.4s;
    -ms-transition: opacity 0.4s, top 0.4s, background 0.4s, height 0.4s;
    transition: opacity 0.4s, top 0.4s, background 0.4s, height 0.4s;
}

.not-active.headroom--pinned .header-logo-img:after {
    opacity: 1;

    -webkit-transition: opacity 0.4s;
    -moz-transition: opacity 0.4s;
    -ms-transition: opacity 0.4s;
    transition: opacity 0.4s;
}

.not-active.headroom--unpinned {
    opacity: 0 !important;
	top: -73px !important;

    -webkit-transition: opacity 0.4s, top 0.4s, background 0.4s, height 0.4s;
    -moz-transition: opacity 0.4s, top 0.4s, background 0.4s, height 0.4s;
    -ms-transition: opacity 0.4s, top 0.4s, background 0.4s, height 0.4s;
    transition: opacity 0.4s, top 0.4s, background 0.4s, height 0.4s;
}

.not-active.headroom--unpinned .header-logo-img:after {
    opacity: 0;

    -webkit-transition: opacity 0.4s;
    -moz-transition: opacity 0.4s;
    -ms-transition: opacity 0.4s;
    transition: opacity 0.4s;
}

.not-active.headroom--top {
	opacity: 1 !important;
	top: 0px !important;
	background: transparent !important;

    -webkit-transition: opacity 0.4s, top 0.4s, background 0.4s, height 0.4s;
    -moz-transition: opacity 0.4s, top 0.4s, background 0.4s, height 0.4s;
    -ms-transition: opacity 0.4s, top 0.4s, background 0.4s, height 0.4s;
    transition: opacity 0.4s, top 0.4s, background 0.4s, height 0.4s;
}

.not-active.headroom--top .header-logo-img:after {
    opacity: 0;

    -webkit-transition: opacity 0.4s;
    -moz-transition: opacity 0.4s;
    -ms-transition: opacity 0.4s;
    transition: opacity 0.4s;
}

.not-active.headroom--not-top {
	/* height: 73px; */
    background: #fff !important;

    -webkit-transition: opacity 0.4s, top 0.4s, background 0.4s, top 0.4s;
    -moz-transition: opacity 0.4s, top 0.4s, background 0.4s, top 0.4s;
    -ms-transition: opacity 0.4s, top 0.4s, background 0.4s, top 0.4s;
    transition: opacity 0.4s, top 0.4s, background 0.4s, top 0.4s;
}

.not-active.headroom--not-top .header-logo-img:after {
    opacity: 1;

    -webkit-transition: opacity 0.4s;
    -moz-transition: opacity 0.4s;
    -ms-transition: opacity 0.4s;
    transition: opacity 0.4s;
}

.active.header-container {
    opacity: 1 !important;
    top: 0px !important;
    background: transparent !important;

    -webkit-transition: opacity 0.4s, top 0.4s, background 0.4s, height 0.4s;
    -moz-transition: opacity 0.4s, top 0.4s, background 0.4s, height 0.4s;
    -ms-transition: opacity 0.4s, top 0.4s, background 0.4s, height 0.4s;
    transition: opacity 0.4s, top 0.4s, background 0.4s, height 0.4s;
}

.active.header-container .header-logo-img:after {
    opacity: 1;

    -webkit-transition: opacity 0.4s;
    -moz-transition: opacity 0.4s;
    -ms-transition: opacity 0.4s;
    transition: opacity 0.4s;
}

.header-nav-group {
    position: absolute;
    top: 16px;
    right: 0px;
    /* padding-right: 16px; */
    padding-top: 5px;
    font-size: 0px;
    text-align: right;
    height: calc(100% - 16px);
    align-content: center;
    /* background: #fff;
    width: calc(100% - (248px + 48px)); */
}

/*.header-nav-group:before {
    content: '';
    position: absolute;
    display: block;
    left: -48px;
    top: 0px;
    width: 48px;
    height: 100%;
    background: url('../../img/front/rounded-header-img1.png') no-repeat;
    background-size: 100% 100% !important;
    background-position: 0px 0px !important;
}

.header-nav-group:after {
    content: '';
    position: absolute;
    display: block;
    right: 16px;
    top: 100%;
    width: 13px;
    height: 14px;
    background: url('../../img/front/rounded-header-img2.png') no-repeat;
    background-size: 100% 100% !important;
    background-position: 0px 0px !important;
} */

.header-nav-group > * {
    font-size: 14px;
    /* line-height: 73px; */
    line-height: 20px;
}

.header-nav-item {
    position: relative;
    display: inline-block;
    margin-left: 30px;
    color: #222;
    letter-spacing: 1.2px;
    cursor: pointer;
    padding-bottom: 3px;
    border-bottom: 1px solid transparent;

    -webkit-transition: color 0.4s border 0.4s;
    -moz-transition: color 0.4s border 0.4s;
    -ms-transition: color 0.4s border 0.4s;
    transition: color 0.4s border 0.4s;
}

.header-nav-item:hover {
    color: #ff0000;
    border-bottom: 1px solid #ff0000;

    -webkit-transition: color 0.4s border 0.4s;
    -moz-transition: color 0.4s border 0.4s;
    -ms-transition: color 0.4s border 0.4s;
    transition: color 0.4s border 0.4s;
}

.header-nav-item:first-child {
    margin-left: 0px;
}

.header-nav-item.active {
    color: #ff0000 !important;
    border-bottom: 1px solid #ff0000 !important;
}

.header-nav-icon-group {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    font-size: 0px;
    margin-left: 50px;
    top: -6px;
}

.header-nav-icon-group > * {
    font-size: 14px;
}

.header-nav-icon-item {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    width: 32px;
    cursor: pointer;
    height: 32px;
    line-height: 34px;
    text-align: center;
    background: #dcdcdc;
    margin-left: 8px;
    color: #222;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;

    -webkit-transition: background 0.4s, color 0.4s;
    -moz-transition: background 0.4s, color 0.4s;
    -ms-transition: background 0.4s, color 0.4s;
    transition: background 0.4s, color 0.4s;
}

.header-nav-icon-item:hover {
    background: #ff0000;
    color: #fff;

    -webkit-transition: background 0.4s, color 0.4s;
    -moz-transition: background 0.4s, color 0.4s;
    -ms-transition: background 0.4s, color 0.4s;
    transition: background 0.4s, color 0.4s;
}

.header-nav-icon-item.active {
    background: #ff0000 !important;
    color: #fff !important;
}

.header-nav-icon-item:first-child {
    margin-left: 0px;
}

.footer-container {
    position: relative;
    display: block;
    width: 100%;
    padding-bottom: 80px;
    line-height: 20px;
    font-size: 14px;
    color: #222;
    text-align: center;
    overflow: hidden;
}

.blur-container {
    position: fixed;
    display: block;
    width: 100%;
    height: 100vh;
    background: rgba(248, 248, 248, 0.8);
    color: #222222;
    left: 0px;
    top: 0px;
    z-index: -1;
    overflow: auto;
    opacity: 0;

    -webkit-transition: 0.4s opacity 0s, 0 z-index 0.4s;
    -moz-transition: 0.4s opacity 0s, 0 z-index 0.4s;
    -ms-transition: 0.4s opacity 0s, 0 z-index 0.4s;
    transition: 0.4s opacity 0s, 0 z-index 0.4s;
}

.blur-container.notif {
    opacity: 1;
    z-index: 9999;
    align-content: center;
    text-align: center;
}

.blur-container.active {
    z-index: 9999;
    opacity: 1;

    -webkit-transition: 0.4s opacity 0s;
    -moz-transition: 0.4s opacity 0s;
    -ms-transition: 0.4s opacity 0s;
    transition: 0.4s opacity 0s;
}

.blur-container .mid {
    overflow: auto;
    padding: 50px 0px;
    height: auto;
    /* min-height: calc(100vh - 50px); */
    min-height: calc(100vh - 0px);
}

.blur-content .psi-item-img:before {
    display: none;
}

.blur-content {
    position: relative;
    display: block;
    width: calc(100% - 40px) !important;
    max-width: 530px;
    margin: 0px auto !important;
    height: auto !important;
    padding: 50px !important;
    top: 100px;
    opacity: 0;
    border-radius: 60px 0px 60px !important;
    -webkit-border-radius: 60px 0px 60px !important;
    -moz-border-radius: 60px 0px 60px !important;
    -ms-border-radius: 60px 0px 60px !important;
    -o-border-radius: 60px 0px 60px !important;

    -webkit-transition: top 0.4s, opacity 0.4s;
    -moz-transition: top 0.4s, opacity 0.4s;
    -ms-transition: top 0.4s, opacity 0.4s;
    transition: top 0.4s, opacity 0.4s;
}

.active .blur-content {
    top: 0px;
    opacity: 1;

    -webkit-transition: top 0.4s, opacity 0.4s;
    -moz-transition: top 0.4s, opacity 0.4s;
    -ms-transition: top 0.4s, opacity 0.4s;
    transition: top 0.4s, opacity 0.4s;
}

.blur-close {
    position: absolute;
    display: block;
    width: 28px;
    height: 28px;
    cursor: pointer;
    right: 10px;
    top: 10px;

    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.blur-close:before {
    content: '';
    position: absolute;
    display: block;
    width: 1px;
    height: 100%;
    background: #32362e;
    left: calc((100% - 1px) / 2);
    top: 0px;
}

.blur-close:after {
    content: '';
    position: absolute;
    display: block;
    height: 1px;
    width: 100%;
    background: #32362e;
    top: calc((100% - 1px) / 2);
    left: 0px;
}

.blur-content .psi-item-img {
    width: 250px;
    margin-bottom: 25px;
}

.blur-content .psi-item-img img {
    border-radius: 40px 0px 40px !important;
    -webkit-border-radius: 40px 0px 40px !important;
    -moz-border-radius: 40px 0px 40px !important;
    -ms-border-radius: 40px 0px 40px !important;
    -o-border-radius: 40px 0px 40px !important;
}

.blur-content .psi-item-title {
    font-size: 32px;
    line-height: 33px;
    margin-bottom: 20px;
}

.blur-content .psi-item-desc {
    font-size: 14px;
    line-height: 24px;
}

.blur-content .psi-item-desc ul {
    padding-left: 18px;
    margin: 0px;
}



.header-menu-switch {
    display: none;
}


.footer-container {
    position: relative;
    display: block;
    width: 100%;
    background: #f2f2f2;
}

.footer-top {
    /* position: relative;
    display: block;
    width: calc(100% - (16px * 2));
    max-width: 1408px;
    margin: 0px auto;
    padding: 50px 0px;
    border-bottom: 2px solid rgba(31, 31, 31, 0.5);
    font-size: 0px;
    text-align: left; */

    position: relative;
    display: block;
    width: calc((100%) - (16px * 2));
    max-width: calc(1408px + 40px);
    /* margin: 0px 0px 0px 60px; */
    margin: 0px 0px 0px calc((100% - 1408px) / 2);
    padding: 45px 0px 70px;
    font-size: 0px;
    text-align: left;
    padding: 50px 0px;
}

.footer-top:before {
    content: '';
    position: absolute;
    display: block;
    /* width: calc(100vw - (16px * 2)); */
    width: 100%;
    max-width: 1408px;
    bottom: 0px;
    left: 0px;
    height: 1px;
    background: rgba(31, 31, 31, 0.5);
}

.footer-top>* {
    font-size: 16px;
    line-height: 20px;
}

.footer-top-side {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    width: 50%;
}

.footer-top-side.mob {
    display: none;
}

.footer-top-side:last-child {
    font-size: 0px;
}

.footer-top-side:last-child > * {
    font-size: 16px;
    line-height: 20px;
    width: 50%;
    /* padding-left: 16px; */
}

.footer-top-logo {
    position: relative;
    display: inline-block;
    vertical-align: bottom;
    width: 424px;
    margin-right: 0px;
}

.footer-top-follow {
    position: relative;
    display: inline-block;
    vertical-align: middle;
}

.footer-top-follow-top {
    position: relative;
    display: block;
    margin-bottom: 10px;
}

.footer-top-follow-bottom {
    position: relative;
    display: block;
    font-size: 0px;
}

.footer-top-follow-bottom>* {
    font-size: 16px;
}

.footer-top-follow-item {
    position: relative;
    display: inline-block;
    vertical-align: top;
    margin-right: 30px;
    font-size: 0px;
    font-size: 16px;
    line-height: 14px;
}

.footer-top-follow-item:before {
    content: "";
    position: relative;
    display: inline-block;
    vertical-align: top;
    width: 19px;
    height: 19px;
    background-size: contain !important;
    background-position: 50% !important;

    -webkit-transition: background 0.4s;
    -moz-transition: background 0.4s;
    -ms-transition: background 0.4s;
    transition: background 0.4s;
}

.footer-top-follow-item.instagram:before {
    background: url('../../img/front/instagram-icon.png') no-repeat;
}

.footer-top-follow-item.facebook:before {
    background: url('../../img/front/facebook-icon.png') no-repeat;
}

.footer-top-follow-item.linkedin:before {
    background: url('../../img/front/linkedin-icon.png') no-repeat;
}

.footer-top-follow-item.tiktok:before {
    background: url('../../img/front/tiktok-icon.png') no-repeat;
}

.footer-top-follow-item.youtube:before {
    background: url('../../img/front/youtube-icon.png') no-repeat;
}

.footer-top-follow-item.instagram:hover:before {
    background: url('../../img/front/instagram-icon-red.png') no-repeat;

    -webkit-transition: background 0.4s;
    -moz-transition: background 0.4s;
    -ms-transition: background 0.4s;
    transition: background 0.4s;
}

.footer-top-follow-item.facebook:hover:before {
    background: url('../../img/front/facebook-icon-red.png') no-repeat;

    -webkit-transition: background 0.4s;
    -moz-transition: background 0.4s;
    -ms-transition: background 0.4s;
    transition: background 0.4s;
}

.footer-top-follow-item.linkedin:hover:before {
    background: url('../../img/front/linkedin-icon-red.png') no-repeat;

    -webkit-transition: background 0.4s;
    -moz-transition: background 0.4s;
    -ms-transition: background 0.4s;
    transition: background 0.4s;
}

.footer-top-follow-item.tiktok:hover:before {
    background: url('../../img/front/tiktok-icon-red.png') no-repeat;

    -webkit-transition: background 0.4s;
    -moz-transition: background 0.4s;
    -ms-transition: background 0.4s;
    transition: background 0.4s;
}

.footer-top-follow-item.youtube:hover:before {
    background: url('../../img/front/youtube-icon-red.png') no-repeat;

    -webkit-transition: background 0.4s;
    -moz-transition: background 0.4s;
    -ms-transition: background 0.4s;
    transition: background 0.4s;
}


.footer-bottom {
    position: relative;
    display: block;
    width: calc((100%) - (16px * 2));
    max-width: calc(1408px + 40px);
    margin: 0px 0px 0px 60px;
    padding: 45px 0px 70px;
    font-size: 0px;
}

.footer-bottom>* {
    font-size: 14px;
    line-height: 20px;
}

.footer-bottom-side {
    position: relative;
    display: inline-block;
    vertical-align: top;
    text-align: left;
}

.footer-bottom-side.left {
    width: calc(395 / 1536 * 100svw);
}

.footer-bottom-side.right {
    width: calc(100% - (395 / 1536 * 100svw));
    font-size: 0px;
}

.footer-bottom-side.right>* {
    font-size: 14px;
}

.footer-item {
    position: relative;
    display: table;
    line-height: 27px;
    color: #222;

    -webkit-transition: color 0.4s;
    -moz-transition: color 0.4s;
    -ms-transition: color 0.4s;
    transition: color 0.4s;
}

.footer-item:hover {
    color: #ff0000;

    -webkit-transition: color 0.4s;
    -moz-transition: color 0.4s;
    -ms-transition: color 0.4s;
    transition: color 0.4s;
}

.footer-bottom-copy {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    line-height: 27px;
    letter-spacing: 0.4px;
    font-size: 12px !important;
}

.footer-bottom-col {
    position: relative;
    display: inline-block;
    vertical-align: top;
    width: calc(100% / 4);
    padding-right: 16px;
    text-align: left;
}

.footer-bottom-col.mob {
    display: none;
}

.footer-bottom-group {
    position: relative;
    display: block;
    width: 100%;
    margin-bottom: 30px;
}

.footer-bottom-group:last-child {
    margin: 0px;
}


.nav-pop-container {
    position: fixed;
    display: none;
    left: 0px;
    top: 0px;
    width: 100svw;
    height: 100vh;
    z-index: 10;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    padding: 100px 0px 50px;
}

.nav-pop-container.notif {
    display: block;
    align-content: center;
}

.nav-pop-container.notif.error {
    color: #222;
    border: 1px solid #ff0000;
}

.nav-pop-content {
    position: relative;
    display: block;
    width: calc(100% - (24px * 2));
    overflow: visible;
    margin: auto;
    max-width: calc(1097px - (8px * 2));
    background: #fff;
    height: calc(100vh - 150px + (8px * 2));
}

.notif-pop-content {
    position: relative;
    display: block;
    width: calc(100% - (16px * 2));
    margin: auto;
    max-width: 400px;
    background: #fff;
    border-radius: 13px;
    min-height: 150px;
    align-content: center;
    padding: 24px 16px;
    font-size: 16px;
    line-height: 24px;
    text-align: center;
    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.2);
}

.notif .notif-pop-content {
    padding: 35px 24px;
}

.nav-pop-content.custom-height {
    height: auto !important;
}

.nav-pop-content:before {
    content: '';
    position: absolute;
    display: block;
    left: -8px;
    top: -8px;
    width: calc(100% + (8px * 2));
    height: calc(100% + (8px * 2));
    background: #fff;
    border-radius: 12px;
    -webkit-border-radius: 12px;
    -moz-border-radius: 12px;
    -ms-border-radius: 12px;
    -o-border-radius: 12px;
    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.2);
}

.nav-pop-content-type {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    margin: auto;
    overflow-y: auto;
    overflow-x: hidden;
    padding: calc(60px - 16px) 35px;
}

.nav-pop-close {
    position: absolute;
    display: block;
    font-size: 16px;
    right: 15px;
    top: 15px;
    cursor: pointer;
}

/*Scrollbar CSS*/
.nav-pop-content-type::-webkit-scrollbar {
    width: 7px;
    height: 10px;
    padding: 5px 3px;
}

.nav-pop-content-type::-webkit-scrollbar-track {
    background: #fff;
}

.nav-pop-content-type::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 6px;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    -ms-border-radius: 6px;
    -o-border-radius: 6px;
}

.nav-pop-content-type::-webkit-scrollbar-button {
    display: none;
}

.nav-pop-content-type.wa, .nav-pop-content-type.search {
    padding: 65px;
    height: auto;
    overflow: hidden;
    text-align: center;
}

.nav-pop-search-group {
    position: relative;
    display: block;
    width: 100%;
}

.nav-pop-search-group::before {
    content: "\f52a";
    font-family: "bootstrap-icons";
    font-size: 178px;
    line-height: 182px;
    position: absolute;
    display: block;
    left: calc(100% - 147px + 65px);
    top: calc(100% - 150px + 65px);
    color: #e8e8e8;
}

.nav-pop-content-type.wa::before {
    content: "\f618";
    font-family: "bootstrap-icons";
    font-size: 200px;
    line-height: 200px;
    position: absolute;
    display: block;
    right: 65px;
    top: 0px;
    color: #e8e8e8;
}

.nav-pop-text {
    position: relative;
    display: inline-block;
    vertical-align: top;
    width: calc(100% - 224px);
    height: 50px;
    font-size: 16px;
    padding: 25px;
    border: 1px solid #222;
    border-radius: 15px;
    margin-right: 30px;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    -ms-border-radius: 15px;
    -o-border-radius: 15px;
}

.nav-pop-submit {
    position: relative;
    display: inline-block;
    vertical-align: top;
    width: 184px;
    height: 50px;
    padding: 0px;
    font-size: 16px;
    border: 0px;
    background: #ff0000;
    color: #fff;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    -ms-border-radius: 15px;
    -o-border-radius: 15px;
}

.nav-pop-submit-after {
    content: "\f52a";
    font-family: "bootstrap-icons";
    font-size: 23px;
    line-height: 50px;
    position: absolute;
    display: block;
    right: 65px;
    top: 63px;
    color: #222;
}

.nav-pop-group {
    position: relative;
    display: block;
    font-size: 0px;
    padding-bottom: 15px;
    border-bottom: 2px solid #999999;
    margin-bottom: 25px;
}

.nav-pop-group:last-child {
    margin-bottom: 0px;
    padding-bottom: 0px;
    border: 0px;
}

.nav-pop-group > * {
    font-size: 14px;
    line-height: 20px;
    margin-bottom: 25px;
}

.nav-pop-title {
    position: relative;
    display: block;
    width: 100%;
    color: #222;

    -webkit-transition: color 0.2s;
    -moz-transition: color 0.2s;
    -ms-transition: color 0.2s;
    transition: color 0.2s;
}

.nav-pop-title:after {
    content: "\203A";
    position: relative;
    display: inline-block;
    vertical-align: top;
    font-size: 25px;
    line-height: 20px;
    margin-left: 0px;
    top: -3px;
    opacity: 0;

    -webkit-transition: margin 0.3s, opacity 0.3s;
    -moz-transition: margin 0.3s, opacity 0.3s;
    -ms-transition: margin 0.3s, opacity 0.3s;
    transition: margin 0.3s, opacity 0.3s;
}

.nav-pop-title.red {
    color: #ff0000 !important;
}

.nav-pop-title:hover {
    color: #ff0000;

    -webkit-transition: color 0.2s;
    -moz-transition: color 0.2s;
    -ms-transition: color 0.2s;
    transition: color 0.2s;
}

.nav-pop-title.red:after {
    margin-left: 10px !important;
    opacity: 1 !important;
}

.nav-pop-title:hover:after {
    margin-left: 10px;
    opacity: 1;

    -webkit-transition: margin 0.3s, opacity 0.3s;
    -moz-transition: margin 0.3s, opacity 0.3s;
    -ms-transition: margin 0.3s, opacity 0.3s;
    transition: margin 0.3s, opacity 0.3s;
}

.nav-pop-link {
    position: relative;
    display: inline-block;
    vertical-align: top;
    width: calc(100% / 3);
    padding-left: 10px;
    color: #222;

    -webkit-transition: color 0.2s;
    -moz-transition: color 0.2s;
    -ms-transition: color 0.2s;
    transition: color 0.2s;
}

.nav-pop-link:before {
    content: '•';
    position: absolute;
    display: block;
    width: 10px;
    line-height: 20px;
    left: 0px;
    top: 0px;
    font-size: 14px;
}

.nav-pop-link:after {
    content: "\203A";
    position: relative;
    display: inline-block;
    vertical-align: top;
    font-size: 19px;
    line-height: 20px;
    margin-left: 0px;
    top: -2px;
    opacity: 0;

    -webkit-transition: margin 0.3s, opacity 0.3s;
    -moz-transition: margin 0.3s, opacity 0.3s;
    -ms-transition: margin 0.3s, opacity 0.3s;
    transition: margin 0.3s, opacity 0.3s;
}

.nav-pop-link:hover {
    color: #ff0000;

    -webkit-transition: color 0.2s;
    -moz-transition: color 0.2s;
    -ms-transition: color 0.2s;
    transition: color 0.2s;
}

.nav-pop-link:hover:after {
    margin-left: 10px;
    opacity: 1;

    -webkit-transition: margin 0.3s, opacity 0.3s;
    -moz-transition: margin 0.3s, opacity 0.3s;
    -ms-transition: margin 0.3s, opacity 0.3s;
    transition: margin 0.3s, opacity 0.3s;
}

.nav-pop-content.wa {
    font-size: 0;
    text-align: center;
}

.nav-pop-content.wa > * {
    font-size: 14px;
}

.nav-pop-wa-item {
    position: relative;
    display: inline-block;
    vertical-align: top;
    width: 312px;
    margin: 0px 12px;
    height: 72px;
    align-content: center;
    font-size: 0px;
    line-height: 20px;
    border: 1px solid #222;
    color: #222;
    background: #fff;
    border-radius: 12px;
    -webkit-transition: border 0.4s, color 0.4s, background 0.4s;
    -moz-transition: border 0.4s, color 0.4s, background 0.4s;
    -ms-transition: border 0.4s, color 0.4s, background 0.4s;
    transition: border 0.4s, color 0.4s, background 0.4s;
    -webkit-border-radius: 12px;
    -moz-border-radius: 12px;
    -ms-border-radius: 12px;
    -o-border-radius: 12px;
}

.nav-pop-wa-item:hover {
    border: 1px solid #ff0000;
    background: #ff0000;
    color: #fff;

    -webkit-transition: border 0.4s, color 0.4s, background 0.4s;
    -moz-transition: border 0.4s, color 0.4s, background 0.4s;
    -ms-transition: border 0.4s, color 0.4s, background 0.4s;
    transition: border 0.4s, color 0.4s, background 0.4s;
}

.nav-pop-wa-item > * {
    font-size: 14px;
    position: relative;
    display: inline-block;
    vertical-align: middle;
}

.nav-pop-wa-item i {
    font-size: 32px;
    margin-right: 16px;
}

.nav-pop-wa-item span {
    text-align: left;
}




.line80 {
	position: fixed;
	top: 80vh;
	left: 0px;
	width: 0px;
	height: 0px;
}

.line100 {
	position: fixed;
	top: 100vh;
	left: 0px;
	width: 0px;
	height: 0px;
}

.left-anim {
	left: 300px;
	opacity: 0;

    -webkit-transition: 0s left 0.2s, 0s opacity 0.2s;
    -moz-transition: 0s left 0.2s, 0s opacity 0.2s;
    -ms-transition: 0s left 0.2s, 0s opacity 0.2s;
    transition: 0s left 0.2s, 0s opacity 0.2s;
}

.left-anim.animate-active {
    left: 0px;
    opacity: 1;

    -webkit-transition: 1s left 0s, 1s opacity 0s;
    -moz-transition: 1s left 0s, 1s opacity 0s;
    -ms-transition: 1s left 0s, 1s opacity 0s;
    transition: 1s left 0s, 1s opacity 0s;
}

.right-anim {
	right: 300px;
	opacity: 0;

    -webkit-transition: 0s right 0.2s, 0s opacity 0.2s;
    -moz-transition: 0s right 0.2s, 0s opacity 0.2s;
    -ms-transition: 0s right 0.2s, 0s opacity 0.2s;
    transition: 0s right 0.2s, 0s opacity 0.2s;
}

.right-anim.animate-active {
    right: 0px;
    opacity: 1;

    -webkit-transition: 1s right 0s, 1s opacity 0s;
    -moz-transition: 1s right 0s, 1s opacity 0s;
    -ms-transition: 1s right 0s, 1s opacity 0s;
    transition: 1s right 0s, 1s opacity 0s;
}

.top-anim {
	top: 300px;
	opacity: 0;

    -webkit-transition: 0s top 0.2s, 0s opacity 0.2s;
    -moz-transition: 0s top 0.2s, 0s opacity 0.2s;
    -ms-transition: 0s top 0.2s, 0s opacity 0.2s;
    transition: 0s top 0.2s, 0s opacity 0.2s;
}

.top-anim.animate-active {
    top: 0px;
    opacity: 1;

    -webkit-transition: 1s top 0s, 1s opacity 0s;
    -moz-transition: 1s top 0s, 1s opacity 0s;
    -ms-transition: 1s top 0s, 1s opacity 0s;
    transition: 1s top 0s, 1s opacity 0s;
}

.header-menu-anim.animate-active {
    left: 0px;
    opacity: 1;

    -webkit-transition: 1s left 0s, 1s opacity 0s;
    -moz-transition: 1s left 0s, 1s opacity 0s;
    -ms-transition: 1s left 0s, 1s opacity 0s;
    transition: 1s left 0s, 1s opacity 0s;
}

.header-nav-item.animate-active {
    left: 0px;
    opacity: 1;

    -webkit-transition: 1s left 0s, 1s opacity 0s;
    -moz-transition: 1s left 0s, 1s opacity 0s;
    -ms-transition: 1s left 0s, 1s opacity 0s;
    transition: 1s left 0s, 1s opacity 0s;
}

.nav-pop-group > * {
    left: 100px;
    opacity: 0;

    -webkit-transition: 1s left 0s, 1s opacity 0s;
    -moz-transition: 1s left 0s, 1s opacity 0s;
    -ms-transition: 1s left 0s, 1s opacity 0s;
    transition: 1s left 0s, 1s opacity 0s;
}

.nav-pop-group > .active {
    left: 0px;
    opacity: 1;

    -webkit-transition: 1s left 0s, 1s opacity 0s;
    -moz-transition: 1s left 0s, 1s opacity 0s;
    -ms-transition: 1s left 0s, 1s opacity 0s;
    transition: 1s left 0s, 1s opacity 0s;
}

.nav-pop-wa-item {
    left: 100px;
    opacity: 0;

    -webkit-transition: 1s left 0s, 1s opacity 0s;
    -moz-transition: 1s left 0s, 1s opacity 0s;
    -ms-transition: 1s left 0s, 1s opacity 0s;
    transition: 1s left 0s, 1s opacity 0s;
}

.nav-pop-wa-item.active {
    left: 0px;
    opacity: 1;

    -webkit-transition: 1s left 0s, 1s opacity 0s;
    -moz-transition: 1s left 0s, 1s opacity 0s;
    -ms-transition: 1s left 0s, 1s opacity 0s;
    transition: 1s left 0s, 1s opacity 0s;
}

.nav-pop-search-title {
    position: relative;
    display: block;
    width: calc(100% - 224px);
    font-size: 16px;
    line-height: 21px;
    text-align: left;
    padding: 20px 30px 0px;
}

.nav-pop-search-brand {
    position: relative;
    display: block;
    width: calc(100% - 224px);
    font-size: 0px;
    padding: 20px 30px 0px;
    line-height: 21px;
    text-align: left;
}

.nav-pop-search-brand > * {
    font-size: 14px;
}

.nav-pop-search-brand-item {
    position: relative;
    display: inline-block;
    vertical-align: top;
    width: calc(100% / 4);
    font-size: 0px;
    text-align: left;
    margin-bottom: 15px;
}

.nav-pop-search-brand-item > * {
    font-size: 14px;
}
.nav-pop-search-check {
    position: relative;
    display: inline-block;
    vertical-align: top;
    margin-right: 5px;
    width: 21px;
    height: 21px;

    border: 1px solid #222;
    /* border default saat tidak tercentang */
    border-radius: 4px;
    appearance: none;
    /* reset style default */
    -webkit-appearance: none;
    /* Safari */
    cursor: pointer;
}

.nav-pop-search-check:checked {
    background: #ff0000;
    border-color: #ff0000;
    background-image: url("data:image/svg+xml;utf8,<svg fill='white' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'><path d='M20.285 6.709a1 1 0 0 0-1.414-1.418l-9.192 9.192-4.243-4.242a1 1 0 0 0-1.414 1.414l5 5a1 1 0 0 0 1.414 0l10-10Z'/></svg>");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 16px;
    /* perbesar checklist (default 12px → jadi 16px) */
}

.nav-pop-search-label {
    position: relative;
    display: inline-block;
    vertical-align: top;
}

.nav-pop-anim {
    left: 100px;
    opacity: 0;

    -webkit-transition: 1s left 0s, 1s opacity 0s;
    -moz-transition: 1s left 0s, 1s opacity 0s;
    -ms-transition: 1s left 0s, 1s opacity 0s;
    transition: 1s left 0s, 1s opacity 0s;
}

.nav-pop-anim.active {
    left: 0px;
    opacity: 1;

    -webkit-transition: 1s left 0s, 1s opacity 0s;
    -moz-transition: 1s left 0s, 1s opacity 0s;
    -ms-transition: 1s left 0s, 1s opacity 0s;
    transition: 1s left 0s, 1s opacity 0s;
}



.nav-switch {
    width: 30px;
    height: 16px;
    background: transparent !important;
    display: none;
/*
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);

    -webkit-transition: transform 0.4s;
    -moz-transition: transform 0.4s;
    -ms-transition: transform 0.4s;
    transition: transform 0.4s; */
}
/*
.nav-switch.switched {
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);

    -webkit-transition: transform 0.4s;
    -moz-transition: transform 0.4s;
    -ms-transition: transform 0.4s;
    transition: transform 0.4s;
} */

.nav-switch-line {
    position: relative;
    height: 2px;
    width: 100%;
    margin-bottom: 5px;
    background: #222;
    left: 0px;
    top: 0px;
    opacity: 1;

    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);

    -webkit-transition: top 0.4s, opacity 0.4s, transform 0.4s;
    -moz-transition: top 0.4s, opacity 0.4s, transform 0.4s;
    -ms-transition: top 0.4s, opacity 0.4s, transform 0.4s;
    transition: top 0.4s, opacity 0.4s, transform 0.4s;
}

.nav-switch-line.line3 {
    margin-bottom: 0px;
}

.switched .line1 {
    top: 7px;

    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);

    -webkit-transition: top 0.4s, opacity 0.4s, transform 0.4s;
    -moz-transition: top 0.4s, opacity 0.4s, transform 0.4s;
    -ms-transition: top 0.4s, opacity 0.4s, transform 0.4s;
    transition: top 0.4s, opacity 0.4s, transform 0.4s;
}

.switched .line2 {
    top: 0px;
    opacity: 0;

    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);

    -webkit-transition: top 0.4s, opacity 0.4s, transform 0.4s;
    -moz-transition: top 0.4s, opacity 0.4s, transform 0.4s;
    -ms-transition: top 0.4s, opacity 0.4s, transform 0.4s;
    transition: top 0.4s, opacity 0.4s, transform 0.4s;
}

.switched .line3 {
    top: -7px;

    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);

    -webkit-transition: top 0.4s, opacity 0.4s, transform 0.4s;
    -moz-transition: top 0.4s, opacity 0.4s, transform 0.4s;
    -ms-transition: top 0.4s, opacity 0.4s, transform 0.4s;
    transition: top 0.4s, opacity 0.4s, transform 0.4s;
}

.menu-mob-container {
    position: fixed;
    display: none;
    left: 0px;
    top: 0px;
    width: 100svw;
    height: 100vh;
    z-index: 10;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    padding: 100px 0px 50px;
    align-content: center;
}

.menu-mob-container.active {
    display: block;
}

.nav-pop-submit.mob {
    display: none;
}



.pagination {
    font-size: 14px;
    margin: 0px;
    padding: 30px 7px 0px;
}

.active>.page-link,
.page-link.active {
    background: #ff0000 !important;
    color: #fff !important;
    border: 1px solid transparent !important;
}

.page-link {
    cursor: pointer;
    font-size: 14px;
    width: 40px;
    height: 40px;
    align-content: center;
    border-radius: 50% !important;
    margin-right: 10px;
    color: #222;
    background: transparent;
    text-align: center;
    border: 1px solid #d4d4d4 !important;

    -webkit-transition: color 0.4s, background 0.4s, border 0.4s;
    -moz-transition: color 0.4s, background 0.4s, border 0.4s;
    -ms-transition: color 0.4s, background 0.4s, border 0.4s;
    transition: color 0.4s, background 0.4s, border 0.4s;
}

.page-item:first-child {
    margin-left: 0px;
}

.page-item:last-child {
    margin-right: 0px;
}

.page-link:hover {
    background: #ff0000;
    color: #fff;
    border: 1px solid transparent !important;

    -webkit-transition: color 0.4s, background 0.4s, border 0.4s;
    -moz-transition: color 0.4s, background 0.4s, border 0.4s;
    -ms-transition: color 0.4s, background 0.4s, border 0.4s;
    transition: color 0.4s, background 0.4s, border 0.4s;
}

.pagination .bi:before {
    margin-right: 0px;
}


@media (max-width: 1366px) {
    .footer-top {
        max-width: 1408px;
        margin: 0px auto;
    }

    .footer-bottom {
        max-width: 1408px;
        margin: 0px auto;
    }
}

@media (max-width: 1024px) {
    .nav-switch {
        display: inline-block;
    }

    .header-nav-icon-item {
        margin-left: 0px;
    }

    .header-nav-icon-item {
        margin-left: 16px;
    }

    .header-nav-group .header-nav-item {
        display: none;
    }

    .header-nav-item {
        display: table;
        font-size: 28px;
        /* margin: 0px 0px 20px 16px !important; */
        margin: 0px auto 20px !important;
        text-align: center;
    }

    .header-nav-item span {
        font-size: 18px;
    }

    .menu-mob-container .header-nav-item {
        top: 300px;
        opacity: 0;
    }

    .menu-mob-container .header-nav-item.loaded {
        top: 0px;
        opacity: 1;

        -webkit-transition: top 1s, opacity 1s;
        -moz-transition: top 1s, opacity 1s;
        -ms-transition: top 1s, opacity 1s;
        transition: top 1s, opacity 1s;
    }
/*
    .footer-top-side {
        width: 100%;
    } */
/*
    .footer-top-side:first-child {
        margin-bottom: 20px;
    } */

    .footer-top-side:last-child > * {
        display: block;
        width: 100%;
        text-align: right;
    }

    .footer-top-follow {
        margin-bottom: 30px;
    }

    .footer-top-follow-item {
        margin: 0px 0px 0px 30px;
    }
/*
    .footer-bottom-copy {
        text-align: right;
    } */

    .footer-bottom-col {
        width: calc(100% / 2);
        margin-bottom: 30px;
    }

    .nav-pop-content-type.wa,
    .nav-pop-content-type.search {
        padding: 65px 16px;
    }
}

@media (max-width: 768px) {
    .nav-pop-link {
        width: calc(100% / 2);
    }

    .nav-pop-search-title {
        padding: 20px 30px 0px 0px;
        width: 100%;
    }

    .nav-pop-search-brand {
        padding: 20px 30px 0px 0px;
        width: 100%;
    }
}

@media (max-width: 500px) {
    .header-logo {
        width: 220px;
        height: calc(100% - 0px);
        top: 0px;
    }

    .header-nav-group {
        height: calc(100% - 0px);
        top: 0px;
        padding: 0px;
    }

    .header-nav-icon-group {
        top: 0px;
    }

    .header-nav-icon-item {
        margin-left: 8px;
    }

    .footer-top {
        padding: 30px 0px;
    }

    .footer-bottom {
        padding-top: 30px;
    }

    .footer-bottom-col {
        width: 100%;
    }

    .footer-bottom-col.desk {
        display: none;
    }

    .footer-bottom-col.mob {
        display: block;
    }

    .footer-top-logo {
        width: 250px;
        margin: 0px;
        display: table;
    }

    .footer-top-side {
        width: 100%;
    }

    .footer-top-side.desk {
        display: none;
    }

    .footer-top-side.mob {
        display: block;
        /* text-align: center; */
        padding-top: 35px;
        border-top: 1px solid #222;
    }

    .footer-top-side.mob > * {
        text-align: left;
    }

    .footer-top-follow {
        margin-bottom: 0px;
    }

    .footer-top-follow-item {
        margin: 0px 30px 0px 0px;
    }

    .nav-pop-link {
        width: 100%;
    }

    .nav-pop-content {
        width: calc(100% - (24px * 2));
    }

    .nav-pop-content-type {
        padding: calc(60px - 16px) 16px;
    }

    .nav-pop-text {
        display: block;
        width: 100%;
    }

    .nav-pop-submit.desk {
        display: none;
    }

    .nav-pop-submit.mob {
        display: block;
        width: calc(100% - 0px);
    }

    .nav-pop-search-brand-item {
        /* display: block; */
        width: 50%;
    }

    .nav-pop-search-brand {
        margin-bottom: 30px;
        padding: 20px 0px 0px;
    }

    .nav-pop-content-type.search {
        padding: 65px 16px 30px;
        overflow-x: hidden;
        overflow-y: auto;
        height: calc(100vh - 100px - 32px) !important;
    }

    .nav-pop-content-type.wa {
        padding: 65px 16px 30px;
    }

    .nav-pop-wa-item {
        width: 100%;
        margin: 0px auto;
    }

    .nav-pop-content-type.search {
        /* right: 8px; */
    }

    .nav-pop-content-type.wa::before {
        right: 8px;
    }

    .nav-pop-search-group::before {
        left: calc(100% - 147px + 16px);
        top: calc(100% - 150px + 30px);
    }
}