@import url('https://fonts.googleapis.com/css?family=Hanuman|Raleway:500,700|Ruluko');
@import url('https://fonts.googleapis.com/css?family=Cabin');
@import url('https://fonts.googleapis.com/css?family=Fira+Sans:400,500,600,700,800');
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');


@font-face {
	font-family: 'Roboto';
	src: url('../font/roboto/Roboto-Regular.ttf');
}

@font-face {
	font-family: 'Palatino';
	src: url('../font/paltno.ttf');
}

:root {
	--color-white-100: #fff;
	--color-white-200: #f4f5f5;
	--color-white-300: #c9cccf;
	--color-white-400: #a1a6aa;
	--color-white-500: #798086;
	--color-black-100: #12161c;
	--color-black-200: #101419;
	--color-black-300: #0c0f13;
	--color-black-400: #0c0f13;
	--color-black-500: #080a0c;
	--color-red-100: #ffccd5;
	--color-red-200: #ff99ac;
	--color-red-300: #ff6682;
	--color-red-400: #ff3358;
	--color-red-500: #e6002a;
	--shadow-small: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
	--shadow-medium: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
	--shadow-large: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}


body {
	font-family: 'Roboto', sans-serif, 'Hanuman', serif, 'Raleway', serif;
	font-size: 16px;
	position: relative;
	z-index: 10;
	margin: 0;
	min-height: 100%;
	height: 100%;
	padding: 0;
	display: flex;
	flex-direction: column;
}


* {
	box-sizing: border-box;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: 'Hanuman', sans-serif, 'Raleway', sans-serif;
}

/*--------[Preloader]-----*/

.card h5 {
	font-family: 'Palatino', serif;
	color: #000;
}

.img-responsive {
	width: 100% !important;
}

.vertical-centered-box {
	position: fixed;
	width: 100%;
	height: 100%;
	text-align: center;
	z-index: 9999;
	background: #001ab5;
}

.vertical-centered-box:after {
	content: '';
	display: inline-block;
	height: 100%;
	vertical-align: middle;
	margin-right: -0.25em;
}

.vertical-centered-box .content {
	box-sizing: border-box;
	display: inline-block;
	vertical-align: middle;
	text-align: left;
	font-size: 0;
}

* {
	transition: all .3s;
}

.loader-circle {
	position: absolute;
	left: 50%;
	top: 50%;
	width: 120px;
	height: 120px;
	border-radius: 50%;
	box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1);
	margin-left: -60px;
	margin-top: -60px;
}

.loader-line-mask {
	position: absolute;
	left: 50%;
	top: 50%;
	width: 60px;
	height: 120px;
	margin-left: -60px;
	margin-top: -60px;
	overflow: hidden;
	transform-origin: 60px 60px;
	-webkit-mask-image: -webkit-linear-gradient(top, #000000, rgba(0, 0, 0, 0));
	animation: rotate 1.2s infinite linear;
}

.loader-line-mask .loader-line {
	width: 120px;
	height: 120px;
	border-radius: 50%;
	box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.5);
}

#particles-background,
#particles-foreground {
	left: -51%;
	top: -51%;
	width: 202%;
	height: 202%;
	transform: scale3d(.5, .5, 1);
}

#particles-background {
	background: #2c2d44;
	background-image: -moz-linear-gradient(45deg, #3f3251 2%, #002025 100%);
	background-image: -webkit-linear-gradient(45deg, #3f3251 2%, #002025 100%);
	background-image: linear-gradient(45deg, #3f3251 2%, #002025 100%);
}

@keyframes rotate {
	0% {
		transform: rotate(0deg);
	}

	100% {
		transform: rotate(360deg);
	}
}

@keyframes fade {
	0% {
		opacity: 1;
	}

	50% {
		opacity: 0.25;
	}
}

@keyframes fade-in {
	0% {
		opacity: 0;
	}

	100% {
		opacity: 1;
	}
}



/*--------[Navigation Bar]-----*/
header .menu-inner .active>.menu-link {
	color: red;
}

.navbar-nav {
	z-index: 10;
}

.header.navbar-light .breadcrumb .nav-item.active>.nav-link,
.header.navbar-light .navbar-nav .nav-item.active>.nav-link {
	color: red;
	background: none !important;
}

.header.navbar-light .breadcrumb .nav-item .nav-link:hover,
.header.navbar-light .navbar-nav .nav-item .nav-link:hover {
	color: red !important;
}

.popup-overlay {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 9;
	bottom: 0;
	background-color: rgba(0, 0, 0, 0.5);
	width: 100%;
	height: 100%;
	text-align: center;
	padding: 1rem;
	align-items: center;
	justify-content: center;
}

.popup-overlay .popup {
	display: inline-block;
	width: 400px;
	position: relative;
	min-height: 200px;
	background-color: white;
	border-radius: 5px;
	display: flex;
	overflow: hidden;
	flex-direction: row;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
}

.md-flex {
	display: flex;
	align-items: center;

}

a.close {
	margin-top: 0;
	display: inline-block;
	color: rgb(12, 12, 12);
	border-radius: 5px;
	position: absolute;
	top: 4px;
	right: 4px;
	padding: 0.25rem 0.45rem;
	text-decoration: none;
	text-transform: uppercase;
	font-family: sans-serif;
	margin-right: 1rem;
}

a.close:last-of-type {
	margin-right: 0;
}

.card-header:first-child {
	border-radius: 0;
}

.shape-overlay::before {
	content: '';
	position: absolute;
	background-color: #031238;
	width: 0;
	height: 100%;
	opacity: .8;
	transition: all .3s ease-in-out;
}

.shape-overlay:hover::before {
	width: 100%;
}

.shape-overlay:hover .span-icon {
	opacity: 1;
	top: 42%;
}

.navbar-nav li.active>a {
	color: red;
}

.span-icon {
	padding: 1rem;
	position: absolute;
	background: #f5b63f;
	top: 50%;
	opacity: 0;
	left: 42%;
	transition: all 0.5s linear;
}

.header .menu-link {
	padding-right: 15px;
	padding-left: 15px;
	font-family: 'Raleway', sans-serif, 'Hanuman', sans-serif;
	color: #ffffff;
	text-transform: capitalize;
	font-size: 16px;
}

.contact-us-button-desktop {
	display: flex;
	flex-direction: column;
	align-items: end;
	justify-content: space-between;
	height: 100%;
	margin-left: auto;
	width: 100%;
}

@media(min-width:992px) {
	.header .menu-link {
		padding-right: 15px;
		padding-left: 15px;
		font-family: 'Raleway', sans-serif, 'Hanuman', sans-serif;
		color: #fefefe;
		font-size: 14px;
	}

	.masonry {
		column-count: 4;
	}

	.burger {
		display: none;
		visibility: hidden;
	}

	.menu {
		display: none;
	}
}

.menu-inner {
	list-style: none;
}

.text-responsive {
	font-weight: normal;
	font-family: 'Rockwell', sans-serif, 'Hanuman', sans-serif;
	color: #db2230;
}

.px-8 {
	padding-left: 120px;
	padding-right: 120px;
}

.w-90 {
	width: 90%;
	max-width: 100%;
}

.text-md-right {
	text-align: right;
}

#outside {
	z-index: 2;
	display: none;
}

.show {
	display: block !important;
}

@media(max-width:992px) {
	.text-responsive {
		font-size: 25px;
		font-weight: normal;
		font-family: 'Rockwell', sans-serif, 'Hanuman', sans-serif;
		color: #db2230;
	}

	.px-8 {
		padding-left: 15px !important;
		padding-right: 15px !important;
	}

	.justify-content {
		justify-content: start !important;
	}

	.text-md-right {
		text-align: left !important;
	}
}


.w-40 {
	width: 40%;
}

.log {
	max-width: 365px;
}

.our-mission ul {
	list-style: none;
	padding-left: 15px;
}

.btn-contact {
	background-color: #db2230;
	padding: .45rem 1.25rem;
	border-radius: 40px;
	color: #ffffff;
	font-family: 'Raleway', sans-serif, 'Hanuman', sans-serif;
}

/* @media screen and (max-width: 476px) {
	.btn-contact {
		width: 50%;
  margin: 2rem auto;
	}
} */
/*--------[Product Slider]-----*/
#main {
	-webkit-box-flex: 1;
	-webkit-flex: 1 0 auto;
	-ms-flex: 1 0 auto;
	flex: 1 0 auto;
	display: block;
}

