@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
	*/
}

/*Scrollbar CSS*/
::-webkit-scrollbar {
    width: 0px;
    /* width: 6px; */
    height: 0px;
    /* height: 6px; */
}

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

::-webkit-scrollbar-thumb {
    /*background: #88c932;*/
    background: #222;
}

/*font*/
@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-italic';
    src: url('../../fonts/segoeuii.ttf');
}
.ft-segoe-ui-italic {
	font-family: 'segoe-ui-italic';
}

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

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

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


/* Global */
html, body {
	padding: 0px;
	margin: 0px;
}

img {
	max-width: 100%;
}

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

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

a:focus {
	outline: 0;
}

input:focus {
    outline: 0px;
}

.color-orange-creids {
	color: #f7961f;
}

.color-blue-creids {
	color: #222;
}

.color-green {
	color: green;
}

.color-blue {
	color: blue;
}

.color-red {
	color: red;
}

.color-orange {
	color: orange;
}

.bg-orange-creids {
	background: #f7961f;
}

.bg-blue-creids {
	background: #222;
}

.bg-green {
	background: green !important;
}

.bg-blue {
	background: blue !important;
}

.bg-red {
	background: red !important;
}

.bg-orange {
	background: orange !important;
}


.blur-container {
	position: fixed;
	display: block;
	width: 100%;
	height: 100vh;
	left: 0px;
	top: 0px;
	/* background: rgba(255, 255, 255, 0.9); */
	background: rgba(0, 0, 0, 0.8);
	z-index: 200;
}

.blur-container.hiden {
    display: none;
}

.error-msg.hiden {
    display: none;
}

.blur-content {
    position: relative;
	display: block;
	width: calc(100% - 60px);
	max-width: 350px;
	padding: 20px 30px;
	line-height: 24px;
	color: #222;
	font-size: 14px;
	background: #fff;
	text-align: center;
    margin: 0px auto;
    border-radius: 10px;
}

.blur-content.success {
    border: 2px solid green;
}

.blur-content.warning {
    border: 2px solid orange;
}

.blur-content.error {
    border: 2px solid red;
}

.blur-content-icon {
    position: relative;
    display: block;
    font-size: 35px;
    margin-bottom: 10px;
}

.blur-content.success .blur-content-icon {
    color: green;
}

.blur-content.warning .blur-content-icon {
    color: orange;
}

.blur-content.error .blur-content-icon {
    color: red;
}

.blur-close {
	position: absolute;
    display: block;
    right: -45px;
    font-size: 40px;
    top: 0px;
    color: #fff;
    cursor: pointer;
}


/*Pagination*/
.pagination {
	position: relative;
	display: block;
	font-size: 0px;
	padding: 0px;
	text-align: center;
	margin: 0px 0px 110px;
	/* font-family: "roboto"; */
}

.pagination li {
	position: relative;
	display: inline-block;
	vertical-align: top;
	font-size: 19px;
    margin: 0px 4px;
    border-radius: 15px;
    overflow: hidden;
}

