@import url('https://fonts.googleapis.com/css2?family=Fredoka:wght@300..700&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root {
	--c-primary: #C82636;
	--c-primary-800: #4b73af;
	--c-primary-600: #8db0e4;
	--c-primary-500: #c2dbff;
	--c-secondary: #DBBA67;
	--c-tertiary: #283B89;
	--c-body: #F9FAFB;
	--c-black: #000000;
	--c-b-secondary: #4b5563;
	--c-info: #9597A1;
	--c-red: #D0342C;
	--c-white: #ffffff;
	--c-lvl-1: #e548ff;
	--c-lvl-2: #ffcc48;
	--c-lvl-3: #14c687;
	--c-grey: #d1d1d1;
	--c-disabled: #dee1e8;
	--c-transparent: transparent;
	--shadow-bg: 0px 6px 18px rgb(0 0 0 / 8%);
	--ts-cubic: all 0.3s cubic-bezier(0.47, 0.71, 0.66, 0.84);
}

*,
::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: "Fredoka", sans-serif;
	margin: 0;
	padding: 0;
	-webkit-font-smoothing: antialiased;
	-webkit-text-size-adjust: 100%;
	/*scroll-behavior: smooth;*/
}

header {
	display: none;
}

body {
	background: transparent linear-gradient(180deg, #FCAC4C 0%, #FFE2BF 100%) 0% 0% no-repeat padding-box;
	
	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: 2.75rem;
	font-weight: 500;
}

h2 {
	/* font-family: 'Lora', serif; */
	font-size: 1.875rem;
	font-weight: 500;
}

h3 {
	font-size: 1.375rem;
	font-weight: 600;
}

h4 {
	font-size: 1.125rem;
	font-weight: 700;
}

p {
	font-weight: 500;
	line-height: 24px;
}

p:last-child {
	margin-bottom: 0px;
}

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

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

.malink-l {
	font-size: 1.375rem;
}

.malink-m {
	font-size: 1.125rem;
	font-weight: 300;
}

.malink-m-reg {
	font-size: 1.125rem;
}

.malink-s {
	font-size: 1rem;
}

.malink-s-light {
	font-size: 1rem;
	font-weight: 300;
}

.malink-xs {
	font-size: 0.875rem;
}

.malink-break {
	text-overflow: ellipsis;
	white-space: nowrap;
	overflow: hidden;
}

.malink-small {
	font-size: 0.75rem;
	line-height: 18px
}

.c-primary {
	color: var(--c-primary) !important;
}

.c-secondary {
	color: var(--c-secondary) !important;
}

.c-tertiary {
	color: var(--c-tertiary) !important;
}

.c-white {
	color: var(--c-white) !important;
}

.c-black {
	color: var(--c-black) !important;
}

.c-black-secondary {
	color: var(--c-b-secondary) !important;
}

.c-info {
	color: var(--c-info) !important;
}

.c-red {
	color: var(--c-red) !important;
}

.c-grey {
	color: var(--c-grey) !important;
}

.light {
	font-weight: 300;
}

.regular {
	font-weight: 400;
}

.medium {
	font-weight: 500;
}

.semi-bold {
	font-weight: 600;
}

.bold {
	font-weight: 700 !important;
}

.x-bold {
	font-weight: 800 !important;
	/* letter-spacing: 1; */
}

.xx-bold {
	font-weight: 900;
}

.btn-malink {
	position: relative;
	outline: 0;
	font-size: 1rem;
	font-weight: 600;
	line-height: 1.5;
	/* white-space: nowrap; */
	text-align: center;
	letter-spacing: 1.5;
	align-items: center;
	display: inline-flex;
	border: 0;
	border-radius: 1.5rem;
	padding: 1rem 1rem;
	background-color: transparent;
	-webkit-box-pack: center;
	vertical-align: middle;
	justify-content: center;
	-webkit-box-align: center;
	transition-timing-function: cubic-bezier(0.33, 0, 0.3, 1);
	transition-duration: 0.3s;
	text-decoration: none;
	outline: 0;
}

.btn-primary {
	/* background-color: var(--c-white); */
	color: var(--c-primary);
	background: transparent linear-gradient(90deg, #FFFFFF 0%, #CECECE 100%) 0% 0% no-repeat
}

.btn-primary:hover {
	color: var(--c-primary);
	font-weight: 700;
	/* box-shadow: -2px 6px 18px 2px hsl(0deg 0% 0% / 25%); */
}

.btn-primary:active,
.btn-primary:focus {
	color: var(--c-primary);
}

.btn-secondary {
	background: transparent linear-gradient(90deg, #D6A943 0%, #DBBA67 100%) 0% 0% no-repeat padding-box;
	/* background-color: var(--c-secondary); */
	color: var(--c-white);
}

.btn-secondary:hover {
	color: var(--c-primary);
	font-weight: 700;
	/* box-shadow: -2px 6px 18px 2px hsl(0deg 0% 0% / 25%); */
}

.btn-secondary:active,
.btn-secondary:focus {
	color: var(--c-white);
}

/*  ==========================  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 ======================================*/
.max-16 {
	max-width: 1rem !important;
}

.max-24 {
	max-width: 1.5rem !important;
}

.max-32 {
	max-width: 2rem !important;
}

.max-40 {
	max-width: 2.5rem !important;
}

.max-48 {
	max-width: 3rem !important;
}

.max-64 {
	max-width: 4rem !important;
}

.max-84 {
	max-width: 5.25rem !important;
}

.max-100 {
	max-width: 6.25rem !important;
}

.max-128 {
	max-width: 8rem !important;
}

.max-160 {
	max-width: 10rem !important;
}

.max-180 {
	max-width: 11.25rem !important;
}

.max-240 {
	max-width: 15rem !important;
}

.max-320 {
	max-width: 20rem !important;
}

.max-360 {
	max-width: 22.5rem !important;
}

.max-400 {
	max-width: 25rem !important;
}

.max-480 {
	max-width: 30rem !important;
}

.max-640 {
	max-width: 40rem !important;
}

.max-720 {
	max-width: 45rem !important;
}

.max-1024 {
	max-width: 64rem !important;
}

.z-m-3 {
	z-index: -3;
}

.z-m-2 {
	z-index: -2;
}

.z-m-1 {
	z-index: -1;
}

.z-1 {
	z-index: 1;
}

.z-2 {
	z-index: 2;
}

.z-3 {
	z-index: 3;
}

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

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

.pointer {
	cursor: pointer;
}

.load-more button.btn-kedua {
	margin: 20px 0;
	padding-left: 30px;
	padding-right: 30px;
}

.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-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: #7bcbcc !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 {
	background-image: url("../images/cloud-1.png"), url("../images/cloud-2.png"), url("../images/cloud-3.png"), url("../images/cloud-4.png");
	background-repeat: no-repeat;
	background-size: 480px;
	background-position: top 10% left, top 25% right 0, bottom 45% left 0, bottom 20% right 0;
	position: relative;
	padding: 5rem 0;
}

.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 .section-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-outside
{
	position: relative;
	background: transparent linear-gradient(180deg, #874455 0%, #C3565A 14%, #DF8E4F 35%, #DF8E4F 67%, #B54451 85%, #603754 100%) 0% 0% no-repeat padding-box;
	background-repeat: no-repeat;
	max-width: 480px;
	border-radius: 1.125rem;
	transition: all 0.5s;
}
.cardlink-container {
	opacity: 1;
	position: relative;
	overflow: hidden;
	max-width: 480px;
	margin: 0 auto 0 auto;
	border: 2px solid #fff;
	box-shadow: 0 0 18px 0 #fff;
	border-radius: 1.125rem;
	padding: 4.5rem 0 0 0px;
	transition: all 0.5s;
}
.image-mascot
{
	z-index: -1;
}
.image-mascot.mascot-1 {
	transform: rotate(65deg);
	top: 15%;
	right: -140px;
}

.image-mascot.mascot-2 {
	transform: rotate(-65deg);
	top: 35%;
	left: -156px;
}

.image-mascot.mascot-3 {
	transform: rotate(65deg);
	top: 55%;
	right: -156px;
}

.image-mascot.mascot-4 {
	transform: rotate(-65deg);
	top: 75%;
	left: -156px;
}
.moon-right
{
	z-index: 1;
	width: 100%;
	height: 320px;
	top: 0;
	right: 0;
}

.section-head,
.section-contact,
.section-body {
	padding: 0 1.5rem 1.5rem 1.5rem;
	padding-bottom: 1.5rem;
}

.cardlink-container.nonactive {
	display: none;
	opacity: 0;
	transition: all 0.5s;
}

.cardlink-container .link-share {
	z-index: 5 !important;
	position: absolute;
	top: 5px;
	right: 5px;
	text-align: center;
}

.cardlink-container .link-share button.clipboard {
	z-index: 3;
	color: var(--c-white);
	background: transparent linear-gradient(90deg, #D6A943 0%, #DBBA67 100%) 0% 0% no-repeat padding-box;
	position: relative;
	display: inline-block;
	width: auto;
	text-decoration: none;
	font-size: 14px;
	font-weight: 500;
	line-height: 18px;
	letter-spacing: 0.2px;
	padding: 10px 10px;
	border: 0;
	border-radius: 20px;
	-webkit-transition: all 0.5s;
	-moz-transition: all 0.5s;
	transition: all 0.5s;
	outline: none;
}

.section-head,
.overlay-container .section-head,
.overlay_ig .section-head {
	position: relative;
	padding-left: 1.5rem;
	padding-right: 1.5rem;
}

.overlay-container .section-head,
.overlay_ig .section-head {
	margin-bottom: 20px;
}

.cardlink-container .section-head .logo .image,
.overlay-container .section-head .logo,
.overlay_ig .section-head .logo {
	background-color: var(--c-white);
	width: 180px;
	height: 180px;
	/*border: 2px solid #fb6222; */
	border: 0;
	margin: 0 auto 0 auto;
	padding: 2rem;
	border-radius: 50%;
	transition: ease 0.5s;
}


.cardlink-container:hover .logo,
.overlay-container:hover .logo,
.overlay_ig:hover .logo {
	/*box-shadow: 0 0 18px 0 #fff;*/
}


.cardlink-container .section-head .logo-anim-left {
	top: -16px;
	left: -40px;
	transform: rotate(-54deg);
}
.cardlink-container .section-head .logo-anim-right {
	top: -16px;
	right: -40px;
	transform: rotate(48deg);
}

.cardlink-container .section-head .logo-anim-bot-left {
	bottom: -18px;
    left: -70px;
	transform: rotate(-115deg);
}

.cardlink-container .section-head .logo-anim-bot-right {
	bottom: -18px;
    right: -70px;
    transform: rotate(128deg);
}
.cloud-top-left
{
	opacity: 0.5;
	top: 16px;
	left: -168px;
}
.cloud-top-right
{
	opacity: 0.5;
	top: 128px;
	right: -196px;
}
.cloud-mid-right
{
	top: -24px;
	right: -104px;
}

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

.cardlink-container .section-body {
	background-image: url("../images/bg-sun.png");
	background-repeat: no-repeat;
	background-size: 90px;
	background-position: top left -32px;
	padding: 0 32px;
}

.section-contact .contact-link .icon-link {
	left: 1rem;
}

.cardlink-container .section-body .linkto.youmustknow {
	border: 1px solid #fff;
	border-radius: 20px;
	margin-bottom: 45px;
	transition: all .3s ease-in-out;
}

.cardlink-container .section-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 .section-body .linkto .btn-show:hover {
	color: #000000;
	box-shadow: -1px 4px 20px #ffffffb3;
	background-size: 200%
}

.panel-link {
	margin-top: 1rem;
	margin-bottom: 1rem;
	text-align: center;
	height: 175px;
	border-radius: 1rem;
	background-size: 100%;
	background-position: center center;
	background-repeat: no-repeat;
	box-shadow: inset 0 0 0 1000px rgb(0 0 0 / 45%);
	transition: ease 2s;
}

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

.panel-link a.btn-show:hover {
	color: var(--c-secondary);
}

.cardlink-container .section-body .socmed-list {
	margin-top: 20px;
	display: flex;
	justify-content: center;
	align-items: center;
}

.cardlink-container .section-body .socmed-list .wrapper {
	max-width: 36px;
	margin: 0 10px;
}

.cardlink-container .section-body .socmed-list .wrapper a {
	display: block;
	width: 100%;
	height: 100%;
}

.cardlink-container .section-body .socmed-list .wrapper:hover a {
	transform: translateY(-3px);
}

.cardlink-container .section-body {
	max-width: 100%;
	margin: 0 auto;
}

.cardlink-container .section-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.75);
}

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

.branch-link .icon-link {
	right: 1rem;
}

.branch-link .icon-link .img-icon {
	width: 0.75rem;
}

.branch-link .btn-malink {
	font-size: 1.25rem;
}
.icon-link-button,
.branch-sub a span
{
	margin-right: auto;
    display: inline-block;
}

.cardlink-container .footer {
	margin-top: 2rem;
	margin-bottom: -0.75rem;
}

.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: 1rem;
}

.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 .section-head,
.overlay-container .overlay-wrapper .linkto,
.overlay-ig .overlay-wrapper .section-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 .section-head,
.overlay_ig .overlay-wrapper .section-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;
}