.palatino-font h5 {
	font-family: 'Palatino', serif;
}

.main .category-title-description h1 {
	font-size: 28px;
	font-weight: 500;
	font-family: 'Raleway', sans-serif, 'Hanuman', sans-serif;
}

.main-wrapper {
	position: relative;
	height: 100%;
	max-width: 100%;
	margin: 0 auto;
}

figcaption h4 {
	font-size: 21px;
	font-weight: 500;
	font-family: 'Raleway', sans-serif, 'Hanuman', sans-serif;
}

.thumb-caption .btn {
	border-color: #444;
	background-color: transparent;
	color: #333;
}

figcaption a {
	text-decoration: none;
	color: #444;
}

.header-title h4 {
	font-size: 24px;
	font-weight: 500;
	font-family: 'Raleway', sans-serif, 'Hanuman', sans-serif;
}

figcaption a:hover {
	text-decoration: none;
	color: #444;
}

.thumb-caption .btn:hover {
	background-color: #db2230;
	border-color: #db2230;
	color: #ffffff;
}

.figure-certification {
	max-width: 500px;
	padding: 20px;
	background: #fff;
	box-shadow: 0 1px 15px 2px #eaeaea;
}

.other-related-cert h4 {
	font-size: 24px;
	font-weight: 600;
	font-family: 'Raleway', sans-serif, 'Hanuman', sans-serif;
}

.event-card-container {
	border: none !important;
	border-radius: 0 !important;
	transition: all .3s ease-out;
}

.hover-3d:hover img {
	transform: scale(1.2);
}

.before-blur::before {
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	display: inline-block;
	z-index: 1;
	background: -moz-linear-gradient(top, rgba(255, 255, 255, 0) 0%, rgba(4, 4, 4, 0.67) 100%);
	/* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgba(4, 4, 4, 0.67)), color-stop(100%, rgba(255, 255, 255, 0)));
	/* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top, rgba(255, 255, 255, 0) 0%, rgba(4, 4, 4, 0.67) 100%);
	/* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top, rgba(255, 255, 255, 0) 0%, rgba(4, 4, 4, 0.67) 100%);
	/* Opera 11.10+ */
	background: -ms-linear-gradient(top, rgba(255, 255, 255, 0) 0%, rgba(4, 4, 4, 0.67) 100%);
	/* IE10+ */
	background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(4, 4, 4, 0.67) 100%);
	/* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#002f4b', endColorstr='#00000000', GradientType=0);
}

a:hover {
	text-decoration: none;
}

.figure-img {
	margin-bottom: 15px;
}

.figure-img img {
	transform: scale(1.2);
}

.card-hover:hover {
	box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.event-card-container .card-body h5 {
	color: #444;
	font-weight: 500;
	font-family: 'Raleway', sans-serif, 'Hanuman', sans-serif;
}

@media (max-width: 1440px) {

	.main-wrapper,
	.vc_row .liquid-main-wrapper {
		width: 1720px;
		padding-left: 60px;
		padding-right: 60px;
	}

	.home-sdc-banner {
		margin-top: -100px;
		padding-top: 100px;
	}
}

.contact-list-icon h4,
.social-list-icon h4 {
	font-family: 'Roboto', sans-serif;
	font-size: 21px;
}

.home-sdc-banner {
	height: 100%;
	margin-top: -115px;
	padding-top: 115px;
	/* min-height: 450px; */
	color: #fff;
	position: relative;
}