.pagination li * {
	position: relative;
	display: block;
	height: 50px;
	width: 50px;
	line-height: 50px;
	background: transparent;
	color: #444344;
	border: 0px !important;
	margin: 0px !important;
	padding: 0px !important;
	outline: 0px !important;

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

.pagination li:hover * {
	background: #c9252d;
	color: #fff;

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

.pagination li.active * {
	background: #c9252d !important;
	color: #fff !important;
}

.page-item:first-child {
	display: none;
}

.page-item:last-child {
	display: none;
}

.page-item[aria-label="« Previous"] {
	font-size: 0px;
}

.page-item[aria-label="Next »"] {
	font-size: 0px;
}

.page-link[aria-label="« Previous"]:parent {
	font-size: 0px;
}

.page-link[aria-label="Next »"]:parent {
	font-size: 0px;
}

/* ----- Master CSS ----- */

.blur-container {
    position: fixed;
    display: block;
    width: 100%;
    height: 100vh;
    left: 0px;
    top: 0px;
    /* background: rgba(255, 255, 255, 0.9); */
    background: rgba(0, 0, 0, 0.8);
    z-index: 200;
}

.blur-container.hiden {
    display: none;
}

.error-msg.hiden {
    display: none;
}

.blur-content {
    position: relative;
    display: block;
    width: calc(100% - 60px);
    max-width: 350px;
    padding: 20px 30px;
    line-height: 24px;
    color: #222;
    font-size: 14px;
    background: #fff;
    text-align: center;
    margin: 0px auto;
    border-radius: 10px;
}

.blur-content.success {
    border: 2px solid green;
}

.blur-content.warning {
    border: 2px solid orange;
}

.blur-content.error {
    border: 2px solid red;
}

.blur-content-icon {
    position: relative;
    display: block;
    font-size: 35px;
    margin-bottom: 10px;
}

.blur-content.success .blur-content-icon {
    color: green;
}

.blur-content.warning .blur-content-icon {
    color: orange;
}

.blur-content.error .blur-content-icon {
    color: red;
}

.blur-close {
    position: absolute;
    display: block;
    right: -45px;
    font-size: 40px;
    top: 0px;
    color: #fff;
    cursor: pointer;
}

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

.line60 {
    position: fixed;
    top: 60vh;
    left: 0px;
    width: 0px;
    height: 0px;
}

.line-text {
    position: fixed;
    display: block;
    top: 0vh;
    left: 0px;
    z-index: 10000;
    font-size: 30px;
}

.top-anim-text {
    position: absolute;
    display: block;
    font-size: 25px;
    left: 0px;
    top: 0px;
}

.window-width {
    position: fixed;
    /* height: 0px; */
    width: 100vw;
    top: 0px;
    left: 0px;
    font-size: 20px;
    color: #fff;
    z-index: 999;
}

.window-height {
    position: fixed;
    /* height: 0px; */
    height: 100vh;
    top: 0px;
    left: 0px;
    font-size: 20px;
    color: #fff;
    z-index: 999;
}

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

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

.container {
	position: relative;
	display: block;
	width: 100%;
	max-width: unset;
	color: #222;
	font-size: 14px;
    padding: 0px;
    overflow: hidden;
}

.header-container {
    position: fixed;
    display: block;
    width: 100%;
    height: 103px;
    z-index: 100;
}

.header-logo {
    position: absolute;
    top: 0px;
    left: 80px;
    display: block;
    height: 100%;
    width: 120px;
    /* background: url('../../img/design/flats-logo.png') no-repeat; */
    /* background: url('../../img/design/svg/flats_logo_purple.svg') no-repeat; */
    background: url('../../img/design/beasiswa_ykde_color_logo.svg') no-repeat;
    background-position: 50% !important;
    background-size: contain !important;
    /* background-size: auto 20px !important; */
}

.active .header-logo {
    /* background: url('../../img/design/flats-logo-white.png') no-repeat; */
    background: url('../../img/design/beasiswa_ykde_white_logo.svg') no-repeat;
}

.header-nav {
    position: absolute;
    display: block;
    right: 80px;
    top: 0px;
    font-size: 0px;
    padding-top: calc((103px - 40px) / 2);
}

.header-nav > * {
    font-size: 11px;
}

.header-nav-item {
    position: relative;
    display: inline-block;
    vertical-align: top;
    border: 1px solid transparent;
    border-radius: 20px;
    height: 40px;
    padding: 0px 24px;
    line-height: 38px;
    margin-left: 15px;
    letter-spacing: 0.5px;
    overflow: hidden;
    cursor: pointer;
}

.active .header-nav-item {
    border: 1px solid #fff !important;
    background: transparent !important;
}

.header-nav-item > span {
    position: relative;
    z-index: 1;
}

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

.header-nav-item.jurnal {
    color: #fff;
    background: #2fe19b;

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

.header-nav-item.jurnal:hover {
    background: #fff;
    color: #2fe19b;

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

.active .header-nav-item.jurnal {
    background: #fff !important;
    color: #2fe19b !important;
}

.header-nav-item.jurnal:after {
    content: '';
    position: relative;
    display: inline-block;
    vertical-align: top;
    width: 28px;
    height: 100%;
    margin-left: 5px;
    background: url('../../img/design/svg/pengumuman_icon.svg') no-repeat;
    background-position: 50% !important;
    background-size: contain !important;

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

.header-nav-item.jurnal:hover:after {
    background: url('../../img/design/svg_2/pengumuman_icon_green.svg') no-repeat;

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

.active .header-nav-item.jurnal:after {
    background: url('../../img/design/svg_2/pengumuman_icon_green.svg') no-repeat;
}

.header-nav-item.pendaftaran {
    color: #fff;
    background: #16a6d3;

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

.header-nav-item.pendaftaran:hover {
    background: #fff;
    color: #16a6d3;

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

.active .header-nav-item.pendaftaran {
    background: #fff !important;
    color: #16a6d3 !important;
}

.header-nav-item.pendaftaran:after {
    content: '';
    position: relative;
    display: inline-block;
    vertical-align: top;
    width: 13px;
    height: 100%;
    margin-left: 5px;
    background: url('../../img/design/svg/pendaftaran_icon_white.svg') no-repeat;
    background-position: 50% !important;
    background-size: contain !important;
}

.header-nav-item.pendaftaran:hover:after {
    background: url('../../img/design/svg_2/pendaftaran_icon_blue.svg') no-repeat;

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

.active .header-nav-item.pendaftaran:after {
    background: url('../../img/design/svg_2/pendaftaran_icon_blue.svg') no-repeat;
}

.header-menu-switch {
    background: #8e87ef;
    width: 40px;
    padding: 13px 0px 13px 9px;
    text-align: left;

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

    -webkit-transition: -webkit-transform 0.6s, background 0.6s;
    -moz-transition: -moz-transform 0.6s, background 0.6s;
    -ms-transition: -ms-transform 0.6s, background 0.6s;
    transition: transform 0.6s, background 0.6s;
}

.header-menu-switch:hover {
    background: #fff;

    -webkit-transition: -webkit-transform 0.6s, background 0.6s;
    -moz-transition: -moz-transform 0.6s, background 0.6s;
    -ms-transition: -ms-transform 0.6s, background 0.6s;
    transition: transform 0.6s, background 0.6s;
}

.header-menu-switch.active {
    background: #fff !important;

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

    -webkit-transition: -webkit-transform 0.6s, background 0.6s;
    -moz-transition: -moz-transform 0.6s, background 0.6s;
    -ms-transition: -ms-transform 0.6s, background 0.6s;
    transition: transform 0.6s, background 0.6s;
}

.header-line {
    position: relative;
    display: block;
    width: 20px;
    height: 1px;
    background: #fff;
    margin-bottom: 5px;

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

.header-menu-switch:hover .header-line {
    background: #8e87ef;
}

.header-menu-switch .header-line.line1 {
    top: 0px;

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

    -webkit-transition: -webkit-transform 0.6s, top 0.6s, background 0.6s;
    -moz-transition: -moz-transform 0.6s, top 0.6s, background 0.6s;
    -ms-transition: -ms-transform 0.6s, top 0.6s, background 0.6s;
    transition: transform 0.6s, top 0.6s, background 0.6s;
}

.header-menu-switch.active .header-line.line1 {
    background: #8e87ef !important;
    top: 6px;

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

    -webkit-transition: -webkit-transform 0.6s, top 0.6s, background 0.6s;
    -moz-transition: -moz-transform 0.6s, top 0.6s, background 0.6s;
    -ms-transition: -ms-transform 0.6s, top 0.6s, background 0.6s;
    transition: transform 0.6s, top 0.6s, background 0.6s;
}

.header-menu-switch .header-line.line2 {
    opacity: 1;

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

.header-menu-switch.active .header-line.line2 {
    background: #8e87ef !important;
    opacity: 0;

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

.header-line.line3 {
    margin-bottom: 0px;
    width: 10px;
    top: 0px;

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

    -webkit-transition: width 0.6s, -webkit-transform 0.6s, top 0.6s, background 0.6s;
    -moz-transition: width 0.6s, -moz-transform 0.6s, top 0.6s, background 0.6s;
    -ms-transition: width 0.6s, -ms-transform 0.6s, top 0.6s, background 0.6s;
    transition: width 0.6s, transform 0.6s, top 0.6s, background 0.6s;
}

.header-menu-switch:hover .header-line.line3 {
    width: 20px;

    -webkit-transition: width 0.6s, -webkit-transform 0.6s, top 0.6s, background 0.6s;
    -moz-transition: width 0.6s, -moz-transform 0.6s, top 0.6s, background 0.6s;
    -ms-transition: width 0.6s, -ms-transform 0.6s, top 0.6s, background 0.6s;
    transition: width 0.6s, transform 0.6s, top 0.6s, background 0.6s;
}

.header-menu-switch.active .header-line.line3 {
    background: #8e87ef !important;
    width: 20px !important;
    top: -6px;

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

    -webkit-transition: width 0.6s, -webkit-transform 0.6s, top 0.6s, background 0.6s;
    -moz-transition: width 0.6s, -moz-transform 0.6s, top 0.6s, background 0.6s;
    -ms-transition: width 0.6s, -ms-transform 0.6s, top 0.6s, background 0.6s;
    transition: width 0.6s, transform 0.6s, top 0.6s, background 0.6s;
}


.header-container.headroom--unpinned {
    top: -200px;
    opacity: 0;

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

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

.header-container.headroom--pinned {
    top: 0px;
    opacity: 1;
    /* background: #fff; */
    background: transparent;

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

.header-container.headroom--pinned.headroom--top {
    background: transparent;

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


.content {
    position: relative;
    display: block;
    color: #222;
    /* overflow: hidden; */
}

.footer-container {
    position: relative;
    display: block;
    background: #fff;
    /* border-top: 1px solid #819aec; */
    padding: 40px 80px;
    text-align: left;
    font-size: 0px;
    color: #222;
}

.footer-container:before {
    content: '';
    height: 2px;
    width: 100%;
    position: absolute;
    left: 0px;
    top: 0px;
    background: linear-gradient(90deg, #8e87ef, #16a6d3, #2fe19b);
}

.footer-container  > * {
    font-size: 12px;
}

.footer-content-group {
    position: relative;
    display: inline-block;
    vertical-align: top;
    font-size: 0px;
}

.footer-content-group  > * {
    font-size: 14px;
}

.footer-content-link {
    line-height: 20px;
}

.footer-content {
    position: relative;
    display: inline-block;
    vertical-align: top;
    margin-right: calc((100% - (135px + 1px + 115px + 100px + 102px + 195px + 245px)) / 7);
    text-align: left;
    padding: 40px 0px;
}

.footer-content.content1 {
    width: 135px;
}

.footer-content.content-line {
    position: absolute;
    display: block;
    width: 1px;
    height: calc(100% - 80px);
    background: rgba(0, 0, 0, 0.2);
    /* left: calc(80px + 135px + calc((100% - (135px + 1px + 115px + 100px + 102px + 195px + 245px)) / 7)); */
    left: calc(80px + 135px + calc((100% - (135px + 1px + 115px + 100px + 102px + 195px + 245px)) / 7) - 23px);
    top: 40px;
    margin: 0px;
}

.footer-content.content2 {
    width: 1px;
}

.footer-content.content3 {
    width: 115px;
}

.footer-content.content4 {
    width: 100px;
}

.footer-content.content5 {
    width: 102px;
}

.footer-content.content6 {
    width: 195px;
}

.footer-content.content7 {
    width: 245px;
    margin-right: 0px;
}

.footer-copy {
    position: relative;
    display: block;
    margin-bottom: 25px;
}

.footer-socmed-group {
    position: relative;
    display: block;
    font-size: 0px;
}

.footer-socmed-group > * {
    font-size: 14px;
}

.footer-socmed {
    position: relative;
    display: inline-block;
    vertical-align: top;
    margin-right: 40px;
}

.footer-socmed:last-child {
    margin-right: 0px;
}

.footer-socmed.instagram {
    width: 19px;
    height: 19px;
    background: url('../../img/design/svg/instagram_icon_color.svg') no-repeat;
    background-position: 50% !important;
    background-size: contain !important;
}

.footer-socmed.facebook {
    width: 10px;
    height: 19px;
    background: url('../../img/design/svg/facebook_icon_blue.svg') no-repeat;
    background-position: 50% !important;
    background-size: contain !important;
}

.footer-socmed.youtube {
    width: 22px;
    height: 19px;
    background: url('../../img/design/svg/youtube_icon_red.svg') no-repeat;
    background-position: 50% !important;
    background-size: contain !important;
}

.footer-content-link {
    position: relative;
    display: block;
    line-height: 23px;
    letter-spacing: 0.6px;
    color: #222;

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

a.footer-content-link:hover {
    color: #8e87ef;

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

.footer-content-link.dot {
    padding-left: 10px;
}

.footer-content-link.dot:before {
    content: '•';
    position: absolute;
    display: block;
    left: 0px;
    top: 0px;
}

.footer-content-link.note {
    letter-spacing: 0.3px;
    font-size: 12px;
    padding-left: 10px;
    line-height: 19px;
    padding-top: 4px;
}

.footer-content-link.note:before {
    content: '*';
    position: absolute;
    display: block;
    left: 0px;
    top: 4px;
}

.wa {
    position: fixed;
    display: block;
    width: 80px;
    height: 80px;
    background: url('../../img/design/hubungi-kami-icon.png') no-repeat;
    background-position: 50% !important;
    background-size: contain !important;
    right: 80px;
    bottom: 30px;
    z-index: 12;
}

.menu-container {
    position: fixed;
    display: none;
    /* display: block; */
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    top: 0px;
    left: 0px;
    background-image: linear-gradient(90deg, #8e87ef, #16a6d3, #2fe19b);
    z-index: 10;
    color: #fff;
    text-align: center;
}

.menu-content {
    position: relative;
    display: block;
    width: 100%;
    font-size: 0px;
}

.menu-content > * {
    font-size: 16px;
}

.menu-group {
    position: relative;
    display: inline-block;
    vertical-align: top;
    text-align: left;
    width: calc(50% - 30px);
    max-width: 435px;
}

.menu-group ul {
    padding-left: 24px;
    margin: 0px;
}

.menu-group:first-child {
    border-right: 1px solid #fff;
}

.menu-group:last-child {
    border-left: 1px solid #fff;
    left: -1px;
}

.menu-group.right {
    /* padding: 40px 0px 0px 120px; */
    padding: 0px 0px 0px 120px;
}

.nav-list {
    position: relative;
    display: block;
    line-height: 39px;
    font-size: 24px;
    margin-bottom: 20px;
}

.nav-list:last-child {
    margin-bottom: 0px;
}

.menu-link {
    position: relative;
    display: table;
    letter-spacing: 1px;
    border-bottom: 1px solid transparent;

    -webkit-transition: border 0.6s;
    -moz-transition: border 0.6s;
    -ms-transition: border 0.6s;
    transition: border 0.6s;
}

a.menu-link:hover {
    border-bottom: 1px solid #fff;

    -webkit-transition: border 0.6s;
    -moz-transition: border 0.6s;
    -ms-transition: border 0.6s;
    transition: border 0.6s;
}

.menu-group-desc {
    position: relative;
    display: block;
    line-height: 30px;
    font-size: 16px;
    letter-spacing: 0.5px;
    margin-bottom: 31px;
}

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

.menu-group-desc .title {
    position: relative;
    display: block;
}

.menu-group-desc .note {
    position: relative;
    display: block;
    font-size: 14px;
    line-height: 24px;
    padding-top: 2px;
}

.menu-socmed-group {
    position: relative;
    display: block;
    font-size: 0px;
    padding-top: 4px;
}

.menu-socmed-group > * {
    font-size: 16px;
}

.menu-socmed {
    position: relative;
    display: inline-block;
    vertical-align: top;
    margin-right: 40px;
}

.menu-socmed:last-child {
    margin-right: 0px;
}

.menu-socmed.instagram {
    width: 19px;
    height: 19px;
    background: url('../../img/design/svg/instagram_icon_white.svg') no-repeat;
    background-size: contain !important;
    background-position: 50% !important;
}

.menu-socmed.facebook {
    width: 10px;
    height: 19px;
    background: url('../../img/design/svg/facebook_icon_white.svg') no-repeat;
    background-size: contain !important;
    background-position: 50% !important;
}

.menu-socmed.youtube {
    width: 22px;
    height: 19px;
    background: url('../../img/design/svg/youtube_icon_white.svg') no-repeat;
    background-size: contain !important;
    background-position: 50% !important;
}

.top-anim {
    top: 150px;
    opacity: 0;
}

.fade-anim {
    opacity: 0;
}

/* Desktops and laptops */
@media screen and (max-width : 1366px) {
    .header-logo {
        left: 50px;
    }

    .header-nav {
        right: 50px;
    }

    .footer-container {
        padding: 30px 50px;
    }

    .footer-content {
        padding: 30px 0px;
        margin-right: calc((100% - (100px + 1px + 115px + 100px + 102px + 195px + 245px)) / 7);
    }

    .footer-content.content-line {
        height: calc(100% - 60px);
        top: 30px;
        left: calc(80px + 135px + calc((100% - (135px + 1px + 115px + 100px + 102px + 195px + 245px)) / 7) - 40px);
    }

    .nav-list {
        font-size: 20px;
    }

    .nav-list {
        margin-bottom: 20px;
        line-height: 32px;
    }

    .menu-group.right {
        padding: 30px 0px 0px 120px;
    }

    .menu-group-desc {
        font-size: 14px;
        line-height: 25px;
        margin-bottom: 30px;
    }
}

@media screen and (max-width : 1200px) {
    .footer-content {
        padding: 30px 0px;
        /* margin-right: calc((100% - (100px + 1px + 115px + 100px + 102px + 12.69% + 15.95%)) / 7); */
        margin-right: calc((100% - (100px + 1px + 115px + 100px + 102px + 15% + 18%)) / 7);
    }

    .footer-content.content6 {
        /* width: 12.69%; */
        width: 15%;
    }

    .footer-content.content7 {
        /* width: 15.95%; */
        width: 18%;
    }

    .footer-content.content-line {
        left: calc(80px + 135px + calc((100% - (100px + 1px + 115px + 100px + 102px + 15% + 18%)) / 7) - 40px);
    }
}

/* Tablet */
@media screen and (max-width: 1024px) {
    .header-logo {
        left: 30px;
    }

    .header-nav {
        right: 30px;
    }

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

    .footer-content.content1 {
        display: block;
        width: 100%;
    }

    .footer-content.content-line {
        position: relative;
        display: block;
        width: 100%;
        height: 1px;
        left: 0px;
        top: 0px;
        margin: 0px auto;
        padding: 0px;
    }

    .footer-content.content2 {
        margin: 0px;
        width: 0px;
    }

    .footer-content.content6 {
        width: 19.4%;
    }

    .footer-content.content7 {
        width: 23.92%;
    }

    .footer-content {
        margin-right: calc((100% - (115px + 100px + 102px + 19.4% + 23.92%)) / 4);
    }
}

/* Mobile */
@media screen and (max-width: 768px) {
    .footer-content.content5 {
        margin-right: 0px;
    }

    .footer-content.content6 {
        width: calc(50% - 3.3%);
        margin-right: 6.6%;
    }

    .footer-content.content7 {
        width: calc(50% - 3.3%);
    }

    .footer-content {
        margin-right: calc((100% - (115px + 100px + 102px)) / 2);
    }

    .menu-group {
        display: block;
        width: calc(100% - 60px);
        max-width: none;
        margin: 0px auto;
        font-size: 0px;
    }

    .menu-group:first-child {
        border: 0px;
        border-bottom: 1px solid #fff;
        padding: 0px;
    }

    .menu-group:last-child {
        border: 0px;
        padding: 40px 0px 0px 0px;
    }

    .menu-group > * {
        font-size: 18px;
    }

    .menu-group ul {
        padding-left: 20px;
    }

    .nav-list {
        display: inline-block;
        vertical-align: top;
        margin: 0px 15px 30px;
        width: calc((100% - 60px) / 3);
    }

    .nav-list:nth-child(1), .nav-list:nth-child(4) {
        margin-left: 0px;
    }

    .nav-list:nth-child(3), .nav-list:nth-child(5) {
        margin-right: 0px;
    }

    .menu-group-desc {
        display: inline-block;
        vertical-align: top;
        width: calc(50% - 15px);
        font-size: 18px;
        line-height: 30px;
    }

    .menu-group-desc:first-child {
        margin-right: 30px;
    }
}

@media screen and (max-width : 500px) {
    .wa {
        width: 70px;
        height: 70px;
    }

    .header-container {
        /* height: 110px; */
    }

    .header-logo {
        left: 20px;
        /* width: 80px; */
        width: 18.86vw;

        /* left: 0px; */
        /* height: 50%; */
        /* position: relative; */
        /* display: block; */
        /* margin: 0px auto 5px; */
        /* top: 5px; */
    }

    .header-nav {
        right: 20px;
        padding-top: calc((103px - 34px) / 2);
/*
        right: 0px;
        width: 100%;
        position: relative;
        display: block;
        height: 50%;
        padding: 0px;
        text-align: center; */
    }

    .header-nav-item {
        /* margin-left: 10px; */
        margin-left: 1.8vw;
        font-size: 8px;
        padding: 0px 10px;
        height: 34px;
        border-radius: 17px;
        line-height: 32px;

        /* margin: 0px 0px 0px calc((100% - 167px - 149px - 35px) / 4);
        height: 35px;
        line-height: 35px;
        border-radius: 18px;
        padding: 0px 20px; */
    }

    .header-nav-item.jurnal {
        /* width: 28.77vw !important; */
    }

    .header-nav-item.pendaftaran {
        /* width: 25.47vw !important; */
    }

    .header-nav-item.jurnal:after {
        width: 22px;
        margin-left: 2px;
    }

    .header-nav-item.pendaftaran:after {
        width: 10px;
        margin-left: 2px;
    }

    .header-menu-switch {
        width: 34px;
        height: 34px;
        padding: calc((34px - 11px) / 2) 0px 0px calc((34px - 18px) / 2);
    }

    .header-line {
        width: 16px;
        margin-bottom: 4px;
    }

    .header-menu-switch:hover .header-line.line3 {
        width: 16px;
    }

    .header-menu-switch.active .header-line.line1 {
        top: 3px;
    }

    .header-menu-switch.active .header-line.line3 {
        width: 16px !important;
        top: -7px;
    }

    .footer-container {
        padding: 50px 20px 150px;
    }

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

    .footer-content.content1 {
        position: absolute;
        bottom: 30px;
        padding-top: 30px;
        left: 20px;
        width: calc(100% - 40px);
    }

    .footer-content.content-line {
        position: absolute;
        bottom: 150px;
        top: auto;
        left: 20px;
        width: calc(100vw - 40px);
    }

    .menu-content {
        padding-top: 50px;
    }

    .menu-group {
        width: calc(100% - 40px);
    }

    .menu-group:first-child {
        /* padding-bottom: 20px; */
        padding-bottom: 50px;
        border-bottom: 0px;
    }

    .menu-group:last-child {
        padding: 0px;
    }

    .menu-group:last-child .menu-group-desc {
        display: none;
        /* padding-top: 20px; */
    }

    .nav-list {
        width: 100%;
        margin: 0px;
        /* font-size: 16px; */
        font-size: 20px;
        margin-bottom: 15px;
    }

    .menu-group-desc {
        width: 100%;
        font-size: 14px;
        line-height: 24px;
        margin: 0px 0px 20px;
    }

    .menu-group-desc .note br {
        display: none;
    }

    .menu-group-desc.alamat br {
        display: none;
    }

    .wa {
        right: 20px;
    }
}
