html,
body {
	font-family: 'Poppins', sans-serif;
	/*font-family: 'Balthazar', serif;*/
}

input,
textarea {
	width: 100%;
	padding: 10px;
}

label {
	margin-top: 10px;
}

a,
a:focus,
a:active,
a:hover {
	text-decoration: none;
}

.bottom-menu {
	position: sticky;
	top: 0px;
	z-index: 10;
}

.footer {
	position: sticky;
	bottom: 0px;
	z-index: 10;
}

.bottom-menu,
.footer,
#menu-parent2 {
	background-color: #0e0045;
	color: white;
}

.mobile-menu {
	background-image: linear-gradient(white, white, white, white, #dedede, black);
	color: black;
}

.bottom-menu a {
	text-align: center;
}

.submenu {
	margin-top: 14px;
}

.submenu2 {
	margin-top: 12px;
}

.submenu,
.submenu2 {
	background-color: #0e0045;
	width: max-content;
	padding: 5px 0px;
}

.submenu .link,
.submenu2 .link {
	padding: 5px 10px;
	text-align: left;
}

.link {
	font-weight: bold;
	color: white;
	cursor: pointer;
	font-family: "Franklin Gothic Demi";
}

.link:hover {
	color: #6bd5ff;
}

.width160 {
	width: 160px;
}

.menu-parent {
	vertical-align: middle;
	text-align: center;
	padding-top: 10px;
}

td.menu-parent,
td.menu-parent2,
td.menu-parent3 {
	text-align: center;
}

td.menu-parent:after,
td.menu-parent2:after,
td.menu-parent3:after {
	content: '';
	display: block;
	left: 0;
	bottom: 0;
	width: 0;
	height: 3px;
	background: #fff;
	transition: all .6s ease;
}

td.menu-parent:hover:after,
td.menu-parent2:hover:after,
td.menu-parent3:hover:after {
	width: 100%;
}

td.menu-parent:after {
	margin-top: 10px;
}

td.menu-parent2,
td.menu-parent3 {
	padding-top: 10px;
}

td.menu-parent2:after,
td.menu-parent3:after {
	margin-top: 10px;
}

.img-vc {
	box-shadow: 0 .5rem 1rem rgba(0,0,0,.15)!important;
}

.blockquote-custom-icon {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	position: absolute;
	top: -25px;
	left: 50px;
}

#logo-mobile {
	width: 50px;
	height: 40px;
}

#logo {
	width: 70px;
	padding: 10px 0px;
}

#logo-ikkm {
	width: 75px;
}

#logo-mobile-ikkm {
	width: 35px;
}

#banner-content {
	z-index: 2;
	position: absolute;
	margin-top: 100px;
}

#banner-text {
	font-size: 50px;
	font-weight: bold;

	background-image: linear-gradient(-225deg,
			#231557 0%,
			#44107a 29%,
			#ff1361 67%,
			#fff800 100%);
	background-size: auto auto;
	background-clip: border-box;
	background-size: 200% auto;
	color: #fff;
	background-clip: text;
	text-fill-color: transparent;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	animation: textclip 2s linear infinite;
}

@keyframes textclip {
	to {
		background-position: 200% center;
	}
}

.theme-color,
.theme-color a {
	color: #2f0ac2;
}

.word {
	margin: auto;
	color: white;
	font: 700 normal 2.5em 'tahoma';
	text-shadow: 5px 2px #222324, 2px 4px #222324, 3px 5px #222324;
}


@bg: #2d2d37; // Dark blue
@primary: #fd6b21; // Orange

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

.arrow {
	text-align: center;
	margin: 8% 0;
}

.bounce {
	-moz-animation: bounce 2s infinite;
	-webkit-animation: bounce 2s infinite;
	animation: bounce 2s infinite;
}

@keyframes bounce {

	0%,
	20%,
	50%,
	80%,
	100% {
		transform: translateY(0);
	}

	40% {
		transform: translateY(-30px);
	}

	60% {
		transform: translateY(-15px);
	}
}



@import url('https://fonts.googleapis.com/css?family=Roboto:300');

.abody {
	text-align: center;
	background: linear-gradient(141deg, #ccc 25%, #eee 40%, #ddd 55%);
	color: #555;
	font-family: 'Roboto';
	font-weight: 300;
	font-size: 32px;
	overflow: hidden;
	height: 220px;
	-webkit-backface-visibility: hidden;
	-webkit-perspective: 1000;
	-webkit-transform: translate3d(0, 0, 0);
}

.adiv {
	display: inline-block;
	overflow: hidden;
	white-space: nowrap;
}


.adiv:first-of-type {
	/* For increasing performance 
                       ID/Class should've been used. 
                       For a small demo 
                       it's okaish for now */
	animation: showup 7s infinite;
}

.adiv:last-of-type {
	width: 0px;
	animation: reveal 7s infinite;
}

.adiv:last-of-type span {
	margin-left: -100%;
	animation: slidein 7s infinite;
}

@keyframes showup {
	0% {
		opacity: 0;
	}

	20% {
		opacity: 1;
	}

	80% {
		opacity: 1;
	}

	100% {
		opacity: 0;
	}
}

@keyframes slidein {
	0% {
		margin-left: -800px;
	}

	20% {
		margin-left: -800px;
	}

	35% {
		margin-left: 0px;
	}

	100% {
		margin-left: 0px;
	}
}

@keyframes reveal {
	0% {
		opacity: 0;
		width: 0%;
	}

	20% {
		opacity: 1;
		width: 0%;
	}

	30% {
		width: 100%;
	}

	80% {
		opacity: 1;
	}

	100% {
		opacity: 0;
		width: 100%;
	}
}


#abody p {
	font-size: 12px;
	color: #999;
	margin-top: 200px;
}