.mb0 {
	margin-bottom: 0px;
}

.mb4 {
	margin-bottom: 4px;
}

.mb8 {
	margin-bottom: 8px;
}

.mb16 {
	margin-bottom: 16px;
}

.mb24 {
	margin-bottom: 24px;
}

.mb32 {
	margin-bottom: 32px;
}

.mb48 {
	margin-bottom: 48px;
}

.mb64 {
	margin-bottom: 64px;
}

.mb80 {
	margin-bottom: 80px;
}

.mb100 {
	margin-bottom: 100px;
}

.mt0 {
	margin-top: 0px;
}

.mt4 {
	margin-top: 4px;
}

.mt8 {
	margin-top: 8px;
}

.mt16 {
	margin-top: 16px;
}

.mt24 {
	margin-top: 24px;
}

.mt32 {
	margin-top: 32px;
}

.mt48 {
	margin-top: 48px;
}

.mt64 {
	margin-top: 64px;
}

.mt80 {
	margin-top: 80px;
}

.mt100 {
	margin-top: 100px;
}

@media only screen and (max-width: 480px) {
	.navbar-space {
		margin-top: 1.5rem;
	}

	.image-mascot {
		display: none;
	}

	.btn-show {
		font-size: 16px;
	}

	section.section-card-link {
		padding-top: 0rem;
		padding-bottom: 0;
	}

	.cardlink-container .section-body {
		background-size: 64px;
		padding: 0 16px;
	}

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