/*-----------------------------------------------------------
* Template Name    : Wingman -  Template
* Author           : Dark Photonix
* Version          : 1.0.0
* Created          : Jan 2024
* File Description : Main css file of the template
*------------------------------------------------------------
*/

/***********************
    1.FONTS
    2.BASIC
    3.HELPER
    4.MAIN MENU
    5.SLIDES
    6.SERVICES
    7.CLIENTS
    8.PORTFOLIO
    9.TESTIMONIALS
    10.BLOG
    11.CONTACT
    12.FOOTER
    13.PANELS

************************/


/*======================
        1.FONTS
========================*/

@import url("https://fonts.googleapis.com/css?family=Poppins:300,300i,400,400i,500,500i,600,600i,700,700i&display=swap");
@import url('https://fonts.googleapis.com/css?family=Poiret+One');

/*======================
        2.BASIC
========================*/
html {
	margin: 0;
	padding: 0;
	overflow-x: hidden;
}
body {
	font-size: 16px;
	background: #000;
	color: #dddddd;
	font-family: "Poppins", sans-serif;
	-webkit-font-smoothing: antialiased;
	font-weight: 400;
	letter-spacing: .025em;
}
h1,h2,h3,h4,h5,h6 {
	margin-bottom: 20px;
	color: #dddddd;
	font-weight: 600;
}
h1 {font-size: 60px;}
h2 {font-size: 36px;}
h3 {font-size: 30px;}
h4 {font-size: 24px;}
h5 {font-size: 18px;}
h6 {font-size: 16px;}
p {
	font-size: 15px;
	line-height: 1.8;
	margin-bottom: 20px;
	color: #b7b7b7;
}
img {
	max-width: 100%;
}

input:focus,
select:focus,
button:focus,
textarea:focus {
	outline: none!important;
	outline: 0!important;
}
a {
	color: #dddddd;
	text-decoration: none;
	background-color: transparent;
}
a:hover,
a:focus {
	text-decoration: none;
	outline: none!important;
	color: #fce4a6;
}
ul,ol {
	padding: 0;
	margin: 0;
	list-style: none;
}
dl,ol,ul {
	margin-top: 0;
	margin-bottom: 20px;
}
@media (min-width: 1200px) {
	.container {
		max-width: 1200px;
	}
}
/*======================
      3.HELPER
========================*/
/* ScrollBar */

/* width */

::-webkit-scrollbar {
	width: 5px;
}

/* Track */

::-webkit-scrollbar-track {
	border-radius: 20px;
}

/* Handle */

::-webkit-scrollbar-thumb {
	background: rgba(0, 0, 0, 0.9);
	border-radius: 10px;
}

/* Handle on hover */

::-webkit-scrollbar-thumb:hover {
	background: rgba(0, 0, 0, 0.9);
}

@media screen and (max-width: 992px) {
	 ::-webkit-scrollbar {
		display: none;
	}
}

.p-0 {
	padding: 0;
	margin: 0;
}

.mb-30 {
	margin-bottom: 30px;
}

.mb-40 {
	margin-bottom: 30px;
}

.mb-50 {
	margin-bottom: 50px;
}

.mt-100 {
	margin-top: 100px;
}

.mb-100 {
	margin-bottom: 100px;
}

.flot-right {
	float: right;
}

.bg-light {
	background-color: rgb(25, 25, 25)!important;
}

.text-stroke {
	color: transparent!important;
	-webkit-text-stroke: 1px #fff;
}

.text-primary {
	color: #c32865!important;
}

/* Preloder */

#preloder {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 999999;
  background: #000
}

.loader {
  width: 30px;
  height: 30px;
  border: 3px solid #fce4a6;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -13px;
  margin-left: -13px;
  border-radius: 60px;
  border-left-color: transparent;
  animation: loader 0.8s linear infinite;
  -webkit-animation: loader 0.8s linear infinite;
}