.h-full {
	height: 100vh;
}

.home-sdc-banner .inner-video-banner {
	position: relative;
	height: 100%;
	width: 100%;
}

.videoLoop {
	z-index: -1;
	position: absolute;
	top: 0;
	left: 0;
	height: 100vh;
	width: 100%;

}

.videoLoop video {
	bottom: 0;
	left: 0;
	position: absolute;
	right: 0;
	top: 0;
	width: 100%;
}

/* Scroll Down */

.home-sdc-banner .scrolldown-wrapper {
	left: 50%;
	position: absolute;
	text-align: center;
	bottom: 0;
	z-index: 10;
	transform: translate(-50%, -50%);
}

.home-sdc-banner .scrolldown {
	border: 2px solid #FFFFFF;
	border-radius: 30px;
	height: 46px;
	margin: 0 auto 8px;
	text-align: center;
	width: 30px;
}

.home-sdc-banner .scrolldown-p1,
.home-sdc-banner .scrolldown-p2 {
	animation-duration: 1.5s;
	animation-name: scrolldown;
	animation-iteration-count: infinite;
	fill: #FFFFFF;
}

.home-sdc-banner .scrolldown-p2 {
	animation-delay: .75s;
}

@keyframes scrolldown {
	0% {
		opacity: 0;
		transform: translate(0, -8px);
	}

	50% {
		opacity: 1;
		transform: translate(0, 0);
	}

	100% {
		opacity: 0;
		transform: translate(0, 8px);
	}
}

#banner_video {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
	-o-object-position: center;
	object-position: center;
}

.videoLoop::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	background-color: rgba(145, 145, 145, 0.26);
}

.event-page-title h4 {
	font-size: 28px !important;
	font-weight: 500 !important;
	font-family: 'Raleway', sans-serif, 'Hanuman', sans-serif;
}

.education-page-title h4 {
	font-size: 28px !important;
	font-weight: 500 !important;
	font-family: 'Raleway', sans-serif, 'Hanuman', sans-serif;
}

/* .home-sdc-banner .overlay-blur::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 2;
	background: rgba(17, 17, 17, .15);
} */

.heading_banner {
	position: absolute;
	top: 50%;
	margin: 0;
	right: auto;
	/* -webkit-transform: translate(9%, -36%);
	-ms-transform: translate(9%, -36%);
	transform: translate(9%, -36%); */
	left: 60px;
	z-index: 2;
	max-width: 100%;
}



.padding-bottom {
	max-width: 1110px;
}


.featured-product-sdc-hotel-home h1 {
	font-family: 'Palatino', serif;
	font-size: 42px;
	font-weight: 600;
	color: #333333;

}

.featured-product-sdc-hotel-home .card-category_product-sdc .absolute-title-sdc {
	padding: 0.75rem 1rem;
	background: #D9D9D9;
	border-radius: 40px;
	align-items: center;
	justify-content: flex-end;
	/* max-width: 334px; */
	width: 60%;
	position: absolute;
	left: 0;
	right: 0;
	margin: auto;
	z-index: 10;
	bottom: -21px;
}

.translate-x-img img {
	transform: translateX(-24px);
}

.translate-x-img:hover img {
	transform: translateX(0px);
}

.justify-content {
	justify-content: end;
}

.related-post h1 {
	font-family: 'Roboto', serif, 'Hanuman', sans-serif;
	font-size: 24px;
	font-weight: 600;
	color: #090909;
	position: relative;
	text-align: center;
}

.related-post h1::after {
	position: absolute;
	content: '';
	width: 78px;
	height: 2px;
	background-color: rgb(236, 177, 17);
	left: 0;
	right: 0;
	margin: 0 auto;
	top: 38px;
}

@media screen and (max-width: 1146px) {
	.card-category_product-sdc .absolute-title-sdc h5 {
		font-size: 18px;
	}

	#copy {
		flex-direction: column;
	}
}

@media screen and (max-width:546px) {
	.max-width-546 {
		position: relative !important;
		width: 100% !important;
		margin: 0;
	}

	.max-width-546 img {
		display: none;
	}

	.padding-right-0:first-child {
		padding-right: 0 !important;
	}
}

@media screen and (max-width:1000px) {
	.card-category_product-sdc .absolute-title-sdc img {
		width: 43px;
		margin-left: 0;
	}

	.card-category_product-sdc .absolute-title-sdc h5 {
		font-size: 16px !important;
		/* margin-right: 10px !important; */
	}

	.featured-product-sdc-hotel-home .card-category_product-sdc .absolute-title-sdc {
		width: 70%;
	}
}

@media screen and (max-width: 790px) {
	.card-category_product-sdc .absolute-title-sdc img {
		width: 32px;
	}
}

@media screen and (max-width: 412px) {
	.featured-product-sdc-hotel-home {
		padding-left: 15px;
		padding-right: 15px;
	}
    .blog-slider__pagination {
        display: none !important;
    }
	.footer .w-md {
		width: 296px !important;
	}

	h1 {
		font-size: 24px !important;
	}

	.font-14 {
		font-size: 14px;
	}

	#copy .condition h4 {
		font-size: 14px !important;
	}
	.log {
		max-width: 100% !important;
	}
}

.card-category_product-sdc .before-opacity-black::before {
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	opacity: 0;
	z-index: 1;
	background-color: var(--color-black-200);
	transition: opacity 0.3s ease-in-out;
}

.hover-scale-img:hover .before-opacity-black img {
	transform: scale(1.2);
}

.hover-scale-img:hover .before-opacity-black::before {
	opacity: 0.4;
}

.card-category_product-sdc .absolute-title-sdc h5 {
	margin-right: 2rem;
	margin-bottom: 0;
	font-size: 24px;
	font-family: 'Raleway', sans-serif, 'Hanuman', sans-serif;
	color: #333333;
}

.slide-wrapper {
	max-width: 1160px;
	height: auto;
	margin-left: auto;
	margin-right: auto;
	position: relative;
	background: #fff;


}