.container .map {
	width: 45%;
	float: left;
}

.container .contact-form {
	width: 53%;
	margin-left: 2%;
	float: left;
}

.container .contact-form .title {
	font-size: 2.5em;
	font-family: "Roboto", sans-serif;
	font-weight: 700;
	color: #242424;
	margin: 5% 8%;
}

.container .contact-form .subtitle {
	font-size: 1.2em;
	font-weight: 400;
	margin: 0 4% 5% 8%;
}

.container .contact-form input,
.container .contact-form textarea {
	width: 330px;
	padding: 3%;
	margin: 2% 8%;
	color: #242424;
	border: 1px solid #B7B7B7;
}

.container .contact-form input::placeholder,
.container .contact-form textarea::placeholder {
	color: #242424;
}

.container .contact-form .btn-send {
	background: #A383C9;
	width: 180px;
	height: 60px;
	color: #FFFFFF;
	font-weight: 700;
	margin: 2% 8%;
	border: none;
}


.carousel2 .carousel-indicators {
	position: relative;
}

.carousel2 .carousel-indicators li.active {
	background-color: black;
}

.carousel2 .carousel-indicators li {
	background-color: white;
	border: 1px solid black;
	border-radius: 50%;
	width: 10px;
	height: 10px;
}

.carousel .fa {
	font-size: 50px;
	color: #dedede;
	cursor: pointer;
}

.carousel2 .fa {
	cursor: pointer;
	color: red;
	font-size: 100px;
}

.carousel2 .fa-angle-left {
	margin-left: -250px;
}

.carousel2 .fa-angle-right {
	margin-left: 250px;
}



.single-item .slick-next {
	right: 50px;
}

.single-item .slick-prev {
	left: 30px;
	z-index: 10;
}

.slick-prev:before,
.slick-next:before {
	font-size: 30px;
}

.single-item .slick-dots li button:before {
	font-size: 15px;
	top: -30px;
}


.slider-2nd .slick-prev:before,
.slider-2nd .slick-next:before {
	color: black;
}

.slider-2nd .slick-prev {
	left: -45px;
}

.slider-2nd .slick-next {
	right: -45px;
}

.slider-2nd .slick-dots li button:before {
	font-size: 60px;
	content: '-';
}

.facilities-item .slick-next {
	right: 50px;
}

.facilities-item .slick-prev {
	left: 30px;
	z-index: 10;
}

.facilities-item .slick-dots li button:before {
	font-size: 15px;
	top: -30px;
}



@media (max-width: 1199px) {

	.slick-prev:before,
	.slick-next:before {
		display: none;
	}

	.slick-list,
	.slick-slide {
		max-width: 100%;
	}

	#menu-parent2::-webkit-scrollbar {
		width: 3px;
	}
}

.slider-2nd img {
	width: 100%;
}

.card {
	min-height: 276px;
}

.top-menu {
	background-image: url(../image/top.PNG);
	/*, linear-gradient(transparent, transparent, transparent, transparent, #dedede, black);*/
	background-size: 100% 50px;
	background-repeat: no-repeat;
	height: 150px;
}

.video-item {
	width: 100%;
	height: 300px;
	background-color: black;
}

.slick-initialized .slick-slide {
	display: flex;
}

@font-face {
	font-family: "Franklin Gothic Demi";
	src: url(../font/FRADM.TTF);
}

.video-title {
	position: absolute;
	margin-top: 20px;
	padding: 10px;
	background-color: red;
	color: white;
	z-index: 1;
}

a.selection table:hover {
	box-shadow: 0px 0px 20px black;
}

.selection .background {
	background-position: center;
	background-size: cover;
	height: 300px;
}

/* start history timeline */
.timeline-steps {
	display: flex;
	justify-content: center;
	flex-wrap: wrap
}

.timeline-steps .timeline-step {
	align-items: center;
	display: flex;
	flex-direction: column;
	position: relative;
	margin: 1rem
}

@media (min-width:768px) {
	.timeline-steps .timeline-step:not(:last-child):after {
		content: "";
		display: block;
		border-top: .25rem dotted #3b82f6;
		width: 3.46rem;
		position: absolute;
		left: 7.5rem;
		top: .3125rem
	}

	.timeline-steps .timeline-step:not(:first-child):before {
		content: "";
		display: block;
		border-top: .25rem dotted #3b82f6;
		width: 3.8125rem;
		position: absolute;
		right: 7.5rem;
		top: .3125rem
	}
}

.timeline-steps .timeline-content {
	width: 10rem;
	text-align: center
}

.timeline-steps .timeline-content .inner-circle {
	border-radius: 1.5rem;
	height: 1rem;
	width: 1rem;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background-color: #3b82f6
}

.timeline-steps .timeline-content .inner-circle:before {
	content: "";
	background-color: #3b82f6;
	display: inline-block;
	height: 3rem;
	width: 3rem;
	min-width: 3rem;
	border-radius: 6.25rem;
	opacity: .5
}

/* end history timeline */