b*,
::before
::after,
hr,
hr::before,
hr::after,
input[type="search"],
input[type="search"]::before,
input[type="search"]::after {
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

::selection {
	background: #CEEBF8;
}

html,
body {
	font-family: 'Montserrat', sans-serif;
	margin: 0;
	padding: 0;
	-webkit-font-smoothing: antialiased;
	-webkit-text-size-adjust: 100%;
	/*scroll-behavior: smooth;*/
}
header
{
	display: none;
}

body {
	font-size: 16px;
	line-height: 24px;
	letter-spacing: 1px;
	/*background-color: #fcf6e6;*/
	background-color: #ffffff;
	color: #444444;
	font-weight: 400;
	width: 100%;
	height: 100%;
	transition: all 0.3s;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
	margin: 0;
}
/*font-family: 'Lora', serif;
font-family: 'Poppins', sans-serif;
font-family: 'Smythe', cursive;*/
h1 {
	font-family: 'Lora', serif;
	font-size: 50px;
}
h2 {
	font-family: 'Lora', serif;
	font-size: 40px;
}
h3 {
	font-family: 'Poppins', sans-serif;
	font-size: 29px;
}
h4 {
	font-family: 'Poppins', sans-serif;
	font-size: 22px;
}
h5 {
	font-family: 'Poppins', sans-serif;
	font-size: 16px;
}
h6 {
	font-family: 'Poppins', sans-serif;
	font-size: 12px;
}
p {
	font-family: 'Poppins', sans-serif;
	font-size: 20px;
}
p:last-child {
	margin-bottom: 0px;
}

ul {
	padding: 0px;
	margin-left: 15px;
}

a {
	font-size: 18px;
	color: #006d68;
	text-decoration: none;
	-webkit-transition: all 0.5s;
	-moz-transition: all 0.5s;
	transition: all 0.5s;
	-webkit-font-smoothing: antialiased;
}

a:focus,
a:hover {
	color: #006d68;
	text-decoration: none;
}

img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

hr {
	margin-top: 20px;
	margin-bottom: 20px;
	border: 0;
	border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.mb0 {
	margin-bottom: 0px !important;
}

.mb5 {
	margin-bottom: 5px !important;
}

.mb10 {
	margin-bottom: 10px !important;
}

.mb15 {
	margin-bottom: 15px !important;
}

.mb20 {
	margin-bottom: 20px !important;
}

.mb30 {
	margin-bottom: 30px !important;
}

.mb40 {
	margin-bottom: 40px !important;
}

.mb60 {
	margin-bottom: 60px !important;
}

.mb80 {
	margin-bottom: 80px !important;
}

.mb100 {
	margin-bottom: 100px !important;
}

.mt0 {
	margin-top: 0px !important;
}

.mt5 {
	margin-top: 5px;
}

.mt10 {
	margin-top: 10px;
}

.mt20 {
	margin-top: 20px;
}

.mt30 {
	margin-top: 30px;
}

.mt40 {
	margin-top: 40px;
}

.mt60 {
	margin-top: 60px;
}

.mt80 {
	margin-top: 80px;
}

.mt100 {
	margin-top: 100px;
}

.mt120 {
	margin-top: 120px;
}

.mt140 {
	margin-top: 140px;
}
.btn-transition {
	display: inline-block;
	position: relative;
	min-width: 200px;
	padding: 15px 20px;
	border-radius: 20px;
	background-color: #006d68;
	border: 0;
	color: #fff;
	font-size: 20px;
	line-height: 24px;
	font-weight: 400;
	letter-spacing: 0.5px;
	text-decoration: none;
	text-align: center;
}
.btn-transition span {
	opacity: 0;
	display: inline-block;
	color: #fff !important;
	font-size: 20px;
	line-height: 24px;
	font-weight: 400;
	letter-spacing: -4.5px;
	transition: 0.25s cubic-bezier(0.5, -1, 0.5, 2);
	transform: translate(0, -20px);
}
.btn-transition:before {
	position: absolute;
	left: 0;
	content: attr(data-text);
	opacity: 1;
	transform: translate(0, 0px);
	transition: 0.25s cubic-bezier(0.5, -1, 0.5, 2);
	width: 100%;
	color: #fff;
	font-size: 20px;
	line-height: 24px;
	font-weight: 400;
	letter-spacing: 0.5px;
}
.btn-transition:hover:before, .btn-transition:focus:before {
	opacity: 0;
	transform: translate(0, 20px);
}
.btn-transition:hover span, .btn-transition:focus span {
	opacity: 1;
	transform: translate(0, 0);
}
.btn-transition:hover span:nth-child(1), .btn-transition:focus span:nth-child(1) {
	transition-delay: 0.025s;
}
.btn-transition:hover span:nth-child(2), .btn-transition:focus span:nth-child(2) {
	transition-delay: 0.05s;
}
.btn-transition:hover span:nth-child(3), .btn-transition:focus span:nth-child(3) {
	transition-delay: 0.075s;
}
.btn-transition:hover span:nth-child(4), .btn-transition:focus span:nth-child(4) {
	transition-delay: 0.1s;
}
.btn-transition:hover span:nth-child(5), .btn-transition:focus span:nth-child(5) {
	transition-delay: 0.125s;
}
.btn-transition:hover span:nth-child(6), .btn-transition:focus span:nth-child(6) {
	transition-delay: 0.15s;
}
.btn-transition:hover span:nth-child(7), .btn-transition:focus span:nth-child(6) {
	transition-delay: 0.175s;
}
.btn-transition:hover span:nth-child(8), .btn-transition:focus span:nth-child(6) {
	transition-delay: 0.2s;
}
.btn-transition:hover span:nth-child(9), .btn-transition:focus span:nth-child(6) {
	transition-delay: 0.225s;
}
.btn-transition:hover span:nth-child(10), .btn-transition:focus span:nth-child(6) {
	transition-delay: 0.25s;
}
.btn-transition:hover span:nth-child(11), .btn-transition:focus span:nth-child(6) {
	transition-delay: 0.275s;
}
.btn-utama {
	display: inline-block;
	overflow: hidden;
	min-width: auto;
	text-align: center;
	padding: 15px 20px;
	border: 2px solid transparent;
	border-radius: 30px;
	background-color: #006d68;
	color: #fff;
	font-size: 18px;
	font-weight: 400;
	line-height: 32px;
	letter-spacing: 0.5px;
	text-transform: capitalize;
	text-decoration: none;
	-webkit-transition: all 500ms ease;
	transition: all 500ms ease;
}
.btn-utama.white-button
{
	background-color: #fff;
	color: #006d68;
}
.btn-utama:hover {
	background-color: #fff;
	color: #006d68;
	border: 2px solid #006d68;
	border-radius: 30px;
	box-shadow: -2px 6px 18px 2px hsl(0deg 0% 0% / 25%);
}
.btn-utama:active,
.btn-utama:focus,
.btn-kedua:active,
.btn-kedua:focus
{
	color: #fff;
}
.btn-utama.black-button
{
	background-color: #444444;
}
.btn-background
{
	background-repeat: no-repeat;
	background-image: url("../images/btn-background.png");
	background-size: 160px;
	background-position: center;
	display: inline-block;
	text-align: center;
	padding: 20px 30px;
	border: 0;
	border-radius: 0;
	background-color: transparent;
	/*color: #d8a55b;*/
	color: #644001;
	font-size: 20px;
	line-height: 24px;
	font-weight: 400;
	letter-spacing: -0.02em;
	text-transform: capitalize;
	text-decoration: none;
	-webkit-transition: all 500ms ease;
	transition: all 500ms ease;
}
.btn-background span
{
	position: relative;
	left: -5px;
}
.btn-kedua
{
	min-width: 200px;
	cursor: pointer;
	background: transparent;
	color: #fff;
	position: relative;
	display: inline-block;
	width: auto;
	padding: 15px 20px;
	border-radius: 30px;
	font-size: 18px;
	line-height: 24px;
	font-weight: 400;
	letter-spacing: 0.5px;
	text-decoration: none;
	text-transform: capitalize;
	text-align: center;
	border: 1px solid #fff;
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	transition: all 0.3s;
}
.btn-kedua:hover
{
	color: #fff;
	box-shadow: -2px 6px 18px 2px hsl(0deg 0% 0% / 25%);
}

.btn-pols {
	cursor: pointer;
	background: transparent;
	color: #006d68;
	position: relative;
	display: inline-block;
	width: auto;
	text-align: center;
	text-decoration: none;
	font-size: 18px;
	font-weight: normal;
	line-height: 18px;
	letter-spacing: 1.2px;
	padding: 15px 25px;
	border-radius: 20px;
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	transition: all 0.3s;
}

.button-hover {
	position: relative;
	height: 56px;
	-moz-transition: ease 0.35s all;
	-o-transition: ease 0.35s all;
	-webkit-transition: ease 0.35s all;
	transition: ease 0.35s all;
}

.button-hover:hover {
	line-height: 9em;
}

.button-hover:before {
	content: attr(data-text);
	position: absolute;
	left: 0;
	top: -3.15em;
	width: 100%;
	text-align: center;
}
/*  ==========================  FORM FIELD  ==========================*/

.form-control:focus,
.has-warning .form-control:focus,
.has-error .form-control:focus,
.has-success .form-control:focus {
	outline: 0;
	-webkit-box-shadow: none;
	box-shadow: none;
}

.form-control[disabled] {
	border: 0;
	background-color: #dedede;
}

.form-control[disabled]:hover {
	border: 0;
}

.form-group {
	position: relative;
	margin-bottom: 20px;
}

.has-error .form-control {
	box-shadow: none;
}

input.form-control {
	position: relative;
	height: 50px;
	padding: 0 5px;
	background-color: transparent;
	border: 0;
	border-radius: 0;
	border-bottom: 2px solid rgba(0, 0, 0, 0.1);
	box-shadow: rgba(0, 0, 0, 0) 0px 2px 4px;
	text-transform: none;
	font-size: 16px;
	line-height: 24px;
	letter-spacing: 1px;
	font-weight: 400;
	transition: all 0.3s;
}

input.form-control::placeholder,
textarea.form-control::placeholder {
	color: rgba(0, 0, 0, 0.20);
}

input.form-control:hover,
input.form-control:focus,
input.form-control:active {
	border-color: #006d68;
}

select.form-control {
	/*color: #444444;*/
	height: 50px;
	font-size: 16px;
	line-height: 24px;
	letter-spacing: 1px;
	font-weight: 400;
	padding: 0 30px 0 15px;
	background-color: transparent;
	border: 0;
	border-bottom: 2px solid rgba(0, 0, 0, 0.1);
	border-radius: 0;
	-webkit-appearance: none;
	-moz-appearance: none;
	background-position: 95% 50%;
	background-repeat: no-repeat;
	background-image: url("../images/arrow-right-black.svg");
	background-size: 24px;
	box-shadow: none;
	cursor: pointer;
}

select.form-control:hover,
select.form-control:focus,
select.form-control:active {
	border-color: #006d68;
}

.select2-container--default .select2-selection--single {
	height: 40px !important;
	border-bottom: 2px solid rgba(0, 0, 0, 0.1) !important;
	border: 0 !important;
	border-radius: 0 !important;
	border-bottom: 2px solid rgba(0, 0, 0, 0.1) !important;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
	color: #fdcc39 !important;
	font-size: 16px !important;
}

.select2-container .select2-selection--single .select2-selection__rendered {
	padding: 5px !important;
}

textarea.form-control {
	background-color: transparent;
	min-height: 85px;
	position: relative;
	display: block;
	width: 100%;
	padding: 5px;
	text-transform: none;
	font-size: 18px;
	line-height: 24px;
	letter-spacing: 1px;
	font-weight: 400;
	border: 0;
	border-radius: 0;
	border-bottom: 2px solid rgba(0, 0, 0, 0.1);
	box-shadow: none;
	/*resize: none;*/
}

textarea.form-control:hover,
textarea.form-control:focus,
textarea.form-control:active {
	border-bottom: 2px solid #006d68;
}

label.control-label {
	position: relative;
	display: inline-block;
	font-size: 20px;
	color: #444444;
	letter-spacing: 1px;
	font-weight: 700;
	border-radius: 0;
	margin-bottom: 5px;
}
.modal-content {
	border-radius: 20px;
}

.modal-footer {
	border: 0;
}

.modal-header .wskt-category {
	display: inline-block;
	position: relative;
}

.modal-header .close {
	position: absolute;
	top: 15px;
	right: 10px;
	border: 1px solid #000;
	border-radius: 50%;
	margin-top: -4px;
	margin-right: 10px;
	font-size: 30px;
	width: 35px;
	height: 35px;
	transition: all 0.3s;
}

.modal-header .close span {
	position: relative;
	top: -3px;
}

#select-dropdown {
	margin-top: 5px;
	background: transparent;
	padding-bottom: 5px;
	border-bottom: 1px solid rgba(0, 0, 0, 0.25);
	outline: 0;
	display: block;
	text-align: left;
	font-size: 16px;
	width: 100%;
	cursor: pointer;
	color: #5A5957;
	text-decoration: none;
	transition: all 550ms cubic-bezier(0.19, 1, 0.22, 1);
	opacity: 1;
	-webkit-transform-origin: right top;
	transform-origin: right top;
}

#select-dropdown.open {
	opacity: 0;
}