.wrapper-bg {
	background: #eee;
}

.navbar-expand-lg .navbar-toggler {
	border-color: transparent
}

.navbar-light.bg-light {
	background: #001ab5 !important;
}

.navbar {
	display: flex;
	align-items: center;
	align-content: space-between;
	height: 100%;
	padding: 0.75rem 1rem;
	flex-wrap: nowrap;
}


.menu.is-active {
	right: 0 !important;
}

.menu-link {
	font-family: inherit;
	font-size: 1rem;
	font-weight: 500;
	line-height: inherit;
	text-transform: uppercase;
	color: #ffffff;
	transition: all 0.35s ease-in-out;
}

.menu-link:hover {
	outline: none;
	color: var(--color-red-400);
}

.burger {
	position: relative;
	justify-self: end;
	cursor: pointer;
	user-select: none;
	z-index: 99;
	width: 1.6rem;
	height: 1.15rem;
	border: none;
	outline: none;
	background: none;
	visibility: visible;
	transform: rotate(0deg);
	transition: 0.35s ease;
}

.burger-line {
	position: absolute;
	display: block;
	right: 0;
	width: 100%;
	height: 2.1px;
	border: none;
	outline: none;
	opacity: 1;
	border-radius: 1rem;
	transform: rotate(0deg);
	background-color: #ffffff;
	transition: 0.25s ease-in-out;
}

.burger-line:nth-child(1) {
	top: 0px;
}

.burger-line:nth-child(2) {
	top: 0.5rem;
	width: 70%;
}

.burger-line:nth-child(3) {
	top: 1rem;
}

.burger.is-active .burger-line:nth-child(1) {
	top: 0.5rem;
	transform: rotate(135deg);
}

.burger.is-active .burger-line:nth-child(2) {
	opacity: 0;
	visibility: hidden;
}

.burger.is-active .burger-line:nth-child(3) {
	top: 0.5rem;
	transform: rotate(-135deg);
}

.menu {
	position: absolute;
	padding-bottom: 30px;
	padding-top: 30px;
	top: 0;
	box-shadow: none;
	transition: all .3s ease;
	z-index: 10;
	display: block;
	background: #fff;
	height: 100%;
	width: 300px;
	right: -310px;
	box-shadow: 0 2px 8px #a6a6a6;
}

.menu .menu-link {
	color: #000000;
	padding: 0 1.25rem;
}

.menu .menu-item {
	padding: 0.75rem 1rem;
}

.menu .menu-item:hover .menu-link {
	color: red;
}

.menu-inner {
	display: flex;
	flex-direction: row;
	/* column-gap: 1.25rem; */
	margin: 0 auto;
	padding: 0;
}


@media screen and (min-width:540px) {
	#contact-mobile {
		display: none;
		visibility: hidden;
	}
}

@media screen and (max-width:540px) {
	#tabs2 {
		overflow: scroll;
	}
	#tabs li a.icon_accept {
		font-size: 14px;
		padding: 0.25rem 0.5rem !important;
		display: inherit !important;
	}
	.burger {
		position: relative !important;
		margin: 0;
	}
}

/*--------[Category Sidebar-----*/

.submenu-button {
	position: absolute;
	z-index: 99;
	right: 0;
	top: 21px;
	transform: translateY(-50%);
	display: block;
	border-left: 1px solid rgba(120, 120, 120, 0.2);
	height: 41px;
	width: 41px;
	cursor: pointer;
	background: #dbd8d8;
}

.submenu-button::before {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-100%, -50%);
	display: block;
	width: 2px;
	height: 8px;
	background: #000000;
	content: '';
}

.submenu-button::after {
	position: absolute;
	top: 50%;
	right: 50%;
	width: 8px;
	height: 2px;
	display: block;
	background: #080000;
	content: '';
	transform: translate(40%, -50%);
}

.submenu-button.submenu-opened::before {
	background: transparent !important;
}

/*---------[Event Style]--------*/
section .header-title h1 {
	font-family: 'Palatino', serif, 'Hanuman', sans-serif;
	font-size: 42px;
	font-weight: 500;
	color: #ffffff;
}

section .header-tr h1 {
	font-family: 'Roboto', serif, 'Hanuman', sans-serif;
	font-size: 24px;
	font-weight: 600;
	color: #090909;
	position: relative;
}

section .header-tr h1::after {
	position: absolute;
	content: '';
	width: 78px;
	height: 2px;
	background-color: rgb(236, 177, 17);
	left: 0;
	right: 0;
	margin: 0 auto;
	top: 38px;
}

.header-title span {
	font-size: 21px;
	color: #ffffff;
	font-weight: bold;
	text-transform: uppercase;
	position: relative;
}

.header-title span::after {
	position: absolute;
	content: '';
	width: 78px;
	height: 2px;
	background-color: rgb(236, 177, 17);
	left: 0;
	right: 0;
	margin: 0 auto;
	top: 30px;
}

.event-card-container .sdc-event-card h5 {
	font-family: 'Raleway', sans-serif, 'Hanuman', sans-serif;
	font-size: 16px;
	font-weight: 500;
	color: #333333;
}

.sdc-event-card .overflow-hidden {
	overflow: hidden;
}

.sdc-event-card .overflow-hidden img {
	opacity: 1;
	-webkit-transform: scale(1);
	transform: scale(1);
	-webkit-transition: opacity 0.5s, -webkit-transform 0.5s;
	transition: opacity 0.5s, -webkit-transform 0.5s;
	transition: opacity 0.5s, transform 0.5s;
	transition: opacity 0.5s, transform 0.5s, -webkit-transform 0.5s;
}

.sdc-event-card:hover .overflow-hidden img {
	opacity: 0.6;
	-webkit-transform: scale(1.2);
	transform: scale(1.2);
}

/* 
::selection {
	background: rgba(23, 162, 184, 0.3);
} */
.header {
	background-color: #ffffff;
}

.wrapper {
	width: 100%;
	border-radius: 5px;
	background: #fff;
}