@keyframes loader {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  50% {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@-webkit-keyframes loader {
  0% {
    -webkit-transform: rotate(0deg);
  }
  50% {
    -webkit-transform: rotate(180deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
  }
}

/* Buttons */

.pill-button {
	background-color: transparent;
	border: 1px solid #fce4a6;
	border-radius: 25px;
	padding: 10px 30px;
	color: #ffffff;
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
	font-size: 16px;
	display: inline-block;
}

.pill-button:hover {
	box-shadow: 0 6px 11px 0 rgba(0, 0, 0, 0.15), 0 14px 28px rgba(0, 0, 0, 0.1), 0 0 0 1px rgba(0, 0, 0, 0.05);
}

button:focus {
	outline: none;
}

.button svg {
	width: 22px;
	height: 22px;
	margin-top: -3px;
	top: 2px;
	vertical-align: bottom;
	margin-right: 14px;
	pointer-events: none !important;
	position: relative;
}

.button svg * {
	pointer-events: none !important;
}

.button svg.right {
	margin-right: 0;
	margin-left: 14px;
}

.button.actionButton {
	display: inline-block;
	height: 42px;
	width: 42px;
	padding: 12px;
	border-radius: 25px;
	z-index: 999;
	background: rgba(0, 0, 0, 0.3);
	line-height: 1;
	cursor: pointer;
	-ms-touch-action: manipulation;
	touch-action: manipulation;
	vertical-align: top;
	box-shadow: 0 6px 11px 0 rgba(0, 0, 0, 0.15), 0 14px 28px rgba(0, 0, 0, 0.1), 0 0 0 1px rgba(0, 0, 0, 0.05);
}

.button.actionButton svg {
	width: 18px;
	height: 18px;
}

.button.actionButton .material-icons {
	margin: 0;
	position: relative;
	left: -3px;
	top: -3px;
	font-size: 24px;
}

.button.actionButton.big {
	width: 50px;
	height: 50px;
	padding: 16px;
}

.button.actionButton.big .material-icons {
	font-size: 24px;
}

.button.actionButton.big svg {
	width: 22px;
	height: 22px;
	left: -2px;
	top: 0px;
}

.button.actionButton.stroke {
	box-shadow: none;
	padding: 10px;
}

.button.actionButton:hover:not(:active) {
	-webkit-transform: translateY(0) !important;
	transform: translateY(0) !important;
}

.button.actionButton.rounded {
	border-radius: 6px;
}

.button.actionButton svg,
.slide.whiteSlide .button.actionButton svg {
	fill: #fff;
}

.button.actionButton.sound [class*="sound-"] {
	position: absolute;
	opacity: 0;
	transition: 0.5s;
	left: 13px;
	top: 16px;
}

.button.actionButton.sound.stroke [class*="sound-"] {
	left: 11px;
	top: 14px;
}

.button.actionButton.sound.playing .sound-on,
.button.actionButton.sound:not(.playing) .sound-off {
	opacity: 1;
}

.button.actionButton.transparent {
	background-color: transparent;
}
/*======================
     Share Dropdown Button
========================*/

.dropdown {
	position: fixed;
	z-index: 9999;
	color: #202020;
	width: 1060px;
	background: #fff;
	box-shadow: 0 6px 11px 0 rgba(0, 0, 0, 0.15), 0 14px 28px rgba(0, 0, 0, 0.1), 0 0 0 1px rgba(0, 0, 0, 0.05);
	margin-bottom: 50px;
	border-radius: 6px;
	text-align: center;
	cursor: default;
	-webkit-transform: translateY(0) scale(0.9);
	transform: translateY(0) scale(0.9);
	-webkit-transform-origin: top;
	transform-origin: top;
	transition: opacity 0.35s, box-shadow 0.35s, -webkit-transform 0.35s;
	transition: transform 0.35s, opacity 0.35s, box-shadow 0.35s;
	transition: transform 0.35s, opacity 0.35s, box-shadow 0.35s, -webkit-transform 0.35s;
	background: #000;

}

.dropdown:not(.show) {
	pointer-events: none;
	opacity: 0;
}

.dropdown.rectangular {
	border-radius: 0;
}

.dropdown .title {
	font-size: 170px;
	font-weight: 500;
	margin: 0;
	text-align: center;
	opacity: 0.8;
}

.dropdown a {
	font-size: 15px;
	opacity: .6;
}

.dropdown a:hover {
	opacity: .8;
}

.dropdown.show {
	visibility: visible;
	opacity: 1;
	-webkit-transform: translateY(20px);
	transform: translateY(20px);
}

.dropdown.show.hide {
	opacity: 0;
	-webkit-transform: translateY(40px);
	transform: translateY(40px);
	box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.15), 0 0 0 rgba(0, 0, 0, 0.1), 0 0 0 1px rgba(0, 0, 0, 0.05);
	pointer-events: none;
}

.dropdown .hideDropdown {
	opacity: 0;
	pointer-events: none;
}

.dropdown.bottom {
	-webkit-transform-origin: bottom;
	transform-origin: bottom;
}

.dropdown.bottom.show {
	-webkit-transform: translateY(-20px);
	transform: translateY(-20px);
}

.dropdown.bottom.show.hide {
	-webkit-transform: translateY(-40px);
	transform: translateY(-40px);
}

.dropdown.share li {
	float: left;
	text-align: center;
	display: block;
	width: 80px;
	height: 50px;
	padding: 14px 0;
	color: #fff;
	position: relative;
	cursor: pointer;
	opacity: 0.9;
	transition: 0.15s;
}

.dropdown.share li:hover {
	opacity: 1;
}

.dropdown.share li:after {
	content: " ";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	opacity: 0;
	background: rgba(0, 0, 0, 0.1);
	transition: 0.25s;
}

.dropdown.share li:active:after {
	opacity: 1;
	transition: 0.1s;
}

.dropdown.share li svg {
	width: 20px;
	height: 20px;
	fill: #fff;
}

.dropdown.share li.mail {
	width: 100%;
	height: auto;
	color: #202020;
	opacity: 0.6;
	font-size: 15px;
	padding: 20px 0;
	border-bottom-left-radius: 6px;
	border-bottom-right-radius: 6px;
}

.dropdown.share li.mail:hover {
	opacity: 0.8;
}

.scroll .dropdown {
	position: absolute;
	top: 0;
}

.panel .sections i {
	font-size: 20px;
	color: #ddd;
}
/*======================
     Banner
========================*/

.banner-title { /* Save the date */
	letter-spacing: 2px;
}

.banner-title:before {
	content: "";
	display: block; /*block is line */
	width: 100px;
	height: 1px;
	position: absolute;
	background-color: #ddd;
	top: 20	px;
	padding-bottom: px;
	left: -20px;
}
/*======================
     Content-Hero
========================*/

.content-hero {
	position: relative;
	width: 100%;
	padding: 150px 0 120px 0;
}

.content-hero h1 {
	margin-top: 50px;
	line-height: 1.2;
	letter-spacing: 2px;
	font-weight: 600;
}

.content-hero h5 {
	position: relative;
	font-size: 14px;
	line-height: 1.3em;
	letter-spacing: 5px;
	text-transform: uppercase;
}

/* This is that line ------*/
.content-hero h1:before {
	content: "";
	height: 1px;
	background: #fff;
	position: absolute;
	-webkit-transform: translateX(-100%);
	-ms-transform: translateX(-100%);
	transform: translateX(-100%);
	left: -50px;
	right: auto;
	width: 150px;
	top: 57%;
}

.page-top-warp h1 {
	font-size: 80px;
	font-weight: 700;
	color: #c9bcae;
	margin-bottom: 15px;
}

.page-top-title h1 {
	font-size: 80px;
	color: #c9bcae;

	margin-bottom: 30px;
	position: relative;
	letter-spacing: -0.025em;
	font-weight: 700;
}

.section-blog {
	margin-top: 0;
	padding-bottom: 100px;
}

.portfolio-page {
	position: relative!important;
	height: 100vh!important;
}

.bg-fixed {
	background-attachment: fixed;
}

.content-inside {
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 100;
	background-color: rgb(20, 20, 20);
	-webkit-overflow-scrolling: touch;
}

/*======================
     Section
========================*/

.section {
	padding-top: 100px;
	position: relative;
	padding-bottom: 100px;
	border-bottom: 1px solid #ffffff03;
}

.section_title {
	margin-bottom: 80px;
}

.section-title img {
	margin-bottom: 15px;
}

.section-title h2 {
	font-weight: 400;
	font-size: 38px;
	text-transform: uppercase;
}

.section-title p {
	padding-top: 15px;
	margin-bottom: 0;
}

/*======================
     Description
========================*/

.description:after {
	content: ''; 
	
	position: absolute;
	left: 28px;
	top: 76px;
	background-color: #ddd;
	height: 1px;
	width: 42px;
	z-index: 1;
	display: none;
}

.description:before {
	/*content: ''; /* adds a bullet */ 
	position: absolute;
	left: 20px;
	top: 74px;
	background-color: #fce4a6;
	width: 5px;
	height: 5px;
	border-radius: 50%;
	z-index: 1;
}
.description.active:after {
    display: block; /* Show when .description has 'active' class */
	content: '';
}

.description p {
    margin-left: 0px;
    text-align: left;
}

/*======================
     Site-section
========================*/

.site-section-cover {
	position: relative;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center center;
	background-attachment: fixed;
}

.site-section-cover-bg {
	position: relative;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center center;
	background-attachment: fixed;
}

.site-section-cover,
.site-section-cover .container {
	position: relative;
	z-index: 2;
}

.site-section-cover-bg {
	min-height: 480px;
}

@media (max-width: 991.98px) {
	.site-section-cover,
	.site-section-cover .container>.row {
		height: calc(70vh - 196px);
		min-height: 600px;
	}
}

.site-section-cover.full-screen,
.site-section-cover.full-screen .container>.row {
	height: 100vh;
	min-height: 755px;
}

.site-section-cover.overlay {
	position: relative;
}

.site-section-cover.overlay:before {
	position: absolute;
	content: "";
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0, 0, 0, 0.3);
	z-index: 1;
}

.site-section-cover.inner-page,
.site-section-cover.inner-page .container>.row {
	height: auto;
	min-height: auto;
	padding: 2em 0;
}

.site-section-cover.img-bg-section {
	background-size: cover;
	background-repeat: no-repeat;
}


/* back to top button */

#back-to-top {
	font-size: 12px;
	position: fixed;
	bottom: 124px;
	transform: rotate(-90deg) translate(0, 0);
	right: 0px;
	color: #ddd;
	background: transparent;
	padding: 10px 15px;
	display: none;
	z-index: 100;
}


/* back to top button */

#back-to-top:hover {
	color: #fce4a6;
}


/*======================
     Cursor
========================*/

.cursor {
	width: 20px;
	height: 20px;
	border: 2px solid white;
	border-radius: 50%;
	position: absolute;
	transition-duration: 200ms;
	transition-timing-function: ease-out;
	animation: cursorAnim .5s infinite alternate;
	pointer-events: none;
	z-index: 9999;
}

.cursor::after {
	content: "";
	width: 50px;
	height: 50px;
	position: absolute;
	border: 2px solid #fff;
	border-radius: 50%;
	opacity: .1;
	top: -17px;
	left: -17px;
	animation: cursorAnim2 .5s infinite alternate;
	z-index: 9999;
}

@keyframes cursorAnim {
	from {
		transform: scale(1);
	}
	to {
		transform: scale(0.7);
	}
}

@keyframes cursorAnim2 {
	from {
		transform: scale(1);
	}
	to {
		transform: scale(0.4);
	}
}

@keyframes cursorAnim3 {
	0% {
		transform: scale(0.5);
	}
	50% {
		transform: scale(1);
	}
	100% {
		transform: scale(0.5);
		opacity: 0;
	}
}