.button-group {
	position: relative;
	width: 215px;
}

.button-group .marka {
	position: absolute;
	right: 8px;
	top: 10px;
	z-index: 9999;
	cursor: pointer;
}

.button-group .marka i {
	background: grey !important;
}

.marka-icon-times {
	border: 1px solid grey;
	border-radius: 50%;
	top: 5px !important;
	right: 5px !important;
}

#dropdown-menu {
	position: absolute;
	top: -1em;
	right: 0;
	left: 0;
	margin: 1em auto;
	padding: 15px 20px;
	width: 100%;
	list-style: none;
	text-align: left;
	border-radius: 5px;
	background: #fff;
	transition: all 350ms cubic-bezier(0.19, 1, 0.22, 1);
	-webkit-transform: scale(0);
	transform: scale(0);
	-webkit-transform-origin: right top;
	transform-origin: right top;
	-webkit-transition: box-shadow .5s ease-out;
	box-shadow: 0 8px 18px 0 rgba(0, 0, 0, .18);
}

#dropdown-menu li {
	position: relative;
	line-height: 24px;
	margin-bottom: 15px;
	-webkit-transform: translate3d(0, -10px, 0);
	transform: translate3d(0, -10px, 0);
	opacity: 0;
}

#dropdown-menu li:nth-last-child(1) {
	margin-bottom: 0;
}