.Centered {
	border: none;
	bottom: 0;
	padding: 0;
	position: relative;
	z-index: 1
}


#TextContent {
	display: block;
	font: Calibri, Arial, "Trebuchet MS", sans-serif;
	position: relative;
	text-decoration: none;
	width: 100%;
}

.tabtext {
	-moz-border-radius: 10px 10px 0 0;
	-webkit-border-top-left-radius: 10px;
	-webkit-border-top-right-radius: 10px;
	border-radius: 10px 10px 0 0;
	display: inline;
	font-size: 16px;
	height: 25px;
	position: absolute;
	width: 261px;
}

#tabs_container {
	left: 10px;
}

#tabs {
	list-style: none;
	margin: 0;
	padding: 0;
	text-decoration: none
}

#tabs li {
	display: inline
}

#tabs li a {
	border-bottom: none;
	outline: none;
	position: relative;
	text-align: center;
	text-decoration: none
}



#Nottabs li {
	font-size: 12px;
}

#Nottabs li a {
	font-size: 12px;
	position: relative;
	text-decoration: none
}

.TT1 {
	display: inline;
	float: left;
	z-index: 5
}

#LinksTT1 {
	display: inline;
	z-index: 5
}

.TT2 {
	display: inline;
	z-index: 5
}

#LinksTT2 {
	display: inline;
	z-index: 5
}

.TT3 {
	display: inline;
	z-index: 6
}

#LinksTT3 {
	display: inline;
	z-index: 6
}

#tabs li a:hover {
	color: rgb(186, 30, 13);
}

#tabs li.active a.icon_accept {
	color: rgb(186, 30, 13);
}

#tabs li.active a:hover {
	border-bottom: none;
}

#tabs li a.icon_accept {
	background-repeat: no-repeat;
	color: #080808;
	display: inline-block;
	padding: 0.25rem 1.5rem;
}

#tabs li a.icon_accept:hover {
	color: rgb(186, 30, 13);
}

#tabs_content_container {
	position: relative;
	top: 0;
	border-top: none;
	width: 100%;
}

.tab_content {
	display: none;
	padding-bottom: 40px;
	padding-top: 20px;
	width: 100%;
}

.clear {
	clear: both;
}


@media screen and (max-width:419px) {
	.wrapper nav label .label-amount {
		display: none !important;
	}

	.wrapper nav label .album-title {
		display: none;
	}

	.biz-partner-sdc .swiper-button-next,
	.swiper-button-prev {
		display: none;
	}

	.biz-partner-sdc .header-title p {
		width: 100% !important;
	}

	.form-contact-sdc {
		padding-left: 15px !important;
		padding-right: 15px !important;
	}
}

.wrapper nav {
	position: relative;
	width: 50%;
	height: 50px;
	display: flex;
	align-items: center;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 40px;
}

.wrapper nav label {
	display: flex;
	height: 100%;
	width: 100%;
	text-align: center;
	line-height: 1;
	cursor: pointer;
	position: relative;
	z-index: 1;
	justify-content: center;
	color: #333333;
	font-size: 17px;
	border-radius: 5px;
	align-items: center;
	margin: 0 5px;
	transition: all 0.3s ease;
}

.wrapper nav label .label-amount {
	background-color: #EEEEEE;
	padding-left: 8px;
	padding-right: 8px;
	padding-bottom: 2px;
	font-weight: 600;
	border-radius: 4px;
	padding-top: 2px;
	margin-left: 3px;
	color: #000000;
}

/* .wrapper nav label:hover {
	background: rgba(23, 162, 184, 0.3);
} */

#seminar:checked~nav label.seminar span,
#talk-show:checked~nav label.talk-show span,
#factory-tour:checked~nav label.factory-tour span,
#housekeeping:checked~nav label.housekeeping span {
	color: #af0f0f;
	background-color: #FDDBDB;
}

nav label i {
	padding-right: 7px;
}

.sub-menu-advance {
	position: absolute;
	position: absolute;
	width: 12em;
	border-width: 0;
	border-style: solid;
	padding: 0.65rem;
	border-radius: 8px 8px 8px 8px;
	box-shadow: 8px 8px 20px 0px rgba(0, 0, 0, 0.08);
	min-width: 180px;
	background-color: #fff;
	display: none;
	list-style: none;
	line-height: normal;
	margin: 0;
	border-radius: 8px;
	top: auto;
	left: 0px;
	margin-left: 0px;
	margin-top: 0px;
	max-width: 1000px;
	overflow-wrap: break-word;
	z-index: 99;
}

.hover-glow {
	position: relative;
}

.hover-glow .glow-wrap {
	overflow: hidden;
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	cursor: pointer;
	margin-left: -10px;
}

.hover-glow .glow {
	display: block;
	position: absolute;
	width: 40%;
	height: 100%;
	background: rgba(255, 255, 255, .2);
	left: 0;
	filter: blur(5px);
	transform: rotate(45deg) translate(-450%, 0);
	transition: all .5s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.hover-glow:hover .glow {
	transform: rotate(45deg) translate(450%, 0);
	transition: all 1s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.hover-glow:hover img,
.hover-glow:hover .glow-wrap {
	margin-left: 0;
}

.sub-menu-advance li:hover a {
	background: #D9D9D9;
	border-radius: 8px;

}

.view-submenu {
	display: block;
}

.sub-menu-advance li {
	display: block;
	list-style: none;
	margin: 0;
	padding: 0;
	line-height: normal;
	position: relative;
	border-width: 0;

}

.sub-menu-advance li a {
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	padding: 6px 20px;
	line-height: 1.82;
	font-size: 16px;
	color: #000000;
	font-family: 'Raleway', sans-serif, 'Hanuman', sans-serif;
	text-decoration: none;
	border: none;
	border-left-width: medium;
	border-left-style: none;
	border-left-color: currentcolor;
	height: 100%;
}

nav .slider {
	position: absolute;
	height: 100%;
	width: 20%;
	left: 0;
	bottom: 0;
	z-index: 0;
	/* border-radius: 5px; */
	/* background: #17a2b8; */
	transition: all 0.3s ease;
}

input[type="radio"] {
	display: none;
}

#housekeeping:checked~nav .slider {
	left: 20%;
}

#factory-tour:checked~nav .slider {
	left: 40%;
}

