 body {
	--color-text: #fff;
	--color-bg: #fff;
	--color-link: #fff;
	--color-link-hover: #ffeb3b;
	--color-reveal: var(--color-bg);
	--color-title: #fff;
	--color-nav: #fff;
	color: #57585c;
	color: var(--color-text);
	background-color: #fff;
	background-color: var(--color-bg);
	/* -webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale; */
}

/* Page Loader */
.js .loading::before {
	content: '';
	position: fixed;
	z-index: 100000;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: var(--color-bg);
}

.js .loading::after {
	content: '';
	position: fixed;
	z-index: 100000;
	top: 50%;
	left: 50%;
	width: 60px;
	height: 60px;
	margin: -30px 0 0 -30px;
	pointer-events: none;
	border-radius: 50%;
	opacity: 0.4;
	background: var(--color-link);
	animation: loaderAnim 0.7s linear infinite alternate forwards;
}

@keyframes loaderAnim {
	to {
		opacity: 1;
		transform: scale3d(0.5,0.5,1);
	}
}


a {
	text-decoration: none;
	color: var(--color-link);
	outline: none;
}

a:hover,
a:focus {
	color: var(--color-link-hover);
}

button:focus,
a:focus {
	outline: none;
}

.hidden {
	position: absolute;
	overflow: hidden;
	width: 0;
	height: 0;
	pointer-events: none;
}

/* Icons */
.icon {
	display: block;
	width: 1.5em;
	height: 1.5em;
	margin: 0 auto;
	fill: currentColor;
}

main {
	position: relative;
	width: 100%;
}

.content {
	text-align: center;
}

/* Header */
.codrops-header {
	position: relative;
	z-index: 100;
	display: flex;
	align-items: center;
	justify-content: center;
	justify-items: center;
}

.codrops-header__title {
	font-size: 1rem;
	line-height: 1;
	font-weight: normal;
	margin: 0 1rem;
}

.info {
	display: block;
	margin: 1rem 0;
}

.github {
	display: block;
}



/* Top Navigation Style */
.codrops-links {
	position: relative;
	display: flex;
	justify-content: center;
	text-align: center;
	white-space: nowrap;
	font-size: 0.85rem;
}

.codrops-icon {
	display: inline-block;
	padding: 0.25em;
}

.slideshow {
	position: inherit;
	width: 100%;
	margin: 3.5rem 0 0 0;
	padding: 0 0 3.5rem 0;
/* 	pointer-events: none; */
	overflow: hidden;
}

.slide {
	width: 100%;
	/* height:auto; */
	top: 0;
	position: absolute;
	display: grid;
	grid-template-columns: 100%;
	grid-template-rows: 100%;
	align-items: center;
	justify-items: center;
}

.slide--current {
	position: relative;
}

.slide__img-wrap {
	grid-area: 1 / 1 / 1 / 1;
	width: 100%;
	height: calc(100vh - 5rem);
	max-height: 100%;
	overflow: hidden;
	position: relative;
	opacity: 0;
	outline: 3px solid transparent;
}

.slide__img {
	width: 100%;
	height: 730px;
	left: 0;
	top: 0;
	background-size: cover;
	background-position: 50% 50%;
	position: absolute;
	backface-visibility: hidden;
	pointer-events: none;
}