#dropdown-menu li:hover {
	background-color: #33b8c41a;
}

#dropdown-menu li a {
	color: #5A5957;
	text-decoration: none;
	font-size: 1em;
}

#dropdown-menu.open {
	-webkit-transform: scale(1);
	transform: scale(1);
}

#dropdown-menu.open li {
	transition: all 350ms cubic-bezier(0.19, 1, 0.22, 1);
	-webkit-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
	opacity: 1;
}

.open li:nth-child(1) {
	transition-delay: 0.07s !important;
}

.open li:nth-child(2) {
	transition-delay: 0.14s !important;
}

.open li:nth-child(3) {
	transition-delay: 0.21s !important;
}

.open li:nth-child(4) {
	transition-delay: 0.28s !important;
}

.open li:nth-child(5) {
	transition-delay: 0.35s !important;
}

/*====================================== SECTION WORD ======================================*/
.wskt-head {
	line-height: 60px;
	letter-spacing: -0.02em;
	font-weight: 700;
	color: #444444;
	text-transform: capitalize;
	transition: all 0.3s;
}
.wskt-category
{
	line-height: 60px;
	letter-spacing: 0px;
	font-weight: 400;
	color: #444444;
	text-transform: capitalize;
	transition: all 0.3s;
}
h3.wskt-category
{
	line-height: 42px;
}
h3.wskt-semi
{
	line-height: 35px;
}
.wskt-main
{
	font-weight: 400;
	line-height: 32px;
	letter-spacing: 0.5px;
	color: #006d68;
	transition: all 0.3s;
}
.wskt-semi
{
	font-weight: 400;
	line-height: 32px;
	letter-spacing: 0.5px;
	color: #444444;
	transition: all 0.3s;
}
.wskt-info
{
	line-height: 32px;
	letter-spacing: 0.25px;
	font-weight: 300;
	color: rgba(0, 0, 0, 0.50);
	transition: all 0.3s;
}
.wskt-break
{
	text-overflow: ellipsis;
	white-space: nowrap;
	overflow: hidden;
}
.wskt-small
{
	font-size: 12px;
	color: rgba(0, 0, 0, 0.50);
	line-height: 24px;
	letter-spacing: 0.5px;
	transition: all 0.3s;
}
.main-color
{
	color: #006d68 !important;
}
.second-color
{
	color: #d8a55b !important;
}
.black
{
	color: #444444 !important;
}
.info
{
	color: rgba(0, 0, 0, 0.50) !important;
}
.bold
{
	font-weight: 700 !important;
}
.white 
{
	color: #fff !important;
}