#seminar:checked~nav .slider {
	left: 60%;
}

#talk-show:checked~nav .slider {
	left: 80%;
}

section .content {
	display: none;
	background: #fff;
}

#housekeeping:checked~section .content-1,
#factory-tour:checked~section .content-2,
#seminar:checked~section .content-3,
#talk-show:checked~section .content-4 {
	display: block;
}

section .content .title {
	font-size: 21px;
	font-weight: 500;
	margin: 30px 0 10px 0;
}

section .content p {
	text-align: justify;
}

.playIcon {
	width: auto;
	height: auto;
	position: absolute;
	top: 30%;
	left: 45%;
	cursor: pointer;
}

#headerPopup {
	width: 75%;
	margin: 0 auto;
}

#headerPopup iframe {
	width: 100%;
	margin: 0 auto;
}

/*------[Promotion]-----*/
.white-popup {
	position: relative;
	background: #FFF;
	padding: 40px;
	width: auto;
	max-width: 500px;
	margin: 20px auto;
	transition: 1s all;
}


.blog-slider__pagination {
	position: absolute;
	z-index: 21;
	right: auto;
	/* width: 65px !important; */
	text-align: center;
	/* left: 50% !important; */
	justify-content: center;
	padding-bottom: 20px;
	display: flex;
}

@media screen and (max-width: 768px) {
	.blog-slider__pagination {
		transform: translateX(-50%);
		left: 50% !important;
		top: 205px;
		width: 100% !important;
		display: flex;
		justify-content: center;
		align-items: center;
	}

	.blog-slider__pagination.swiper-pagination-bullets .swiper-pagination-bullet {
		margin: 0 5px;
	}

	.contact-us-button-desktop {
		flex-direction: row-reverse;
		justify-content: space-between !important;
		padding-top: 15px;
	}
}

.blog-slider__pagination.swiper-pagination-bullets .swiper-pagination-bullet {
	margin: 0 4px;
}


.blog-slider__pagination .swiper-pagination-bullet {
	width: 8px;
	height: 8px;
	display: block;
	border-radius: 50%;
	background: #ffffff;
	opacity: 1;
	border: 1px solid rgb(255, 255, 255);
	position: relative;
	transition: all 0.3s;
}

.blog-slider__pagination .swiper-pagination-bullet-active::before {
	position: absolute;
	top: 50%;
	left: 50%;
	width: calc(100% + 10px);
	height: calc(100% + 10px);
	transform: translate(-50%, -50%);
	border: 1px solid rgb(255, 255, 255);
	content: "";
	border-radius: 50%;
}

/* @media screen and (max-width: 768px) {
	.blog-slider__pagination .swiper-pagination-bullet-active {
		height: 6px;
		width: 30px;
	}
} */




@media screen and (max-width: 768px) {
	.blog-slider__content {
		margin-top: 0;
		text-align: center;
		padding: 0 30px;
	}

	.wrapper nav {
		width: 100%;
		padding-top: 15px;
		height: auto;
	}

	.wrapper .education h1 {
		transform: translateY(0);
	}

	.md-flex {
		flex-direction: column;
	}
}

.translate-x img {
	width: calc(100% + 50px) !important;
	max-width: calc(100% + 50px);
	transition: opacity 0.35s, transform 0.35s;
	transform: translate3d(-40px, 0, 0);
}

.translate-x:hover img {
	transform: translate3d(0, 0, 0);
	transition: opacity 0.35s, transform 0.35s;
}

.text-md {
	font-size: 21px;
	color: #001ab5;
}

/*--------[Products Info]-----*/
.masonry {
	column-count: 2;
	column-gap: 15px;
}

@media (min-width: 768px) {
	.masonry {
		column-count: 3;
	}
}


@media (min-width: 1199px) {
	.masonry {
		column-count: 5;
	}
}

.masonry .brick {
	box-sizing: border-box;
	-webkit-column-break-inside: avoid;
	page-break-inside: avoid;
	break-inside: avoid;
	counter-increment: brick-counter;
	margin-bottom: 15px;
	position: relative;
	overflow: hidden;
}

.masonry img {
	width: 100%;
	height: 100%;
	object-fit: cover;

}


.media-type {
	height: 400px;
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	color: #fff;
	font-size: 42px;
}

@media screen and (min-width: 1280px) {
	.container {
		margin: 0 auto;
		width: 1250px;
	}
}

/*  21. Product View  */

.availability.in-stock {
	padding: 3px 0px;
	position: absolute;
	top: 18px;
	right: 0px;
}

.availability.in-stock span {
	color: #fff;
	font-size: 11px;
	line-height: 16px;
	display: block;
	background: #6dbe14;
	text-transform: uppercase;
	padding: 3px 6px;
}

.availability.in-stock span:before {
	content: "\e080";
	font-family: 'Simple-Line-Icons';
	display: inline-block;
	margin-right: 5px;
	font-size: 11px;
	vertical-align: middle
}

.availability.out-of-stock {
	padding: 3px 10px;
	position: absolute;
	top: 18px;
	right: 0px;
}

.availability.out-of-stock span {
	color: red;
	font-size: 12px;
	line-height: 16px;
	display: block;
	text-transform: uppercase;
}

.availability.out-of-stock span:before {
	content: '\f00d';
	font-family: FontAwesome;
	display: inline-block;
	margin-right: 5px;
	font-size: 12px;
	vertical-align: middle
}

.products-grid .item .actions .availability.out-of-stock {
	background: #fff;
	border: medium none;
	display: inline-block;
	height: 50px;
	line-height: 50px;
	padding: 0;
	text-align: center;
	width: 50px;
	position: relative;
	top: 0px;
}