.slide__img::after {
	content: '';
	background: rgba(22, 63, 191, 0.62);
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.slide__img-reveal {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background: var(--color-reveal);
	transform: translate3d(-100%,0,0);
	pointer-events: none;
}

.slide__number {
	font-size: 2rem;
	position: absolute;
	top: 5.25rem;
	opacity: 0;
}

.slide__title {
	margin: 0;
	grid-area: 1 / 1 / 1 / 1;
	font-size: 10vw;
	color: var(--color-title);
	position: relative;
	margin-bottom: 1.25rem;
	opacity: 0;
	margin-top: 70px;
}

.slide--current .slide__img-wrap,
.slide--current .slide__number,
.slide--current .slide__title {
	opacity: 1;
}

.slidenav {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	pointer-events: none;
	display: flex;
	justify-content: space-between;
	align-items: center;
	text-transform: lowercase;
}

.slidenav__item {
	pointer-events: auto;
	border: 0;
	background: none;
	padding: 1rem;
	margin: 0.85rem;
	text-transform: inherit;
	position: relative;
	line-height: 1;
	color: var(--color-nav);
}

.slidenav__item::before,
.slidenav__item::after {
	content: '';
	position: absolute;
	width: 3rem;
	height: 1px;
	
	top: 50%;
}

.slidenav__item::before {
	right: 100%;
}

.slidenav__item::after {
	left: 100%;
}

.slidenav__item:hover {
	color: var(--color-link-hover);
}

.slidenav__item{
	color:#000;
	width:50%;
	height:100%;
	font-size:0px;
}


.slidenav__preview {
	pointer-events: auto;
	color: var(--color-nav);
	position: absolute;
	bottom: 0;
	transform: translateX(-50%);
	left: 50%;
	border: 0;
	background: none;
	padding: 1rem;
	transition: 5s transform;
}

.slidenav__preview:hover {
	color: var(--color-link-hover);
}

.slidenav__preview .icon {
	pointer-events: none;
}

.slidenav__preview--open {
	transform: translateX(-50%) rotate(180deg);
}

.preview,
.preview__img-wrap,
.preview__img,
.preview__img-reveal {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	pointer-events: none;
}

.preview {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

.preview__img-wrap {
	overflow: hidden;
	opacity: 0;
}

.preview__img {
	background-size: cover;
	background-position: 50% 50%;
	backface-visibility: hidden;
}

.preview__img::after {
	content: '';
	background: rgba(22, 63, 191, 0.62);
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.preview__img-reveal {
	background: var(--color-reveal);
}

.preview__title {
	position: relative;
	font-size: 1.5rem;
	opacity: 0;
	padding: 0 1rem;
	margin: 0 0 1rem 0;
	text-align: center;
}

.preview__content {
	column-count: 2;
	position: relative;
	text-align: justify;
	opacity: 0;
	padding: 0 1rem;
}

.preview__content p {
	margin: 0;
}

@media screen and (min-width: 53em) {
	body {
		padding: 0;
	}
	.content {
		position: relative;
		display: flex;
		justify-content: center;
		align-items: center;
		margin: 0 auto;
		min-height: 100vh;
		text-align: left;
	}
	.content--fixed {
		position: fixed;
		z-index: 10000;
		top: 0;
		left: 0;
		display: grid;
		align-content: space-between;
		width: 100%;
		max-width: none;
		min-height: 0;
		height: 100vh;
		padding: 1.5rem 2rem;
		pointer-events: none;
		grid-template-columns: 50% 50%;
		grid-template-rows: auto auto auto;
		grid-template-areas: 'codropsheader info'
							'... ...'
							'github ...';
	}
	.codrops-header {
		grid-area: codropsheader;
		padding: 0;
		justify-content: start;
	}
	.codrops-links {
		margin: 0;
	}
	.content--fixed a {
		pointer-events: auto;
	}
	.info {
		margin: 0;
		justify-self: end;
	}
	.github {
		grid-area: github;
		justify-self: start;
	}
	.slideshow {	
		padding: 0;
		margin: 0;
	}
	.slide {
		height: auto;	
	}
	.slide__img-wrap {
		width:100%;
	}
	.preview__title {
		font-size: 2.5rem;
	}
	.preview__content {
		padding: 0 5rem;
		max-width: 600px;
	}
	.slide__img::after,
	.preview__img::after {
		display: none;
	}
}


/* =======code================== */
/*.hotel h2 {
    padding:60px 0px 40px 0px;
    margin: 0;
}*/
.overflow-hidden {
    overflow: hidden;
}

.owl-carousel.owl-theme.top-ad .owl-nav{
	display: none !important;
}

a.d-block {
    display: inline-block; padding: 0px 15px;
}

/*img.logo-img {*/
/*    width: 180px;*/
/*}*/

img.logo-img {
    width: auto;
    height:40px;
    object-fit:contain;
    
}

.d-flex-center {
	align-items: center;
	display: flex;
}

/* .menubox ul li {  background:#231f20;} */
.topmenu.text-right {
    margin-top: 0;
}

.container-auto {
    max-width:1290px;
	margin: 0 auto;
	width:100%;
    /* overflow: hidden; */
    position: relative;
    padding: 0px 15px;
}

.navline {
    position: relative;
}

.bigcaption p{
	margin-bottom: 40px;
}

h3.slide__title p {
    margin-bottom: 40px;
}

 .imagehovereffect figure {
    width: 100%;
} 

.auto-pluse {
    right: -50px !important;
}

.item .partnersinnner span:after {
    color: #d1d3d4;
	top: -15px;
    height: 1px;
    background: #58595B;
}

.beautyblog span {
  margin-top: 25px;
}

.partnersinnner span{
	margin-top: 25px !important;
}



footer {
    padding-bottom: 50px;
}
.mt-img {
    margin-top: 50px;
}

/* .logo-warpper {
    margin-bottom: 20px;
} */

/* .large-fize p {
   font-size: 49px !important; 
} */

.darkHeader .logo-warpper {
    margin-bottom: 0px !important;
}

@media (min-width: 1200px){
	.headtextmain .col-lg-offset-1 {
		margin-left: 4.333333% !important;
	}
}

.mx-9 {
    max-width: 970px;
}

img.promo-img {
    height:180px;
	object-fit: cover;
	width:720px;
	padding-left: 20px;
}


img.img-90 {
    height: 90px;
    object-fit: cover;
}

img.m-h-img {
    width: 300px;
    height: 600px;
    object-fit: cover;
}

img.slider-img {
    height:auto;
    max-height: 800px;
    /*height:calc(100vh - 55px);*/
    object-fit: cover !important;
/* 	object-fit: fill; */
  object-position: 15% 20% !important;
    width: 100%;
    max-width:100%;
} 


h2.title{
	color: #231F20;
    padding: 0px;
    font-family: 'Helvetica';
    font-size: 28px;
    text-transform: none;
	font-weight: 600;
	margin-top: 0;
    margin-bottom: 0px;
}


.py-70 {
    padding: 70px 0px;
}

p.desp {
    color: #231F20;
    font-size: 28px;
    width: 100%;
    line-height: 28px;
    font-family: 'Helvetica';
    font-weight: 600;
}
.cs_font p{
	
	font-size: 15px !important;
    padding-left: 47px;
    font-weight: 200 !important;
	color: #231F20;
	 width: 100%;
    line-height: 28px;
    font-family: 'Helvetica';
    font-weight: 600;
}
.text-align-justify {
    text-align: justify;
}

@media (max-width:767px){
	h2.title {
        font-size: 40px !important;
    }
}
.tooltiptext {
    font-size: 13px;
    display: block;
    opacity: 0;
    transition: .3s;
    color: #231F20;
    font-weight: 400;
    letter-spacing: 1px;
    position: absolute;
    bottom: 0;
    right: 0;
    text-align: right;
}

.plase-hover:hover .tooltiptext {
    opacity: 1;
}

.plase-hover .plash {
    bottom: 26px;
}

.slider-height .slide {
    height:660px ;
} 
/*.imagehovereffect1 a img.img-responsive{*/
/*    object-fit:contain !important;*/
/*    width:auto !important;*/
/*}*/

img.img-responsive {
    width:100%;
    height: 720px;
}

h2.main_title.pl_pb.clr_blue.over_text a strong:hover {
    color: #666;
}