.box-shadow {
	-webkit-transition: box-shadow .5s ease-out;
	box-shadow: 0 8px 18px 0 rgba(0, 0, 0, .18);
	transition: box-shadow .5s ease-out;
}

.no-pad {
	padding: 0;
}

.block {
	display: block;
}

.full {
	max-width: 100% !important;
	width: 100% !important;
}

.inline-block {
	display: inline-block;
}

.regular {
	font-weight: 400;
}

.normal {
	font-weight: 300;
}

.no-transform {
	text-transform: none !important;
}

.italic {
	font-style: italic;
}

.justify {
	text-align: justify;
}
.pointer
{
	cursor: pointer;
}
.load-more button.btn-kedua {
	margin: 20px 0;
	padding-left: 30px;
	padding-right: 30px;
}

.navbar-space {
	margin-top: 100px;
}

.sticky-subhead {
	position: -webkit-sticky;
	position: sticky;
	top: 100px;
}

.section-shadow {
	z-index: -1;
	position: absolute;
	left: 0;
	top: 25px;
}
.section-heading {
	max-width: 480px;
	margin: 0 auto;
	margin-bottom: 20px;
}
.section-heading .image
{
	max-width: 320px;
	margin: 0 auto 20px auto;
}
.section-heading .action
{
	margin: 20px 0;
}

.relative {
	position: relative;
}