.products-grid .item .actions .availability.out-of-stock span.ava-out-of-stock {
	display: none;
}

.products-grid .item .actions .availability.out-of-stock span:before {
	content: inherit;
}

.products-grid .item .actions .availability.out-of-stock:before {
	content: "\e04f";
	font-family: 'Simple-Line-Icons';
	color: #999
}

.products-list .product-shop p.availability.out-of-stock {
	border: 2px solid red;
	color: #666;
	display: inline-block;
	font-size: 13px;
	line-height: 1.5em;
	padding: 6px 10px;
	position: relative;
	text-transform: uppercase;
	top: 0;
}

.product-view .product-shop .price-block {
	position: relative;
}

.product-view .product-shop .price-box {
	display: block;
	margin: 0px;
	padding: 12px 0px;
	position: relative
}

.product-view .product-shop .grouped-items-table .price-box {
	border-bottom: 0px solid #ddd;
	margin: 0;
	padding: 0;
}

.product-view .product-shop .price-box .old-price {
	margin: 0px;
	margin-top: 0;
	display: inline-block;
}

.product-view .product-shop .special-price {
	display: inline-block;
	margin: 0;
	padding: 0;
}

.product-view .product-shop .old-price .price {
	font-size: 20px;
	font-weight: normal;
	vertical-align: 4px;
}

.product-view .product-shop .price {
	font-size: 24px;
	color: #000;
}

.add-to-cart .qty,
.qty-holder .qty {
	background-color: #FFFFFF;
	border: 1px solid #E0E0E0;
	border-radius: 0px;
	font-size: 15px;
}

.add-to-cart .qty {
	height: 40px;
	text-align: center;
	width: 60px;
	vertical-align: top;
	margin: 0px;
}

.qty-input-text {
	float: left;
	margin-left: 10px;
}

.custom button.items-count {
	transition: color 300ms ease-in-out 0s, background-color 300ms ease-in-out 0s, background-position 300ms ease-in-out 0s;
	font-size: 12px;
	line-height: 0px;
	padding: 13px 12px 9px 12px;
	height: 40px;
	width: 40px;
}

.product-view .product-shop .add-to-box .add-to-cart label {
	display: inline-block;
	float: left;
	margin-top: 6px;
	text-align: left;
	text-transform: capitalize;
	font-size: 15px;
	font-weight: normal;
	margin-right: 15px;
}

.product-view .product-shop .product-options-bottom .add-to-cart label {
	display: block;
	float: none;
	margin-bottom: 5px;
	text-align: left;
	text-transform: uppercase;
}

/*---------	17. Biz partner --------- */
.biz-partner-sdc {
	text-align: left;
	position: relative
}

.biz-partner-sdc .header-title h1 {
	font-family: 'Raleway', sans-serif, 'Hanuman', sans-serif;
	font-size: 42px;
	font-weight: 500;
	padding-bottom: 30px;
	color: #333333;
}

.biz-partner-sdc .header-title p {
	width: 50%;
	font-family: 'Roboto', sans-serif;
}

.biz-partner-sdc .swiper-button-next,
.swiper-button-prev {
	color: #333333 !important;
	/* width: 32px;
	height: 32px;
	border: 1px solid #444;
	border-radius: 100%; */
	z-index: 1 !important;
}

.swiper-button-prev {
	left: 50px;
	top: 70%;
}

.swiper-button-next {
	right: 50px;
	top: 70%;
}

.top-detail-about h2 {
	font-family: 'Raleway', sans-serif, 'Hanuman', sans-serif;
	font-size: 26px;
	font-weight: 600;
}

.our-mission h3 {
	font-family: 'Raleway', sans-serif, 'Hanuman', sans-serif;
	font-size: 26px;
	font-weight: 600;
}

.biz-partner-sdc .swiper-button-next::after,
.swiper-button-prev::after {
	font-size: 24px;
}

.event-title h5 {
	font-family: 'Raleway', sans-serif, 'Hanuman', sans-serif;
	font-weight: 500;
}

.carousel-wrapper {
	transform: translateY(50px);
}

/*--------[Contact form]--------*/
.sdc-contact-info {
	padding-top: 120px;
	padding-bottom: 120px;
	background-image: url('../img//tourist.jpg');
	background-repeat: no-repeat;
	background-size: cover;
	position: relative;
	background-position: center center;
}

.border-0 {
	border: 0;
}

.p-0 {
	padding: 0;
}

.sdc-contact-info::after {
	content: '';
	position: absolute;
	width: 100%;
	top: 0;
	left: 0;
	height: 100%;
	z-index: 0;
	background-color: #24242482;
	opacity: 0.7;
}

.form-contact-sdc {
	background-color: #FBFBFB;
	padding: 80px 50px;
	border-radius: 8px;
	z-index: 10;
}

.form-contact-sdc .form-group .form-control {
	padding: 1.48rem 1rem;
	background-color: rgb(255, 255, 255);
	border-radius: 12px;
	border: none;
}

.form-contact-sdc h5 {
	margin-bottom: 20px;
	font-size: 42px;
	font-weight: 500;
	text-transform: uppercase;
	font-family: 'Raleway', sans-serif, 'Hanuman', sans-serif;
	color: #333333;
	text-align: center;
}

.sdc-contact-info .flex-1 {
	justify-content: space-between;
	align-items: baseline;
	z-index: 10;
	position: relative;
	font-family: 'Roboto', sans-serif;
}

.contact-info-left h1 {
	font-family: 'Raleway', sans-serif, 'Hanuman', sans-serif;
	font-size: 42px;
	font-weight: 500;
	text-transform: uppercase;
	padding-bottom: 30px;
	color: #ffffff;
}

.location-info {
	margin-top: 10px;
	padding: 20px;

}

.location-info .context h4 {
	font-family: 'Roboto', sans-serif;
	font-size: 21px;
	font-weight: 600;
}