.expand {
	animation: cursorAnim3 .5s forwards;
	border: 2px solid #fff;
}


/*======================
      4.MAIN MENU
========================*/

/* MENU TOGGLE ICON */

#menu-toggle {
	float: right;
	position: sticky;
	top: 40px; right: 40px;
	width: 51px;
	background: rgba(0, 0, 0, 0.3);
	height: 51px;
	cursor: pointer;
	border: none;
	-webkit-border-radius: 50px;
	-moz-border-radius: 50px;
	border-radius: 50px;
	box-shadow: 0 6px 11px 0 rgba(0, 0, 0, 0.15), 0 14px 28px rgba(0, 0, 0, 0.1), 0 0 0 1px rgba(0, 0, 0, 0.05);
}

#menu-toggle:before,
#menu-toggle:after {
	position: absolute;
	content: "";
	-webkit-transition: all .350s ease;
	-moz-transition: all .350s ease;
	-o-transition: all .350s ease;
	transition: all .350s ease;
	background-color: #ddd;
}

#menu-toggle:before {
	top: 12px;
	left: 25px;
	width: 1px;
	height: 27px;
	color: #ddd;
	background: #ddd;
}

#menu-toggle:after {
	top: 25px;
	left: 12px;
	width: 27px;
	height: 1px;
	color: #ddd;
	background: #ddd;
}

#menu-toggle:hover:before,
#menu-toggle:hover:after {
	-webkit-transform: rotate(15deg);
	-ms-transform: rotate(15deg);
	transform: rotate(15deg);
}

.open #menu-toggle:before,
.open #menu-toggle:after {
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
}

/*======================
     Exit-Gallery Icon
========================*/
#exit-gallery {
	float: right;
	position: relative;
	top: -45%; right: 1%;
	width: 51px;
	background: rgba(0, 0, 0, 0.3);
	height: 51px;
	cursor: pointer;
	border: none;
	-webkit-border-radius: 50px;
	-moz-border-radius: 50px;
	border-radius: 50px;
	
}

#exit-gallery:before,

#exit-gallery:after {
	position: absolute;
	content: "";
	-webkit-transition: all .350s ease;
	-moz-transition: all .350s ease;
	-o-transition: all .350s ease;
	transition: all .350s ease;
	background-color: #ddd;
	box-shadow: 0 6px 11px 0 rgba(0, 0, 0, 0.15), 0 14px 28px rgba(0, 0, 0, 0.1), 0 0 0 1px rgba(0, 0, 0, 0.05);
	
}

#exit-gallery:before {
	top: 12px;
	left: 25px;
	width: 1px;
	height: 27px;
	color: #ddd;
	background: #ddd;
	
}

#exit-gallery:after {
	top: 25px;
	left: 12px;
	width: 27px;
	height: 1px;
	color: #ddd;
	background: #ddd;
}

#exit-gallery:before,
#exit-gallery:after {
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
	&:hover {
		opacity: 0.7;
	  }
}
#exit-gallery:hover:before,
#exit-gallery:hover:after {
	-webkit-transform: rotate(15deg);
	-ms-transform: rotate(15deg);
	transform: rotate(15deg);
}


/*======================
     Brand
========================*/

.brand {
	float: left;
	/*height: 51px;*/
	font-size: 40px;
	font-weight: 100;
	/*line-height: .6;*/
}

.brand a {
	-webkit-transition: all .350s ease;
	-moz-transition: all .350s ease;
	-o-transition: all .350s ease;
	transition: all .350s ease;
	text-decoration: none;
	color: #ddd;
	font-weight: 600;
	font-size: 20px;
	top: -7px;
	margin-left: 10px;
	position: relative;
}

.brand a:hover {
	cursor: pointer;
	color: #fce4a6;
}

.open .brand {
	color: #fff;
}


/*======================
     Menu
========================*/

#menu { /* Menu Background */
	position: fixed;
	top: 0;
	bottom: 0;
	display: table;
	visibility: hidden;
	width: 1%;
	height: 100%;
	transition: opacity 1s, visibility 1s;
	text-align: left;
	opacity: 0;
	background-color: rgb(20, 20, 20);
}

.open #menu {
	transition: opacity 1s, visibility 1s;
	visibility: visible;
	z-index: 999;
	opacity: 1;
}

#menu ul {
	display: table-cell;
	padding: 30;
	list-style: none;
	padding-top: 60px; /*adds padding to the top preventing overlay*/
	vertical-align: top;
}

#menu ul li a {
	display: block;
	line-height: 60px;
	-webkit-transition: all .3s ease;
	-moz-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease;
	text-decoration: none;
	color: rgba(255, 255, 255, 0.65);
	font-size: 48px;
	font-weight: 600;
}

#menu ul li a:hover {
	font-size: 52px;
}


/* THAT FIXED HEADER */

header.banner {
	position: fixed;
	top: 0;
	z-index: 9999;
	width: 100%;
	padding: 30px;
	box-sizing: border-box;
}

.header__wrapper-overlay-widgets {
	margin-top: auto;
	width: 100%;
	position: absolute;
	bottom: 0;
}

.menu-container {
	display: table-cell;
	padding: 30px; /*Menus left Alignment */
	list-style: none;
	vertical-align: top;
	
}

.menu-ins-text {
	margin-bottom: 5px;
}

.contacts {
	float: left;
	margin-left: 100px;
	/*margin-top: 14px;*/
	margin-top: 20px;
}

.contacts .contact-item {
	display: inline-block;
	color: #fff;
	margin-right: 1rem;
}

.contacts .contact-item.spacer {
	opacity: .3;
}

.contacts .contact-item a {
	color: #fff;
}

.menu-ins-text a:after {
	content: "";
	display: block;
	width: 100px;
	height: 1px;
	position: absolute;
	background-color: #fce4a6;
	top: 70px;
}


/*======================
      5.SLIDES
========================*/

.slide-number {
	position: absolute;
	right: 50px;
	top: 40vh;
	z-index: 10;
	transform: rotate(-90deg);
	transform-origin: right;
}

.slide-number li.current {
	opacity: 1;
	margin-right: 100px;
}

.slide-number li.current:before {
	content: "";
	display: block;
	width: 60px;
	height: 1px;
	position: absolute;
	background-color: #ddd;
	top: 10px;
	left: 37px;
}

.slide-number li {
	list-style: none;
	color: #fff;
	font-weight: 600;
	text-align: center;
	font-size: 16px;
	opacity: .4;
	float: left;
}

.slide {
	position: fixed;
	width: 100%;
	height: 100%;
	background: #202020;
	color: #fff;
	z-index: 10;
	overflow: hidden;
}