.overflow-hidden {
	overflow: hidden
}
.no-result
{
	background-color: #006d6869;
	padding: 15px;
	text-align: center;
	border-radius: 10px;
	margin-bottom: 20px;
}
/*====================================== SECTION NAVBAR ======================================*/
.navbar--container
{
	position: fixed;
	z-index: 10;
	top: 0;
	background: transparent;
	height: 100vh;
	width: 80px;
}
.navbar--title
{
	cursor: pointer;
	width: 100%;
	text-align: center;
	display: flex;
	flex-direction: column;
	align-content: center;
	justify-content: center;
	align-items: center;
	height: 100%;
	
}
.navbar--title .navbar-menu
{
	display: flex;
	align-content: center;
	justify-content: flex-start;
	flex-direction: column;
	margin-left: -15px;
	background-color: #fff;
	padding: 20px 5px 20px 10px;
	border-top-right-radius: 20px;
	border-bottom-right-radius: 20px;
	box-shadow: 2px 2px 15px rgba(51, 51, 51, 0.1);
}
.navbar--title .nav-toggle
{
	transform: rotate(90deg);
	display: inline-block;
	background-color: #fff;
	width: 38px;
	cursor: pointer;
	margin-top: 20px;
}
.navbar--title .nav-toggle span
{
	display: block;
	margin-bottom: 5px;
	background-color: #006d68;
	width: 25px;
	height: 2px;
}
.navbar--title .nav-toggle span:nth-child(2)
{
	/*width: 65%;*/
}
.navbar--title .nav-toggle span:last-child 
{
	/*width: 90%;*/
}
.navbar-image
{
	display: none;
	transform: rotate(-90deg);
	max-width: 35px;
	margin: 25px 0;
	transition: all 0.3s;
	opacity: 0.3;
}
.navbar-image.navbar--logo
{
	transform: none;
	max-width: 50px;
	opacity: 1;
}
.navbar--title h4
{
	display: inline-block;
	float: right;
	margin-left: -9px;
	/*margin-left: 5px;*/
	-webkit-transform: rotate(180deg);
	transform: rotate(180deg);
	font-weight: 700;
	white-space: nowrap;
	-ms-writing-mode: tb-rl;
	-webkit-writing-mode: vertical-rl;
	writing-mode: vertical-rl;
}
.navbar--title:hover .navbar-image
{
	opacity: 1;
}
.nav--open
{
	position: fixed;
	top: 0;
	z-index: 10;
	opacity: 0;
	transform: translateX(-3000px);
	height: 100vh;
	width: 100%;
	background-color: #ffffff;
	box-shadow: 2px 2px 15px rgba(51, 51, 51, 0.1);
	visibility: hidden;
	background-image: url("../images/bg-navbar.png");
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center bottom -50px;
	-webkit-transition: all 0.5s 0s ease-in;
	-moz-transition: all 0.5s 0s ease-in;
	-o-transition: all 0.5s 0s ease-in;
	transition: all 0.5s 0s ease-in;
}
.nav--close
{
	float: right;
	transition: all 0.4s ease-out;
}
.nav--close .close
{
	float: none;
	padding: 15px 20px;
	border: 1px solid #000;
	border-top: 0;
	border-right: 0;
	border-bottom-left-radius: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0.5;
}
.nav--close .close:hover
{
	opacity: 1;
	border-color: #006d68 !important;
}
.nav--close span 
{
	display: flex;
	align-items: center;
	text-align: center;
	/*margin-top: -4px;*/
	/*margin-right: 10px;*/
	font-size: 20px;
}
.nav--open-title
{
	font-size: 0.8em;
	text-transform: uppercase;
	letter-spacing: 0.2em;
	text-align: center;
	margin-top: 5%;
}
.nav--open-title .logo
{
	max-width: 125px;
	margin: 0 auto 25px;
}
.nav--open-menu
{
	height: 100%;
	display: flex;
	flex-direction: column;
	text-align: center;
	margin-top: 30px;
}
.nav--open-menu a
{
	display: block;
	font-weight: 400;
	font-size: 2em;
	padding: 15px 0;
	opacity: 0;
	transition-duration: 0.5s;
	transition-property: opacity, color;
	transition-delay: 0.6s, 0.3s;
}
.nav--open-menu a:hover
{
	color: #d8a55b;
}
.nav--open .nav--open-menu a:nth-child(2)
{
	transition-delay: 0.8s, 0.3s;
}
.nav--open .nav--open-menu a:nth-child(3)
{
	transition-delay: 1s, 0.3s;
}
.nav--open .nav--open-menu a:nth-child(4)
{
	transition-delay: 1.2s, 0.3s;
}
.nav--open.active
{
	opacity: 1;
	transform: translateX(0);
	visibility: visible;
}
.nav--open.active .nav--open-menu a
{
	opacity: 1;
}
.swiper-container {
	width: 100%;
	height: 100%;
}
.swiper-wrapper
{
	margin: 20px 0;
}
.swiper-slide {
	font-size: 18px;
	background: transparent;
	width: auto;
	margin-right: 20px;
	border-radius: 5px;
	margin-right: 0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	-webkit-justify-content: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	-webkit-align-items: center;
	align-items: center;
}
.swiper-slide:nth-child(2n) {
	width: 40%;
}
.swiper-slide:nth-child(3n) {
	width: 40%;
}
.swiper-slide .desc
{
	margin-top: 20px;
}
.swiper-wrapper .swiper-slide > a{
	width: 100%;
}
.swiper-button-wrapper
{
	position: absolute;
	top: 22px;
	text-align: center;
}
.swiper-button-next{
	background-image: url("../images/chevron-right.png");
	opacity: 1;
	transition: all 0.3s;
	right: 20px;
}
.swiper-button-prev{
	background-image: url("../images/chevron-left.png");
	opacity: 1;
	transition: all 0.3s;
	left: 20px;
}
.swiper-button-next, .swiper-button-prev{
	top: 45%;
	width: 48px;
	height: 48px;
	background-size: contain;
}
.subject-heading
{
	max-width: 720px;
	margin: 0 auto 40px auto;
}
/*====================================== SECTION FOOTER ======================================*/
footer.footer {
	position: relative;
	padding: 30px 0;
	background-color: #006d68;
	margin: 0 0 0 0;
	/*background-image: url("../images/bg-signup.png");*/
	background-size: contain;
	background-repeat: no-repeat;
	background-position: bottom left;
}
.footer-left
{
	position: absolute;
	top: -200px;
	left: -25px;
}
.footer-left .image
{
	max-width: 200px;
}
.footer-logo
{
	margin-top: -100px;
}
.footer-logo .image
{
	background-color: #006d68;
	max-width: 200px;
	margin: 0 auto 0 auto;
	border-radius: 100%;
}
.footer-menu ul li
{
	display: inline-block;
	margin-right: 20px;
	transition: all 0.3s;
}
.footer-menu ul li:hover,
.footer-socmed .wrapper a .image:hover
{
	transform: translateY(-5px);
}
.footer-menu ul li a
{
	font-size: 22px;
	font-weight: 400;
	line-height: 32px;
	letter-spacing: 0.5px;
	color: #fff;
	transition: all 0.3s;
}
.footer-socmed .wrapper
{
	display: inline-block;
	margin: 0 5px;
}
.footer-socmed .wrapper .image
{
	max-width: 50px;
	transition: all 0.3s;
}
.footer-copyright
{
	margin-top: 30px;
}
footer.footer .maka-wrapper a:before
{
	content: '';
	display: block;
	position: absolute;
	left: 0;
	bottom: 0;
	height: 2px;
	width: 0;
	border-radius: 20px;
	transition: width 0s ease, background .1s ease;
}
footer.footer .maka-wrapper a:before
{
	content: '';
	display: block;
	position: absolute;
	right: 0;
	bottom: -2px;
	height: 1px;
	width: 0;
	background-image: -webkit-linear-gradient(left, #75bdea, #fff);
	background-image: -o-linear-gradient(left, #75bdea, #fff);
	background-image: linear-gradient(to right, #75bdea, #fff);
	transition: width .5s ease;
}
footer.footer .maka-wrapper a:hover:before
{
	width: 100%;
}
.maka
{
	color: #CEEBF8 !important;
}
.maka-green
{
	color: #8BD1D2 !important;
}
.footer-wrapper:before
{
	content: "";
	position: absolute;
	left: 0;
	bottom: 0px;
	background-color: #fb6222;
	width: 0;
	height: 2px;
	transition: ease 0.6s;
}
.footer-wrapper:hover:before
{
	width: 100%;
}
.footer-wrapper h5 span:hover a.maka
{
	transform: translateY(-3px);
	color: #8BD1D2 !important;
}
/*====================================== SECTION CARD LINK ======================================*/
section.section-card-link
{
	position: relative;
	padding-bottom: 100px;
}
.btn-show {
	width: auto;
	height: auto;
	position: relative;
	box-shadow: -2px -2px 15px 0px #fff, 2px 2px 5px #babecc;
	border: none;
	outline: none;
	padding: 12px 16px;
	border-radius: 20px;
	/*background: linear-gradient(120deg, #8BD1D2, #CEEBF8);*/
	cursor: pointer;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	color: #fff;
	font-weight: 400;
	font-size: 18px;
	overflow: hidden;
	transition: all 1.1s ease-in-out;
}
.btn-show:hover {
	color: #fb6222;
	box-shadow: -2px -2px 5px #fff, 2px 2px 5px #babecc;
}
.button-link
{
	position: relative;
	transition: all .3s ease-in-out;
	-webkit-appearance: none;
	padding: 12px 16px;
	border-radius: 20px;
	background-color: transparent;
	font-size: 20px;
	color: #fff;
	font-weight: 700;
	border: 1px solid #fff;
	text-align: center;
	font-size: 18px;
	cursor: pointer;
	display: flex;
	justify-content: center;
	outline: none;
	border: none;
}
.button-link:hover
{
	color: #fb6222;
}
.cardlink-container .body .linkto.youmustknow:hover
{
	transform: translateY(-2px);
}
.button-link:active
{
	transform: translateY(0);
}
.button-link:before
{
	animation: pulse_link 3s ease infinite;
	border-radius: 20px;
	position: absolute;
	background: #fff;
	content: "";
	z-index: 1;
	bottom: 0;
	right: 0;
	left: 0;
	top: 0;
}
@keyframes pulse_link
{
	0% { transform: scale(1); }
	50% { opacity: 0.2; }
	100% { transform: scale(1.2, 1.4); opacity: 0; }
}
.cardlink-container
{
	opacity: 1;
	position: relative;
	background-color: #000074;
	/*background-image: url(../images/link/wskt-left.png), url(../images/link/wskt-right.png);*/
	background-position: bottom 540px right -15px, bottom 540px left -15px;
	background-size: 75px;
	background-repeat: no-repeat;
	overflow: hidden;
	max-width: 480px;
	margin: 0 auto 30px auto;
	border: 2px solid #fff;
	box-shadow: 0 0 18px 0 #fff;
	border-radius: 20px;
	padding: 30px 0 0 0px;
	transition: all 0.5s;
}
.cardlink-container.nonactive
{
	display: none;
	opacity: 0;
	transition: all 0.5s;
}
.cardlink-container .link-share
{
	position: absolute;
	top: 5px;
	right: 5px;
	text-align: center;
}
.cardlink-container .link-share button.clipboard
{
	color: #393e46;
	position: relative;
	display: inline-block;
	width: auto;
	text-decoration: none;
	font-size: 14px;
	font-weight: 400;
	line-height: 18px;
	letter-spacing: 0.2px;
	padding: 10px 10px;
	border: 2px solid #393e46;
	border-radius: 20px;
	-webkit-transition: all 0.5s;
	-moz-transition: all 0.5s;
	transition: all 0.5s;
	outline: none;
}
.cardlink-container .star-left
{
	position: absolute;
	max-width: 50px;
	top: 35%;
	left: 0;
	transform: rotate(-10deg);
}
.cardlink-container .star-right
{
	position: absolute;
	max-width: 50px;
	top: 60%;
	right: 0;
	transform: rotate(15deg);
}
.cardlink-container .head,
.overlay-container .head,
.overlay_ig .head
{
	position: relative;
	margin-top: 20px;
	margin-bottom: 50px;
	padding: 0 30px;
}
.overlay-container .head,
.overlay_ig .head
{
	margin-bottom: 20px;
}
.cardlink-container .head .logo,
.overlay-container .head .logo,
.overlay_ig .head .logo
{
	background-color: transparent;
	width: 200px;
	height: 200px;
	/*border: 2px solid #fb6222; */
	border: 0;
	margin: 0 auto 15px auto;
	padding: 15px;
	border-radius: 50%;
	transition: ease 0.5s;
}
.cardlink-container .head .logo img,
.overlay-container .head .logo img,
.overlay_ig .head .log img
{
	object-fit: contain;
}
.cardlink-container:hover .logo,
.overlay-container:hover .logo,
.overlay_ig:hover .logo
{
	/*box-shadow: 0 0 18px 0 #fff;*/
}
.cardlink-container .linkto,
.overlay-container .linkto,
.overlay_ig .linkto
{
	position: relative;
	text-align: center;
	margin: 30px 0px;
}
.overlay-container .overlay-wrapper .linkto .btn-show,
.overlay_ig .overlay-wrapper .linkto .btn-show
{
	background-color: #000074;
	color: #fff;
}
.overlay_ig.active .overlay-wrapper .linkto.linkto.youmustknow .button-link
{
	background-color: #000074;
    border: 1px solid #ffffff;
	box-shadow: -2px -2px 15px 0px #fff, 2px 2px 5px #babecc;
}
.overlay_ig.active .overlay-wrapper .linkto.linkto.youmustknow .button-link::before
{
	display: none;
}
.overlay_ig.active .overlay-wrapper .linkto.list-ig a
{
	background-color: #fb6222
}
.cardlink-container .body
{
	padding: 0 30px;
}
.cardlink-container .body .linkto.youmustknow
{
	border: 1px solid #fff;
	border-radius: 20px;
	margin-bottom: 45px;
	transition: all .3s ease-in-out;
}
.cardlink-container .body .linkto .btn-show
{
	position: relative;
	background: rgb(251,98,34);
	background: -moz-linear-gradient(150deg, rgba(251,98,34,1) 15%, rgba(249,150,109,1) 75%);
	background: -webkit-linear-gradient(150deg, rgba(251,98,34,1) 15%, rgba(249,150,109,1) 75%);
	background: linear-gradient(150deg, rgba(251,98,34,1) 15%, rgba(249,150,109,1) 75%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#fb6222",endColorstr="#f9966d",GradientType=1);
	color: #fff;
	transition: ease 0.6s;
	box-shadow: 0px 0 8px #ffcab5;
}
.cardlink-container .body .linkto .btn-show:hover
{
	color: #000000;
	box-shadow: -1px 4px 20px #ffffffb3;
	background-size: 200%
}
.wskt-main
{
	color: #fb6222;
}
.wskt-blue
{
	color: #000074;
}
.panel-link
{
	text-align: center;
	height: 175px;
	border-radius: 20px;
	background-size: 175%;
	background-position: bottom center;
	background-repeat: no-repeat;
	box-shadow: inset 0 0 0 1000px rgb(0 0 0 / 45%);
	transition: ease 1s;
}
.panel-link:hover
{
	background-size: 200%;
	box-shadow: inset 0 0 0 1000px rgb(0 0 0 / 55%);
}
.panel-link a.btn-show
{
	width: 100%;
	height: 100%;
	box-shadow: -2px -2px 15px 0px #fff, 2px 2px 5px #babecc;
}
.cardlink-container .body .socmed-list
{
	margin-top: 20px;
	display: flex;
	justify-content: center;
	align-items: center;
}
.cardlink-container .body .socmed-list .wrapper
{
	max-width: 36px;
	margin: 0 10px;
}
.cardlink-container .body .socmed-list .wrapper a
{
	display: block;
	width: 100%;
	height: 100%;
}
.cardlink-container .body .socmed-list .wrapper:hover a
{
	transform: translateY(-3px);
}
.cardlink-container .body
{
	max-width: 100%;
	margin: 0 auto;
}
.cardlink-container .body .linkto span
{
	margin-right: 5px;
}
.cardlink-container .linkto .img-icon
{
	width: 25px;
	position: absolute;
	top: 10px;
	right: 15px;
	transition: all 0.6s;
}
.cardlink-container .linkto:hover .img-icon
{
	right: 20px;
	transform: scale(1.25);
}
.link-subject
{
	position: relative;
}
.cardlink-container .cardlink-wrapper .link-subject h4,
.overlay-container .overlay-wrapper .link-subject h4,
.overlay_ig .overlay-wrapper .link-subject h4
{
	line-height: 30px;
}
.link-subject span.anim-left
{
	background-color: #fff;
	width: 30%;
	height: 2px;
	position: absolute;
	bottom: -5px;
	left: 0;
	animation: anim-left 5s ease-in-out infinite;
}
.link-subject span.anim-right
{
	background-color: #fff;
	width: 30%;
	height: 2px;
	position: absolute;
	bottom: -5px;
	right: 0;
	animation: anim-right 5s ease-in-out infinite;
}
@keyframes anim-left {
	0% {
		width: 30%;
		left: 45%;
	}
	25% {
		width: 30%;
		left: 45%;
	}
	50% {
		width: 100%;
		left: 150%;
	}
	75% {
		width: 30%;
		left: 45%;
	}
	100%
	{
		width: 30%;
		left: 45%;
	}
}
@keyframes anim-right {
	0% {
		width: 30%;
		right: 45%;
	}
	25% {
		width: 30%;
		right: 45%;
	}
	50% {
		width: 100%;
		right: 150%;
	}
	75% {
		width: 30%;
		right: 45%;
	}
	100% {
		width: 30%;
		right: 45%;
	}
}
.cardlink-container .footer
{
	margin-top: 50px;
	margin-bottom: -10px;
}
.cardlink-container .footer .cta .btn-pols:hover
{
	background-color: #fb6222;
}
.cardlink-container .footer .bottom-vid
{
	width: 100%;
}
.cardlink-container .footer .bottom-vid video
{
	width: 100%;
	height: 100%;
}
.link-made
{
	padding: 0 15px;
	text-align: center;
}
.overlay-container,
.overlay_ig
{
	min-height: 500px;
	opacity: 0;
	display: none;
	position: relative;
	background-color: #000074;
	background-image: url(../images/link/star.png);
	background-position: top center;
	background-size: contain;
	background-repeat: no-repeat;
	overflow: hidden;
	max-width: 480px;
	margin: 0 auto 50px auto;
	border: 2px solid #fff;
	box-shadow: 0 0 18px 0 #fff;
	border-radius: 20px;
	padding: 30px 30px 0 30px;
	background: rgb(251,98,34);
	background: -moz-linear-gradient(150deg, rgba(251,98,34,1) 15%, rgba(249,150,109,1) 75%);
	background: -webkit-linear-gradient(150deg, rgba(251,98,34,1) 15%, rgba(249,150,109,1) 75%);
	background: linear-gradient(150deg, rgba(251,98,34,1) 15%, rgba(249,150,109,1) 75%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#fb6222",endColorstr="#f9966d",GradientType=1);
	transition: all 0.5s;
}
.overlay-container .overlay-wrapper,
.overlay_ig .overlay-wrapper
{
	position: relative;
	max-width: 90%;
	margin: 0 auto;
}
.overlay-container .overlay-wrapper .backto,
.overlay_ig .overlay-wrapper .backto
{
	position: absolute;
	top: 60px;
	left: -25px;
}
.btn-back {
	width: auto;
	height: auto;
	position: relative;
	border: 1px solid #fff;
	outline: none;
	background-color: transparent;
	padding: 6px 15px;
	border-radius: 20px;
	cursor: pointer;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	color: #fff;
	font-weight: 400;
	font-size: 18px;
	overflow: hidden;
	transition: all 1.1s ease-in-out;
}
.btn-back:hover {
	color: #fff;
}
.btn-back i
{
	margin-right: 5px;
}
.overlay-container .overlay-wrapper .head,
.overlay-container .overlay-wrapper .linkto,
.overlay-ig .overlay-wrapper .head,
.overlay_ig .overlay-wrapper .linkto
{
	opacity: 1;
	transition: all 0.3s;
}
.overlay-container .overlay-wrapper .linkto .btn-show,
.overlay_ig .overlay-wrapper .linkto .btn-show
{
	flex-direction: column;
}
.overlay-container.active,
.overlay_ig.active
{
	opacity: 1;
	display: block;
	z-index: 10;
	width: 100%;
	height: 100%;
}
.overlay-container.active .overlay-wrapper .head,
.overlay_ig .overlay-wrapper .head
{
	opacity: 1;
	transition: all 0.5s;
	transition-delay: 0.6s;
}
.overlay-container.active .overlay-wrapper .linkto,
.overlay_ig.active .overlay-wrapper .linkto
{
	opacity: 1;
	transition: all 0.5s;
	transition-delay: 0.8s;
}
@media only screen and (max-width: 480px) 
{
	.btn-show
	{
		font-size: 16px;
	}
	section.section-card-link
	{
		padding-bottom: 0;
	}
	.cardlink-container
	{
		background-position: bottom 470px right -15px, bottom 470px left -15px;
	}
	.cardlink-container .head,
	.overlay-container .head,
	.overlay_ig .head
	{
		padding: 0 15px;
	}
	.cardlink-container .head p.bold,
	.overlay-container .head p.bold,
	.overlay_ig .head p.bold
	{
		font-size: 20px;
	}
	.cardlink-container .body
	{
		padding: 0 15px;
	}
	.panel-link
	{
		height: 135px;
		background-position: bottom center;
		background-size: cover;
		box-shadow: inset 0 0 0 1000px rgb(0 0 0 / 55%);
	}
	.link-subject span.anim-left,
	.link-subject span.anim-right
	{
		bottom: -5px;
	}
	.cardlink-container .linkto,
	.overlay-container .linkto,
	.overlay_ig .linkto
	{
		margin: 20px 0;
	}
	.overlay-container,
	.overlay_ig
	{
		padding: 15px 15px 0 15px;
	}
	.overlay-container .overlay-wrapper,
	.overlay_ig .overlay-wrapper
	{
		max-width: 100%;
	}
	.overlay-container .overlay-wrapper .backto,
	.overlay_ig .overlay-wrapper .backto
	{
		position: fixed;
		left: 15px;
		top: 15px;
	}
	.link-subject
	{
		margin: 30px 0;
	}
	.cardlink-container .cardlink-wrapper .link-subject h4,
	.overlay-container .overlay-wrapper .link-subject h4,
	.overlay_ig .overlay-wrapper .link-subject h4
	{
		font-weight: 700;
		font-size: 18px;
		line-height: 26px;
	}
}