.social-list {
	margin: 0;
	padding: 0;
	justify-content: center;
	display: flex;
}

.social-list li {
	list-style: none;
	padding: 15px;
}

.list-contact {
	color: #ffffff;
	list-style: none;
	margin: 0;
	padding: 0;

}

.footer h4 {
	font-family: 'Roboto', sans-serif;
	font-size: 21px;
}

.footer::before {
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	background: linear-gradient(to right, #3890c6 0%, #8ec6f7ba 27%, #3798ea 100%);
	top: 0;
	left: 0;
	opacity: 0.9;
}

.footer .w-md {
	width: 368px;
}

.list-contact li {
	font-size: 16px;
	margin-bottom: 20px;
	font-family: 'Roboto', sans-serif;
	display: flex;
}

input.parsley-success,
select.parsley-success,
textarea.parsley-success {
	color: #468847;
	background-color: #DFF0D8;
	border: 1px solid #D6E9C6;
}

input.parsley-error,
select.parsley-error,
textarea.parsley-error {
	color: #B94A48;
	background-color: #F2DEDE;
	border: 1px solid #EED3D7;
}

.parsley-errors-list {
	margin: 2px 0 3px;
	padding: 0;
	list-style-type: none;
	font-size: 0.9em;
	line-height: 0.9em;
	opacity: 0;

	transition: all .3s ease-in;
	-o-transition: all .3s ease-in;
	-moz-transition: all .3s ease-in;
	-webkit-transition: all .3s ease-in;
}

.parsley-errors-list.filled {
	opacity: 1;
}

.parsley-type,
.parsley-required,
.parsley-equalto {
	color: #ff0000;
}

.job-card {
	display: flex;
	padding: 30px;
	background-color: white;
	width: 100%;
	align-items: center;
	justify-content: space-between;
	border-radius: 5px;
	margin-bottom: 20px;
	box-shadow: 0 0 11px rgba(33, 33, 33, .2);
}

@media (max-width: 767px) {
	.job-card {
		display: block;
		padding: 20px;
		margin-bottom: 50px;
	}
}



.job-card p {
	font-size: 15px;
	color: var(--color-red-500);
	font-weight: 500;
	line-height: 1.4;
}

@media (max-width: 767px) {
	.job-card__info {
		padding-bottom: 20px;
	}
}

.career-detail-top h4 {
	font-family: 'Raleway', sans-serif, 'Hanuman', sans-serif;
	font-size: 28px;
	font-weight: 600;
}

.career-detail-top .post-date {
	font-size: 21px;
	color: #939c9b;
}

.description-job {
	font-size: 21px;
}

.description-job span {
	color: #6f6f6f;
}

.post-date span {
	padding: 0.45rem 1.25rem;
	margin-left: 2rem;
	background: #ffeff2;
	border-radius: 50px;
	color: var(--color-red-500);
	font-size: 14px;
}

.job-card__info a:hover {
	text-decoration: none;
}

.job-card__info .img-c {
	height: 88px;
	width: 88px;
	margin-right: 15px;
}

@media (max-width: 767px) {
	.job-card__info .img-c {
		height: 60px;
		width: 60px;
		margin: -50px 0 10px 0;
	}
}

.job-card__info .img-c img {
	height: 100%;
	width: 100%;
	object-fit: contain;
}

.job-card__info p {
	font-weight: 700;
	margin-bottom: 7px;
}

.job-card__info .tag-new {
	padding: 7px 10px;
	background-color: var(--color-red-300);
	color: white;
	border-radius: 20px;
	margin-left: 10px;
	text-transform: uppercase;
	font-size: 11px;
	display: none;
}

.job-card__info .tag-featured {
	padding: 7px 10px;
	background-color: black;
	color: white;
	border-radius: 20px;
	margin-left: 10px;
	text-transform: uppercase;
	font-size: 11px;
	display: none;
}

.job-card__info h6 {
	color: #323838;
	font-size: 18px;
	font-weight: 700;
}

.job-card__info ul {
	display: flex;
	list-style-type: none;
	padding: 0;
	margin: 0;
}

.job-card__info ul li {
	font-size: 15px;
	color: #939c9b;
	padding: 0 10px;
	position: relative;
}

.job-card__info ul li:before {
	content: "";
	height: 4px;
	width: 4px;
	position: absolute;
	top: 50%;
	background-color: #939c9b;
	border-radius: 50%;
	left: -2px;
	transform: translateY(-50%);
}

.job-card__info ul li:first-child {
	padding-left: 0;
}

.job-card__info ul li:first-child:before {
	display: none;
}

.job-card__info ul li:last-child {
	padding-right: 0;
}

.job-card.new .tag-new {
	display: block;
}

.job-card.featured .tag-featured {
	display: block;
}

.job-card__tags {
	display: flex;
	flex-wrap: wrap;
	padding-left: 20px;
	list-style-type: none;
}

@media (max-width: 767px) {
	.job-card__tags {
		padding-top: 20px;
		padding-left: 0;
		border-top: 1px solid #939c9b;
	}
}

.job-card__tags li {
	margin-right: 10px;
	margin-bottom: 0;
	padding: 7px 15px;
	border-radius: 4px;
	color: var(--color-white-100);
	font-weight: 500;
	background-color: var(--color-black-400);
	margin: 5px 10px 5px 0;
	cursor: pointer;
	transition: all ease 0.2s;
}

.job-card__tags li:hover {
	background-color: var(--color-red-400);
	color: white;
}

.job-card__tags li:first-child {
	background-color: transparent;
	color: var(--color-black-400);
}

.job-card__tags li:last-child {
	margin-right: 0;
}

/*--------[Footer Bar]-----*/
#copy {
	border-top: 1px solid #061235;
	box-shadow: 0 0px 2px #202020;
	background-color: #031238;
}

#copy .condition h4 {
	font-size: 16px;
	color: #ffffff;
	font-family: 'Roboto', sans-serif, 'Hanuman', serif, 'Raleway', serif;
}