.slide.active {
	-webkit-transform-style: preserve-3d;
	transform-style: preserve-3d;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

.mobile .slide {
	visibility: hidden;
}

.mobile .slide.active {
	visibility: visible;
}

.slide.whiteSlide {
	color: #202020;
	background: #fff;
}

.content {
	overflow: hidden;
	position: absolute;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 100;
	-webkit-overflow-scrolling: touch;
}

.content.scrollBar {
	overflow-y: auto;
}

.windows .defaultScroll .content {
	overflow: auto;
	overflow-x: hidden;
}

.mobile .content {
	overflow: auto;
	overflow-x: hidden;
	-webkit-overflow-scrolling: touch;
}


/* Background Fade */

.fade-6 .content {
	background: rgba(0, 0, 0, 0.5);
}

.container {
	display: table;

	table-layout: fixed;
	position: relative;
	width: 100%;
	height: 100%;
}

.gallerycontainer {
	display: table;
	padding-top: 60px;
	padding-bottom: 160px;
	table-layout: fixed;
	position: relative;
	width: 100%;
	height: 100%;
}

.container .wrap {
	display: table-cell;
	text-align: center;
	vertical-align: middle;
}

.container .wrap .spaceWrap,
.container .wrap.spaceWrap,
.container .wrap:not(.noSpaces) {
	padding: 120px 0px;
}

.container .wrap .overflowHidden {
	overflow: hidden;
}

.container .wrap * {
	-webkit-user-select: text;
	-moz-user-select: text;
	-ms-user-select: text;
	user-select: text;
}

.slide .background,
.popup .background {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-position: center;
	background-size: cover;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

.slide .background iframe,
.popup .background iframe {
	border: 0;
	position: absolute;
	top: 0;
	left: 0;
}

.slide:not(.youtube) .background iframe,
.popup:not(.youtube) .background iframe {
	width: 100%;
	height: 100%;
}


/* -----------------Slider ---------------- */

.slider {
	position: relative;
}

.slider.clickable {
	cursor: pointer;
}

.slider>li {
	display: none;
	top: 0;
	left: 0;
	opacity: 0;
	transition: opacity 0.5s;
	pointer-events: none;
}

.slider>li.selected {
	display: block;
	opacity: 1;
	transition: opacity 0.5s;
	pointer-events: all;
}

.slider.rounded>li>img {
	border-radius: 6px;
	overflow: hidden;
}

.slider.autoHeight {
	transition: 0.5s;
}

.slider.autoHeight>li {
	display: block;
	position: absolute;
}

.controller li {
	cursor: pointer;
}

.controller li.selected {
	cursor: default;
	pointer-events: none;
}


/* -----------------Effects ---------------- */


/* DEFAULT */

.slide.before {
	-webkit-transform: translate3d(0, -50%, 0);
	transform: translate3d(0, -50%, 0);
}

.slide:first-child,
.slide.after {
	-webkit-transform: translate3d(0, 50%, 0);
	transform: translate3d(0, 50%, 0);
	will-change: transform;
}

.slide.before,
.slide.after {
	opacity: 0;
}

.slide.selected {
	-webkit-transform: translate3d(0, 0, 0) !important;
	transform: translate3d(0, 0, 0) !important;
	z-index: 11;
}

.scroll .slide.selected {
	z-index: 10;
}


/* horizontal */

.horizontal .slide,
.horizontal .slide.before {
	-webkit-transform: translate3D(-50%, 0, 0);
	transform: translate3D(-50%, 0, 0);
}

.horizontal .slide.after {
	-webkit-transform: translate3D(50%, 0, 0);
	transform: translate3D(50%, 0, 0);
}


/* -----------------Speed ---------------- */

.page-loaded .slide.selected,
.page-loaded .slide.active {
	transition: opacity 1s, -webkit-transform 1s;
	transition: transform 1s, opacity 1s;
	transition: transform 1s, opacity 1s, -webkit-transform 1s;
}


/* -----------------Animated Elements ---------------- */

.slides:not(.scroll) .rolling-element {
	transition: 1s;
	-webkit-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
	will-change: transform;
}

.slides:not(.scroll).fast .rolling-element {
	transition-duration: 0.7s;
}

.slides:not(.scroll).slow .rolling-element {
	transition-duration: 1.4s;
}

.slides:not(.scroll) .slide.before .rolling-element {
	-webkit-transform: translateY(100%);
	transform: translateY(100%);
}

.slides:not(.scroll) .slide.before .rolling-element.pct-10 {
	-webkit-transform: translateY(10%);
	transform: translateY(10%);
}

.slides:not(.scroll) .slide.before .rolling-element.pct-20 {
	-webkit-transform: translateY(20%);
	transform: translateY(20%);
}

.slides:not(.scroll) .slide.before .rolling-element.pct-30 {
	-webkit-transform: translateY(30%);
	transform: translateY(30%);
}

.slides:not(.scroll) .slide.before .rolling-element.pct-40 {
	-webkit-transform: translateY(40%);
	transform: translateY(40%);
}

.slides:not(.scroll) .slide.before .rolling-element.pct-50 {
	-webkit-transform: translateY(50%);
	transform: translateY(50%);
}

.slides:not(.scroll) .slide.before .rolling-element.pct-60 {
	-webkit-transform: translateY(60%);
	transform: translateY(60%);
}

.slides:not(.scroll) .slide.before .rolling-element.pct-70 {
	-webkit-transform: translateY(70%);
	transform: translateY(70%);
}

.slides:not(.scroll) .slide.before .rolling-element.pct-80 {
	-webkit-transform: translateY(80%);
	transform: translateY(80%);
}

.slides:not(.scroll) .slide.before .rolling-element.pct-90 {
	-webkit-transform: translateY(90%);
	transform: translateY(90%);
}

.slides:not(.scroll) .slide.before .rolling-element.inverse {
	-webkit-transform: translateY(-100%);
	transform: translateY(-100%);
}

.slides:not(.scroll) .slide.before .rolling-element.inverse.pct-10 {
	-webkit-transform: translateY(-10%);
	transform: translateY(-10%);
}

.slides:not(.scroll) .slide.before .rolling-element.inverse.pct-20 {
	-webkit-transform: translateY(-20%);
	transform: translateY(-20%);
}

.slides:not(.scroll) .slide.before .rolling-element.inverse.pct-30 {
	-webkit-transform: translateY(-30%);
	transform: translateY(-30%);
}

.slides:not(.scroll) .slide.before .rolling-element.inverse.pct-40 {
	-webkit-transform: translateY(-40%);
	transform: translateY(-40%);
}

.slides:not(.scroll) .slide.before .rolling-element.inverse.pct-50 {
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}

.slides:not(.scroll) .slide.before .rolling-element.inverse.pct-60 {
	-webkit-transform: translateY(-60%);
	transform: translateY(-60%);
}

.slides:not(.scroll) .slide.before .rolling-element.inverse.pct-70 {
	-webkit-transform: translateY(-70%);
	transform: translateY(-70%);
}

.slides:not(.scroll) .slide.before .rolling-element.inverse.pct-80 {
	-webkit-transform: translateY(-80%);
	transform: translateY(-80%);
}

.slides:not(.scroll) .slide.before .rolling-element.inverse.pct-90 {
	-webkit-transform: translateY(-90%);
	transform: translateY(-90%);
}

.slides:not(.scroll) .slide.after .rolling-element {
	-webkit-transform: translateY(-100%);
	transform: translateY(-100%);
}

.slides:not(.scroll) .slide.after .rolling-element.pct-10 {
	-webkit-transform: translateY(-10%);
	transform: translateY(-10%);
}

.slides:not(.scroll) .slide.after .rolling-element.pct-20 {
	-webkit-transform: translateY(-20%);
	transform: translateY(-20%);
}

.slides:not(.scroll) .slide.after .rolling-element.pct-30 {
	-webkit-transform: translateY(-30%);
	transform: translateY(-30%);
}

.slides:not(.scroll) .slide.after .rolling-element.pct-40 {
	-webkit-transform: translateY(-40%);
	transform: translateY(-40%);
}

.slides:not(.scroll) .slide.after .rolling-element.pct-50 {
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}

.slides:not(.scroll) .slide.after .rolling-element.pct-60 {
	-webkit-transform: translateY(-60%);
	transform: translateY(-60%);
}

.slides:not(.scroll) .slide.after .rolling-element.pct-70 {
	-webkit-transform: translateY(-70%);
	transform: translateY(-70%);
}

.slides:not(.scroll) .slide.after .rolling-element.pct-80 {
	-webkit-transform: translateY(-80%);
	transform: translateY(-80%);
}

.slides:not(.scroll) .slide.after .rolling-element.pct-90 {
	-webkit-transform: translateY(-90%);
	transform: translateY(-90%);
}

.slides:not(.scroll) .slide.after .rolling-element.inverse {
	-webkit-transform: translateY(100%);
	transform: translateY(100%);
}

.slides:not(.scroll) .slide.after .rolling-element.inverse.pct-10 {
	-webkit-transform: translateY(10%);
	transform: translateY(10%);
}

.slides:not(.scroll) .slide.after .rolling-element.inverse.pct-20 {
	-webkit-transform: translateY(20%);
	transform: translateY(20%);
}

.slides:not(.scroll) .slide.after .rolling-element.inverse.pct-30 {
	-webkit-transform: translateY(30%);
	transform: translateY(30%);
}

.slides:not(.scroll) .slide.after .rolling-element.inverse.pct-40 {
	-webkit-transform: translateY(40%);
	transform: translateY(40%);
}

.slides:not(.scroll) .slide.after .rolling-element.inverse.pct-50 {
	-webkit-transform: translateY(50%);
	transform: translateY(50%);
}

.slides:not(.scroll) .slide.after .rolling-element.inverse.pct-60 {
	-webkit-transform: translateY(60%);
	transform: translateY(60%);
}

.slides:not(.scroll) .slide.after .rolling-element.inverse.pct-70 {
	-webkit-transform: translateY(70%);
	transform: translateY(70%);
}

.slides:not(.scroll) .slide.after .rolling-element.inverse.pct-80 {
	-webkit-transform: translateY(80%);
	transform: translateY(80%);
}

.slides:not(.scroll) .slide.after .rolling-element.inverse.pct-90 {
	-webkit-transform: translateY(90%);
	transform: translateY(90%);
}


/* -----------------Backgrounds Effects ---------------- */


/* KEN BURNS */

.slides.animated .kenBurns .background,
.slides.animated .kenBurns.zoomin .background,
.slides.animateOnEvent .kenBurns .background,
.slides.animateOnEvent .kenBurns.zoomin .background {
	-webkit-transform: scale(1.08) rotate(-0.02deg);
	transform: scale(1.08) rotate(-0.02deg);
	opacity: 0.2;
	z-index: 1;
}

.slides.animated .kenBurns:not(.video) .background,
.slides.animated .kenBurns.zoomin:not(.video) .background,
.slides.animateOnEvent .kenBurns:not(.video) .background,
.slides.animateOnEvent .kenBurns.zoomin:not(.video) .background {
	transition: opacity 1s ease, -webkit-transform 5s cubic-bezier(0.3, 0, 0.7, 1);
	transition: transform 5s cubic-bezier(0.3, 0, 0.7, 1), opacity 1s ease;
	transition: transform 5s cubic-bezier(0.3, 0, 0.7, 1), opacity 1s ease, -webkit-transform 5s cubic-bezier(0.3, 0, 0.7, 1);
}

.animated .active.kenBurns:not(.video) .background,
.animated .active.kenBurns.zoomin:not(.video) .background,
.animated .active .kenBurns.zoomin:not(.video) .background,
.animateOnEvent .active.kenBurns:not(.video) .background,
.animateOnEvent .active.kenBurns.zoomin:not(.video) .background,
.animateOnEvent .active .kenBurns.zoomin:not(.video) .background {
	opacity: 1;
	-webkit-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
}

.slides.animated .kenBurns.zoomin:not(.video) .background,
.slides.animateOnEvent .kenBurns.zoomin:not(.video) .background {
	-webkit-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
}

.animated .active.kenBurns.zoomin:not(.video) .background,
.windows .slides.animated .active.kenBurns.zoomin:not(.video) .background,
.animateOnEvent .active.kenBurns.zoomin:not(.video) .background,
.windows .slides.animateOnEvent .active.kenBurns.zoomin:not(.video) .background {
	-webkit-transform: scale(1.08) rotate(-0.02deg);
	transform: scale(1.08) rotate(-0.02deg);
}

.mobile .kenBurns .background,
.mobile .kenBurns.zoomin .background {
	transition: 0s;
	-webkit-transform: none;
	transform: none;
}

/*===========================
      8.PORTFOLIO
=============================*/

.opacity-40 {
	opacity: 0.4;
}

.opacity-60 {
	opacity: 0.6;
}

.section {
	position: relative;
	width: 100%;
	display: block;
	z-index: 30 !important;
}

.over-hide {
	overflow: hidden;
}

.hero-center-section {
	position: fixed;
	top: 50%;
	left: 0;
	width: 100%;
	z-index: 10;
	transform: translateY(-50%);
	opacity: 0;
	-webkit-transition: all 300ms linear;
	transition: all 300ms linear;
}

.hero-center-section.show {
	opacity: 1;
}

.hero-center-section .left-text {
	position: absolute;
	top: -50%;
	left: -20px;
	height: 200%;
	z-index: 1;
	font-family: 'Poppins', sans-serif;
	font-weight: 600;
	text-align: center;
	-webkit-writing-mode: vertical-lr;
	writing-mode: vertical-lr;
	font-size: 7vw;
	line-height: 1;
	color: rgba(200, 200, 200, .1);
	background: linear-gradient(90deg, rgba(200, 200, 200, 0), rgba(200, 200, 200, 0.1));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	line-height: 1;
	-webkit-transition: all 300ms linear;
	transition: all 300ms linear;
}

.hero-center-section.show .left-text {
	left: 0;
}

.z-bigger {
	z-index: 30 !important;
}

.img-wrap {
	position: relative;
	width: 100%;
	overflow: hidden;
	box-shadow: 0 3px 5px rgba(0, 0, 0, 0.02);
	display: block;
	transform: scale(1.03);
	-webkit-transition: all 300ms linear;
	transition: all 300ms linear;
}

.hero-center-section.show .img-wrap {
	transform: scale(1);
}

.img-wrap img {
	width: 100%;
	height: auto;
	display: block;
}

.img-wrap:after {
	content: '';
	top: 0;
	left: 0;
	position: absolute;
	width: 100%;
	height: 100%;
	z-index: 9999;
	-webkit-overflow-scrolling: touch;
	background: rgba(0, 0, 0, 0.4);
}

.slide-buttons {
	position: relative;
	padding: 0;
	margin: 0 auto;
	text-align: center;
	width: 100%;
	max-width: 100%;
	padding-left: 20px;
	padding-right: 20px;
	list-style: none;
}

.slide-buttons li {
	position: relative;
	padding: 0;
	margin: 0 auto;
	text-align: center;
	margin: 60px 0;
	display: block;
	list-style: none;
	-webkit-transition: all 300ms linear;
	transition: all 300ms linear;
}

.slide-buttons li a {
	position: relative;
	display: inline-block;
	font-family: 'Poppins', sans-serif;
	font-weight: 600;
	font-size: 100px;
	line-height: 1;
	text-transform: uppercase;
	-webkit-text-stroke: 2px #ddd;
	-webkit-text-fill-color: transparent;
	opacity: 0.3;
	-webkit-transition: all 300ms linear;
	transition: all 300ms linear;
}

.slide-buttons li.active a {
	opacity: 1;
}

.slide-buttons li a:hover {
	text-decoration: none;
}

.slide-buttons li a:focus,
.slide-buttons li a:active {
	border: none;
	outline: none;
	box-shadow: none;
}

.slide-buttons li a::before {
	position: absolute;
	top: 0;
	left: 0;
	font-family: 'Poppins', sans-serif;
	font-weight: 600;
	font-size: 100px;
	line-height: 1;
	overflow: hidden;
	text-transform: uppercase;
	padding: 0;
	max-height: 0;
	-webkit-text-stroke: transparent;
	-webkit-text-fill-color: #ddd;
	content: attr(data-hover);
	-webkit-transition: max-height 0.4s;
	-moz-transition: max-height 0.4s;
	transition: max-height 0.4s;
}

.slide-buttons li.active a::before,
.slide-buttons li a:active::before,
.slide-buttons li a:focus::before {
	max-height: 100%;
}


/* #Media
================================================== */

@media (max-width: 1199px) {
	.hero-center-section .left-text {
		font-size: 13vw;
	}
	.slide-buttons li {
		margin: 50px 0;
	}
	.slide-buttons li a {
		font-size: 80px;
	}
	.slide-buttons li a::before {
		font-size: 80px;
	}
}

@media (max-width: 991px) {
	.hero-center-section .left-text {
		font-size: 16vw;
	}
}


@media (max-width: 575px) {
	.slide-buttons li a {
		font-size: 50px;
		font-weight: 600;
	}
	.slide-buttons li a::before {
		font-size: 50px;
		font-weight: 600;
	}
}

.no-padding {
	margin: 0;
	padding: 0;
}

.portfolio-content p {
	font-size: 15px;
	margin-bottom: 10px;
}

.portfolio-content h4 {
	margin-bottom: 30px;
}

.portfolio-content .tags-label {
	display: inline-block;
	font-size: 14px;
	margin-right: 20px;
	color: #969696;
}

.portfolio-content .blog-gellery {
	padding-top: 60px;
	margin-bottom: 40px;
}

.portfolio-content .blog-gellery a {
	display: block;
}

.portfolio-content .blog-gellery img {
	margin-bottom: 30px;
	min-width: 100%;
}

.portfolio-content .post-cata {
	display: inline-block;
	font-size: 12px;
	font-weight: 500;
	padding: 6px 13px;
	margin-bottom: 10px;
	margin-right: 16px;
	text-transform: uppercase;
	text-align: center;
	letter-spacing: 2px;
	color: #fff;
	background: #151515;
}

.portfolio-content .post-share span {
	display: inline-block;
	font-size: 14px;
	margin-right: 20px;
	color: #969696;
}

.portfolio-content .post-share a {
	display: inline-block;
	font-size: 14px;
	margin-right: 15px;
	color: #888;
	padding: 0 2px;
}

.portfolio-content .post-share a:hover {
	color: #c9bcae;
}
/*===========================
      9.TESTIMONIALS
=============================*/

.testmonial_area .testmonial_info .author {
	padding-top: 50px;
}

.testmonial_area .testmonial_info .author img {
	width: auto;
	margin: auto
}

.testmonial_area .testmonial_info p {
	font-size: 15px;
	font-weight: 400;
	color: #888;
	line-height: 28px;
	margin-top: 50px;
	margin-bottom: 50px
}


@media (min-width: 768px) and (max-width: 991px) {
	.testmonial_area .testmonial_info p {
		font-size: 15px;
		margin-bottom: 30px;
		margin-top: 20px;
		line-height: 26px
	}
}

@media (min-width: 992px) and (max-width: 1200px) {
	.testmonial_area .testmonial_info p {
		font-size: 15px
	}
}

@media (min-width: 768px) and (max-width: 991px) {
	.testmonial_area .testmonial_info p br {
		display: none
	}
}

@media (min-width: 992px) and (max-width: 1200px) {
	.testmonial_area .testmonial_info p br {
		display: none
	}
}

.testmonial_area .testmonial_info .author_name {
	padding-bottom: 50px;
}

.testmonial_area .testmonial_info .author_name h4 {
	color: #fff;
	font-size: 16px
}

.testmonial_area .testmonial_info .author_name span {
	color: #fff;
	font-size: 14px;
}
.owl-carousel .owl-nav .owl-next,
.owl-carousel .owl-nav .owl-prev {
	cursor: pointer;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	border: 2px solid #fce4a6;
	border-radius: 50%;
	padding: 10px 20px;
	background: transparent;
	color: #ddd;
}
.owl-carousel .owl-nav .owl-prev{
	left: 0%;
}
.owl-carousel .owl-dot,
.owl-carousel .owl-nav .owl-next,
.owl-carousel .owl-nav .owl-prev {
	cursor: pointer;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	border: 1px solid #fce4a6;
	border-radius: 50%;
	padding: 10px 20px;
	background: transparent;
	color: #ddd;
}
.owl-carousel .owl-nav .owl-next{
	left: 95%;
}
.owl-nav {
	margin-top: 10px;
	height: 80px;
	float: right;
}

.owl-carousel .owl-item img {
	width: 80px;
	margin-bottom: 20px;
}


/*======================
      10.BLOG
========================*/

.pagination {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	padding-left: 0;
	list-style: none;
	border-radius: .25rem;
}

.page-item:first-child .page-link {
	margin-left: 0;
	border-top-left-radius: .25rem;
	border-bottom-left-radius: .25rem;
}

.page-link:not(:disabled):not(.disabled) {
	cursor: pointer;
}

.blog-pagination .page-link {
	font-size: 15px;
	position: relative;
	display: block;
	padding: 0;
	text-align: center;
	margin-left: -1px;
	line-height: 45px;
	width: 45px;
	height: 45px;
	border-radius: 0 !important;
	color: #888;
	margin-right: 10px;
	background: transparent;
	border: none;
	font-weight: 700;
	font-family: "Poppins", sans-serif;
}

.page-item.active .page-link {
	z-index: 3;
	color: #fce4a6;
	border-color: transparent;
	border: 1px solid #fce4a6;
	border-radius: 50%!important;
	background: transparent;
}

.blog_area a {
	color: #888 !important;
	text-decoration: none;
	-webkit-transition: .5s;
	transition: .5s;
}

.page-link {
	position: relative;
	display: block;
	padding: .5rem .75rem;
	margin-left: -1px;
	line-height: 1.25;
	color: #888;
	background-color: transparent;
}

.author_name {
	font-size: 13px;
	font-weight: bold;
	color: #ddd !important;
	font-family: "Poppins", sans-serif;
}

.single-blog-title {
	font-size: 26px;
	color: #000;
	font-weight: bold;
}

.date {
	margin-bottom: 10px;
	color: #999;
}

.sidebar-box {
	margin-bottom: 30px;
	padding: 25px;
	font-size: 15px;
	width: 100%;
	float: left;
	background: #fff;
}

.sidebar-box *:last-child {
	margin-bottom: 0;
}

.sidebar-box h3 {
	font-size: 18px;
	margin-bottom: 20px;
}

.categories li,
.sidelink li {
	position: relative;
	margin-bottom: 10px;
	padding-bottom: 10px;
	border-bottom: 1px dotted #dee2e6;
	list-style: none;
}

.categories li:last-child,
.sidelink li:last-child {
	margin-bottom: 0;
	border-bottom: none;
	padding-bottom: 0;
}

.categories li a,
.sidelink li a {
	display: block;
}

.categories li a span,
.sidelink li a span {
	position: absolute;
	right: 0;
	top: 0;
	color: #ccc;
}

.categories li.active a,
.sidelink li.active a {
	color: #000;
	font-style: italic;
}

.comment-form-wrap {
	clear: both;
}

.comment-list {
	padding: 0;
	margin: 0;
}

.comment-list .children {
	padding: 50px 0 0 40px;
	margin: 0;
	float: left;
	width: 100%;
}

.comment-list li {
	padding: 0;
	margin: 0 0 30px 0;
	float: left;
	width: 100%;
	clear: both;
	list-style: none;
}

.comment-list li .vcard {
	width: 80px;
	float: left;
}

.comment-list li .vcard img {
	width: 50px;
	border-radius: 50%;
}

.comment-list li .comment-body {
	float: right;
	width: calc(100% - 80px);
}

.comment-list li .comment-body h3 {
	font-size: 20px;
	color: #000;
}

.comment-list li .comment-body .meta {
	text-transform: uppercase;
	font-size: 13px;
	letter-spacing: .1em;
	color: #ccc;
}

.comment-list li .comment-body .reply {
	padding: 5px 10px;
	background: #e6e6e6;
	color: #000;
	text-transform: uppercase;
	font-size: 14px;
}

.comment-list li .comment-body .reply:hover {
	color: #000;
	background: #e3e3e3;
}

.search-form .form-group {
	position: relative;
}

.search-form .form-group input {
	padding-right: 50px;
}

.search-form .icon {
	position: absolute;
	top: 50%;
	right: 20px;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
}

.post-meta {
	font-size: 13px;
	text-transform: uppercase;
	letter-spacing: .2em;
}

.post-meta a {
	color: #fff;
	border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}

.single-blog-tags {
	margin-right: 10px;
}

.post-entry {
	margin-bottom: 120px;
}

.post-entry h3 {
	font-size: 26px;
	color: #ddd;
	font-weight: 600;
}

.post-entry .date {
	margin-bottom: 10px;
}

.post-entry .date {
	color: #999;
}

.post-entry h3 a {
	color: #ddd;
}

.post-entry .name {
	color: #000;
}

.author_name span {
	font-size: 13px;
	font-weight: 500;
	color: #ddd !important;
	font-family: "Poppins", sans-serif;
}

.comment-title {
	color: #ddd;
	margin-bottom: 30px;
	padding-top: 80px;
}


/*-------------------
   Blog Single Page
 --------------------*/

.blog-single-section {
	padding: 100px 0px;
}

@media (max-width: 576px) {
	.blog-single-section {
		padding: 100px 20px;
	}
}

.blog-single-header {
	height: 800px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 70px;
	text-align: center;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
	background-attachment: fixed;
}

@media (max-width: 576px) {
	.blog-single-header {
		height: auto;
		padding: 120px 0;
	}
}

.blog-single-header .fb-cata {
	display: inline-block;
	padding: 5px 18px 4px;
	margin-bottom: 20px;
	font-weight: 500;
	font-size: 14px;
	text-transform: uppercase;
	letter-spacing: 2px;
	color: #fff;
	background: #151515;
}

.blog-single-header h2 {
	font-size: 80px;
	color: #fff;
	margin-bottom: 25px;
	position: relative;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
	.blog-single-header h2 {
		font-size: 65px;
	}
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px) {
	.blog-single-header h2 {
		font-size: 50px;
	}
}

@media (max-width: 576px) {
	.blog-single-header h2 {
		font-size: 40px;
	}
}

.bs-metas .bs-meta {
	display: inline-block;
	font-size: 18px;
	color: #fff;
	padding-right: 25px;
	margin-right: 20px;
	position: relative;
}

.bs-metas .bs-meta a {
	color: #fff;
}

.bs-metas .bs-meta:after {
	position: absolute;
	content: "|";
	right: 0;
	top: 1px;
	font-size: 18px;
	color: #6e6e6e;
}

.bs-metas .bs-meta:last-child {
	margin-right: 0;
	padding-right: 0;
}

.bs-metas .bs-meta:last-child:after {
	display: none;
}

.blog-content p {
	font-size: 15px;
	margin-bottom: 10px;
}

.blog-content h4 {
	margin-bottom: 30px;
}

.blog-content .tags-label {
	display: inline-block;
	font-size: 14px;
	margin-right: 20px;
	color: #969696;
}

.blog-content .blog-gellery {
	padding-top: 60px;
	margin-bottom: 40px;
}

.blog-content .blog-gellery a {
	display: block;
}

.blog-content .blog-gellery img {
	margin-bottom: 30px;
	min-width: 100%;
}

.blog-content .post-cata {
	display: inline-block;
	font-size: 12px;
	font-weight: 500;
	padding: 6px 13px;
	margin-bottom: 10px;
	margin-right: 16px;
	text-transform: uppercase;
	text-align: center;
	letter-spacing: 2px;
	color: #fff;
	background: #151515;
}

.blog-content .post-share span {
	display: inline-block;
	font-size: 14px;
	margin-right: 20px;
	color: #969696;
}

.blog-content .post-share a {
	display: inline-block;
	font-size: 14px;
	margin-right: 15px;
	color: #888;
	padding: 0 2px;
}

.blog-content .post-share a:hover {
	color: #c9bcae;
}

.recent-blog.blog-item {
	height: 352px;
	display: flex;
	align-items: center;
	padding: 0 80px;
	margin-bottom: 0;
}

@media (max-width: 576px),
only screen and (min-width: 768px) and (max-width: 991px) {
	.recent-blog.blog-item {
		padding: 0;
	}
}

.recent-blog.blog-item .blog-text {
	position: relative;
	bottom: 0;
	max-width: 655px;
}


/*===========================
        11.CONTACT
=============================*/

.contact-section {
	padding: 100px 0px;
}

@media (max-width: 576px) {
	.contact-section {
		padding: 100px 20px;
	}
}

.contact-section .contact-warp {
	padding: 163px 0;
	position: relative;
}

.contact-section .contact-warp:after {
	position: absolute;
	content: "";
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	background: #000;
	opacity: 0.5;
	z-index: 1;
}

.contact-section .container {
	position: relative;
	z-index: 5;
}

.contact-info {
	margin-bottom: 45px;
}

.contact-info h4 {
	color: #fff;
	margin-bottom: 25px;
}

.contact-info .ci-item {
	padding-left: 32px;
	position: relative;
	color: #888;
	font-size: 15px;
	margin-bottom: 20px;
	max-width: 300px;
}

.contact-info .ci-item i {
	position: absolute;
	left: 10px;
	top: 8px;
	font-size: 15px;
	color: #fce4a6;
}

.icon-ci {
	border: 1px solid #fce4a6;
	width: 10px;
	position: absolute;
	height: 10px;
	padding: 15px;
	border-radius: 50%;
	display: inline-block;
	left: 0;
}

.ci-item p {
	margin-left: 15px;
	top: 2px;
	position: relative;
}

.contact-form label {
	font-size: 15px;
	color: #888;
	margin-bottom: 15px;
}

.contact-form input,
.contact-form textarea {
	width: 100%;
	height: 43px;
	border-bottom: 1px solid rgba(136, 136, 136, 0.3);
	border-top: none;
	border-right: none;
	border-left: none;
	outline: none;
	margin-bottom: 25px;
	padding: 0 20px;
	color: #fff;
	background: transparent;
}

.contact-form textarea {
	height: 150px;
	padding: 18px 20px 10px;
	resize: none;
	margin-bottom: 40px;
}

.contact-form .site-btn {
	padding: 15px 25px;
	min-width: 163px;
	line-height: 1.1;
	font-size: 12px;
	letter-spacing: 2px;
	border: 1px solid #c9bcae;
	color: #c9bcae;
}

.form-control {
	display: block;
	width: 100%;
	height: 50px;
	padding: .375rem .75rem;
	font-weight: 400;
	border: none!important;
	border-bottom: 1px solid rgba(255, 255, 255, 0.08)!important;
	line-height: 1.5;
	background-color: transparent;
	border-radius: 0px!important;
	outline: none!important;
	outline: 0!important;
}

.form-control:focus {
	display: block;
	width: 100%;
	height: 50px;
	padding: .375rem .75rem;
	font-size: 1rem;
	font-weight: 400;
	border: none!important;
	border-bottom: 1px solid rgba(255, 255, 255, 0.08)!important;
	line-height: 1.5;
	color: #495057;
	background-color: transparent;
	border-radius: 0px!important;
	outline: none!important;
	outline: 0!important;
}

textarea.form-control {
	height: 100px!important;
	outline: none!important;
}

:hover,
 :active,
 :focus,
 :visited {
	outline: 0!important;
	outline: none!important;
}

/*======================
     13.FOOTER
========================*/

footer span:after {
	content: '';
	position: absolute;
	top: 22px;
	margin-left: 11px;
	height: 1px;
	width: 3em;
	background-color: #fff;
	-webkit-transition: all 0.25s ease;
	transition: all 0.25s ease;
}

footer .social {
	padding: 10px 0;
}

footer ul {
	margin-left: 20px;
	display: inline-block;
}

footer .copyright {
	padding: 10px 0;
}


/*======================
     14.PANELS
========================*/

.panel {
	position: fixed;
	left: 0;
	width: 100%;
	padding: 30px;
	z-index: 999;
	text-align: center;
	font-size: 16px;
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	-webkit-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
}

.panel.top {
	top: 0;
}

.panel.bottom {
	bottom: 0;
}

.panel.white {
	background: rgba(255, 255, 255, 0.975) !important;
	box-shadow: 0 1px 1px rgba(0, 0, 0, 0.07);
}

.panel.black {
	background-color: rgba(0, 0, 0, 0.8) !important;
	box-shadow: 0 1px 1px rgba(0, 0, 0, 0.07);
}

.animated .panel.top,
.animateOnEvent .panel.top,
.hidePanel-top .panel.top.hideOnScroll,
.slides:not(.firstSlide) .panel.top.firstSlideOnly,
.slides:not(.lastSlide) .panel.top.lastSlideOnly,
.slides:not(.firstSlide):not(.lastSlide) .panel.top.firstAndLastSlidesOnly,
.slides.lastSlide .panel.top.exceptLastSlide,
.slides.firstSlide .panel.top.exceptFirstSlide {
	-webkit-transform: translate3d(0, -100%, 0);
	transform: translate3d(0, -100%, 0);
	opacity: 0;
}

.animated .panel.bottom,
.animateOnEvent .panel.bottom,
.hidePanel-bottom .panel.bottom.hideOnScroll,
.slides:not(.lastSlide) .panel.bottom.lastSlideOnly,
.slides:not(.firstSlide) .panel.bottom.firstSlideOnly,
.slides:not(.firstSlide):not(.lastSlide) .panel.bottom.firstAndLastSlidesOnly,
.slides.lastSlide .panel.bottom.exceptLastSlide,
.slides.firstSlide .panel.bottom.exceptFirstSlide {
	-webkit-transform: translate3d(0, 100%, 0);
	transform: translate3d(0, 100%, 0);
	opacity: 0;
}

.page-loaded .animated .panel,
.page-loaded .animateOnEvent .panel {
	transition: opacity 0.5s, padding 0.5s, -webkit-transform 0.5s;
	transition: transform 0.5s, opacity 0.5s, padding 0.5s;
	transition: transform 0.5s, opacity 0.5s, padding 0.5s, -webkit-transform 0.5s;
	-webkit-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
	opacity: 1;
}

.slides.whiteSlide .panel {
	color: #202020;
}

.scroll .panel.hideOnScroll,
.mobile .simplifiedMobile .panel.hideOnScroll {
	position: fixed;
}

.scroll .panel.hideOnScroll.top.hide,
.mobile .simplifiedMobile .panel.hideOnScroll.top.hide {
	-webkit-transform: translateY(-100%) !important;
	transform: translateY(-100%) !important;
	opacity: 0;
}

.scroll .panel.hideOnScroll.bottom.hide,
.mobile .simplifiedMobile .panel.hideOnScroll.bottom.hide {
	-webkit-transform: translateY(100%) !important;
	transform: translateY(100%) !important;
	opacity: 0;
}

.panel .sections {
	display: table;
	width: 100%;
	font-size: 0;
}

.panel .sections>div {
	display: table-cell;
	vertical-align: middle;
	text-align: center;
	width: 33.33333%;
	white-space: nowrap;
	font-size: 16px;
	height: 50px;
}

.panel .sections>div.auto {
	width: 0.1%;
}

.panel .sections>div * {
	pointer-events: all;
}

.panel .sections>div.left {
	text-align: left;
}

.panel .sections>div.left ul.crop {
	padding-left: 0;
}

.panel .sections>div.left ul.crop li:first-child {
	margin-left: 0;
}

.panel .sections>div.left.space {
	padding-right: 20px;
}

.panel .sections>div.right {
	text-align: right;
}

.panel .sections>div.right ul.crop {
	padding-right: 0;
}

.panel .sections>div.right ul.crop li:last-child {
	margin-right: 0;
}

.panel .sections>div.right.space {
	padding-left: 20px;
}

.panel .sections>div.center.space {
	padding: 0 20px;
}

.panel .sections.hidden {
	display: none;
}

.panel .sections .menu {
	white-space: nowrap;
	display: inline-block;
	padding: 0 12px;
	font-size: 0;
}

.panel .sections .menu svg {
	width: 20px;
	height: 20px;
	vertical-align: bottom;
}

.panel .sections .menu li {
	font-size: 16px;
	font-weight: 400;
	display: inline-block;
	margin: 0 10px;
}

.panel .sections .menu li a {
	padding: 0 7px;
	opacity: 0.8;
}

.panel .sections .menu li a:hover {
	opacity: 1;
}

.panel .sections .menu.uppercase li {
	font-size: 12px;
	margin: 0 10px;
	letter-spacing: 0.125em;
	font-weight: 600 !important;
}

.panel .sections .menu.uppercase li svg {
	position: relative;
	top: 2px;
}

.panel .hidden,
.panel .hidden * {
	display: none;
}

.panel svg {
	fill: #fff;
	width: 18px;
	height: 18px;
	vertical-align: bottom;
}

.slides.whiteSlide .panel svg {
	fill: #202020;
}

.panel a:not(.button):hover {
	opacity: 0.75;
	transition: 0.15s;
}

.panel .button {
	margin: 0;
}

.panel .button+.button {
	margin-left: 10px;
}

.panel .button:not(.actionButton) {
	font-size: 15px;
	vertical-align: middle;
	padding: 12px 17px;
}

.panel .button:not(.actionButton):hover:not(:active) {
	-webkit-transform: translateY(0) !important;
	transform: translateY(0) !important;
	box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.05), 0 4px 6px 0 rgba(0, 0, 0, 0.1), 0 1px 10px 0 rgba(0, 0, 0, 0.1);
}

.panel .nextSlide,
.panel .prevSlide {
	width: 24px;
	height: 24px;
	position: relative;
	top: 5px;
}

.slides.whiteSlide .panel .actionButton svg {
	fill: #fff;
}

.panel .prevSlide,
.panel .nextSlide {
	transition: 0.25s;
}

.firstSlide .panel .prevSlide,
.lastSlide .panel .nextSlide {
	opacity: 0;
	pointer-events: none;
	cursor: default;
}

.firstSlide .panel.bottom .nextSlide svg {
	-webkit-animation: animateArrow 4s infinite;
	animation: animateArrow 4s infinite;
}

.panel .panelIcon {
	position: relative;
	top: 5px;
}

@-webkit-keyframes animateArrow {
	80%,
	100% {
		-webkit-transform: translateY(0px);
		transform: translateY(0px);
	}
	90% {
		-webkit-transform: translateY(10px);
		transform: translateY(10px);
	}
}

@keyframes animateArrow {
	80%,
	100% {
		-webkit-transform: translateY(0px);
		transform: translateY(0px);
	}
	90% {
		-webkit-transform: translateY(10px);
		transform: translateY(10px);
	}
}

.nextSlide,
.prevSlide {
	cursor: pointer;
}

.nextSlide:hover,
.prevSlide:hover {
	transition: 0.15s;
}

.nextSlide:active,
.prevSlide:active {
	opacity: 0.75;
}

.firstSlide.lastSlide .nextSlide,
.firstSlide.lastSlide .prevSlide {
	opacity: 0;
}


/* Progress Bar */

.progress-bar {
	position: fixed;
	top: 0;
	left: 0;
	height: 4px;
	width: 0%;
	transition: width 1s, opacity 1s;
	z-index: 1000;
	opacity: 1;
}

.progress-bar.loaded {
	width: 100%;
	opacity: 0;
	transition: width 0s, opacity 0.25s 1s;
}

.panel .sections li {
	display: inline-block;
}
.gallery-item {
  width: 200px;
  padding: 5px;
}

/* Map */

#map {
	height: 400px;  /* The height is 400 pixels */
	width: 100%;    /* The width is the width of the web page */
}
