
/*** 
====================================================================
	Root Code Variables
====================================================================
 ***/

.theme_color{
	color:var(--main-color);
}

/* Theme Color */

:root {
	
	/* #ffa200 in decimal RGB */
	--main-color: rgb(248 29 14);
	--main-color-rgb:255,162,0;
	
	/* #151824 in decimal RGB */
	--color-two: rgb(0 0 0);
	--color-two-rgb:21,24,36;
	
	/* #555555 in decimal RGB */
	--color-three: rgb(0 0 0);
	--color-three-rgb:85,85,85;
	
	

    /* #ffffff in decimal RGB */
	--white-color:rgb(255,255,255);
	--white-color-rgb:255,255,255;

	/* #000000 in decimal RGB */
	--black-color: black;
	--black-color-rgb:0,0,0;
}

/*** 

====================================================================
	Reset
====================================================================

 ***/
 
* {
	margin:0px;
	padding:0px;
	border:none;
	outline:none;
}

/*** 

====================================================================
	Global Settings
====================================================================

***/


/* width */
::-webkit-scrollbar {
  width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
  background: #f1f1f1;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background-color: var(--main-color);
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background-color: var(--color-three);
}

body {
	font-family: "Jost", sans-serif;
	line-height:1.6em;
	font-weight:400;
	font-size: 17px;
	color: var(--color-three);
	-webkit-font-smoothing: antialiased;
	-moz-font-smoothing: antialiased;
}

.text-left{
	text-align: left;
}

.dark-layout{
	position: relative;
	background-color: var(--black-color);
}

/* Preloader */

.preloader {
	position: fixed;
	height: 100vh;
	width: 100%;
	left: 0;
	top: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, #0f172a, #1e293b);
	z-index: 99999;
	overflow: hidden;
}

.preloader svg {
	position: absolute;
	top: 0;
	width: 100vw;
	height: 110vh;
	fill: #1e293b;
}

.preloader .preloader-heading .load-text {
	z-index: 20;
	font-size: 64px;
	font-weight: 700;
	line-height:1em;
	letter-spacing: 6px;
	text-transform: uppercase;
	color: var(--white-color);
	position: relative;
}

.preloader .preloader-heading .load-text span {
	display: inline-block;
	animation: bounceFade 1.2s infinite;
}

.preloader .preloader-heading .load-text span:nth-child(odd) {
	animation-delay: 0.2s;
}

.preloader .preloader-heading .load-text span:nth-child(even) {
	animation-delay: 0.4s;
}

/* Keyframes for text animation */

@keyframes bounceFade {
  0% {
    transform: translateY(0);
    opacity: 1;
  }
  50% {
    transform: translateY(-12px);
    opacity: 0.6;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

.trans-300{
	transition:all 300ms ease;
	-moz-transition:all 300ms ease;
	-webkit-transition:all 300ms ease;
	-ms-transition:all 300ms ease;
	-o-transition:all 300ms ease;
}

.trans-500{
	transition:all 500ms ease;
	-moz-transition:all 500ms ease;
	-webkit-transition:all 500ms ease;
	-ms-transition:all 500ms ease;
	-o-transition:all 500ms ease;
}

.trans-900{
	transition:all 900ms ease;
	-moz-transition:all 900ms ease;
	-webkit-transition:all 900ms ease;
	-ms-transition:all 900ms ease;
	-o-transition:all 900ms ease;
}

i{
    font-style: normal;
}

.bordered-layout .page-wrapper{
	padding:0px 50px 0px;
}

a{
	text-decoration:none;
	cursor:pointer;
	transition:all 0.3s ease;
	-moz-transition:all 0.3s ease;
	-webkit-transition:all 0.3s ease;
	-ms-transition:all 0.3s ease;
	-o-transition:all 0.3s ease;
	color:var(--main-color);
}

button,
a:hover,a:focus,a:visited{
	text-decoration:none;
	outline:none !important;
}

h1,h2,h3,h4,h5,h6 {
	position:relative;
	margin:0px;
	background:none;
	font-weight:700;
	color:var(--black-color);
    font-family: "Jost", sans-serif;
}

input,button,select,textarea{
	
}

textarea{
	overflow:hidden;
}

.sticky-top{
	top: 125px;
	z-index:1;
}

.text,
p{
	position:relative;
	line-height: 30px;
	font-size: 17px;
	color: rgb(0 0 0);
}

/* Typography */

h1{
	line-height: 67px;
	font-size: 55px;
}

h2{
	line-height: 39px;
	font-size: 33px;
}

h3{
	line-height:40px;
	font-size:30px;
}

h4{
	line-height:34px;
	font-size:24px;
}

h5{
	line-height:30px;
	font-size:20px;
}

h6{
	line-height:28px;
	font-size:18px;
}

.auto-container{
	position:static;
	max-width: 1322px;
	padding:0px 15px;
	margin:0 auto;
}

.auto-container_two{
	position:static;
	max-width:1200px;
	padding:0px 15px;
	margin:0 auto;
}

.page-wrapper{
	position:relative;
	margin:0 auto;
	width:100%;
	min-width:300px;
}

section{
	overflow: hidden;
}

ul,li{
	list-style:none;
	padding:0px;
	margin:0px;	
}

img{
	display:inline-block;
	max-width:100%;
}

.theme-btn{
	cursor:pointer;
	display:inline-block;
	transition:all 0.3s ease;
	-moz-transition:all 0.3s ease;
	-webkit-transition:all 0.3s ease;
	-ms-transition:all 0.3s ease;
	-o-transition:all 0.3s ease;
}

.centered{
	text-align:center;	
}

::-webkit-input-placeholder{color: inherit;}
::-moz-input-placeholder{color: inherit;}
::-ms-input-placeholder{color: inherit;}

/***

====================================================================
	Scroll To Top style
====================================================================

***/

/* backtoup */
.progress-wrap {
  position: fixed;
  right: 30px;
  bottom: 40px;
  height: 35px;
  width: 35px;
  cursor: pointer;
  display: block;
  border-radius: 50px;
  box-shadow: inset 0 0 0 2px rgba(0, 0, 0, 0.20);
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
  transform: translateY(15px);
  -webkit-transform: translateY(15px);
  -moz-transform: translateY(15px);
  -ms-transform: translateY(15px);
  -o-transform: translateY(15px); }
  .progress-wrap::after {
    position: absolute;
    content: '\f176';
    font-family: "Font Awesome 5 Free";
    text-align: center;
    line-height: 35px;
    font-size: 15px;
    color: var(--main-color);
    left: 0;
    top: 0;
    height: 35px;
    width: 35px;
    cursor: pointer;
    display: block;
    font-weight: 700;
    z-index: 1;
    -webkit-transition: all 200ms linear;
    transition: all 200ms linear;
    font-size: 13px; }
  .progress-wrap svg path {
    fill: none; }
  .progress-wrap svg.progress-circle path {
    stroke: var(--main-color);
    stroke-width: 4;
    box-sizing: border-box;
    -webkit-transition: all 200ms linear;
    transition: all 200ms linear; }
  .progress-wrap.active-progress {
    opacity: 1;
    visibility: visible;
    transform: translateY(0); }
  .progress-wrap.style2::after {
    color: var(--thm-color-2); }
  .progress-wrap.style2 svg.progress-circle path {
    stroke: var(--thm-color-2); }
  .progress-wrap.style3::after {
    color: var(--thm-color-3); }
  .progress-wrap.style3 svg.progress-circle path {
    stroke: var(--thm-color-3);
}

/* List Style One */

.list-style-one{
	position:relative;
}

.list-style-one li{
	position:relative;
	color:var(--white-color);
	font-size:16px;
	font-weight:400;
	line-height:1.8em;
	margin-bottom:10px;
	padding-left:30px;
}

.list-style-one li a{
	position:relative;
	color:var(--white-color);
	-webkit-transition:all 300ms ease;
	-moz-transition:all 300ms ease;
	-ms-transition:all 300ms ease;
	-o-transition:all 300ms ease;
	transition:all 300ms ease;
}

.list-style-one li a:hover{
	color:var(--main-color);
}

.list-style-one li .icon{
	position:absolute;
	left:0px;
	top:5px;
	color:var(--main-color);
	font-size:18px;
	line-height:1em;
	font-weight:300;
	-webkit-transition:all 300ms ease;
	-moz-transition:all 300ms ease;
	-ms-transition:all 300ms ease;
	-o-transition:all 300ms ease;
	transition:all 300ms ease;
}

/* Btn Style One */

.btn-style-one{
	position: relative;
	font-weight:500;
	font-size: 16px;
	overflow: hidden;
	text-align:center;
	border-radius: 5px;
	display:inline-block;
	padding: 4px 6px 7px 30px;
	color: var(--white-color);
	text-transform: capitalize;
	background-color: var(--color-two);
	margin-top: 8px;
}

.btn-style-one:before{
	-webkit-transition-duration: 800ms;
	transition-duration: 800ms;
	position: absolute;
	width: 200%;
	height: 200%;
	content: "";
	top: -200%;
	left: 50%;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
	border-radius: 50%;
	z-index: 1;
	background-color: var(--color-three);
}

.btn-style-one:hover:before{
	top: 0%;
}

.btn-style-one i{
	position: relative;
	width: 35px;
	height: 35px;
	line-height: 35px;
	text-align:center;
	margin-left:15px;
	border-radius:50px;
	display:inline-block;
	color: var(--color-two);
	transform: rotate(
20deg);
	background-color:var(--white-color);
}

.btn-style-one .btn-wrap{
	position:relative;
	z-index:1;
	float:left;
    overflow: hidden;
    display: inline-block;
}

.btn-style-one .btn-wrap .text-one{
	position: relative;
	display: block;
	color: var(--white-color);
	transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
	-webkit-transition: all 0.3s ease;
}

.btn-style-one:hover .btn-wrap  .text-one:first-child{
	-webkit-transform: translateY(-150%);
    -ms-transform: translateY(-150%);
    transform: translateY(-150%);
}

.btn-style-one:hover i{
	color: var(--color-two);
	background-color: var(--white-color);
}

.btn-style-one .btn-wrap .text-two{
	position: absolute;
    top: 100%;
    display: block;
	color: var(--white-color);
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.btn-style-one:hover .btn-wrap .text-two{
	top: 50%;
    -webkit-transform: translateY(-50%); 
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

.btn-style-one:hover .btn-wrap .text-two{
	color: var(--white-color);
}

.btn-style-one:hover{
	
}

.btn-style-one:hover:before{
	top: -40%;
}

/* Btn Style Two */

.btn-style-two{
	position: relative;
	font-weight:500;
	font-size: 16px;
	overflow: hidden;
	text-align:center;
	border-radius: 6px;
	display:inline-block;
	padding: 5px 6px 5px 30px;
	color: rgb(255 255 255);
	text-transform: capitalize;
	background-color: var(--main-color);
}

.btn-style-two:before{
	-webkit-transition-duration: 800ms;
	transition-duration: 800ms;
	position: absolute;
	width: 200%;
	height: 200%;
	content: "";
	top: -200%;
	left: 50%;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
	border-radius: 50%;
	z-index: 1;
	background-color: var(--color-two);
}

.btn-style-two:hover:before{
	top: 0%;
}

.btn-style-two i{
	position: relative;
	width: 40px;
	height: 40px;
	line-height: 38px;
	text-align:center;
	margin-left:15px;
	border-radius:50px;
	display:inline-block;
	color: var(--white-color);
	transform: rotate(-45deg);
	background-color:var(--black-color);
}

.btn-style-two:hover i{
	color: var(--white-color);
	background-color:var(--main-color);
}

.btn-style-two .btn-wrap{
	position:relative;
	z-index:1;
	float:left;
    overflow: hidden;
    display: inline-block;
}

.btn-style-two .btn-wrap .text-one{
	position: relative;
	display: block;
	color: rgb(255 255 255);
	transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	-webkit-transition: all 0.3s ease;
}

.btn-style-two:hover .btn-wrap  .text-one:first-child{
	-webkit-transform: translateY(-150%);
    -ms-transform: translateY(-150%);
    transform: translateY(-150%);
}

.btn-style-two .btn-wrap .text-two{
	position: absolute;
    top: 100%;
    display: block;
	color: var(--white-color);
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.btn-style-two:hover .btn-wrap .text-two{
	top: 50%;
    -webkit-transform: translateY(-50%); 
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

.btn-style-two:hover .btn-wrap .text-two{
	color: var(--white-color);
}

.btn-style-two:hover{
	
}

.btn-style-two:hover:before{
	top: -40%;
}

/* Btn Style Three */

.btn-style-three{
	position: relative;
	font-weight:500;
	font-size: 16px;
	overflow: hidden;
	text-align:center;
	border-radius: 8px;
	display:inline-block;
	padding: 2px 6px 2px 30px;
	color: var(--main-color);
	text-transform: capitalize;
	background-color: var(--white-color);
	margin: 0 0 auto;
}

.btn-style-three:before{
	-webkit-transition-duration: 800ms;
	transition-duration: 800ms;
	position: absolute;
	width: 200%;
	height: 200%;
	content: "";
	top: -200%;
	left: 50%;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
	border-radius: 50%;
	z-index: 1;
	background-color: var(--main-color);
}

.btn-style-three:hover:before{
	top: 0%;
}

.btn-style-three i{
	position: relative;
	width:50px;
	height:50px;
	line-height:50px;
	text-align:center;
	margin-left:15px;
	border-radius:50px;
	display:inline-block;
	color: var(--white-color);
	transform: rotate(-45deg);
	background-color:var(--black-color);
}

.btn-style-three .btn-wrap{
	position:relative;
	z-index:1;
	float:left;
    overflow: hidden;
    display: inline-block;
}

.btn-style-three .btn-wrap .text-one{
	position: relative;
	display: block;
	color: var(--color-two);
	transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
	-webkit-transition: all 0.3s ease;
}

.btn-style-three:hover .btn-wrap  .text-one:first-child{
	-webkit-transform: translateY(-150%);
    -ms-transform: translateY(-150%);
    transform: translateY(-150%);
}

.btn-style-three .btn-wrap .text-two{
	position: absolute;
    top: 100%;
    display: block;
	color:var(--black-color);
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.btn-style-three:hover .btn-wrap .text-two{
	top: 50%;
    -webkit-transform: translateY(-50%); 
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

.btn-style-three:hover .btn-wrap .text-two{
	color: var(--white-color);
}

.btn-style-three:hover i{
	color: var(--black-color);
	background-color:var(--white-color);
}

.btn-style-three:hover:before{
	top: -40%;
}

img{
	display:inline-block;
	max-width:100%;
	height:auto;	
}

.overlay-layer{
	position:absolute;
	left:0px;
	top:0px;
	right:0px;
	bottom:0px;
}

/* Overlay Anim */

.overlay-anim {
  position: relative;
}
.overlay-anim:after {
  background: rgba(255, 255, 255, 0.3);
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 0;
  opacity: 1;
  z-index: 9;
  pointer-events: none;
}
.overlay-anim:hover:after {
  height: 100%;
  opacity: 0;
  -webkit-transition: all 400ms linear;
  transition: all 400ms linear;
}

/*** 

====================================================================
	Section Title
====================================================================

***/

.sec-title{
	position:relative;
	z-index: 2;
	margin-bottom: 24px;
}

.sec-title_title{
	position: relative;
	font-weight:700;
	font-size:18px;
	margin-bottom: 12px;
	display: flex;
	gap:15px;
	letter-spacing:1px;
	align-items:center;
	color:var(--main-color);
	text-transform:uppercase;
}

.sec-title_heading{
	margin-top: -5px;
	color: var(--black-color);
	text-transform: capitalize;
	font-weight: 600;
}

.sec-title_text{
	line-height:30px; 
	font-size:16px;
	margin-top:20px;
    color:#666666;
}

.sec-title.light .sec-title_title span{
	background-color: rgba(255, 255, 255, 0);
    background-image: linear-gradient(0deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 100%);
}

.sec-title.light .sec-title_big-title{
	-webkit-text-stroke-color: rgba(var(--color-three-rgb), 0.30);
}

.sec-title.light .sec-title_text{
	opacity: 1;
	color: var(--white-color);
}

.sec-title.light .sec-title_heading{
	color: rgb(0 0 0);
	margin-top: 14px;
}

.sec-title.centered{
	text-align: center !important;
	border-bottom: 1px solid #00000014;
	padding-bottom: 15px;
	margin-bottom: 20px;
}

.sec-title.centered .sec-title_title{
	justify-content:center;
}

/* Custom Select */

.form-group .ui-selectmenu-button.ui-button{
	top:-2px;
	width:100%;
	border:0px;
	padding: 15px 25px;
	font-weight:500;
	line-height:28px;
	font-size:16px;
	color:var(--color-four);
	background-color: var(--white-color);
	border:1px solid rgba(var(--black-color-rgb), 0.08);
}

.form-group .ui-button .ui-icon{
	background:none;
	position:relative;
	top:3px;
	text-indent:0px;
	color:#a5a5a5;	
}

.form-group .ui-button .ui-icon:before{
	font-family: 'FontAwesome';
	content: "\f107";
	position:absolute;
	right:0px;
	top:2px !important;
	top:10px;
	height:22px;
	display:block;
	line-height:20px;
	font-size:14px;
	font-weight:normal;
	text-align:center;
	z-index:5;
	color:var(--color-three);
}

.ui-menu .ui-menu-item{
	font-size:14px;
}

.ui-menu .ui-menu-item:last-child{
	border:none;	
}

.ui-state-active, .ui-widget-content .ui-state-active{
	background-color:var(--main-color) !important;
	border-color:var(--main-color) !important;
}

.ui-menu .ui-menu-item-wrapper{
	position:relative;
	display:block;
	padding:8px 20px;
	line-height:24px;
	font-size:14px;
}

.ui-menu-item:hover{
	background-color:var(--color-two);
}

/* Cursor */

.cursor {
    position: fixed;
    background-color: var(--main-color);
    width: 10px;
    height: 10px;
    border-radius: 100%;
    z-index: 1;
    -webkit-transition: 0.2s cubic-bezier(0.75, -0.27, 0.3, 1.33) opacity, 0.3s cubic-bezier(0.75, -1.27, 0.3, 2.33) -webkit-transform;
    transition: 0.2s cubic-bezier(0.75, -0.27, 0.3, 1.33) opacity, 0.3s cubic-bezier(0.75, -1.27, 0.3, 2.33) -webkit-transform;
    transition: 0.3s cubic-bezier(0.75, -1.27, 0.3, 2.33) transform, 0.2s cubic-bezier(0.75, -0.27, 0.3, 1.33) opacity;
    transition: 0.3s cubic-bezier(0.75, -1.27, 0.3, 2.33) transform, 0.2s cubic-bezier(0.75, -0.27, 0.3, 1.33) opacity, 0.3s cubic-bezier(0.75, -1.27, 0.3, 2.33) -webkit-transform;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	pointer-events: none;
	z-index: 10000;
	-webkit-transform: scale(1);
	transform: scale(1);
}
  
.cursor.active {
	opacity: 1;
	-webkit-transform: scale(0);
	transform: scale(0);
}
  
.cursor.menu-active {
	opacity: 1;
	-webkit-transform: scale(0);
	transform: scale(0);
}
  
.cursor.hovered {
	opacity: 1;
}
  
.cursor-follower {
	position: fixed;
	border: 0.5px solid var(--main-color);
	width: 30px;
	height: 30px;
	border-radius: 100%;
	z-index: 1;
	-webkit-transition: 0.2s cubic-bezier(0.75, -0.27, 0.3, 1.33) opacity, 0.2s cubic-bezier(0.75, -0.27, 0.3, 1.33) background, 0.6s cubic-bezier(0.75, -1.27, 0.3, 2.33) -webkit-transform;
	transition: 0.2s cubic-bezier(0.75, -0.27, 0.3, 1.33) opacity, 0.2s cubic-bezier(0.75, -0.27, 0.3, 1.33) background, 0.6s cubic-bezier(0.75, -1.27, 0.3, 2.33) -webkit-transform;
	transition: 0.6s cubic-bezier(0.75, -1.27, 0.3, 2.33) transform, 0.2s cubic-bezier(0.75, -0.27, 0.3, 1.33) opacity, 0.2s cubic-bezier(0.75, -0.27, 0.3, 1.33) background;
	transition: 0.6s cubic-bezier(0.75, -1.27, 0.3, 2.33) transform, 0.2s cubic-bezier(0.75, -0.27, 0.3, 1.33) opacity, 0.2s cubic-bezier(0.75, -0.27, 0.3, 1.33) background, 0.6s cubic-bezier(0.75, -1.27, 0.3, 2.33) -webkit-transform;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	pointer-events: none;
	z-index: 10000;
	-webkit-transform: translate(2px, 2px);
	transform: translate(2px, 2px);
}

.cursor-follower.active {
	opacity: 1;
	-webkit-transform: scale(2);
	transform: scale(2);
}

.cursor-follower.menu-active {
	opacity: 1;
	-webkit-transform: scale(2);
	transform: scale(2);
}

.cursor-follower.hovered {
	opacity: 1;
}
  
/* Cursor End */

.xs-sidebar-group .close-button{
	font-family: "Flaticon";
}

.newsletter-popup-area-section{
	display: none;
}

.ui-datepicker td span, .ui-datepicker td a{
	text-align: center !important;
}

/* Shop Sidebar */

.xs-sidebar-group .xs-overlay {
    left: 100%;
    top: 0;
    position: fixed;
    z-index: 999999;
    height: 100%;
    opacity: 0;
    width: 100%;
    visibility: hidden;
    -webkit-transition: all 0.4s ease-in 0.8s;
    -o-transition: all 0.4s ease-in 0.8s;
    transition: all 0.4s ease-in 0.8s;
    cursor: url(../images/cross-out.png), pointer;
}

.xs-sidebar-group .close-button {
    position: absolute;
    top: 15px;
    right: 20px;
    z-index: 10;
	cursor:pointer;
	font-size:var(--font-18);
}

.xs-sidebar-group .close-button .mdi{
	color:var(--color-four);
	font-size:var(--font-14);
	font-family: "Material Design Icons";
}

.xs-sidebar-group .close-button .mdi:hover{
	color:var(--black-color);
}

.xs-sidebar-widget:nth-child(2){
	right:-380px;
}

.xs-sidebar-widget {
    position: fixed;
    right: -100%;
    top: 0;
    bottom: 0;
    width: 100%;
    max-width: 370px;
    z-index: 999999;
    overflow: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    background-color: #ffffff;
    -webkit-transition: all 0.3s cubic-bezier(0.9, 0.03, 0, 0.96) 0.3s;
    -o-transition: all 0.3s cubic-bezier(0.9, 0.03, 0, 0.96) 0.3s;
    transition: all 0.3s cubic-bezier(0.9, 0.03, 0, 0.96) 0.3s;
}
.xs-sidebar-group.isActive .xs-overlay {
    opacity: 0.7;
    visibility: visible;
    -webkit-transition: all 0.8s ease-out 0s;
    -o-transition: all 0.8s ease-out 0s;
    transition: all 0.8s ease-out 0s;
    left: 0;
}
.xs-sidebar-group.isActive .xs-sidebar-widget {
    opacity: 1;
    visibility: visible;
    right: 0px;
    -webkit-transition: all 0.8s cubic-bezier(0.9, 0.03, 0, 0.96) 0.4s;
    -o-transition: all 0.7s cubic-bezier(0.8, 0.03, 0, 0.96) 0.4s;
    transition: all 0.8s cubic-bezier(0.9, 0.03, 0, 0.96) 0.4s;
}
.sidebar-textwidget {
    padding: 0px;
}
.close-side-widget {
    font-size: rem(15px);
    display: block;
}
.sidebar-widget-container {
    position: relative;
    top: 0px;
    -webkit-transition: all 0.3s ease-in 0.3s;
    -o-transition: all 0.3s ease-in 0.3s;
    transition: all 0.3s ease-in 0.3s;
}
.xs-sidebar-group.isActive .sidebar-widget-container {
    -webkit-transition: all 1s ease-out 1.2s;
    -o-transition: all 1s ease-out 1.2s;
    transition: all 1s ease-out 1.2s;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}
.xs-overlay {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    opacity: 0.5;
    z-index: 0;
}
.xs-bg-black {
    background-color: #000000;
}
.xs-menu-tools > li {
    display: inline-block;
    margin-right: 15px;
}
.xs-menu-tools > li:last-child {
    margin-right: 0;
}
.xs-menu-tools > li > a {
    color: #000000;
    text-decoration: none;
}
.nav-alignment-dynamic,
.nav-alignment-flex-start {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
}

/*** 

====================================================================
	Styled Pagination
====================================================================

***/

.styled-pagination{
	position:relative;
	margin-top: 20px;
}

.styled-pagination li{
	position:relative;
	display:inline-block;
	margin:0px 5px 10px 0px;
}

.styled-pagination li a{
	position:relative;
	display:inline-block;
	line-height:58px;
	height:60px;
	width:60px;
	font-size:20px;
	min-width:50px;
	font-weight:600;
	text-align:center;
	border-radius: 5px;
	text-transform:capitalize;
	transition:all 500ms ease;
	-webkit-transition:all 500ms ease;
	-ms-transition:all 500ms ease;
	-o-transition:all 500ms ease;
	-moz-transition:all 500ms ease;
	color:var(--white-color);
	background-color:var(--color-three);
}

.styled-pagination li.prev a,
.styled-pagination li.next a{
	height:60px;
	width:100px;
	color:var(--white-color);
	background-image:none;
	background-color:var(--main-color);
}

.styled-pagination li a:hover,
.styled-pagination li a.active{
	color:var(--white-color);
	background-color:var(--main-color);
}

/* Skills Section */

.default-skills{
	position:relative;
}

.default-skill-item{
	position:relative;
	margin-bottom:25px;
}

.default-skill-item:last-child{
	margin-bottom:0px;
}

.default-skill-title{
	position:relative;
	font-weight:700;
	font-size:18px;
	margin-bottom:10px;
	color:var(--black-color);
	text-transform:capitalize;
}

.default-skill-bar{
	position:relative;
	width:100%;
	height:12px;
	border-radius:50px;
}

.default-skill-bar:before{
	position:absolute;
	content:'';
	left:0px;
	bottom:0px;
	right:0px;
	height:12px;
	border-radius:50px;
	background-color:#dddddd;
}

.default-bar-inner{
	position:relative;
	width:100%;
	height:12px;
	overflow:hidden;
	border-radius:50px;
}

.default-bar{
	position:absolute;
	left:0px;
	top:0px;
	height:12px;
	width:0px;
	border-radius:50px;
	background-color: var(--main-color);
	-webkit-transition:all 2000ms ease;
	-ms-transition:all 2000ms ease;
	-o-transition:all 2000ms ease;
	-moz-transition:all 2000ms ease;
	transition:all 2000ms ease;
}

.default-count-box{
	position:absolute;
	right:0px;
	top:0px;
	font-weight:700;
	font-size:18px;
	color:var(--black-color);
}

.text_invert > div {
  background-image: -webkit-gradient(linear, left top, right top, color-stop(50%, rgb(21,24,36)), color-stop(50%, rgb(117, 126, 137)));
  background-image: linear-gradient(to right, rgb(21,24,36) 50%, rgb(117, 126, 137) 50%);
  background-size: 200% 100%;
  background-position-x: 100%;
  color: #000000;
  background-clip: text;
  -webkit-background-clip: text;
}

.text_invert-light > div {
  background-image: -webkit-gradient(linear, left top, right top, color-stop(50%, rgb(255, 255, 255)), color-stop(50%, rgb(117, 126, 137)));
  background-image: linear-gradient(to right, rgb(255, 255, 255) 50%, rgb(117, 126, 137) 50%);
  background-size: 200% 100%;
  background-position-x: 100%;
  color: #000000;
  background-clip: text;
  -webkit-background-clip: text;
}
/* Qonstruct Construction Business HTML-5 Template */

/*** 

====================================================================
	Header style One
====================================================================

***/

.main-header{
	position:absolute;
	left: 0px;
	top: 0px;
	right: 0px;
	z-index:1001;
	width:100%;

	transition:all 900ms ease;
	-moz-transition:all 900ms ease;
	-webkit-transition:all 900ms ease;
	-ms-transition:all 900ms ease;
	-o-transition:all 900ms ease;
}

.header-top{
	position:relative;
	background: white;
}

.header-top .inner-container{
	position:relative;
	padding: 7px 0px 13px;
	margin-left: 229px;
}

.header-info_list{
	position:relative;
	display: flex;
	gap: 25px;
}

.header-info_list li{
	position:relative;
	display: flex;
	gap: 8px;
	font-weight: 500;
	font-size: 16px;
	color: var(--black-color);
}

.header-info_list li a{
	position:relative;
	color: var(--black-color);
}

.header-info_list li a:hover{
	color: var(--main-color);
}

.header-top .address{
	position:relative;
	font-size: 16px;
	font-weight: 500;
	color: var(--color-two);
}

.header-top .address a{
	position:relative;
	font-weight: 600;
	color: var(--main-color);
}

.header-top .social-box{
	position:relative;
	display: flex;
	gap: 15px;
}

.header-top .social-box a{
	position:relative;
	font-size: 16px;
	color: var(--color-two);
}

.header-top .social-box a:hover{
	color: var(--main-color);
}

.header-style-one{
	min-height: 92px;
}

/* Header Upper */

.main-header .header-lower{
	position: relative;
	transition:all 900ms ease;
	-moz-transition:all 900ms ease;
	-webkit-transition:all 900ms ease;
	-ms-transition:all 900ms ease;
	-o-transition:all 900ms ease;
	padding-left: 65px;
}

.main-header .header-lower .inner-container{
	position: relative;
	padding-left: 230px;
	padding-right: 20px;
}

.main-header .header-lower .inner-container:after{
	position: absolute;
	content:'';
	z-index:-1;
	left: -320px;
	top: -64px;
	width: 747px;
	height: 215px;
	background:url(../images/main-slider/triangle.png) no-repeat;
}

.main-header .header-lower .inner-container:before{
	position: absolute;
	content:'';
	left:200px;
	top:0px;
	right:0px;
	bottom:0px;
	border-radius: 4px;
	background-color: var(--main-color);
}

.main-header.fixed-header .header-lower .logo-box{
	padding: 3px 0px;
}

.main-header.fixed-header .header-lower .inner-container{
	padding-right:0px;
}

.main-header.fixed-header .header-lower .inner-container:before{
	display: none;
}

/* Login Box */

.header-login_box{
	position: relative;
	width: 64px;
	height: 64px;
	font-size: 22px;
	line-height: 62px;
	text-align: center;
	border-radius: 50px;
	display: inline-block;
	color: var(--color-two);
	border: 1px solid rgba(var(--color-two-rgb), 0.15);
}

.header-login_box:hover{
	color: var(--white-color);
	border-color: var(--main-color);
	background-color: var(--main-color);
}

/* NavSidebar Button */

.navSidebar-button{
	position: relative;
    width: 64px;
    height: 64px;
	cursor: pointer;
    font-size: 20px;
	margin-left: 20px;
    line-height: 62px;
    text-align: center;
    border-radius: 50px;
    display: inline-block;
    color: var(--color-two);
	transition:all 300ms ease;
	-moz-transition:all 300ms ease;
	-webkit-transition:all 300ms ease;
	-ms-transition:all 300ms ease;
	-o-transition:all 300ms ease;
    border: 1px solid rgba(var(--color-two-rgb), 0.15);
}

.navSidebar-button span{
	position: absolute;
	right: 10px;
	top: 10px;
	width: 20px;
	height: 20px;
	font-size: 10px;
	line-height: 20px;
	text-align: center;
	border-radius: 50px;
	display: inline-block;
	color: var(--white-color);
	background-color: var(--main-color);
}

.navSidebar-button:hover{
	color: var(--white-color);
	border-color: var(--main-color);
	background-color: var(--main-color);
}

.navSidebar-button:hover span{
	color: var(--white-color);
	background-color: var(--color-two);
}

/* Search Widget */

.header-search_box{
	position: relative;
	width: 310px;
}

.header-search_box .form-group{
	position:relative;
	margin:0px;
}

.header-search_box .form-group input:focus + button{
	color: var(--white-color);
	background-color: var(--main-color);
}

.header-search_box .form-group input[type="text"],
.header-search_box .form-group input[type="search"]{
	position:relative;
	line-height:28px;
	font-size:16px;
	padding:10px 50px 10px 25px;
	background:none;
	display:block;
	width:100%;
	height:64px;
	border-radius:50px;
	color:var(--black-color);
	transition:all 500ms ease;
	-moz-transition:all 500ms ease;
	-webkit-transition:all 500ms ease;
	-ms-transition:all 500ms ease;
	-o-transition:all 500ms ease;
	border:1px solid rgba(var(--black-color-rgb), 0.10);
}

.header-search_box .form-group input::placeholder,
.header-search_box .form-group textarea::placeholder{
	color:var(--color-two);
	font-size: 18px;
}

.header-search_box .form-group button{
	position:absolute;
	right:5px;
	top:5px;
	bottom: 5px;
	width:60px;
	display:block;
	cursor:pointer;
	line-height:50px;
	font-weight:normal;
	border-radius:50px;
	font-size:16px;
	color:var(--color-two);
	transition:all 500ms ease;
	-moz-transition:all 500ms ease;
	-webkit-transition:all 500ms ease;
	-ms-transition:all 500ms ease;
	-o-transition:all 500ms ease;
	background-color: var(--color-six);
}

.header-search_box .form-group button:hover{
	background-color:var(--main-color);
	color:var(--white-color);
}

.main-header .main-box{
	position:relative;
	padding:0px 0px;
	left:0px;
	top:0px;
	width:100%;
	background:none;
	-webkit-transition:all 300ms ease;
	-ms-transition:all 300ms ease;
	-o-transition:all 300ms ease;
	-moz-transition:all 300ms ease;
	transition:all 300ms ease;
}

.main-header .main-box .outer-container{
	position:relative;
}

.main-header .main-box .logo-box{
	position:relative;
	float:left;
	left:0px;
	z-index:10;
	padding:30px 0px;
}

.main-header .main-box .logo-box .logo img{
	display:inline-block;
	max-width:100%;
	-webkit-transition:all 300ms ease;
	-ms-transition:all 300ms ease;
	-o-transition:all 300ms ease;
	-moz-transition:all 300ms ease;
	transition:all 300ms ease;	
}

.main-header .header-lower .nav-outer{
	position:static;
}

.main-header .header-lower .logo-box{
	position: absolute;
	left: -85px;
	top: -27px;
	z-index: 1;
}

.main-header .header-lower .logo-box .logo{
	position:relative;
	max-width: 246px;
}

.main-header .main-menu .navigation > li:nth-child(7) > ul,
.main-header .main-menu .navigation > li:nth-child(8) > ul{
	left:0px;
	right:auto !important;
}

/* Main Menu */

.main-header .main-menu{
	position:static;
	-webkit-transition:all 300ms ease;
	-ms-transition:all 300ms ease;
	-o-transition:all 300ms ease;
	-moz-transition:all 300ms ease;
	transition:all 300ms ease;
}

.main-header .main-menu .navbar-collapse{
	padding:0px;
	display:block;
}

.main-header .header-lower .main-menu .navigation{
	position:static;
}

.main-header .main-menu .navigation > li{
	position:relative;
	margin-right: 35px;
	display:inline-block;
	transition:all 500ms ease;
	-moz-transition:all 500ms ease;
	-webkit-transition:all 500ms ease;
	-ms-transition:all 500ms ease;
	-o-transition:all 500ms ease;
}

.main-header .main-menu .navigation > li.current a::after,
.main-header .main-menu .navigation > li:hover a::after{
	opacity: 1;
}

.main-header.fixed-header .header-lower{
	position: revert;
	left: 0px;
	top: 0px;
	right: 0px;
	z-index:9999999;
	opacity:1;
	visibility:visible;
	background-color: var(--white-color);
	-ms-animation-name: fadeInDown;
	-moz-animation-name: fadeInDown;
	-op-animation-name: fadeInDown;
	-webkit-animation-name: fadeInDown;
	animation-name: fadeInDown;
	-ms-animation-duration: 500ms;
	-moz-animation-duration: 500ms;
	-op-animation-duration: 500ms;
	-webkit-animation-duration: 500ms;
	animation-duration: 500ms;
	-ms-animation-timing-function: linear;
	-moz-animation-timing-function: linear;
	-op-animation-timing-function: linear;
	-webkit-animation-timing-function: linear;
	animation-timing-function: linear;
	-ms-animation-iteration-count: 1;
	-moz-animation-iteration-count: 1;
	-op-animation-iteration-count: 1;
	-webkit-animation-iteration-count: 1;
	animation-iteration-count: 1;
	box-shadow: 0px 10px 15px rgba(0,0,0,0.04);
	transition:all 900ms ease;
	-moz-transition:all 900ms ease;
	-webkit-transition:all 900ms ease;
	-ms-transition:all 900ms ease;
	-o-transition:all 900ms ease;
}

.main-header .main-menu .navigation > li > a{
	position:relative;
	display:block;
	font-size: 18px;
	font-weight:500;
	line-height:20px;
	padding: 21px 0px;
	text-align:center;
	color: rgb(255 255 255);
	transition:all 500ms ease;
	-moz-transition:all 500ms ease;
	-webkit-transition:all 500ms ease;
	-ms-transition:all 500ms ease;
	-o-transition:all 500ms ease;
	text-transform: capitalize;
}

.main-header .main-menu .navigation > li.dropdown a{
	padding-right: 17px !important;
} 

.main-header .main-menu .navigation > li.dropdown > a:after{
    position: absolute;
    content: "\f107";
    right: 0px;
    line-height: 22px;
	font-weight:700;
    font-size: 13px;
	font-family: 'Font Awesome 6 Free';
	-webkit-transition:all 0.3s ease;
	-moz-transition:all 0.3s ease;
	-ms-transition:all 0.3s ease;
	-o-transition:all 0.3s ease;
	transition:all 0.3s ease;
}

.main-header .main-menu .navigation > li.dropdown:hover > a::after{
	transform: rotate(180deg);
}

.main-header .main-menu .navigation > li:hover > a::before{
	color: var(--main-color);
	transition:all 500ms ease;
	-moz-transition:all 500ms ease;
	-webkit-transition:all 500ms ease;
	-ms-transition:all 500ms ease;
	-o-transition:all 500ms ease;
}

.main-header .main-menu .navigation > li > a .menu-text{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    overflow: hidden;
    text-shadow: 0 17px 0 var(--main-color);
}

.main-header .sticky-header .main-menu .navigation > li > a .menu-text{
	text-shadow: 0 16px 0 var(--black-color);
}

.main-header .main-menu .navigation > li > a .menu-text span:nth-child(1){
    -webkit-transition-delay: 0.05s;
    transition-delay: 0.05s;
}

.main-header .main-menu .navigation > li:hover > a span{
    --m: calc(17px * -1);
}

.main-menu > li > a .menu-text span:nth-child(1), .main-menu-4 > li > a .menu-text span:nth-child(1) {
    -webkit-transition-delay: 0.05s;
    transition-delay: 0.05s;
}

.main-header .main-menu .navigation > li > a .menu-text span:nth-child(2) {
    -webkit-transition-delay: 0.1s;
    transition-delay: 0.1s;
}

.main-header .main-menu .navigation > li > a .menu-text span:nth-child(3) {
    -webkit-transition-delay: 0.15s;
    transition-delay: 0.15s;
}

.main-header .main-menu .navigation > li > a .menu-text span:nth-child(4){
    -webkit-transition-delay: 0.2s;
    transition-delay: 0.2s;
}

.main-header .main-menu .navigation > li > a .menu-text span:nth-child(5){
    -webkit-transition-delay: 0.25s;
    transition-delay: 0.25s;
}

.main-header .main-menu .navigation > li > a .menu-text span:nth-child(6){
    -webkit-transition-delay: 0.3s;
    transition-delay: 0.3s;
}

.main-header .main-menu .navigation > li > a .menu-text span:nth-child(7){
    -webkit-transition-delay: 0.35s;
    transition-delay: 0.35s;
}

.main-header .main-menu .navigation > li > a .menu-text span:nth-child(8){
    -webkit-transition-delay: 0.4s;
    transition-delay: 0.4s;
}

.main-header .main-menu .navigation > li > a .menu-text span:nth-child(9){
    -webkit-transition-delay: 0.45s;
    transition-delay: 0.45s;
}

.main-header .main-menu .navigation > li > a .menu-text span:nth-child(10){
    -webkit-transition-delay: 0.5s;
    transition-delay: 0.5s;
}

.main-header .main-menu .navigation > li > a .menu-text span{
    display: block;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    font-style: normal;
    -webkit-transition: -webkit-transform 0.4s ease;
    transition: -webkit-transform 0.4s ease;
    transition: transform 0.4s ease;
    transition: transform 0.4s ease, -webkit-transform 0.4s ease;
    -webkit-transform: translateY(var(--m)) translateZ(0);
    transform: translateY(var(--m)) translateZ(0);
}

.main-header .main-menu .navigation > li > a > span{
	position:absolute;
	right:-25px;
	top:20px;
	width:42px;
	height:16px;
	font-weight:600;
	line-height:1.6em;
	border-radius:50px;
	letter-spacing:1px;
	font-size:12px;
	text-transform:uppercase;
	color:var(--black-color);
	background-color:var(--main-color);
}

.main-header .main-menu .navigation > li:last-child{
	margin-right:0px;
}

.main-header .sticky-header .main-menu .navigation > li{
	position:relative;
}

.main-header .sticky-header .main-menu .navigation > li:last-child{
	margin-right:0px;
}

.main-header .main-menu .navigation > li:last-child ul{
	right:0px;
}

.main-header .main-menu .navigation > li:hover > a,
.main-header .main-menu .navigation > li.current > a{
	opacity:1;
	color: rgb(255 255 255);
}

.main-header .main-menu .navigation > li > ul{
	position:absolute;
	width: max-content;
	top:100%;
	padding:15px 15px;
	-webkit-transform: scaleY(0);
	-ms-transform: scaleY(0);
	-o-transform: scaleY(0);
	transform: scaleY(0);
	-webkit-transform-origin: top;
	-ms-transform-origin: top;
	-o-transform-origin: top;
	transform-origin: top;
	opacity: 0;
	visibility: hidden;
	transition: all 300ms ease;
	-moz-transition: all 300ms ease;
	-webkit-transition: all 300ms ease;
	-ms-transition: all 300ms ease;
	-o-transition: all 300ms ease;
	border-radius:0px;
	background-color:var(--white-color);
	box-shadow: 0px 0px 10px rgba(0,0,0,0.10);
}

.main-header .main-menu .navigation > li > ul.from-right{
	left:auto;
	right:0px;	
}

.main-header .main-menu .navigation > li > ul > li{
	position:relative;
	width:100%;
	opacity:0;
	text-align:left;
	margin-bottom:2px;
	transform:translateY(11px);
	transition:all 500ms ease;
	-moz-transition:all 500ms ease;
	-webkit-transition:all 500ms ease;
	-ms-transition:all 500ms ease;
	-o-transition:all 500ms ease;
}

.main-header .main-menu .navigation > li > ul > li:last-child{
	margin-bottom:0px;
}

.main-header .main-menu .navigation > li:hover > ul > li{
	opacity:1;
	transform:translateY(0px);
	-webkit-transition-delay: 70ms;
	-moz-transition-delay: 70ms;
	-ms-transition-delay: 70ms;
	-o-transition-delay: 70ms;
	transition-delay: 70ms;
}

.main-header .main-menu .navigation > li:hover > ul > li:nth-child(2){
	-webkit-transition-delay: 140ms;
	-moz-transition-delay: 140ms;
	-ms-transition-delay: 140ms;
	-o-transition-delay: 140ms;
	transition-delay: 140ms;
}

.main-header .main-menu .navigation > li:hover > ul > li:nth-child(3){
	-webkit-transition-delay: 210ms;
	-moz-transition-delay: 210ms;
	-ms-transition-delay: 210ms;
	-o-transition-delay: 210ms;
	transition-delay: 210ms;
}

.main-header .main-menu .navigation > li:hover > ul > li:nth-child(4){
	-webkit-transition-delay: 280ms;
	-moz-transition-delay: 280ms;
	-ms-transition-delay: 280ms;
	-o-transition-delay: 280ms;
	transition-delay: 280ms;
}

.main-header .main-menu .navigation > li:hover > ul > li:nth-child(5){
	-webkit-transition-delay: 350ms;
	-moz-transition-delay: 350ms;
	-ms-transition-delay: 350ms;
	-o-transition-delay: 350ms;
	transition-delay: 350ms;
}

.main-header .main-menu .navigation > li:hover > ul > li:nth-child(6){
	-webkit-transition-delay: 420ms;
	-moz-transition-delay: 420ms;
	-ms-transition-delay: 420ms;
	-o-transition-delay: 420ms;
	transition-delay: 420ms;
}

.main-header .main-menu .navigation > li:hover > ul > li:nth-child(7){
	-webkit-transition-delay: 490ms;
	-moz-transition-delay: 490ms;
	-ms-transition-delay: 490ms;
	-o-transition-delay: 490ms;
	transition-delay: 490ms;
}

.main-header .main-menu .navigation > li:hover > ul > li:nth-child(8){
	-webkit-transition-delay: 560ms;
	-moz-transition-delay: 560ms;
	-ms-transition-delay: 560ms;
	-o-transition-delay: 560ms;
	transition-delay: 560ms;
}

.main-header .main-menu .navigation > li:hover > ul > li:nth-child(9){
	-webkit-transition-delay: 630ms;
	-moz-transition-delay: 630ms;
	-ms-transition-delay: 630ms;
	-o-transition-delay: 630ms;
	transition-delay: 630ms;
}

.main-header .main-menu .navigation > li:hover > ul > li:nth-child(10){
	-webkit-transition-delay: 700ms;
	-moz-transition-delay: 700ms;
	-ms-transition-delay: 700ms;
	-o-transition-delay: 700ms;
	transition-delay: 700ms;
}

.main-header .main-menu .navigation > li:hover > ul > li:nth-child(11){
	-webkit-transition-delay: 770ms;
	-moz-transition-delay: 770ms;
	-ms-transition-delay: 770ms;
	-o-transition-delay: 770ms;
	transition-delay: 770ms;
}

.main-header .main-menu .navigation > li:hover > ul > li:nth-child(12){
	-webkit-transition-delay: 840ms;
	-moz-transition-delay: 840ms;
	-ms-transition-delay: 840ms;
	-o-transition-delay: 840ms;
	transition-delay: 840ms;
}

.main-header .main-menu .navigation > li:hover > ul > li:nth-child(13){
	-webkit-transition-delay: 900ms;
	-moz-transition-delay: 900ms;
	-ms-transition-delay: 900ms;
	-o-transition-delay: 900ms;
	transition-delay: 900ms;
}

.main-header .main-menu .navigation > li > ul > li:last-child{
	border-bottom:none;
}

.main-header .main-menu .navigation > li > ul > li > a{
	position:relative;
	display:block;
	line-height:24px;
	font-weight:600;
	font-size:14px;
	padding: 10px 15px;
	text-transform:uppercase;
	color:var(--black-color);
	transition:all 500ms ease;
	-moz-transition:all 500ms ease;
	-webkit-transition:all 500ms ease;
	-ms-transition:all 500ms ease;
	-o-transition:all 500ms ease;
	background-color: rgba(var(--black-color-rgb), 0.06);
}

.main-header .main-menu .navigation > li > ul > li > a:hover{
	color: var(--white-color);
	background-color: var(--main-color);
}

.main-header .main-menu .navigation > li > ul > li.dropdown > a:after{
	position:absolute;
	content: "\f105";
	right: 15px;
    top: 12px;
	z-index:5;
	width:10px;
	height:20px;
	display:block;
	line-height:20px;
	font-weight:normal;
	text-align:center;
	font-weight:800;
	font-size:14px;
	color:var(--black-color);
	font-family: 'Font Awesome 6 Free';
}

.main-header .main-menu .navigation > li > ul > li > ul{
	position:absolute;
	left:100%;
	top:0px;
	width: 16rem;
    padding:15px 15px;
	-webkit-transform: scaleY(0);
	-ms-transform: scaleY(0);
	-o-transform: scaleY(0);
	transform: scaleY(0);
	-webkit-transform-origin: top;
	-ms-transform-origin: top;
	-o-transform-origin: top;
	transform-origin: top;
	opacity: 0;
	visibility: hidden;
    visibility: hidden;
    transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -webkit-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
	border-radius:0px;
	background-color:var(--white-color);
	box-shadow: 0px 0px 10px rgba(0,0,0,0.10);
}

.main-header .main-menu .navigation > li > ul > li > ul.from-right{
	left:auto;
	right:0px;	
}

.main-header .main-menu .navigation > li > ul > li > ul > li{
	position:relative;
	width:100%;
	text-align:left;
	opacity:0;
	margin-bottom:2px;
	transform:translateY(-8px);
	transition:all 500ms ease;
	-moz-transition:all 500ms ease;
	-webkit-transition:all 500ms ease;
	-ms-transition:all 500ms ease;
	-o-transition:all 500ms ease;
}

.main-header .main-menu .navigation > li > ul > li > ul > li:last-child{
	margin-bottom:0px;
}

.main-header .main-menu .navigation > li > ul > li.dropdown:hover > ul > li{
	opacity:1;
	transform:translateY(0px);
	-webkit-transition-delay: 70ms;
	-moz-transition-delay: 70ms;
	-ms-transition-delay: 70ms;
	-o-transition-delay: 70ms;
	transition-delay: 70ms;
}

.main-header .main-menu .navigation > li > ul > li.dropdown:hover > ul > li:nth-child(2){
	-webkit-transition-delay: 140ms;
	-moz-transition-delay: 140ms;
	-ms-transition-delay: 140ms;
	-o-transition-delay: 140ms;
	transition-delay: 140ms;
}

.main-header .main-menu .navigation > li > ul > li.dropdown:hover > ul > li:nth-child(3){
	-webkit-transition-delay: 210ms;
	-moz-transition-delay: 210ms;
	-ms-transition-delay: 210ms;
	-o-transition-delay: 210ms;
	transition-delay: 210ms;
}

.main-header .main-menu .navigation > li > ul > li.dropdown:hover > ul > li:nth-child(4){
	-webkit-transition-delay: 280ms;
	-moz-transition-delay: 280ms;
	-ms-transition-delay: 280ms;
	-o-transition-delay: 280ms;
	transition-delay: 280ms;
}

.main-header .main-menu .navigation > li > ul > li.dropdown:hover > ul > li:nth-child(5){
	-webkit-transition-delay: 350ms;
	-moz-transition-delay: 350ms;
	-ms-transition-delay: 350ms;
	-o-transition-delay: 350ms;
	transition-delay: 350ms;
}

.main-header .main-menu .navigation > li > ul > li.dropdown:hover > ul > li:nth-child(6){
	-webkit-transition-delay: 420ms;
	-moz-transition-delay: 420ms;
	-ms-transition-delay: 420ms;
	-o-transition-delay: 420ms;
	transition-delay: 420ms;
}

.main-header .main-menu .navigation > li > ul > li.dropdown:hover > ul > li:nth-child(7){
	-webkit-transition-delay: 490ms;
	-moz-transition-delay: 490ms;
	-ms-transition-delay: 490ms;
	-o-transition-delay: 490ms;
	transition-delay: 490ms;
}

.main-header .main-menu .navigation > li > ul > li.dropdown:hover > ul > li:nth-child(8){
	-webkit-transition-delay: 560ms;
	-moz-transition-delay: 560ms;
	-ms-transition-delay: 560ms;
	-o-transition-delay: 560ms;
	transition-delay: 560ms;
}

.main-header .main-menu .navigation > li > ul > li > ul > li:last-child{
	border-bottom:none;	
}

.main-header .main-menu .navigation > li > ul > li > ul > li > a{
	position:relative;
	display:block;
	line-height:24px;
	font-weight:600;
	font-size:14px;
	padding: 10px 15px;
	text-transform:uppercase;
	color:var(--black-color);
	transition:all 500ms ease;
	-moz-transition:all 500ms ease;
	-webkit-transition:all 500ms ease;
	-ms-transition:all 500ms ease;
	-o-transition:all 500ms ease;
	background-color: rgba(var(--black-color-rgb), 0.06);
}

.main-header .main-menu .navigation > li > ul > li > ul > li > a:hover{
	color: var(--white-color);
	background-color: var(--main-color);
}

.main-header .main-menu .navigation > li.dropdown:hover > ul{
	-webkit-transform: scaleY(1);
	-ms-transform: scaleY(1);
	-o-transform: scaleY(1);
	transform: scaleY(1);
	opacity: 1;
	visibility: visible;
}

.main-header .main-menu .navigation li > ul > li.dropdown:hover > ul{
	-webkit-transform: scaleY(1);
	-ms-transform: scaleY(1);
	-o-transform: scaleY(1);
	transform: scaleY(1);
	opacity: 1;
	visibility: visible;
}

.main-header .main-menu .navbar-collapse > ul li.dropdown .dropdown-btn{
	position:absolute;
	right:10px;
	top:6px;
	width:30px;
	height:30px;
	text-align:center;
	color:var(--white-color);
	line-height:28px;
	border:1px solid var(--white-color);
	background-size:20px;
	cursor:pointer;
	z-index:5;
	display:none;
}

/* Header Style Two */

.main-header.header-style-two .header-info_list li,
.main-header.header-style-two .header-info_list li a,
.main-header.header-style-two .header-top .address{
	color:var(--white-color);
}

.main-header.header-style-two .header-top .inner-container{
	margin-left:0px;
}

.main-header.header-style-two .header-lower .logo-box{
	position:relative;
	padding: 5px 0px;
}

.main-header.header-style-two .header-lower .inner-container{
	padding:0px 25px;
}

.main-header.header-style-two .header-lower .inner-container:after{
	display: none;
}

.main-header.header-style-two .header-lower .inner-container:before{
	left:0px;
}

.main-header.header-style-two.fixed-header .header-lower{
	background-color: var(--main-color);
}

/* Header Style Three */

.header-style-three{
	position:relative;
}

.main-header.header-style-three .header-top .inner-container{
	padding:20px 0px;
}

.main-header.header-style-three .header-top{
	border-bottom:1px solid rgba(var(--white-color-rgb), 0.15);
}

.main-header.header-style-three .header-info_list li,
.main-header.header-style-three .header-info_list li a,
.main-header.header-style-three .header-top .address{
	color:var(--white-color);
}

.main-header.header-style-three .header-lower .logo-box{
	position:relative;
	padding: 10px 0px;
}

.main-header.header-style-three .main-menu .navigation > li > a{
	color:var(--white-color);
}

.main-header.header-style-three .header-lower .inner-container{
	padding-left:0px;
}

.main-header.header-style-three .header-lower .inner-container:before,
.main-header.header-style-three .header-lower .inner-container:after{
	display: none;
}

.main-header.header-style-three .header-top .inner-container{
	margin-left:0px;
}

.main-header.header-style-three .hamburger,
.main-header.header-style-three .search-box-btn{
	background-color: var(--color-three);
}

.main-header.header-style-three.fixed-header .header-lower{
	background-color: var(--color-three);
}

.main-header.header-style-three.fixed-header .hamburger,
.main-header.header-style-three.fixed-header .search-box-btn{
	background-color: var(--color-two);
}

/*** 

====================================================================
	Mobile Menu
====================================================================

***/

.main-header .mobile-nav-toggler{
	position: relative;
	font-size: 24px;
	line-height: 1em;
	cursor: pointer;
	display: none;
	color:var(--black-color);
	font-family: 'Font Awesome 6 Free';
}

.main-header .sticky-header .mobile-nav-toggler{
	color:var(--black-color);
}

.mobile-menu{
	position: fixed;
	right: 0;
	top: 0;
	width: 300px;
	padding-right:30px;
	max-width:100%;
	height: 100%;
	visibility: hidden;
	z-index: 99999999;
}

.mobile-menu .nav-logo{
	position:relative;
	padding:20px 20px;
	text-align:left;	
}

.mobile-menu .nav-logo img{
	max-width:200px;
}

.mobile-menu-visible{
	overflow: hidden;
}

.mobile-menu-visible .mobile-menu{
	visibility: visible;
}

.mobile-menu .menu-backdrop{
	position: fixed;
	right: 0;
	top: 0;
	width: 0%;
	height: 100%;
	z-index: 1;
	background: rgba(0,0,0,0.90);
	-webkit-transform: translateX(101%);
	-ms-transform: translateX(101%);
	transform: translateX(101%);
	transition: all 900ms ease;
    -moz-transition: all 900ms ease;
    -webkit-transition: all 900ms ease;
    -ms-transition: all 900ms ease;
    -o-transition: all 900ms ease;
	
	-webkit-transition-delay: 300ms;
	-moz-transition-delay: 300ms;
	-ms-transition-delay: 300ms;
	-o-transition-delay: 300ms;
	transition-delay: 300ms;
}

.mobile-menu-visible .mobile-menu .menu-backdrop{
	opacity: 1;
	width:100%;
	visibility: visible;
	transition: all 900ms ease;
    -moz-transition: all 900ms ease;
    -webkit-transition: all 900ms ease;
    -ms-transition: all 900ms ease;
    -o-transition: all 900ms ease;
	-webkit-transform: translateX(0%);
	-ms-transform: translateX(0%);
	transform: translateX(0%);
}

.mobile-menu .menu-box{
	position: absolute;
	right: -400px;
	top: 0px;
	width: 100%;
	height: 100%;
	max-height: 100%;
	overflow-y: auto;
	background: #ffffff;
	padding: 0px 0px;
	z-index: 5;
	border-radius: 0px;
	
	transition: all 900ms ease;
    -moz-transition: all 900ms ease;
    -webkit-transition: all 900ms ease;
    -ms-transition: all 900ms ease;
    -o-transition: all 900ms ease;
}

.mobile-menu-visible .mobile-menu .menu-box{
	right:0px;
	-webkit-transition-delay: 600ms;
	-moz-transition-delay: 600ms;
	-ms-transition-delay: 600ms;
	-o-transition-delay: 600ms;
	transition-delay: 600ms;
}

.mobile-menu .close-btn{
	position: absolute;
	right: 15px;
	top: 15px;
	line-height: 30px;
	width: 30px;
	text-align: center;
	font-size: 20px;
	color: #202020;
	cursor: pointer;
	z-index: 10;
	font-weight:700;
	-webkit-transition:all 0.5s ease;
	-moz-transition:all 0.5s ease;
	-ms-transition:all 0.5s ease;
	-o-transition:all 0.5s ease;
	transition:all 0.5s ease;
	-webkit-transform: translateY(-50px);
	-ms-transform: translateY(-50px);
	transform: translateY(-50px);
	font-family: 'Font Awesome 6 Free';
}

.mobile-menu-visible .mobile-menu .close-btn{
	-webkit-transform: translateY(0px);
	-ms-transform: translateY(0px);
	transform: translateY(0px);
	-webkit-transition-delay: 900ms;
	-moz-transition-delay: 900ms;
	-ms-transition-delay: 900ms;
	-o-transition-delay: 900ms;
	transition-delay: 900ms;
}

.mobile-menu .close-btn:hover{
	opacity: 0.50;
}

.mobile-menu .navigation{
	position: relative;
	display: block;
	width:100%;
	border-top: 1px solid rgba(0,0,0,0.10);
}

.mobile-menu .navigation li > ul > li:last-child{
	border-bottom: none;
}

.mobile-menu .navigation li > ul > li:first-child{
	border-top: 1px solid rgba(0,0,0,0.10);
}

.mobile-menu .navigation li:hover > a,
.mobile-menu .navigation li.current > a{
	color:#111111;
}

.mobile-menu .navigation li > ul,
.mobile-menu .navigation li > ul > li > ul{
	display: none;
}

.mobile-menu .navigation li > ul > li > a{
	padding-left:30px;
}

.mobile-menu .navigation li > ul > li > ul{
	padding-left:0px;
}

.mobile-menu .navigation li > ul > li > ul > li > a{
	padding-left:40px;
}

.main-header .mobile-menu .close-btn:hover{
	opacity: 0.50;
}

.main-header .mobile-menu .navigation{
	position: relative;
	display: block;
	width:100%;
	border-top: 1px solid #dddddd;
}

.main-header .mobile-menu .navigation li{
	position: relative;
	display: block;
	border-bottom: 1px solid #dddddd;
}

.main-header .mobile-menu .navigation li > ul > li:last-child{
	border-bottom: none;
}

.main-header .mobile-menu .navigation li > ul > li:first-child{
	border-top: 1px solid #dddddd;
}

.main-header .mobile-menu .navigation li > a{
	position: relative;
	display: block;
	line-height: 24px;
	padding: 12px 20px;
	font-size: 16px;
	color: var(--black-color);
	text-transform: capitalize;
}

.main-header .mobile-menu .navigation li.dropdown .dropdown-btn{
	position:absolute;
	right:0px;
	top:0px;
	width:44px;
	height:44px;
	text-align:center;
	color: var(--black-color);
	font-size: 16px;
	line-height:44px;
	cursor:pointer;
	z-index:5;
}

.main-header .mobile-menu .navigation li.dropdown .dropdown-btn:after{
	content:'';
	position:absolute;
	left:0px;
	top:10px;
	width:1px;
	height:24px;
	border-left:1px solid #dddddd;
}

.main-header .mobile-menu .navigation li > ul,
.main-header .mobile-menu .navigation li > ul > li > ul{
	display: none;
}

.main-header .sticky-header .navbar-header{
	display:none;
}

.main-header .outer-box{
	position: relative;
	gap: 15px;
}

.main-header_button{
	position: relative;
	height: auto;
}

/* Search Box Outer */

.main-header .search-box-outer{
	position:relative;
}

.main-header .search-box-btn{
	position:relative;
	width: 48px;
    height: 48px;
	display:block;
	font-size:18px;
	cursor:pointer;
	background:none;
	line-height: 48px;
	text-align: center;
	border-radius: 5px;
	color: var(--white-color);
	background-color: var(--color-two);
}

.main-header .search-box-btn:hover{
	color: var(--white-color);
	background-color: var(--color-three);
}

/*** 

====================================================================
	Search Popup
====================================================================

***/

.search-popup{
	position: fixed;
	left: 0;
	top: 0;
	height: 100vh;
	width: 100%;
	z-index: 999999999;
	margin-top: -540px;
	transform: translateY(-100%); 
    transition:all 500ms ease;
	-moz-transition:all 500ms ease;
	-webkit-transition:all 500ms ease;
	-ms-transition:all 500ms ease;
	-o-transition:all 500ms ease;
}

.search-popup .color-layer{
	position: absolute;
	content:'';
	left: 0;
	top: 0;
	height: 120px;
	width: 100%;
	box-shadow:0px 15px 15px rgba(0,0,0,0.07);
	background-color: rgba(255,255,255,1);
    transition:all 500ms ease;
	-moz-transition:all 500ms ease;
	-webkit-transition:all 500ms ease;
	-ms-transition:all 500ms ease;
	-o-transition:all 500ms ease;
}

.sidenav-bar-visible .search-popup{
	width: 80%;
}

.search-active .search-popup{
	transform: translateY(0%);
	margin-top:0px;
}

.search-popup .close-search{
	position: absolute;
	right: 25px;
	top: 25px;
	cursor:pointer;
	background:none;
	font-family: 'Font Awesome 6 Free';
	-webkit-transition: all 500ms ease;
	-moz-transition: all 500ms ease;
	-ms-transition: all 500ms ease;
	-o-transition: all 500ms ease;
	transition: all 500ms ease;
	opacity: 0;
	z-index:9999;
	visibility: hidden;
}

.search-popup .close-search span{
	position: relative;
	display: block;
	z-index:2;
	font-weight:800;
	font-size:22px;
	color: var(--black-color);
}

.search-active .search-popup .close-search{
	visibility: visible;
	opacity: 1;
	-webkit-transition-delay: 300ms;
	-moz-transition-delay: 300ms;
	-ms-transition-delay: 300ms;
	-o-transition-delay: 300ms;
	transition-delay: 300ms;
}

.search-popup form{
	position: absolute;
	max-width: 1300px;
	top: 25px;
	left: 15px;
	right: 15px;
	z-index:999;
	margin:0px auto 0;
	transform: scaleX(0);
	transform-origin: center;
	background-color: var(--dark-color);
	-webkit-transition: all 300ms ease;
	-moz-transition: all 300ms ease;
	-ms-transition: all 300ms ease;
	-o-transition: all 300ms ease;
	transition: all 300ms ease;
}

.search-active .search-popup form{
	transform: scaleX(1);
	-webkit-transition-delay: 300ms;
	-moz-transition-delay: 300ms;
	-ms-transition-delay: 300ms;
	-o-transition-delay: 300ms;
	transition-delay: 300ms;
}

.search-popup .form-group{
	position:relative;
	margin:var(--margin-zero);
	overflow: hidden;
}

.search-popup .form-group input[type="text"],
.search-popup .form-group input[type="search"]{
	position:relative;
	display:block;
	height:70px;
	width:100%;
	line-height: 50px;
	font-size:16px;
	color:var(--black-color);
	padding: 10px 30px 10px 60px;
	background-color: var(--white-color);
	-webkit-transition:all 500ms ease;
	-moz-transition:all 500ms ease;
	-ms-transition:all 500ms ease;
	-o-transition:all 500ms ease;
	transition:all 500ms ease;
	font-weight:400;
	text-transform:capitalize;
	border-bottom:1px solid rgba(0,0,0,0.10)
}

.search-popup .form-group input[type="submit"],
.search-popup .form-group button{
	position:absolute;
	left:10px;
	top:0px;
	line-height: 70px;
	background: transparent;
	text-align:center;
	font-size:24px;
	color:var(--black-color);
	cursor:pointer;
	font-weight:800;
	display:inline-block;
	font-family: 'Font Awesome 6 Free';
	-webkit-transition:all 500ms ease;
	-moz-transition:all 500ms ease;
	-ms-transition:all 500ms ease;
	-o-transition:all 500ms ease;
	transition:all 500ms ease;
}

.search-popup .form-group input[type="submit"]:hover,
.search-popup .form-group button:hover{
	color: var(--black-color);
}

.search-popup input::placeholder,
.search-popup textarea::placeholder{
	color:var(--black-color);
}

.search-popup .close-search.style-two{
	position: absolute;
	right: 25px;
	left: auto;
	color: var(--white-color);
	width:auto;
	height:auto;
	top:25px;
	margin:0px;
	border:none;
	background:none !important;
	box-shadow:none !important;
	-webkit-transition:all 500ms ease;
	-moz-transition:all 500ms ease;
	-ms-transition:all 500ms ease;
	-o-transition:all 500ms ease;
	transition:all 500ms ease;
}

.search-popup .close-search.style-two span{
	font-size:18px;
	color: var(--white-color);
}

.main-header .sticky-header .search-box-btn{
	color: var(--color-two);
}

.main-header .sticky-header .outer-box .nav-btn{
	color: var(--color-two);
}

.main-header .mobile-menu .menu-box .mCSB_scrollTools{
	width:3px;
}


/*** 

====================================================================
	Hidden Sidebar style
====================================================================

***/

.sidebar-info-contents{
	position:relative;
	height:100%;
}

.sidebar-textwidget,
.sidebar-widget-container{
	height:100%;
}

.sidebar-info-contents .content-inner{
	height:100%;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.sidebar-info-contents .content-inner h5{
	margin:15px 20px;
	font-weight:400;
	color:var(--black-color);
	text-transform:capitalize;
}

.sidebar-info-contents .content-inner h5 span{
	position:relative;
	font-weight: 600;
}

.sidebar-info-contents .price{
	position:relative;
	padding:14px 10px;
	text-align:center;
	font-size:14px;
	color:var(--black-color);
	background-color:rgba(var(--main-color-rgb), 0.20);
}

.sidebar-info-contents .empty-cart-box{
	position:relative;
	margin:15px 0px;
}

.sidebar-info-contents .no-cart{
	position:relative;
	text-align:center;
	font-size:16px;
	color:var(--black-color);
}

.sidebar-info-contents .no-cart .icon{
	position:relative;
	width:55px;
	height:55px;
	display:block;
	margin:0 auto;
	font-size:18px;
	line-height:57px;
	text-align:center;
	border-radius:50px;
	margin-bottom:20px;
	color:var(--white-color);
	background-color:var(--main-color);
}

.sidebar-info-contents .lower-box h5{
	padding:25px 20px;
	margin:0px;
}
	
.sidebar-info-contents .lower-box{
	position:relative;
	border-top:1px solid rgba(var(--black-color-rgb), 0.10);
}

.sidebar-info-contents .lower-box:before{
	position:absolute;
	content:'';
	right:0px;
	top:0px;
	width:10px;
	bottom:0px;
	z-index:100;
	background-color:var(--white-color);
}

/* Post Block */

.post-block{
	position:relative;
	padding:0px 10px;
	margin-bottom:10px;
}

.post-block .inner-box{
	position:relative;
	min-height:144px;
	padding-right:10px;
	padding-left:120px;
}

.post-block .rating{
	position:relative;
	font-size:12px;
	color:var(--black-color);
}

.post-block .inner-box .image{
	position:absolute;
	left:0px;
	top:0px;
	width:106px;
	height:144px;
}

/* .post-block .inner-box h6{
	
} */

.post-block .inner-box h6 a{
	position:relative;
	color:var(--black-color);
}

.post-block .inner-box h6 a:hover{
	color:var(--main-color);
}

.post-block .inner-box .price-box{
	position:relative;
	font-weight:500;
	font-size:16px;
	margin-top:5px;
	color:var(--black-color);
}

.post-block .inner-box .bag-btn{
	position:relative;
	display:block;
	padding:10px 10px;
	border-radius:4px;
	font-weight:400;
	font-size:12px;
	margin-top:15px;
	text-align:center;
	letter-spacing:1px;
	color:var(--white-color);
	text-transform:uppercase;
	background-color:var(--main-color);
}

.post-block .inner-box .bag-btn:hover{
	color:var(--white-color);
	background-color:var(--black-color);
}

.xs-sidebar-widget::-webkit-scrollbar,
.xs-sidebar-widget-two::-webkit-scrollbar,
.about-sidebar .sidebar-inner::-webkit-scrollbar{
  width: 8px;
}

/* Track */
.xs-sidebar-widget::-webkit-scrollbar-track,
.xs-sidebar-widget-two::-webkit-scrollbar-track,
.about-sidebar .sidebar-inner::-webkit-scrollbar-track{
  background: #dddddd;
}

/* Handle */
.xs-sidebar-widget::-webkit-scrollbar-thumb,
.xs-sidebar-widget-two::-webkit-scrollbar-thumb,
.about-sidebar .sidebar-inner::-webkit-scrollbar-thumb {
  background-color:var(--color-three);
}

/* Handle on hover */
.xs-sidebar-widget::-webkit-scrollbar-thumb:hover,
.xs-sidebar-widget-two::-webkit-scrollbar-thumb:hover,
.about-sidebar .sidebar-inner::-webkit-scrollbar-thumb:hover {
  background: #555;
}

.about-widget{
	position: relative;
	cursor: pointer;
}

/* About Sidebar */

.about-sidebar{
	position:fixed;
	left:-500px;
	top:0px;
	bottom:0px;
	width:450px;
	z-index:999999;
	-webkit-transition:all 900ms ease;
	-ms-transition:all 900ms ease;
	-o-transition:all 900ms ease;
	-moz-transition:all 900ms ease;
	transition:all 900ms ease;
	background-color:var(--white-color);
}

.about-sidebar .gradient-layer{
	position:absolute;
	left:0%;
	top:0px;
	bottom:0px;
	width:0%;
	opacity:0.60;
	z-index:-1;
	background-color:var(--black-color);
	-webkit-transition:all 500ms ease;
	-ms-transition:all 500ms ease;
	-o-transition:all 500ms ease;
	-moz-transition:all 500ms ease;
	transition:all 500ms ease;
	cursor: url(../images/cross-out.png), pointer;
}

.about-sidebar.active .gradient-layer{
	width:500%;
	left:100%;
}

.about-sidebar.active{
	left:0px;
}

.about-sidebar .close-button span{
	position:absolute;
	right:20px;
	top:10px;
	width: 50px;
	height: 50px;
	z-index:10;
	cursor:pointer;
	line-height: 50px;
	text-align: center;
	font-size:22px;
	color:var(--black-color);
	background-color:var(--white-color);
	-webkit-transition:all 300ms ease;
	-ms-transition:all 300ms ease;
	-o-transition:all 300ms ease;
	-moz-transition:all 300ms ease;
	transition:all 300ms ease;
}

.about-sidebar .close-button span:hover{
	color: var(--white-color);
	background-color: var(--main-color);
}

.about-sidebar .sidebar-inner{
	position:relative;
	overflow-y: auto;
	height:100%;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.about-sidebar .content-box{
	position:relative;
	padding:30px 50px;
}

.about-sidebar h3{
	margin-bottom:15px;
	color:var(--black-color);
}

.about-sidebar h3 span{
	font-weight:700;
}

.about-sidebar .text{
	line-height: 28px;
	margin-top:15px;
	margin-bottom:30px;
	color: var(--color-five);
}

.about-sidebar .social-box{
	position:relative;
	margin-left:50px;
	margin-bottom:35px;
}

.about-sidebar .social-box a{
	position:relative;
	margin-right:15px;
	font-size:18px;
	color:var(--black-color);
	font-family: 'Font Awesome 5 Brands';
}

.about-sidebar .social-box a:hover{
	color:var(--main-color);
}

.about-sidebar .sidebar-inner::-webkit-scrollbar{
	width: 8px;
}

/* Track */
.about-sidebar .sidebar-inner::-webkit-scrollbar-track{
	background: #dddddd;
}

/* Handle */
.about-sidebar .sidebar-inner::-webkit-scrollbar-thumb {
	background-color:var(--main-color);
}

/* Handle on hover */
.about-sidebar .sidebar-inner::-webkit-scrollbar-thumb:hover {
	background: #555;
}

/* About One List */

.about-sidebar_list{
	position:relative;
}

.about-sidebar_list li{
	position:relative;
	font-weight:400;
	font-size:15px;
	padding-left:30px;
	margin-bottom:12px;
	color:var(--black-color);
	text-transform: capitalize; 
}

.about-sidebar_list li:before{
	position:absolute;
	content:'\f058';
	left:0px;
	top:0px;
	font-size: 18px;
	font-weight: 800;
	color:var(--black-color);
	font-family: 'Font Awesome 6 Free';
}

/* Hamburger */
.hamburger {
	width: 48px;
	height: 48px;
	display: flex;
	cursor: pointer;
	border-radius: 5px;
	padding: 16px 12px;
	align-self: center;
	flex-direction: column;
	justify-content: space-between;
	background-color: var(--color-two);
	transition: transform 0.4s ease;
}

.hamburger:hover {
	background-color: var(--color-two);
}

.hamburger span {
	height: 2px;
	width: 100%;
	background: var(--white-color);
	border-radius: 2px;
	transition: all 0.4s ease;
}

/* Animated wave effect */
html:not(.body-menu-opened) .hamburger .top-bun {
	animation: bun-wave 1.6s infinite ease-in-out;
}
html:not(.body-menu-opened) .hamburger .meat {
	animation: bun-wave 1.6s infinite ease-in-out 0.2s;
}
html:not(.body-menu-opened) .hamburger .bottom-bun {
	animation: bun-wave 1.6s infinite ease-in-out 0.4s;
}

@keyframes bun-wave {
	0%   { transform: translateX(0) scaleX(1); }
	25%  { transform: translateX(4px) scaleX(0.7); }
	50%  { transform: translateX(0) scaleX(1); }
	75%  { transform: translateX(-4px) scaleX(0.7); }
	100% { transform: translateX(0) scaleX(1); }
}
  
  /************************ Mega Menu ***************************/

.main-menu .navigation > li.has-mega-menu{
	position:static;
}

.main-menu .navigation > li > .mega-menu{
	position:absolute;
	left:0px;
	right: 0;
	margin: auto;
	width:100%;
	max-width: 1170px;
	background-color: #ffffff;
    padding: 25px 40px 30px 35px;
    top: 100%;
	z-index:100;
	opacity: 0;
	border-radius:0px;
	-webkit-transform: scaleY(0);
	-moz-transform: scaleY(0);
	-ms-transform: scaleY(0);
	-o-transform: scaleY(0);
	transform: scaleY(0);
	-webkit-transform-origin: top;
	-moz-transform-origin: top;
	-ms-transform-origin: top;
	-o-transform-origin: top;
	transform-origin: top;
	transition:all 500ms ease;
	-moz-transition:all 500ms ease;
	-webkit-transition:all 500ms ease;
	-ms-transition:all 500ms ease;
	-o-transition:all 500ms ease;
	-webkit-box-shadow:2px 2px 5px 1px rgba(0,0,0,0.05),-2px 0px 5px 1px rgba(0,0,0,0.05);
	-ms-box-shadow:2px 2px 5px 1px rgba(0,0,0,0.05),-2px 0px 5px 1px rgba(0,0,0,0.05);
	-o-box-shadow:2px 2px 5px 1px rgba(0,0,0,0.05),-2px 0px 5px 1px rgba(0,0,0,0.05);
	-moz-box-shadow:2px 2px 5px 1px rgba(0,0,0,0.05),-2px 0px 5px 1px rgba(0,0,0,0.05);
	box-shadow:2px 2px 5px 1px rgba(0,0,0,0.05),-2px 0px 5px 1px rgba(0,0,0,0.05);
}

.main-menu .navigation > li:hover > .mega-menu{
	opacity: 1;
	visibility: visible;
	-webkit-transform: scaleY(1);
	-moz-transform: scaleY(1);
	-ms-transform: scaleY(1);
	-o-transform: scaleY(1);
	transform: scaleY(1);
}

.main-menu .navigation > li > .mega-menu .mega-menu-bar{
	position: relative;
}

.main-menu .navigation > li .mega-menu-bar h6{
	position:relative;
	font-size:18px;
	padding-bottom:12px;
	margin-bottom:10px;
	text-transform:uppercase;
	color:var(--black-color);
	border-bottom:1px solid rgba(var(--black-color-rgb), 0.15);
}

.main-menu .navigation > li .mega-menu-bar > ul{
	position:relative;
}

.main-menu .navigation > li .mega-menu-bar .column > ul > li{
	position:relative;
	width:100%;
	padding:4px 0px;
	text-transform:capitalize;
	transition:all 500ms ease;
	-moz-transition:all 500ms ease;
	-webkit-transition:all 500ms ease;
	-ms-transition:all 500ms ease;
	-o-transition:all 500ms ease;
}

.main-menu .navigation > li .mega-menu-bar .column{
	position:relative;
	margin-bottom:12px;
}

.main-menu .navigation > li .mega-menu-bar .column ul{
	position:relative;
	margin-bottom:10px;
}

.main-menu .navigation > li .mega-menu-bar .column > ul > li:last-child{
	border:none;
}

.main-menu .navigation > li .mega-menu-bar .column > ul > li > a{
	position:relative;
	display:block;
	line-height:20px;
	font-weight:600;
	font-size:14px;
	color:var(--black-color);
	text-transform:uppercase;
	transition:all 500ms ease;
	-moz-transition:all 500ms ease;
	-webkit-transition:all 500ms ease;
	-ms-transition:all 500ms ease;
	-o-transition:all 500ms ease;
}

.main-menu .navigation > li .mega-menu-bar .column > ul > li > a:hover{
	color: var(--main-color);
}

.mobile-menu.active-mobile-menu{
	visibility: visible;
	right: auto;
	left: 0px;
}

.mobile-menu.active-mobile-menu .menu-box{
	left: 0px;
	right: auto;
}

.mobile-menu.active-mobile-menu #navbarSupportedContent{
	display:block;
}

.mobile-menu.active-mobile-menu .mCSB_inside > .mCSB_container{
	margin-right:0px;
}

.mobile-menu.active-mobile-menu .mega-menu-bar .column{
	width: 100%;
}

.mobile-menu.active-mobile-menu .mega-menu-bar .column h6{
	position: relative;
	margin-left:20px;
	margin-top: 10px;
}

.mobile-menu.active-mobile-menu .navigation li.has-mega-menu > .mega-menu {
    display: none;
    overflow: hidden;
}

.sidebar-menu_active{
	position: relative;
	padding-left: 300px;
}

.sidebar-menu_active .header-style-three{
	padding-left: 300px;
}

.sidebar-menu_active .header-style-three .nav-outer{
	display: none;
}

.want-sticky-header .fixed-header {
    position: relative;
    display: none;
}
/* Constrc Construction Business HTML-5 Template */

/*** 

====================================================================
	Main Footer
====================================================================

***/

.main-footer{
	position:relative;
	overflow:hidden;
	margin-top: 0px;
	background-color: var(--color-two);
}

.main-footer .widgets-section{
	position:relative;
	padding: 220px 0px 60px;
}

.main-footer .footer_pattern{
	position: absolute;
	left: 0px;
	top: 0px;
	right: 0px;
	bottom: 0px;
	background-position: left bottom;
	background-repeat: repeat-x;
}

.main-footer .inner-container{
	position:relative;
}

.footer-logo{
	position: relative;
	margin-bottom: 30px;
}

.footer-text{
	position: relative;
	line-height: 28px;
	font-size: 16px;
	margin-bottom: 30px;
	color: var(--white-color);
}

.footer-social_box{
	position: relative;
}

.footer-social_box strong{
	position: relative;
	display: block;
	font-size: 18px;
	font-weight: 500;
	margin-bottom: 20px;
	color: var(--main-color);
}

.footer-social_box a{
	position: relative;
	width: 42px;
	height: 42px;
	font-size: 16px;
	line-height: 40px;
	text-align: center;
	display: inline-block;
	color: var(--white-color);
	margin-right: var(--margin-right-5);
	border: 1px solid var(--white-color);
	font-family: 'Font Awesome 5 Brands';
}

.footer-social_box a:hover{
	color: var(--color-two);
	background-color: var(--white-color);
}

.footer-title{
	position: relative;
	margin-top: 6px;
	margin-bottom: 18px;
	color: rgb(255 255 255);
	text-transform: uppercase;
	font-size: 20px;
	border-bottom: 1px solid #ffffff;
	width: fit-content;
	padding-right: 23px;
	padding-bottom: 6px;
}

.footer-column{
	position: relative;
	margin-bottom: 30px;
}

.footer-list{
	position: relative;
}

.footer-list li{
	position: relative;
	margin-bottom: 11px;
}

.footer-list li:last-child{
	margin-bottom: 0px;
}

.footer-list li a{
	position: relative;
	font-size: 17px;
	color: var(--white-color);
	transition:all 300ms ease;
	-moz-transition:all 300ms ease;
	-webkit-transition:all 300ms ease;
	-ms-transition:all 300ms ease;
	-o-transition:all 300ms ease;
}

.footer-list li a::before{
	position: absolute;
	content: '';
	left: 0px;
	top: 7px;
	opacity: 0;
	width : 30px;
	height: 8px;
	background:url(../images/arrow_1.png) no-repeat;
	transition:all 300ms ease;
	-moz-transition:all 300ms ease;
	-webkit-transition:all 300ms ease;
	-ms-transition:all 300ms ease;
	-o-transition:all 300ms ease;
}

.footer-list li a:hover::before{
	opacity: 1;
}

.footer-list li a:hover{
	color: var(--main-color);
	padding-left: 35px;
}

/* News Widget */

.news-widget-block{
	position: relative;
	min-height: 70px;
	padding-left: 85px;
	margin-bottom: 25px;
}

.news-widget_image{
	position: absolute;
	left: 0px;
	top: 2px;
	width: 70px;
	overflow: hidden;
}

.news-widget_title{
	position: relative;
	font-weight: 600;
}

.news-widget_title a{
	position: relative;
	color: #ffffff;
}

.news-widget_post-date{
	position: relative;
	font-weight: 400;
	font-size: 14px;
	color: #ffffff;
	margin-bottom: 5px;
}

.news-widget-block:last-child{
	margin-bottom: 0px;
}

.news-widget_title a:hover{
	color: var(--main-color);
}

.footer-bottom{
	position:relative;
	padding: 8px 0px 3px;
	background-color: #000000;
	border-top: 1px solid #ffffff42;
}

.main-footer_copyright{
	position: relative;
	font-size: 16px;
	color: var(--white-color);
}

.footer-bottom .d-flex{
	gap: 15px;
}

.footer-bottom_navs{
	position:relative;
}

.footer-bottom_navs li{
	position:relative;
	margin-left: 10px;
	display: inline-block;
}

.footer-bottom_navs li a{
	position:relative;
	font-size: 16px;
	color: var(--white-color);
}

.footer-bottom_navs li a:hover{
	color: var(--main-color);
}

/* Gallery Box */

.main-footer .gallery-box{
	position:relative;
	padding-bottom: 70px;
}

.instagram-block_one{
	position: relative;
}

.instagram-block_one-inner{
	position: relative;
}

.instagram-block_one-image{
	position: relative;
	border: 4px solid white;
}

.instagram-block_one-image img{
	position: relative;
	width: 100%;
	display: block;
	/* height: 300px; */
}

.instagram-block_one-overlay{
	position: absolute;
	left: 10px;
	top: 10px;
	right: 10px;
	bottom: 10px;
	z-index: 1;
	display: flex;
	align-items: center;
	justify-content: center;

	transition: -webkit-transform 0.4s ease;
	transition: transform 0.4s ease;
	transition: transform 0.4s ease,-webkit-transform 0.4s ease;
	-webkit-transform: scale(0, 1);
	-ms-transform: scale(0, 1);
	transform: scale(0, 1);
	-webkit-transform-origin: right center;
	-ms-transform-origin: right center;
	transform-origin: right center;
}

.instagram-block_one-overlay:before{
	position: absolute;
	content:'';
	left: 0px;
	top: 0px;
	right: 0px;
	bottom: 0px;
	opacity:0.75;
	background-color: rgb(0 0 0 / 13%);
}

.instagram-block_one-inner:hover .instagram-block_one-overlay{
	-webkit-transform: scale(1, 1);
	-ms-transform: scale(1, 1);
	transform: scale(1, 1);
	-webkit-transform-origin: left center;
	-ms-transform-origin: left center;
	transform-origin: left center;
}

.instagram-block_one-icon{
	position: relative;
	font-size: 40px;
	color: var(--white-color);
}

.main-footer.style-two{
	margin-top:-96px;
}

.main-footer.style-three{
	margin-top:0px;
}

.main-footer.style-three .widgets-section{
	padding-top: 100px;
}

.main-footer.style-two .footer-text{
	max-width: 320px;
}

.main-footer.style-two .footer-bottom{
	margin-top: 20px;
}

.twitter-block{
	position:relative;
}

.twitter-block .image{
	position:relative;
	margin-bottom:25px;
	display:inline-block;
}

.twitter-block h6{
	position:relative;
	font-weight: 600;
	color: var(--white-color);
}

.twitter-block .tags{
	position:relative;
	font-size: 18px;
	margin-top: 10px;
	color: var(--main-color);
}

.footer-info_block{
	position:relative;
	margin-bottom: 30px;
}

.footer-info_block .inner{
	position:relative;
	font-size: 18px;
	padding: 30px 30px;
	color:var(--white-color);
	background-color: #0c0d14;
	text-transform:capitalize;
}

.footer-info_block .content{
	position:relative;
	padding-left: 60px;
}

.footer-info_block .icon{
	position:absolute;
	left:0px;
	top:0px;
	font-size: 40px;
	line-height:1em;
	color:var(--main-color);
	font-family: "flaticon_qonstruct";
}

.footer-info_block strong{
	position:relative;
	display: block;
	font-size: 20px;
	font-weight: 600;
	margin-top: 10px;
	color:var(--white-color);
}

/* Footer Style Two */

.footer-style-two{
	position:relative;
	margin-top: 0px;
	background: black;
	padding: 25px 0px 0px;
}

.footer-style-two:before{
	/* position:absolute; */
	/* content:''; */
	left:0px;
	top:90px;
	right:0px;
	bottom:0px;
	background-color: var(--color-two);
}

.footer-style-two .infos-outer{
	position:relative;
	margin-left: 360px;
}

.footer-style-two .widgets-section{
	position:relative;
	padding: 0px;
}

.footer-style-two .footer_pattern{
	position: absolute;
	left: 0px;
	top: 0px;
	right: 0px;
	bottom: 0px;
	background-position: left bottom;
	background-repeat: repeat-x;
}

.footer-style-two .inner-container{
	position:relative;
}

.footer-info_block-two{
	position:relative;
}

.footer-info_block-two .inner{
	position:relative;
	font-size: 17px;
	color:var(--color-two);
	text-transform:capitalize;
}

.footer-info_block-two .content{
	position:relative;
	padding-left: 60px;
}

.footer-info_block-two .icon{
	position:absolute;
	left:0px;
	top:0px;
	font-size: 40px;
	line-height:1em;
	color:var(--main-color);
	font-family: "flaticon_qonstruct";
}

.footer-info_block-two strong{
	position:relative;
	display: block;
	font-size: 20px;
	font-weight: 600;
	margin-bottom: 6px;
	color:var(--color-two);
}

.footer-info_block-two a{
	position:relative;
	color:var(--color-two);
}

.signup-widget{
	position:relative;
	margin-top: -130px;
	padding: 50px 30px;
	background-color: var(--main-color);
}

.signup-widget .icon{
	position:relative;
	line-height: 1em;
	font-size: 60px;
	margin-bottom: 25px;
	color: var(--color-two);
	font-family: "flaticon_qonstruct";
}

.signup-widget .title{
	position:relative;
	font-size: 20px;
	line-height: 30px;
	margin-bottom: 25px;
	color: var(--white-color);
}

/* Newsletter Box */

.newsletter-box_two{
    position: relative;
}

.newsletter-box_two .form-group {
    position: relative;
    margin: 0px;
    width: 100%;
    max-width: 100%;
}

.newsletter-box_two .form-group input[type="text"],
.newsletter-box_two .form-group input[type="email"] {
    position: relative;
    line-height: 43px;
    display: block;
    height: 52px;
    width: 100%;
	border-radius: 50px;
    box-shadow: inherit;
    font-size: 16px;
    transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -webkit-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    padding: 10px 25px;
    color:var(--color-two);
    background: rgba(var(--white-color-rgb), 1);
}

.newsletter-box_two .form-group button {
    position: relative;
    font-weight: 500;
	font-size: 14px;
	margin-top: 15px;
	text-align: center;
	padding: 13px 20px;
	border-radius: 50px;
    display: inline-block;
	color: var(--white-color);
	background-color: var(--color-two);
}

.footer-style-two .footer-two_logo-widget .footer-text{
	max-width: 320px;
}

.footer-two_location{
	position:relative;
	padding-left: 45px;
	margin-top: 24px;
	margin-bottom: 16px;
	color: var(--white-color);
}

.footer-two_location .icon{
	position:absolute;
	left:0px;
	top:4px;
	line-height:1em;
	font-size: 30px;
	color: rgb(255 255 255);
	font-family: "flaticon_qonstruct";
}

.footer-two_location strong{
	position:relative;
	display: block;
	font-weight: 500;
	font-size: 18px;
	margin-top: 7px;
}

.footer-two_phone{
	position:relative;
	font-size: 17px;
	font-weight: 400;
	margin-top: 25px;
	padding-left: 43px;
	margin-bottom: 18px;
	color: rgb(255 255 255);
	display: block;
}

.footer-two_phone .icon{
	position:absolute;
	left:0px;
	top:0px;
	line-height:1em;
	font-size: 26px;
	font-weight: 400;
	font-family: "flaticon_qonstruct";
}

.footer-two_phone:hover{
	color: var(--white-color);
}

.footer-two_more{
	position:relative;
	font-size: 16px;
	line-height:1em;
	padding-right: 35px;
	color: var(--main-color);
}

.footer-two_more::before{
	position: absolute;
	content: '';
	right: 0px;
	top: 9px;
	width : 30px;
	height: 8px;
	background:url(../images/arrow_1.png) no-repeat;
}

.footer-two_more:hover{
	color: var(--white-color);
}
@charset "UTF-8";

/*!
Animate.css - http://daneden.me/animate
Licensed under the MIT license - http://opensource.org/licenses/MIT

Copyright (c) 2015 Daniel Eden
*/

.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.animated.infinite {
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

.animated.hinge {
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
}

.animated.bounceIn,
.animated.bounceOut {
  -webkit-animation-duration: .75s;
  animation-duration: .75s;
}

.animated.flipOutX,
.animated.flipOutY {
  -webkit-animation-duration: .75s;
  animation-duration: .75s;
}

@-webkit-keyframes bounce {
  0%, 20%, 53%, 80%, 100% {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    -webkit-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);
  }

  40%, 43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
    animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
    -webkit-transform: translate3d(0, -30px, 0);
    transform: translate3d(0, -30px, 0);
  }

  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
    animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
    -webkit-transform: translate3d(0, -15px, 0);
    transform: translate3d(0, -15px, 0);
  }

  90% {
    -webkit-transform: translate3d(0,-4px,0);
    transform: translate3d(0,-4px,0);
  }
}

@keyframes bounce {
  0%, 20%, 53%, 80%, 100% {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    -webkit-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);
  }

  40%, 43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
    animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
    -webkit-transform: translate3d(0, -30px, 0);
    transform: translate3d(0, -30px, 0);
  }

  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
    animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
    -webkit-transform: translate3d(0, -15px, 0);
    transform: translate3d(0, -15px, 0);
  }

  90% {
    -webkit-transform: translate3d(0,-4px,0);
    transform: translate3d(0,-4px,0);
  }
}

.bounce {
  -webkit-animation-name: bounce;
  animation-name: bounce;
  -webkit-transform-origin: center bottom;
  transform-origin: center bottom;
}

@-webkit-keyframes flash {
  0%, 50%, 100% {
    opacity: 1;
  }

  25%, 75% {
    opacity: 0;
  }
}

@keyframes flash {
  0%, 50%, 100% {
    opacity: 1;
  }

  25%, 75% {
    opacity: 0;
  }
}

.flash {
  -webkit-animation-name: flash;
  animation-name: flash;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@-webkit-keyframes pulse {
  0% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }

  100% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

@keyframes pulse {
  0% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }

  100% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

.pulse {
  -webkit-animation-name: pulse;
  animation-name: pulse;
}

@-webkit-keyframes rubberBand {
  0% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1);
  }

  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1);
  }

  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
    transform: scale3d(1.15, 0.85, 1);
  }

  65% {
    -webkit-transform: scale3d(.95, 1.05, 1);
    transform: scale3d(.95, 1.05, 1);
  }

  75% {
    -webkit-transform: scale3d(1.05, .95, 1);
    transform: scale3d(1.05, .95, 1);
  }

  100% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

@keyframes rubberBand {
  0% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1);
  }

  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1);
  }

  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
    transform: scale3d(1.15, 0.85, 1);
  }

  65% {
    -webkit-transform: scale3d(.95, 1.05, 1);
    transform: scale3d(.95, 1.05, 1);
  }

  75% {
    -webkit-transform: scale3d(1.05, .95, 1);
    transform: scale3d(1.05, .95, 1);
  }

  100% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

.rubberBand {
  -webkit-animation-name: rubberBand;
  animation-name: rubberBand;
}

@-webkit-keyframes shake {
  0%, 100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }

  20%, 40%, 60%, 80% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
}

@keyframes shake {
  0%, 100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }

  20%, 40%, 60%, 80% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
}

.shake {
  -webkit-animation-name: shake;
  animation-name: shake;
}

@-webkit-keyframes swing {
  20% {
    -webkit-transform: rotate3d(0, 0, 1, 15deg);
    transform: rotate3d(0, 0, 1, 15deg);
  }

  40% {
    -webkit-transform: rotate3d(0, 0, 1, -10deg);
    transform: rotate3d(0, 0, 1, -10deg);
  }

  60% {
    -webkit-transform: rotate3d(0, 0, 1, 5deg);
    transform: rotate3d(0, 0, 1, 5deg);
  }

  80% {
    -webkit-transform: rotate3d(0, 0, 1, -5deg);
    transform: rotate3d(0, 0, 1, -5deg);
  }

  100% {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg);
  }
}

@keyframes swing {
  20% {
    -webkit-transform: rotate3d(0, 0, 1, 15deg);
    transform: rotate3d(0, 0, 1, 15deg);
  }

  40% {
    -webkit-transform: rotate3d(0, 0, 1, -10deg);
    transform: rotate3d(0, 0, 1, -10deg);
  }

  60% {
    -webkit-transform: rotate3d(0, 0, 1, 5deg);
    transform: rotate3d(0, 0, 1, 5deg);
  }

  80% {
    -webkit-transform: rotate3d(0, 0, 1, -5deg);
    transform: rotate3d(0, 0, 1, -5deg);
  }

  100% {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg);
  }
}

.swing {
  -webkit-transform-origin: top center;
  transform-origin: top center;
  -webkit-animation-name: swing;
  animation-name: swing;
}

@-webkit-keyframes tada {
  0% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  10%, 20% {
    -webkit-transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
  }

  30%, 50%, 70%, 90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }

  40%, 60%, 80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }

  100% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

@keyframes tada {
  0% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  10%, 20% {
    -webkit-transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
  }

  30%, 50%, 70%, 90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }

  40%, 60%, 80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }

  100% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

.tada {
  -webkit-animation-name: tada;
  animation-name: tada;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@-webkit-keyframes wobble {
  0% {
    -webkit-transform: none;
    transform: none;
  }

  15% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  }

  30% {
    -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  }

  45% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  }

  60% {
    -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  }

  75% {
    -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  }

  100% {
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes wobble {
  0% {
    -webkit-transform: none;
    transform: none;
  }

  15% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  }

  30% {
    -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  }

  45% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  }

  60% {
    -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  }

  75% {
    -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  }

  100% {
    -webkit-transform: none;
    transform: none;
  }
}

.wobble {
  -webkit-animation-name: wobble;
  animation-name: wobble;
}

@-webkit-keyframes jello {
  11.1% {
    -webkit-transform: none;
            transform: none
  }

  22.2% {
    -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
            transform: skewX(-12.5deg) skewY(-12.5deg)
  }
  33.3% {
    -webkit-transform: skewX(6.25deg) skewY(6.25deg);
            transform: skewX(6.25deg) skewY(6.25deg)
  }
  44.4% {
    -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
            transform: skewX(-3.125deg) skewY(-3.125deg)
  }
  55.5% {
    -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
            transform: skewX(1.5625deg) skewY(1.5625deg)
  }
  66.6% {
    -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
            transform: skewX(-0.78125deg) skewY(-0.78125deg)
  }
  77.7% {
    -webkit-transform: skewX(0.390625deg) skewY(0.390625deg);
            transform: skewX(0.390625deg) skewY(0.390625deg)
  }
  88.8% {
    -webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
            transform: skewX(-0.1953125deg) skewY(-0.1953125deg)
  }
  100% {
    -webkit-transform: none;
            transform: none
  }
}

@keyframes jello {
  11.1% {
    -webkit-transform: none;
            transform: none
  }

  22.2% {

    -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
            transform: skewX(-12.5deg) skewY(-12.5deg)
  }
  33.3% {
    -webkit-transform: skewX(6.25deg) skewY(6.25deg);
            transform: skewX(6.25deg) skewY(6.25deg)
  }
  44.4% {
    -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
            transform: skewX(-3.125deg) skewY(-3.125deg)
  }
  55.5% {
    -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
            transform: skewX(1.5625deg) skewY(1.5625deg)
  }
  66.6% {
    -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
            transform: skewX(-0.78125deg) skewY(-0.78125deg)
  }
  77.7% {
    -webkit-transform: skewX(0.390625deg) skewY(0.390625deg);
            transform: skewX(0.390625deg) skewY(0.390625deg)
  }
  88.8% {
    -webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
            transform: skewX(-0.1953125deg) skewY(-0.1953125deg)
  }
  100% {
    -webkit-transform: none;
            transform: none
  }
}



.jello{
    -webkit-animation-name:jello;
            animation-name:jello;
    -webkit-transform-origin: center;

            transform-origin: center
}

@-webkit-keyframes bounceIn {
  0%, 20%, 40%, 60%, 80%, 100% {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  0% {
    opacity: 0;
    -webkit-transform: scale3d(.3, .3, .3);
    transform: scale3d(.3, .3, .3);
  }

  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }

  40% {
    -webkit-transform: scale3d(.9, .9, .9);
    transform: scale3d(.9, .9, .9);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03);
  }

  80% {
    -webkit-transform: scale3d(.97, .97, .97);
    transform: scale3d(.97, .97, .97);
  }

  100% {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

@keyframes bounceIn {
  0%, 20%, 40%, 60%, 80%, 100% {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  0% {
    opacity: 0;
    -webkit-transform: scale3d(.3, .3, .3);
    transform: scale3d(.3, .3, .3);
  }

  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }

  40% {
    -webkit-transform: scale3d(.9, .9, .9);
    transform: scale3d(.9, .9, .9);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03);
  }

  80% {
    -webkit-transform: scale3d(.97, .97, .97);
    transform: scale3d(.97, .97, .97);
  }

  100% {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

.bounceIn {
  -webkit-animation-name: bounceIn;
  animation-name: bounceIn;
}

@-webkit-keyframes bounceInDown {
  0%, 60%, 75%, 90%, 100% {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0);
    transform: translate3d(0, -3000px, 0);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0);
    transform: translate3d(0, 25px, 0);
  }

  75% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }

  90% {
    -webkit-transform: translate3d(0, 5px, 0);
    transform: translate3d(0, 5px, 0);
  }

  100% {
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes bounceInDown {
  0%, 60%, 75%, 90%, 100% {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0);
    transform: translate3d(0, -3000px, 0);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0);
    transform: translate3d(0, 25px, 0);
  }

  75% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }

  90% {
    -webkit-transform: translate3d(0, 5px, 0);
    transform: translate3d(0, 5px, 0);
  }

  100% {
    -webkit-transform: none;
    transform: none;
  }
}

.bounceInDown {
  -webkit-animation-name: bounceInDown;
  animation-name: bounceInDown;
}

@-webkit-keyframes bounceInLeft {
  0%, 60%, 75%, 90%, 100% {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  0% {
    opacity: 0;
    -webkit-transform: translate3d(-3000px, 0, 0);
    transform: translate3d(-3000px, 0, 0);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0);
    transform: translate3d(25px, 0, 0);
  }

  75% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }

  90% {
    -webkit-transform: translate3d(5px, 0, 0);
    transform: translate3d(5px, 0, 0);
  }

  100% {
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes bounceInLeft {
  0%, 60%, 75%, 90%, 100% {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  0% {
    opacity: 0;
    -webkit-transform: translate3d(-3000px, 0, 0);
    transform: translate3d(-3000px, 0, 0);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0);
    transform: translate3d(25px, 0, 0);
  }

  75% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }

  90% {
    -webkit-transform: translate3d(5px, 0, 0);
    transform: translate3d(5px, 0, 0);
  }

  100% {
    -webkit-transform: none;
    transform: none;
  }
}

.bounceInLeft {
  -webkit-animation-name: bounceInLeft;
  animation-name: bounceInLeft;
}

@-webkit-keyframes bounceInRight {
  0%, 60%, 75%, 90%, 100% {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  0% {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0);
    transform: translate3d(3000px, 0, 0);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0);
    transform: translate3d(-25px, 0, 0);
  }

  75% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }

  90% {
    -webkit-transform: translate3d(-5px, 0, 0);
    transform: translate3d(-5px, 0, 0);
  }

  100% {
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes bounceInRight {
  0%, 60%, 75%, 90%, 100% {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  0% {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0);
    transform: translate3d(3000px, 0, 0);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0);
    transform: translate3d(-25px, 0, 0);
  }

  75% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }

  90% {
    -webkit-transform: translate3d(-5px, 0, 0);
    transform: translate3d(-5px, 0, 0);
  }

  100% {
    -webkit-transform: none;
    transform: none;
  }
}

.bounceInRight {
  -webkit-animation-name: bounceInRight;
  animation-name: bounceInRight;
}

@-webkit-keyframes bounceInUp {
  0%, 60%, 75%, 90%, 100% {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 3000px, 0);
    transform: translate3d(0, 3000px, 0);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }

  75% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }

  90% {
    -webkit-transform: translate3d(0, -5px, 0);
    transform: translate3d(0, -5px, 0);
  }

  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes bounceInUp {
  0%, 60%, 75%, 90%, 100% {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 3000px, 0);
    transform: translate3d(0, 3000px, 0);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }

  75% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }

  90% {
    -webkit-transform: translate3d(0, -5px, 0);
    transform: translate3d(0, -5px, 0);
  }

  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.bounceInUp {
  -webkit-animation-name: bounceInUp;
  animation-name: bounceInUp;
}

@-webkit-keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(.9, .9, .9);
    transform: scale3d(.9, .9, .9);
  }

  50%, 55% {
    opacity: 1;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }

  100% {
    opacity: 0;
    -webkit-transform: scale3d(.3, .3, .3);
    transform: scale3d(.3, .3, .3);
  }
}

@keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(.9, .9, .9);
    transform: scale3d(.9, .9, .9);
  }

  50%, 55% {
    opacity: 1;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }

  100% {
    opacity: 0;
    -webkit-transform: scale3d(.3, .3, .3);
    transform: scale3d(.3, .3, .3);
  }
}

.bounceOut {
  -webkit-animation-name: bounceOut;
  animation-name: bounceOut;
}

@-webkit-keyframes bounceOutDown {
  20% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }

  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}

@keyframes bounceOutDown {
  20% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }

  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}

.bounceOutDown {
  -webkit-animation-name: bounceOutDown;
  animation-name: bounceOutDown;
}

@-webkit-keyframes bounceOutLeft {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(20px, 0, 0);
    transform: translate3d(20px, 0, 0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}

@keyframes bounceOutLeft {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(20px, 0, 0);
    transform: translate3d(20px, 0, 0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}

.bounceOutLeft {
  -webkit-animation-name: bounceOutLeft;
  animation-name: bounceOutLeft;
}

@-webkit-keyframes bounceOutRight {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(-20px, 0, 0);
    transform: translate3d(-20px, 0, 0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}

@keyframes bounceOutRight {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(-20px, 0, 0);
    transform: translate3d(-20px, 0, 0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}

.bounceOutRight {
  -webkit-animation-name: bounceOutRight;
  animation-name: bounceOutRight;
}

@-webkit-keyframes bounceOutUp {
  20% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }

  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}

@keyframes bounceOutUp {
  20% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }

  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}

.bounceOutUp {
  -webkit-animation-name: bounceOutUp;
  animation-name: bounceOutUp;
}


@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

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

  100% {
    opacity: 1;
  }
}

.fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}

@-webkit-keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
    -ms-transform: translateY(-20px);
    transform: translateY(-20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}

.fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
}

@-webkit-keyframes fadeInDownBig {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes fadeInDownBig {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    -ms-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}

.fadeInDownBig {
  -webkit-animation-name: fadeInDownBig;
  animation-name: fadeInDownBig;
}

@-webkit-keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-20px);
    transform: translateX(-20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-20px);
    -ms-transform: translateX(-20px);
    transform: translateX(-20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}

.fadeInLeft {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
}

@-webkit-keyframes fadeInLeftBig {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes fadeInLeftBig {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    -ms-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}

.fadeInLeftBig {
  -webkit-animation-name: fadeInLeftBig;
  animation-name: fadeInLeftBig;
}

@-webkit-keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(20px);
    transform: translateX(20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(20px);
    -ms-transform: translateX(20px);
    transform: translateX(20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}

.fadeInRight {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
}

@-webkit-keyframes fadeInRightBig {
  0% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    transform: translateX(2000px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes fadeInRightBig {
  0% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    -ms-transform: translateX(2000px);
    transform: translateX(2000px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}

.fadeInRightBig {
  -webkit-animation-name: fadeInRightBig;
  animation-name: fadeInRightBig;
}

@-webkit-keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    -ms-transform: translateY(20px);
    transform: translateY(20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}

.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}

@-webkit-keyframes fadeInUpBig {
  0% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    transform: translateY(2000px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes fadeInUpBig {
  0% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    -ms-transform: translateY(2000px);
    transform: translateY(2000px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}

.fadeInUpBig {
  -webkit-animation-name: fadeInUpBig;
  animation-name: fadeInUpBig;
}

@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

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

  100% {
    opacity: 0;
  }
}

.fadeOut {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut;
}

@-webkit-keyframes fadeOutDown {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
  }
}

@keyframes fadeOutDown {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    -ms-transform: translateY(20px);
    transform: translateY(20px);
  }
}

.fadeOutDown {
  -webkit-animation-name: fadeOutDown;
  animation-name: fadeOutDown;
}

@-webkit-keyframes fadeOutDownBig {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    transform: translateY(2000px);
  }
}

@keyframes fadeOutDownBig {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    -ms-transform: translateY(2000px);
    transform: translateY(2000px);
  }
}

.fadeOutDownBig {
  -webkit-animation-name: fadeOutDownBig;
  animation-name: fadeOutDownBig;
}

@-webkit-keyframes fadeOutLeft {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(-20px);
    transform: translateX(-20px);
  }
}

@keyframes fadeOutLeft {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(-20px);
    -ms-transform: translateX(-20px);
    transform: translateX(-20px);
  }
}

.fadeOutLeft {
  -webkit-animation-name: fadeOutLeft;
  animation-name: fadeOutLeft;
}

@-webkit-keyframes fadeOutLeftBig {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }
}

@keyframes fadeOutLeftBig {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    -ms-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }
}

.fadeOutLeftBig {
  -webkit-animation-name: fadeOutLeftBig;
  animation-name: fadeOutLeftBig;
}

@-webkit-keyframes fadeOutRight {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(20px);
    transform: translateX(20px);
  }
}

@keyframes fadeOutRight {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(20px);
    -ms-transform: translateX(20px);
    transform: translateX(20px);
  }
}

.fadeOutRight {
  -webkit-animation-name: fadeOutRight;
  animation-name: fadeOutRight;
}

@-webkit-keyframes fadeOutRightBig {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    transform: translateX(2000px);
  }
}

@keyframes fadeOutRightBig {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    -ms-transform: translateX(2000px);
    transform: translateX(2000px);
  }
}

.fadeOutRightBig {
  -webkit-animation-name: fadeOutRightBig;
  animation-name: fadeOutRightBig;
}

@-webkit-keyframes fadeOutUp {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
  }
}

@keyframes fadeOutUp {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
    -ms-transform: translateY(-20px);
    transform: translateY(-20px);
  }
}

.fadeOutUp {
  -webkit-animation-name: fadeOutUp;
  animation-name: fadeOutUp;
}

@-webkit-keyframes fadeOutUpBig {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }
}

@keyframes fadeOutUpBig {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    -ms-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }
}

.fadeOutUpBig {
  -webkit-animation-name: fadeOutUpBig;
  animation-name: fadeOutUpBig;
}

@-webkit-keyframes flip {
  0% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

  40% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

  50% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  80% {
    -webkit-transform: perspective(400px) scale3d(.95, .95, .95);
    transform: perspective(400px) scale3d(.95, .95, .95);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  100% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}

@keyframes flip {
  0% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

  40% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

  50% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  80% {
    -webkit-transform: perspective(400px) scale3d(.95, .95, .95);
    transform: perspective(400px) scale3d(.95, .95, .95);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  100% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}

.animated.flip {
  -webkit-backface-visibility: visible;
  backface-visibility: visible;
  -webkit-animation-name: flip;
  animation-name: flip;
}

@-webkit-keyframes flipInX {
  0% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }

  40% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  60% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }

  100% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}

@keyframes flipInX {
  0% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }

  40% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  60% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }

  100% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}

.flipInX {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInX;
  animation-name: flipInX;
}

@-webkit-keyframes flipInY {
  0% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }

  40% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  60% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  }

  100% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}

@keyframes flipInY {
  0% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }

  40% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  60% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  }

  100% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}

.flipInY {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInY;
  animation-name: flipInY;
}

@-webkit-keyframes flipOutX {
  0% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }

  30% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }

  100% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}

@keyframes flipOutX {
  0% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }

  30% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }

  100% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}

.flipOutX {
  -webkit-animation-name: flipOutX;
  animation-name: flipOutX;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
}

@-webkit-keyframes flipOutY {
  0% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }

  30% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1;
  }

  100% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
}

@keyframes flipOutY {
  0% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }

  30% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1;
  }

  100% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
}

.flipOutY {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipOutY;
  animation-name: flipOutY;
}

@-webkit-keyframes lightSpeedIn {
  0% {
    -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }

  60% {
    -webkit-transform: skewX(20deg);
    transform: skewX(20deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: skewX(-5deg);
    transform: skewX(-5deg);
    opacity: 1;
  }

  100% {
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

@keyframes lightSpeedIn {
  0% {
    -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }

  60% {
    -webkit-transform: skewX(20deg);
    transform: skewX(20deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: skewX(-5deg);
    transform: skewX(-5deg);
    opacity: 1;
  }

  100% {
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

.lightSpeedIn {
  -webkit-animation-name: lightSpeedIn;
  animation-name: lightSpeedIn;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
}

@-webkit-keyframes lightSpeedOut {
  0% {
    opacity: 1;
  }

  100% {
    -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}

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

  100% {
    -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}

.lightSpeedOut {
  -webkit-animation-name: lightSpeedOut;
  animation-name: lightSpeedOut;
  -webkit-animation-timing-function: ease-in;
  animation-timing-function: ease-in;
}

@-webkit-keyframes rotateIn {
  0% {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, -200deg);
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
  }

  100% {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

@keyframes rotateIn {
  0% {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, -200deg);
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
  }

  100% {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

.rotateIn {
  -webkit-animation-name: rotateIn;
  animation-name: rotateIn;
}

@-webkit-keyframes rotateInDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }

  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

@keyframes rotateInDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }

  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

.rotateInDownLeft {
  -webkit-animation-name: rotateInDownLeft;
  animation-name: rotateInDownLeft;
}

@-webkit-keyframes rotateInDownRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }

  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

@keyframes rotateInDownRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }

  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

.rotateInDownRight {
  -webkit-animation-name: rotateInDownRight;
  animation-name: rotateInDownRight;
}

@-webkit-keyframes rotateInUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }

  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

@keyframes rotateInUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }

  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

.rotateInUpLeft {
  -webkit-animation-name: rotateInUpLeft;
  animation-name: rotateInUpLeft;
}

@-webkit-keyframes rotateInUpRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -90deg);
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0;
  }

  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

@keyframes rotateInUpRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -90deg);
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0;
  }

  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

.rotateInUpRight {
  -webkit-animation-name: rotateInUpRight;
  animation-name: rotateInUpRight;
}

@-webkit-keyframes rotateOut {
  0% {
    -webkit-transform-origin: center;
    transform-origin: center;
    opacity: 1;
  }

  100% {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, 200deg);
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0;
  }
}

@keyframes rotateOut {
  0% {
    -webkit-transform-origin: center;
    transform-origin: center;
    opacity: 1;
  }

  100% {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, 200deg);
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0;
  }
}

.rotateOut {
  -webkit-animation-name: rotateOut;
  animation-name: rotateOut;
}

@-webkit-keyframes rotateOutDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }

  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
}

@keyframes rotateOutDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }

  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
}

.rotateOutDownLeft {
  -webkit-animation-name: rotateOutDownLeft;
  animation-name: rotateOutDownLeft;
}

@-webkit-keyframes rotateOutDownRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }

  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}

@keyframes rotateOutDownRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }

  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}

.rotateOutDownRight {
  -webkit-animation-name: rotateOutDownRight;
  animation-name: rotateOutDownRight;
}

@-webkit-keyframes rotateOutUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }

  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}

@keyframes rotateOutUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }

  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}

.rotateOutUpLeft {
  -webkit-animation-name: rotateOutUpLeft;
  animation-name: rotateOutUpLeft;
}

@-webkit-keyframes rotateOutUpRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }

  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 90deg);
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0;
  }
}

@keyframes rotateOutUpRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }

  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 90deg);
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0;
  }
}

.rotateOutUpRight {
  -webkit-animation-name: rotateOutUpRight;
  animation-name: rotateOutUpRight;
}

@-webkit-keyframes hinge {
  0% {
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  20%, 60% {
    -webkit-transform: rotate3d(0, 0, 1, 80deg);
    transform: rotate3d(0, 0, 1, 80deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  40%, 80% {
    -webkit-transform: rotate3d(0, 0, 1, 60deg);
    transform: rotate3d(0, 0, 1, 60deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }

  100% {
    -webkit-transform: translate3d(0, 700px, 0);
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}

@keyframes hinge {
  0% {
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  20%, 60% {
    -webkit-transform: rotate3d(0, 0, 1, 80deg);
    transform: rotate3d(0, 0, 1, 80deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  40%, 80% {
    -webkit-transform: rotate3d(0, 0, 1, 60deg);
    transform: rotate3d(0, 0, 1, 60deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }

  100% {
    -webkit-transform: translate3d(0, 700px, 0);
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}

.hinge {
  -webkit-animation-name: hinge;
  animation-name: hinge;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@-webkit-keyframes rollIn {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
  }

  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes rollIn {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
  }

  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

.rollIn {
  -webkit-animation-name: rollIn;
  animation-name: rollIn;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@-webkit-keyframes rollOut {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
  }
}

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

  100% {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
  }
}

.rollOut {
  -webkit-animation-name: rollOut;
  animation-name: rollOut;
}

@-webkit-keyframes zoomIn {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(.3, .3, .3);
    transform: scale3d(.3, .3, .3);
  }

  50% {
    opacity: 1;
  }
}

@keyframes zoomIn {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(.3, .3, .3);
    transform: scale3d(.3, .3, .3);
  }

  50% {
    opacity: 1;
  }
}

.zoomIn {
  -webkit-animation-name: zoomIn;
  animation-name: zoomIn;
}

@-webkit-keyframes zoomInStable {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(.3, .3, .3);
    transform: scale3d(.3, .3, .3);
  }

  33.333% {
    opacity: 1;
	-webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  
  66.666666% {
    opacity: 1;
	-webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

@keyframes zoomInStable {
 0% {
    opacity: 0;
    -webkit-transform: scale3d(.3, .3, .3);
    transform: scale3d(.3, .3, .3);
  }

  33.333% {
    opacity: 1;
	-webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  
  66.666666% {
    opacity: 1;
	-webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

.zoomInStable {
  -webkit-animation-name: zoomInStable;
  animation-name: zoomInStable;
}

@-webkit-keyframes zoomInDown {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
    transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
    transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

@keyframes zoomInDown {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
    transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
    transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

.zoomInDown {
  -webkit-animation-name: zoomInDown;
  animation-name: zoomInDown;
}

@-webkit-keyframes zoomInLeft {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
    transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
    transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

@keyframes zoomInLeft {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
    transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
    transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

.zoomInLeft {
  -webkit-animation-name: zoomInLeft;
  animation-name: zoomInLeft;
}

@-webkit-keyframes zoomInRight {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
    transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
    transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

@keyframes zoomInRight {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
    transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
    transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

.zoomInRight {
  -webkit-animation-name: zoomInRight;
  animation-name: zoomInRight;
}

@-webkit-keyframes zoomInUp {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
    transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
    transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

@keyframes zoomInUp {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
    transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
    transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

.zoomInUp {
  -webkit-animation-name: zoomInUp;
  animation-name: zoomInUp;
}

@-webkit-keyframes zoomOut {
  0% {
    opacity: 1;
  }

  50% {
    opacity: 0;
    -webkit-transform: scale3d(.3, .3, .3);
    transform: scale3d(.3, .3, .3);
  }

  100% {
    opacity: 0;
  }
}

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

  50% {
    opacity: 0;
    -webkit-transform: scale3d(.3, .3, .3);
    transform: scale3d(.3, .3, .3);
  }

  100% {
    opacity: 0;
  }
}

.zoomOut {
  -webkit-animation-name: zoomOut;
  animation-name: zoomOut;
}

@-webkit-keyframes zoomOutDown {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
    transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  100% {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
    transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

@keyframes zoomOutDown {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
    transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  100% {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
    transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

.zoomOutDown {
  -webkit-animation-name: zoomOutDown;
  animation-name: zoomOutDown;
}

@-webkit-keyframes zoomOutLeft {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0);
    transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0);
  }

  100% {
    opacity: 0;
    -webkit-transform: scale(.1) translate3d(-2000px, 0, 0);
    transform: scale(.1) translate3d(-2000px, 0, 0);
    -webkit-transform-origin: left center;
    transform-origin: left center;
  }
}

@keyframes zoomOutLeft {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0);
    transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0);
  }

  100% {
    opacity: 0;
    -webkit-transform: scale(.1) translate3d(-2000px, 0, 0);
    transform: scale(.1) translate3d(-2000px, 0, 0);
    -webkit-transform-origin: left center;
    transform-origin: left center;
  }
}

.zoomOutLeft {
  -webkit-animation-name: zoomOutLeft;
  animation-name: zoomOutLeft;
}

@-webkit-keyframes zoomOutRight {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0);
    transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0);
  }

  100% {
    opacity: 0;
    -webkit-transform: scale(.1) translate3d(2000px, 0, 0);
    transform: scale(.1) translate3d(2000px, 0, 0);
    -webkit-transform-origin: right center;
    transform-origin: right center;
  }
}

@keyframes zoomOutRight {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0);
    transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0);
  }

  100% {
    opacity: 0;
    -webkit-transform: scale(.1) translate3d(2000px, 0, 0);
    transform: scale(.1) translate3d(2000px, 0, 0);
    -webkit-transform-origin: right center;
    transform-origin: right center;
  }
}

.zoomOutRight {
  -webkit-animation-name: zoomOutRight;
  animation-name: zoomOutRight;
}

@-webkit-keyframes zoomOutUp {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
    transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  100% {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
    transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

@keyframes zoomOutUp {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
    transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  100% {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
    transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

.zoomOutUp {
  -webkit-animation-name: zoomOutUp;
  animation-name: zoomOutUp;
}

@-webkit-keyframes slideInDown {
  0% {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }

  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes slideInDown {
  0% {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }

  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.slideInDown {
  -webkit-animation-name: slideInDown;
  animation-name: slideInDown;
}

@-webkit-keyframes slideInLeft {
  0% {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }

  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes slideInLeft {
  0% {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }

  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.slideInLeft {
  -webkit-animation-name: slideInLeft;
  animation-name: slideInLeft;
}

@-webkit-keyframes slideInRight {
  0% {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }

  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes slideInRight {
  0% {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }

  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.slideInRight {
  -webkit-animation-name: slideInRight;
  animation-name: slideInRight;
}

@-webkit-keyframes slideInUp {
  0% {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }

  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes slideInUp {
  0% {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }

  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.slideInUp {
  -webkit-animation-name: slideInUp;
  animation-name: slideInUp;
}

@-webkit-keyframes slideOutDown {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  100% {
    visibility: hidden;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}

@keyframes slideOutDown {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  100% {
    visibility: hidden;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}

.slideOutDown {
  -webkit-animation-name: slideOutDown;
  animation-name: slideOutDown;
}

@-webkit-keyframes slideOutLeft {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  100% {
    visibility: hidden;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}

@keyframes slideOutLeft {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  100% {
    visibility: hidden;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}

.slideOutLeft {
  -webkit-animation-name: slideOutLeft;
  animation-name: slideOutLeft;
}

@-webkit-keyframes slideOutRight {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  100% {
    visibility: hidden;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}

@keyframes slideOutRight {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  100% {
    visibility: hidden;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}

.slideOutRight {
  -webkit-animation-name: slideOutRight;
  animation-name: slideOutRight;
}

@-webkit-keyframes slideOutUp {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  100% {
    visibility: hidden;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}

@keyframes slideOutUp {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  100% {
    visibility: hidden;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}

.slideOutUp {
  -webkit-animation-name: slideOutUp;
  animation-name: slideOutUp;
}

@keyframes anime {
from {
	opacity: 0;
	transform: scaleY(0);
	-webkit-transform: scaleY(0);
	-moz-transform: scaleY(0);
	-ms-transform: scaleY(0);
	-o-transform: scaleY(0);
}
to {
	opacity: 1;
	transform: scaleY(1);
	-webkit-transform: scaleY(1);
	-ms-transform: scaleY(1);
	-o-transform: scaleY(1);
	-moz-transform: scaleY(1);
}
}

@-webkit-keyframes anime {
from {
	opacity: 0;
	transform: scaleY(0);
	-webkit-transform: scaleY(0);
	-moz-transform: scaleY(0);
	-ms-transform: scaleY(0);
	-o-transform: scaleY(0);
}
to {
	opacity: 1;
	transform: scaleY(1);
	-webkit-transform: scaleY(1);
	-ms-transform: scaleY(1);
	-o-transform: scaleY(1);
	-moz-transform: scaleY(1);
}
}

@-moz-keyframes anime {
from {
	opacity: 0;
	transform: scaleY(0);
	-webkit-transform: scaleY(0);
	-moz-transform: scaleY(0);
	-ms-transform: scaleY(0);
	-o-transform: scaleY(0);
}
to {
	opacity: 1;
	transform: scaleY(1);
	-webkit-transform: scaleY(1);
	-ms-transform: scaleY(1);
	-o-transform: scaleY(1);
	-moz-transform: scaleY(1);
}

}

@-o-keyframes anime {
from {
	opacity: 0;
	transform: scaleY(0);
	-webkit-transform: scaleY(0);
	-moz-transform: scaleY(0);
	-ms-transform: scaleY(0);
	-o-transform: scaleY(0);
}
to {
	opacity: 1;
	transform: scaleY(1);
	-webkit-transform: scaleY(1);
	-ms-transform: scaleY(1);
	-o-transform: scaleY(1);
	-moz-transform: scaleY(1);
}
}

@-ms-keyframes anime {
from {
	opacity: 0;
	transform: scaleY(0);
	-webkit-transform: scaleY(0);
	-moz-transform: scaleY(0);
	-ms-transform: scaleY(0);
	-o-transform: scaleY(0);
}
to {
	opacity: 1;
	transform: scaleY(1);
	-webkit-transform: scaleY(1);
	-ms-transform: scaleY(1);
	-o-transform: scaleY(1);
	-moz-transform: scaleY(1);
}

}
/* Qonstruct Construction Business HTML-5 Template */

/*** 

====================================================================
	Slider One
====================================================================

***/

.slider-one{
	position:relative;
	overflow: hidden;
	background-color: #000000;
}

.slider-one_call{
	position:absolute;
	left: -80px;
	top:50%;
	z-index:10;
	font-weight:500;
	font-size: 18px;
	display:inline-block;
	color: var(--color-two);
	transform:rotate(-90deg);
}

.slider-one_call span{
	position:relative;
	font-size: 24px;
	color: var(--color-two);
}

.slider-one_call span:hover{
	color: var(--main-color);
}

.slider-one_pattern{
	position:absolute;
	left: 0px;
	bottom: 0px;
	z-index:2;
	width: 649px;
	height: 769px;
	background-repeat: no-repeat;
}

.slider-one_vector{
	background-position: left bottom;
	background-repeat: no-repeat;
}

.slider-one-arrow{
	position: absolute;
	left:0px;
	bottom: -10px;
	right: 0px;
	text-align:center;
}

.slider-one:hover .slider-one-arrow{
	opacity: 1;
}

.slider-one .main-slider-prev{
	position: relative;
	z-index: 1;
	width: 180px;
	height: 100px;
	font-size: 24px;
	cursor: pointer;
	line-height: 120px;
	text-align: right;
	padding-right: 20px;
	display: inline-block;
	color: var(--white-color);
	background-color: rgb(248 29 14 / 0%);
	clip-path: polygon(0 100%, 100% 0, 100% 100%, 0% 100%);
}

.slider-one .main-slider-prev:hover{
	color: var(--white-color);
	background-color: var(--color-two);
}

.slider-one .main-slider-next:hover{
	color: var(--white-color);
	/* background-color: var(--color-two); */
}

.slider-one .main-slider-next::after,
.slider-one .main-slider-prev::after{
	display: none;
}

.slider-one .main-slider-next{
	position: relative;
	z-index: 1;
	width: 180px;
	height: 100px;
	font-size: 24px;
	cursor: pointer;
	line-height: 120px;
	text-align: left;
	padding-left: 20px;
	display: inline-block;
	color: var(--white-color);
	/* background-color: var(--main-color); */
	clip-path: polygon(0 0, 100% 100%, 100% 100%, 0% 100%);
}

.slider-one .swiper-slide{
	position:relative;
	overflow: hidden;
	padding: 257px 0px 20px;
	height: 670px;
}

.slider-one_content{
	position:relative;
	z-index: 2;
	padding-top:0px;
}

.slider-one_content-inner{
	position:relative;
	max-width: 660px;
}

.slider-one_heading{
	margin-top: 20px;
	color: rgb(255 255 255);
	text-transform: uppercase;
	transition: 1.3s cubic-bezier(0.5, 0.5, 0, 1);
	clip-path: polygon(0% 0%, 0% 0%, 0% 100%, 0% 100%);
}

.slider-one_heading span{
	color: transparent;
	font-weight:800;
	-webkit-text-stroke-width: 2px;
    -webkit-text-stroke-color: rgba(var(--color-two-rgb), 1);
}

.slider-one_heading strong{
	color: var(--main-color);
}

.slider-one .swiper-slide-active .slider-one_heading{
	-webkit-transition-delay: 800ms;
	-moz-transition-delay: 800ms;
	-ms-transition-delay: 800ms;
	-o-transition-delay: 800ms;
	transition-delay: 800ms;
	clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
}

.slider-one_text{
	font-weight:400;
	font-size:16px;
	max-width: 450px;
	line-height:28px;
	margin-top:30px;
	margin-bottom:35px;
	color: rgb(255 255 255);
	text-transform: capitalize;
	transition: 1.3s cubic-bezier(0.5, 0.5, 0, 1);
	clip-path: polygon(0% 0%, 0% 0%, 0% 100%, 0% 100%);
}

.slider-one .swiper-slide-active .slider-one_text{
	-webkit-transition-delay: 1200ms;
	-moz-transition-delay: 1200ms;
	-ms-transition-delay: 1200ms;
	-o-transition-delay: 1200ms;
	transition-delay: 1200ms;
	clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
}

.slider-one .slider-one_button{
	position: relative;
	gap: 15px;
	display:inline-block;
	transition: 1.3s cubic-bezier(0.5, 0.5, 0, 1);
    clip-path: polygon(0% 0%, 0% 0%, 0% 100%, 0% 100%);
}

.slider-one_video{
	position:relative;
}

.slider-one .swiper-slide-active .slider-one_button{
	-webkit-transition-delay: 1400ms;
	-moz-transition-delay: 1400ms;
	-ms-transition-delay: 1400ms;
	-o-transition-delay: 1400ms;
	transition-delay: 1400ms;
	clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
}

.slider-one_big-title{
	position:absolute;
	left:0px;
	right:0px;
	top:500px;
	z-index: 2;
	opacity:0.20;
	font-size:160px;
    color: transparent;
    font-weight: 800;
	text-align:center;
	text-transform:uppercase;
}

.slider-one .side-image{
	position: revert;
}

.slider-one .side-image img{
	position:relative;
	width: 100%;
	display:block;
	top: -150px;
}

/* Play Box */

.slider-one .play-box{
	position:relative;
	font-size: 33px;
	font-weight: 600;
	color: rgb(255 255 255);
}

.slider-one .play-box:hover .fa{
	color: var(--white-color);
	border-color: var(--black-color);
	background-color: var(--main-color);
}

.slider-one .play-box .fa{
	position:relative;
	width: 40px;
	height: 44px;
	font-size: 24px;
	line-height: 50px;
	margin-right: 20px;
	padding-left: 8px;
	display:inline-block;
	color: rgb(255 255 255);
	text-align:center !important;
	border-radius:50px 0px 0px 50px;
	background-color: var(--main-color);
}

/* Slider Socials Box */

.slider-one_socials{
	position: revert;
	text-align: center;
	padding: 0px 1px;
	display: flex;
	gap: 13px;
}

.slider-one_socials:before{
	position: absolute;
	/* content:''; */
	left:0px;
	right: 0px;
	top: 0px;
	bottom:0px;
	opacity:0.90;
	background-color: var(--color-two);
	clip-path: polygon(0 12%, 100% 0, 100% 100%, 0 88%);
}

.slider-one_socials a{
	position: relative;
	font-size: 15px;
	display: block;
	font-weight: 500;
	margin: 0px 0px;
	text-transform: capitalize;
	color: rgb(255 255 255);
	height: 25px;
	width: 26px;
	line-height: 29px;
	border-radius: 2px;
}

.slider-one_socials a:hover{
	color: var(--main-color);
}

/*** 

====================================================================
	Slider Two
====================================================================

***/

.slider-two{
	position:relative;
	background-color: var(--color-two);
}

.slider-two_vector{
	background-position: left bottom;
	background-repeat: no-repeat;
}

.slider-two_pattern{
	background-position: right bottom;
	background-repeat: no-repeat;
}

.slider-two_star{
	position:absolute;
	right: 10%;
	top: 22%;
	width:73px;
	height:76px;
}

.slider-two-arrow{
	position: absolute;
	left:0px;
	bottom:0px;
	right: 0px;
	text-align:center;
}

.slider-two:hover .slider-two-arrow{
	opacity: 1;
}

.slider-two .main-slider-prev{
	position: relative;
	z-index: 1;
	width: 180px;
	height: 100px;
	font-size: 24px;
	cursor: pointer;
	line-height: 120px;
	text-align: right;
	padding-right: 20px;
	display: inline-block;
	color: var(--white-color);
	background-color: var(--main-color);
	clip-path: polygon(0 100%, 100% 0, 100% 100%, 0% 100%);
}

.slider-two .main-slider-prev:hover{
	color: var(--white-color);
	background-color: var(--color-three);
}

.slider-two .main-slider-next:hover{
	color: var(--white-color);
	background-color: var(--color-three);
}

.slider-two .main-slider-next::after,
.slider-two .main-slider-prev::after{
	display: none;
}

.slider-two .main-slider-next{
	position: relative;
	z-index: 1;
	width: 180px;
	height: 100px;
	font-size: 24px;
	cursor: pointer;
	line-height: 120px;
	text-align: left;
	padding-left: 20px;
	display: inline-block;
	color: var(--white-color);
	background-color: var(--main-color);
	clip-path: polygon(0 0, 100% 100%, 100% 100%, 0% 100%);
}

.slider-two .swiper-slide{
	position:relative;
	overflow: hidden;
	padding:260px 0px 180px;
}

.slider-two_content{
	position:relative;
	z-index: 2;
	padding-top:0px;
}

.slider-two_content-inner{
	position:relative;
}

.slider-two_title{
	font-weight:400;
	font-size:20px;
	line-height:28px;
	color: var(--white-color);
	text-transform: capitalize;
	
	transition: 1.3s cubic-bezier(0.5, 0.5, 0, 1);
    clip-path: polygon(0% 0%, 0% 0%, 0% 100%, 0% 100%);
}

.slider-two .swiper-slide-active .slider-two_title{
	-webkit-transition-delay: 500ms;
	-moz-transition-delay: 500ms;
	-ms-transition-delay: 500ms;
	-o-transition-delay: 500ms;
	transition-delay: 500ms;
	clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
}

.slider-two_heading{
	font-size: 90px;
	line-height: 110px;
	margin-top: 25px;
	margin-bottom: 30px;
	color: var(--color-two);
	text-transform: capitalize;
	
	transition: 1.3s cubic-bezier(0.5, 0.5, 0, 1);
    clip-path: polygon(0% 0%, 0% 0%, 0% 100%, 0% 100%);
}

.slider-two .swiper-slide-active .slider-two_heading{
	-webkit-transition-delay: 800ms;
	-moz-transition-delay: 800ms;
	-ms-transition-delay: 800ms;
	-o-transition-delay: 800ms;
	transition-delay: 800ms;
	clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
}

.slider-two .circle {
	position: relative;
}

.slider-two .circle span {
	position: relative;
	font-size: 20px;
	display: inline-block;
}

.slider-two .circle:before {
	position: absolute;
	left: 0;
	top: 0;
	content: "";
	width: 193px;
	height: 193px;
	background: url(../images/long-arrow.png) no-repeat;
}

.slider-two .middle-box{
	position:relative;
	gap: 30px;
	margin-left: 280px;
}

.slider-two .middle-box:before{
	position:absolute;
	content:'';
	left:-140px;
	top:70px;
	width:100px;
	height: 83px;
	background:url(../images/arrow.png);
	background-repeat: no-repeat;
	-webkit-animation: rotateOne 2s linear infinite;
    animation: rotateOne 2s linear infinite;
}

.slider-two_text{
	font-weight:400;
	font-size:18px;
	max-width: 480px;
	line-height:30px;
	margin-top:30px;
	margin-bottom:35px;
	color: var(--white-color);
	text-transform: capitalize;
	
	transition: 1.3s cubic-bezier(0.5, 0.5, 0, 1);
    clip-path: polygon(0% 0%, 0% 0%, 0% 100%, 0% 100%);
}

.slider-two .swiper-slide-active .slider-two_text{
	-webkit-transition-delay: 1200ms;
	-moz-transition-delay: 1200ms;
	-ms-transition-delay: 1200ms;
	-o-transition-delay: 1200ms;
	transition-delay: 1200ms;
	clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
}

.slider-two .slider-two_button{
	position: relative;
	margin-top: 35px;
	display:inline-block;
	transition: 1.3s cubic-bezier(0.5, 0.5, 0, 1);
    clip-path: polygon(0% 0%, 0% 0%, 0% 100%, 0% 100%);
}

.slider-two .swiper-slide-active .slider-two_button{
	-webkit-transition-delay: 1400ms;
	-moz-transition-delay: 1400ms;
	-ms-transition-delay: 1400ms;
	-o-transition-delay: 1400ms;
	transition-delay: 1400ms;
	clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
}

/* Slider Socials Box */

.slider-two_socials{
	position: absolute;
	right: 0px;
	top: 50%;
	z-index: 1;
	text-align: center;
	padding: 35px 20px;
	transform: translateY(-50%);
}

.slider-two_socials:before{
	position: absolute;
	content:'';
	left:0px;
	right: 0px;
	top: 0px;
	bottom:0px;
	opacity:0.90;
	background-color: var(--main-color);
	clip-path: polygon(0 12%, 100% 0, 100% 100%, 0 88%);
}

.slider-two_socials a{
	position: relative;
	font-size: 16px;
	display: block;
	font-weight: 500;
	margin: 20px 0px;
	text-transform: capitalize;
	color: var(--white-color);
}

.slider-two_socials a:hover{
	color: var(--color-two);
}

/*** 

====================================================================
	Slider Three
====================================================================

***/

.slider-three{
	position:relative;
	background-color: var(--color-two);
}

.slider-three_vector{
	position:absolute;
	left:0px;
	top:0px;
	bottom:0px;
	width: 461px;
}

.slider-three_vector-two{
	position:absolute;
	right:0px;
	top:0px;
	bottom:0px;
	width: 346px;
}

.slider-three .auto-container{
	position:relative;
}

.slider-three_pattern{
	background-position: right bottom;
	background-repeat: no-repeat;
}

.slider-three-arrow{
	position:absolute;
	left:0px;
	bottom:0px;
}

.slider-three .main-slider-prev{
	position: relative;
	z-index: 1;
	width: 60px;
	height: 60px;
	font-size: 20px;
	cursor: pointer;
	line-height: 60px;
	text-align: center;
	display: inline-block;
	color: var(--white-color);
	background-color: var(--main-color);
}

.slider-three .main-slider-prev:hover{
	color: var(--white-color);
	background-color: var(--color-three);
}

.slider-three .main-slider-next:hover{
	color: var(--white-color);
	background-color: var(--color-three);
}

.slider-three .main-slider-next::after,
.slider-three .main-slider-prev::after{
	display: none;
}

.slider-three .main-slider-next{
	position: relative;
	z-index: 1;
	width: 60px;
	height: 60px;
	font-size: 20px;
	cursor: pointer;
	line-height: 60px;
	text-align: center;
	display: inline-block;
	color: var(--white-color);
	background-color: var(--main-color);
}

.slider-three .swiper-slide{
	position:relative;
	overflow: hidden;
	padding:300px 0px 150px;
}

.slider-three_content{
	position:relative;
	z-index: 2;
	padding-top:0px;
	max-width: 950px;
}

.slider-three_content-inner{
	position:relative;
}

.slider-three_title{
	font-weight:400;
	font-size:20px;
	max-width: 450px;
	line-height:28px;
	border-radius:50px;
	padding: 10px 40px;
	display: inline-block;
	color: var(--white-color);
	text-transform: capitalize;
	background-color: var(--main-color);
	transition: 1.3s cubic-bezier(0.5, 0.5, 0, 1);
    clip-path: polygon(0% 0%, 0% 0%, 0% 100%, 0% 100%);
}

.slider-three .swiper-slide-active .slider-three_title{
	-webkit-transition-delay: 500ms;
	-moz-transition-delay: 500ms;
	-ms-transition-delay: 500ms;
	-o-transition-delay: 500ms;
	transition-delay: 500ms;
	clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
}

.slider-three_heading{
	margin-top: 25px;
	margin-bottom: 30px;
	color: var(--white-color);
	text-transform: capitalize;
	
	transition: 1.3s cubic-bezier(0.5, 0.5, 0, 1);
    clip-path: polygon(0% 0%, 0% 0%, 0% 100%, 0% 100%);
}

.slider-three .swiper-slide-active .slider-three_heading{
	-webkit-transition-delay: 800ms;
	-moz-transition-delay: 800ms;
	-ms-transition-delay: 800ms;
	-o-transition-delay: 800ms;
	transition-delay: 800ms;
	clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
}

.slider-three_text{
	font-weight:400;
	font-size:18px;
	max-width: 480px;
	line-height:30px;
	margin-top:30px;
	color: var(--white-color);
	text-transform: capitalize;
	
	transition: 1.3s cubic-bezier(0.5, 0.5, 0, 1);
    clip-path: polygon(0% 0%, 0% 0%, 0% 100%, 0% 100%);
}

.slider-three .swiper-slide-active .slider-three_text{
	-webkit-transition-delay: 1200ms;
	-moz-transition-delay: 1200ms;
	-ms-transition-delay: 1200ms;
	-o-transition-delay: 1200ms;
	transition-delay: 1200ms;
	clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
}

.slider-three .slider-three_button{
	position: relative;
	margin-top: 35px;
	display:inline-block;
	transition: 1.3s cubic-bezier(0.5, 0.5, 0, 1);
    clip-path: polygon(0% 0%, 0% 0%, 0% 100%, 0% 100%);
}

.slider-three .swiper-slide-active .slider-three_button{
	-webkit-transition-delay: 1400ms;
	-moz-transition-delay: 1400ms;
	-ms-transition-delay: 1400ms;
	-o-transition-delay: 1400ms;
	transition-delay: 1400ms;
	clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
}

.slider-three_image{
	position:absolute;
	right:0px;
	top:-75px;
	z-index:1;
}

/* Slider Socials Box */

.slider-three_socials{
	position: absolute;
	right: 0px;
	top: 50%;
	z-index: 1;
	text-align: center;
	padding: 35px 20px;
	transform: translateY(-50%);
}

.slider-three_socials:before{
	position: absolute;
	content:'';
	left:0px;
	right: 0px;
	top: 0px;
	bottom:0px;
	opacity:0.90;
	background-color: var(--main-color);
	clip-path: polygon(0 12%, 100% 0, 100% 100%, 0 88%);
}

.slider-three_socials a{
	position: relative;
	font-size: 16px;
	display: block;
	font-weight: 500;
	margin: 20px 0px;
	text-transform: capitalize;
	color: var(--white-color);
}

.slider-three_socials a:hover{
	color: var(--main-color);
}
/* Qonstruct Construction Business HTML-5 Template */

/*** 

====================================================================
	About One
====================================================================

***/

.about-one{
	position:relative;
	padding: 110px 0px 80px;
}

.about-one_image{
	position:relative;
	overflow: hidden;
	border-radius: 15px;
	margin-bottom: 30px;
}

.about-one_image img{
	position:relative;
	width:100%;
}

.about-one .bold-text{
	position:relative;
	font-size: 24px;
	line-height: 34px;
	font-weight: 600;
	margin-bottom: 30px;
	color: var(--color-two);
}

.about-one .default-skills{
	margin-top: 20px;
	margin-bottom: 25px;
}

.about-one_list{
	position:relative;
}

.about-one_list li{
	position:relative;
	font-size: 18px;
	padding-left: 25px;
	margin-bottom: 15px;
	color: var(--color-two);
}

.about-one_list li:before{
	position:absolute;
	content: "\f12c";
	left:0px;
	top:0px;
	color: var(--main-color);
	font-family: "flaticon_qonstruct";
}

/*** 

====================================================================
	About Two
====================================================================

***/

.about-two{
	position:relative;
	padding: 110px 0px 90px;
	background-color: #f5f5f5;
}

.about-two .sec-title{
	margin-bottom: 25px;
}

.about-two .image-box{
	position:relative;
	overflow: hidden;
	margin-bottom: 25px;
}

.about-two .feature{
	position:relative;
	font-size: 18px;
	line-height: 30px;
	margin-bottom: 20px;
	color: var(--color-two);
}

.about-two .feature strong{
	position:relative;
	display: block;
	font-size: 26px;
	font-weight: 600;
	margin-bottom: 10px;
	color: var(--color-two);
}

.about-two .content-box{
	position:relative;
	padding: 30px 25px;
	border-radius: 5px;
	background-color: var(--color-two);
}

.about-two .content-box .title{
	position:relative;
	color: var(--white-color);
}

.about-two .content-box .content-text{
	position:relative;
	font-size: 18px;
	line-height: 30px;
	margin-top: 15px;
	margin-bottom: 20px;
	color: var(--white-color);
}

.about-two .content-box .message{
	position:relative;
	font-size: 18px;
	font-weight: 600;
	color: var(--white-color);
}

.about-two .content-box .message span{
	position:relative;
	line-height:1em;
	top: 1px;
	margin-left: 5px;
	font-weight: normal;
	font-family: "flaticon_qonstruct";
}

.about-two .content-box .message:hover{
	color: var(--main-color);
}
/* Qonstruct Construction Business HTML-5 Template */

/*** 

====================================================================
	Services One
====================================================================

***/

.service-one{
	position:relative;
	padding: 42px 0px 90px;
	background-color: #f5f5f5;
}

.service-one .swiper-pagination-progressbar{
	position: relative;
	bottom: 15px;
    top: auto !important;
	margin: 0 auto;
    width: 200px !important;
    left: auto !important;
	background-color: #dddddd;
}

.service-one .swiper-pagination-progressbar .swiper-pagination-progressbar-fill{
	background-color: var(--main-color);
}

.service-one .service-one-arrow{
	position:relative;
	width: 350px;
	z-index: 1;
	margin: 0 auto;
	margin-top: 20px;
	text-align: left;
}

.service-one .service-one-arrow .three-item_carousel-prev{
	position:relative;
	font-size: 16px;
	letter-spacing: 1px;
	font-weight: 600;
	display: inline-block;
	text-transform: uppercase;
	color: var(--color-three);
}

.service-one .service-one-arrow .three-item_carousel-next{
	position:absolute;
	right:0px;
	bottom: 0px;
	font-size: 16px;
	font-weight: 600;
	letter-spacing: 1px;
	display: inline-block;
	text-transform: uppercase;
	color: var(--color-three);
}

.service-one .service-one-arrow .three-item_carousel-prev:hover,
.service-one .service-one-arrow .three-item_carousel-next:hover{
	color: var(--main-color);
}

.service-block_one{
	position:relative;
	margin-bottom: 30px;
}

.service-block_one.style-two .service-block_one-inner{
	background-color: #f5f5f5;
}

.service-block_one-inner{
	position:relative;
	padding: 40px 40px;
	background-color: var(--white-color);
}

.service-block_one-pattern{
	opacity: 0.80;
	background-repeat: no-repeat;
	background-position:right bottom;
}

.service-block_one-inner:before{
	position:absolute;
	content:'';
	left:0px;
	top:0px;
	right:0px;
	bottom:0px;
	opacity:0;
	-webkit-transition:all 500ms ease;
	-moz-transition:all 500ms ease;
	-ms-transition:all 500ms ease;
	-o-transition:all 500ms ease;
	transition:all 500ms ease;
	transform: scale(1,0.2);
	background-color: var(--color-two);
}

.service-block_one-inner:hover::before{
	opacity:1;
	transform: scale(1,1);
}

.service-block_one-icon{
	position:relative;
	line-height:1em;
	font-size:70px;
	color: var(--main-color);
	font-family: "flaticon_qonstruct";
}

.service-block_one-inner:hover .service-block_one-icon{
	animation: rubberBand 1s;
}

.service-block_one-number{
	position:relative;
	line-height:1em;
	font-size:80px;
	font-weight:800;
	
    display: inline-block;
    text-transform: capitalize;
    color: transparent;
    -webkit-text-stroke-width: 2px;
    -webkit-text-stroke-color: rgba(var(--color-two-rgb), 0.40);
}

.service-block_one-inner:hover .service-block_one-number{
	-webkit-text-stroke-color: rgba(var(--white-color-rgb), 0.40);
}

.service-block_one-title{
	position:relative;
	margin-top: 40px;
}

.service-block_one-title a{
	position:relative;
	color: var(--color-two);
}

.service-block_one-inner:hover .service-block_one-title a{
	color: var(--white-color);
}

.service-block_one-title a:hover{
	color: var(--main-color);
}

.service-block_one-list{
	position:relative;
	margin-top: 40px;
}

.service-block_one-list li{
	position:relative;
	font-size: 18px;
	padding-left: 30px;
	margin-bottom: 15px;
}

.service-block_one-list li:before{
	position:absolute;
	content: "\f12c";
	left:0px;
	top:0px;
	font-family: "flaticon_qonstruct";
}

.service-block_one-list li:last-child{
	margin-bottom: 0px;
}

.service-block_one-inner:hover .service-block_one-list li{
	color: var(--white-color);
}

.service-block_one-arrow{
	position:relative;
	width: 48px;
	height: 48px;
	font-size: 22px;
	font-weight: 700;
	text-align:center;
	line-height: 48px;
	margin-top: 40px;
	border-radius: 50px;
	display:inline-block;
	color: var(--color-two);
	font-family: "flaticon_qonstruct";
	background-color: var(--main-color);
}

.service-block_one-arrow:hover{
	color: var(--main-color);
	background-color: var(--white-color);
}

/*** 

====================================================================
	Services Two
====================================================================

***/

.service-two{
	position:relative;
	padding:120px 0px 90px;
	background-color: #f5f5f5;
}

.service-two .sec-title_heading{
	font-size: 40px;
	line-height: 46px;
}

.service-block_two{
	position:relative;
	margin-bottom: 30px;
}

.service-block_two.style-two .service-block_two-inner{
	background-color: #f9f9f9;
}

.service-block_two-inner{
	position:relative;
	overflow: hidden;
	padding: 10px 10px;
	border-radius: 10px;
	text-align: center;
	background-color: var(--white-color);
}

.service-block_two-inner:hover::before{
	opacity:1;
	transform: scale(1, 1);
}

.service-block_two-inner:before{
	position: absolute;
    content: "";
    left: 0px;
    top: 0px;
    right: 0px;
    bottom: 0px;
    opacity: 0;
    background-color: #eae8e8;
    transform: scale(0.2, 1);
    transition: all 500ms ease;
}

.service-block_two-image{
	position:relative;
	overflow: hidden;
	border-radius: 10px;
	background-color: var(--color-two);
}

.service-block_two-image img{
	position:relative;
	width:100%;
	display: block;
}

.service-block_two-inner:hover .service-block_two-image img{
	opacity:0.70;
	transform: scale(1.04,1.04) rotate(2deg);
}

.service-block_two-content{
	position:relative;
	padding: 0px 20px 20px;
}

.service-block_two-icon{
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto;
    font-size: 40px;
    line-height: 80px;
    text-align: center;
    border-radius: 7px;
    margin-top: -40px;
	color: var(--white-color);
	background-color: var(--color-two);
	font-family: "flaticon_qonstruct";
}

.service-block_two-inner:hover .service-block_two-icon{
	animation: swing 1s;
	background-color: var(--main-color);
}

.service-block_two-title{
	position:relative;
	margin-top: 22px;
}

.service-block_two-title a{
	position:relative;
	color: var(--color-two);
}

.service-block_two-title a:hover{
	color: var(--main-color);
}

.service-block_two-text{
	position:relative;
	margin-top: 12px;
	font-size: 16px;
	line-height: 26px;
}

/*** 

====================================================================
	Services Three
====================================================================

***/

.service-three{
	position:relative;
	padding:120px 0px 110px;
}

.service-block_three {
	position: relative;
	margin-bottom: 30px;
}

.service-block_three:last-child .inner {
	border: none;
	min-height: 200px;
}

.service-block_three:last-child {
	margin-bottom: 0px;
}

.service-block_three .inner {
	position: relative;
	padding-top: 10px;
	padding-left: 350px;
	min-height: 235px;
	margin-right: 70px;
	border-bottom: 1px solid rgba(0, 0, 0, 0.07);
}

.service-block_three .inner .image {
	position: absolute;
	left: 0px;
	top: 0px;
	width: 320px;
	height: 200px;
	overflow: hidden;
	display: inline-block;
	background-color: var(--color-two);
}

.service-block_three .inner .image img{
	width:100%;
	display: block;
}

.service-block_three .inner:hover .image img{
	opacity:0.70;
	transform: scale(1.04,1.04) rotate(2deg);
}

.service-block_three .inner .title {
	position: relative;
}

.service-block_three .inner .title a {
	color: var(--color-two);
}

.service-block_three .inner .title a:hover{
	color: var(--main-color);
}

.service-block_three .inner .title span {
	position: relative;
	font-size: 14px;
	top: -12px;
	line-height: 1em;
	border-radius: 50px;
	font-weight: 500;
	display: inline-block;
	padding: 10px 20px 10px;
	color: var(--white-color);
	background-color: var(--color-two);
}

.service-block_three .inner .text {
	position: relative;
	font-size: 16px;
	line-height: 26px;
	max-width: 390px;
	margin: 15px 0px 25px;
	color: var(--color-three);
}

.service-four_content {
	position: relative;
	padding-left: 110px;
	border-left: 1px solid rgba(0, 0, 0, 0.07);
}

.service-four_content .text {
	position: relative;
	font-size: 20px;
	max-width: 290px;
	line-height: 30px;
	margin-top: 40px;
	margin-bottom: 40px;
	color: var(--color-three);
}

.service-four_content .image {
	position: relative;
	margin-top: 90px;
}

/* Play Box */

.service-four_play{
	position:relative;
}

.service-four_play span{
	position: relative;
	width:70px;
	height: 70px;
	z-index:10;
	font-weight:700;
	text-align: center;
	display: inline-block;
	line-height:70px;
	border-radius:50%;
	font-size: 18px;
	padding-left: 5px;
	color: var(--white-color);
	background-color: var(--color-two);
	font-family: "flaticon_qonstruct";
}

.service-four_play span:hover{
	color:var(--white-color);
	background-color:var(--main-color);
}

.service-four_play .ripple,
.service-four_play .ripple:before,
.service-four_play .ripple:after {
    position: absolute;
    top: 50%;
    left: 50%;
    width:70px;
	height: 70px;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -webkit-border-radius: 50% 50% 50% 50%;
    -moz-border-radius: 50% 50% 50% 50%;
    -ms-border-radius: 50% 50% 50% 50%;
    -o-border-radius: 50% 50% 50% 50%;
    border-radius: 50% 50% 50% 50%;
    -webkit-box-shadow: 0 0 0 0 rgba(0, 0, 0, .4);
    -moz-box-shadow: 0 0 0 0 rgba(0, 0, 0, .4);
    -ms-box-shadow: 0 0 0 0 rgba(0, 0, 0, .4);
    -o-box-shadow: 0 0 0 0 rgba(0, 0, 0, .4);
    box-shadow: 0 0 0 0 rgba(0, 0, 0, .4);
    -webkit-animation: ripple 3s infinite;
    -moz-animation: ripple 3s infinite;
    -ms-animation: ripple 3s infinite;
    -o-animation: ripple 3s infinite;
    animation: ripple 3s infinite;
}

.service-four_play .ripple:before {
    -webkit-animation-delay: .9s;
    -moz-animation-delay: .9s;
    -ms-animation-delay: .9s;
    -o-animation-delay: .9s;
    animation-delay: .9s;
    content: "";
    position: absolute;
}

.service-four_play .ripple:after {
    -webkit-animation-delay: .6s;
    -moz-animation-delay: .6s;
    -ms-animation-delay: .6s;
    -o-animation-delay: .6s;
    animation-delay: .6s;
    content: "";
    position: absolute;
}

@-webkit-keyframes ripple {
    70% {box-shadow: 0 0 0 70px rgba(253, 167, 0, 0);}
    100% {box-shadow: 0 0 0 0 rgba(253, 167, 0, 0);}
}

@keyframes ripple {
    70% {box-shadow: 0 0 0 70px rgba(253, 167, 0, 0);}
    100% {box-shadow: 0 0 0 0 rgba(253, 167, 0, 0);}
}

/*** 

====================================================================
	Services Four
====================================================================

***/

.service-four{
	position:relative;
	padding:110px 0px 110px;
}

/***

====================================================================
	Sidebar Page Container
====================================================================

***/

.sidebar-page-container{
	position:relative;
	padding:120px 0px 90px;
}

.sidebar-page-container .content-side,
.sidebar-page-container .sidebar-side{
	margin-bottom:30px;
}

/* Sidebar Title */

.sidebar-widget{
	position:relative;
	margin-bottom:30px;
}

.sidebar-title{
	position:relative;
	margin-bottom:20px;
	text-transform:uppercase;
}

.sticky-top{
	z-index:1;
	top:110px;
}

/* Search Widget */

.sidebar .search-box .form-group{
	position:relative;
	margin:0px;
}

.sidebar .search-box .form-group input:focus + button{
	background-color: var(--main-color);
}

.sidebar .search-box .form-group input[type="text"],
.sidebar .search-box .form-group input[type="search"]{
	position:relative;
	line-height:28px;
	font-size:18px;
	padding:10px 50px 10px 30px;
	background:none;
	display:block;
	width:100%;
	height:64px;
	border-radius:50px;
	color:var(--black-color);
	transition:all 500ms ease;
	-moz-transition:all 500ms ease;
	-webkit-transition:all 500ms ease;
	-ms-transition:all 500ms ease;
	-o-transition:all 500ms ease;
	background-color:var(--white-three);
	box-shadow:0px 0px 10px rgba(0,0,0,0.10);
}

.sidebar .search-box .form-group input::placeholder,
.sidebar .search-box .form-group textarea::placeholder{
	color:#666666;
}

.sidebar .search-box .form-group button{
	position:absolute;
	right:0px;
	top:0px;
	bottom: 0px;
	width:64px;
	width:64px;
	display:block;
	cursor:pointer;
	font-size:20px;
	line-height:50px;
	font-weight:normal;
	border-radius:50px;
	color:var(--white-color);
	transition:all 500ms ease;
	-moz-transition:all 500ms ease;
	-webkit-transition:all 500ms ease;
	-ms-transition:all 500ms ease;
	-o-transition:all 500ms ease;
	background-color: var(--main-color);
}

.sidebar .search-box .form-group button:hover{
	background-color:var(--color-two);
	color:var(--white-color);
}

/* Category List */

.category-list{
	position: relative;
	z-index:1;
}

.category-list li{
	position: relative;
	z-index:1;
	margin-bottom: 15px;
}

.category-list li a{
	position: relative;
	display: block;
	font-size: 20px;
	z-index:1;
	font-weight:500;
	border-radius:5px;
	color: var(--white-color);
	text-transform: capitalize;
	padding: 28px 25px 28px 25px;
	background-color: var(--color-two);
	-webkit-transition:all 300ms ease;
	-moz-transition:all 300ms ease;
	-ms-transition:all 300ms ease;
	-o-transition:all 300ms ease;
	transition:all 300ms ease;
}

.category-list li a:hover::before{
	opacity:0;
}

.category-list li span{
	position: absolute;
	right: 10px;
	top:10px;
	width:58px;
	height:58px;
	font-size:34px;
	line-height:60px;
	text-align:center;
	border-radius:5px;
	display:inline-block;
	color: var(--white-color);
	background-color: var(--main-color);
	font-family: "flaticon_qonstruct";
}

.category-list li a:hover span{
	background-image:none;
	background-color: var(--black-color);
}

.category-list li a:hover{
	color: var(--white-color);
	background-color: var(--main-color);
}

.category-list li:last-child{
	margin-bottom: 0px;
}

/* Question Widget */

.question-widget{
	position:relative;
}

.question-widget .inner-box{
	position:relative;
	padding:60px 40px;
	border-radius:20px;
	text-align:center;
	background-position: right top;
	background-repeat: no-repeat;
	background-color:var(--black-color);
}

.question-widget-shadow{
	position: absolute;
    left: 0px;
    bottom: 0px;
    width: 107px;
    height: 114px;
    background-position: left bottom;
    background-repeat: no-repeat;
}

.question-widget .icon{
	position:relative;
	font-size:90px;
	line-height:1em;
	color:var(--main-color);
	font-family: "flaticon_qonstruct";
}

.question-widget .title{
	position:relative;
	margin-top: 30px;
	color:var(--white-color);
}

.question-widget .text{
	position:relative;
	margin-top: 20px;
	font-size:18px;
	line-height:30px;
	margin-bottom:25px;
	color:var(--white-color);
}

.question-widget .phone{
	position:relative;
	font-size: 24px;
	display: flex;
	gap: 15px;
    align-items: center;
    justify-content: center;
	color:var(--white-color);
}

.question-widget .phone .phone-icon{
	position:relative;
	width:44px;
	height:44px;
	font-size: 18px;
	font-weight:700;
	line-height:44px;
	text-align:center;
	border-radius: 50px;
	display: inline-block;
	color:var(--black-color);
	background-color:var(--white-color);
}

.question-widget .phone:hover{
	color:var(--main-color);
}

.service-detail{
	position:relative;
}

.service-detail .inner-box{
	position:relative;
}

.service-detail .image{
	position:relative;
	overflow: hidden;
	margin-bottom: 30px;
	border-radius: 15px;
}

.service-detail .image img{
	position:relative;
	width:100%;
	display:block;
}

.service-detail h2{
	position:relative;
	margin-bottom: 30px;
}

.service-detail h3{
	position:relative;
	margin-bottom: 20px;
}

.service-detail_list{
	position:relative;
}

.service-detail_list li{
	position:relative;
	font-size: 16px;
	margin-bottom: 12px;
	padding-left: 25px;
	color: var(--color-three);
}

.service-detail_list li:before{
	position:absolute;
	content: "\f12c";
	left:0px;
	top:0px;
	color: var(--main-color);
	font-family: "flaticon_qonstruct";
}
/* Qonstruct Construction Business HTML-5 Template */

/*** 

====================================================================
	Accordion Style
====================================================================

***/

.accordion-box{
	position:relative;
}

.accordion-box .block{
	position: relative;
	overflow: hidden;
	border-radius: 5px;
	margin-bottom:20px;
	background-color: #f5f5f5;
}

.accordion-box .block:last-child{
	margin-bottom:0px;
}

.accordion-box .block .acc-btn{
	position:relative;
	cursor:pointer;
	font-weight:600;
	font-size:20px;
	line-height:30px;
	color: var(--color-two);
	padding: 25px 70px 25px 40px;
}

.accordion-box .block .icon-outer{
	position:absolute;
	right: 16px;
    top: 18px;
	width: 44px;
	height: 44px;
	line-height: 44px;
	text-align: center;
	border-radius: 50px;
	font-size: 16px;
	color:var(--white-color);
	font-family: 'Font Awesome 5 Pro';
	background-color: var(--main-color);
}

.accordion-box .block .icon-outer .icon{
    position: absolute;
    right:0px;
	width: 44px;
	height: 44px;
	line-height: 44px;
    color: var(--white-color);
	-webkit-transition:all 500ms ease;
	-moz-transition:all 500ms ease;
	-ms-transition:all 500ms ease;
	-o-transition:all 500ms ease;
	transition:all 500ms ease;
}

.accordion-box .block .icon-outer .icon-plus{
	opacity:1;
}

.accordion-box .block .icon-outer .icon-minus{
	opacity:0;
}

.accordion-box .block .acc-btn.active {
	
}

.accordion-box .block .acc-btn.active .icon-outer .icon-minus{
	opacity:1;
	color:var(--white-color);
}

.accordion-box .block .acc-btn.active .icon-outer .icon-plus{
	transform: rotate(-90deg);
}

.accordion-box .block .acc-btn.active .icon-outer{
	
}

.accordion-box .block .acc-content{
	position:relative;
	display:none;
}

.accordion-box .block .acc-content .content-text{
	
}

.accordion-box .block.active-block{
	
}

.accordion-box .block .acc-content.current{
	display:block;	
}

.accordion-box .block .content{
	position:relative;
	padding:0px 40px 30px 35px;
}

.accordion-box .block .content .text{
	color:#767676;
	line-height: 30px;
	font-size: 18px;
}

.accordion-box .block.active-block .text{
	
}
/* Qonstruct Construction Business HTML-5 Template */

/*** 

====================================================================
	Process One
====================================================================

***/

.process-one{
	position:relative;
	padding: 130px 0px 30px;
}

.process-one.style-two{
	padding-top: 0px;
	padding-bottom: 110px;
}

@media (max-width: 575.98px) {
  .process-one {
    margin-left: 15px;
    margin-right: 15px;
  }
}

.process-one .outer-container {
  position: relative;
  margin: 0 auto;
  max-width: 1600px;
  border-radius: 20px;
  padding: 60px 0px 40px;
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.process-one .outer-container:before {
  position: absolute;
  content: "";
  left: 0px;
  top: 55%;
  right: 0px;
  height: 1px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

@media (max-width: 1399.98px) {
  .process-one .outer-container:before {
    display: none;
  }
}

/* Process Block One */

.process-block_one {
	position: relative;
	margin-bottom: 30px;
}

.process-block_one .inner {
	position: relative;
	text-align: center;
}

.process-block_one .inner:hover .number {
	transform: rotateY(360deg);
	color: var(--white-color);
	border-color: var(--maion-color);
	background-color: var(--main-color);
}

.process-block_one .inner:hover .icon {
	animation: jello 1s;
}

.process-block_one .inner .icon {
	position: relative;
	font-size: 56px;
	line-height: 1em;
	color: var(--main-color);
	transition: all 500ms ease;
}

.process-block_one .inner .title {
	position: relative;
	margin-top: 20px;
	color: var(--color-two);
}

.process-block_one .inner .number {
	position: relative;
	width: 70px;
	height: 70px;
	margin: 0 auto;
	font-size: 22px;
	font-weight: 500;
	line-height: 68px;
	margin-top: 35px;
	transition: all 500ms ease;
	border-radius: 50px;
	color: var(--white-color);
	background-color: var(--color-two);
	border: 1px solid rgba(0, 0, 0, 0.1);
}

.process-block_one .inner .text {
	position: relative;
	margin-top: 30px;
	padding: 0px 10px;
	font-size: 18px;
	line-height: 32px;
}
/* Qonstruct Construction Business HTML-5 Template */

/*** 

====================================================================
	Clients One
====================================================================

***/

.clients-one{
	position:relative;
	z-index:1;
	padding: 0px 0px 45px;
}

.clients-one .inner-container{
	position:relative;
	overflow: hidden;
	padding: 0px;
	background-color: var(--white-color);
	box-shadow: 0px 0px 15px rgb(0 0 0 / 0%);
	margin-top: 30px;
}

/*** 

====================================================================
	Clients Two
====================================================================

***/

.clients-two{
	position:relative;
	z-index:1;
	text-align:center;
	padding: 55px 50px 55px;
	background-color: #f5f5f5;
}

.clients-two .inner-container{
	position:relative;
	overflow: hidden;
}
/* Qonstruct Construction Business HTML-5 Template */

/*** 

====================================================================
	project One
====================================================================

***/

.project-one{
	position:relative;
	padding: 35px 0px 0px;
	background: #f5f5f500;
}

.project-block_one {
	position: relative;
	width: 100%;
	display: block;
	margin-bottom: -15px;
	-webkit-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
}

.project-block_one .image {
	width: 100%;
	height: 360px;
	-webkit-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
}

.project-block_one .image img {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
	-o-object-fit: none;
	object-fit: cover;
	border-radius: 0px;
}

.project-block_one .content {
	width: -webkit-max-content;
	width: -moz-max-content;
	width: 100%;
	height: 100%;
	background-color: rgb(0 0 0 / 60%);
	border-radius: 1px;
	padding: 6px 14px;
	opacity: 1;
	position: relative;
	display: flex;
	margin-top: -40px;
	text-align: center;
	z-index: 1;
	-webkit-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
	bottom: 57px;
}

.project-block_one .content .title-info {
	-webkit-writing-mode: sideways-lr;
	-ms-writing-mode: sideways-lr;
	/* writing-mode: sideways-lr; */
	text-align: center;
	padding-top: inherit;
	padding-right: 0p;
}

.project-block_one .content .sub-title {
	font-weight: 700;
	color: var(--white-color);
}

.project-block_one .content .title {
	color: var(--white-color);
	line-height: 29px;
	font-size: 18px;
	font-weight: 700;
}

.project-block_one .content .icon {
	border-radius: 10%;
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-transition: all 0.4s ease-in-out;
	transition: all 0.4s ease-in-out;
	width: 40px;
	height: 40px;
	background-color: rgb(0 0 0 / 51%);
	color: var(--white-color);
	font-size: 32px;
	position: absolute;
	bottom: 0px;
	right: 10px;
	font-family: "flaticon_qonstruct";
}

.project-block_one:hover {
	width: 100%;
	margin-right: 220px;
}

.project-block_one:hover .content {
	opacity: 1;
	display: flex;
}

.project-block_one.style-2 .content {
	right: 0;
}

.project-block_one.style-2 .content .icon {
	bottom: 70px;
	right: 135px;
}

.project-block_one.style-2:hover {
	margin-right: 0;
	margin-left: 220px;
}

.project-slider .swiper-wrapper {
	-webkit-transition-timing-function: linear;
	transition-timing-function: linear;
}

.project-slider .swiper-slide {
	-webkit-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
}

.project-slider .swiper-slide:hover {
	/* width: 720px !important; */
	/* height: 520px; */
}

.project-slider .swiper-slide:hover .project-block_one {
	position: relative;
	width: 100%;
}

.project-slider .swiper-slide:hover .project-block_one .image {
	/* position: relative; */
	/* width: 535px; */
	/* height: 520px; */
	/* margin-left: 175px; */
}

.project-slider .swiper-slide:hover .project-block_one .image img {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
	-o-object-fit: none;
	object-fit: none;
	border-radius: 3px;
}

.project-slider .swiper-slide:hover .project-block_one .content {
	z-index: 11;
}

.project-slider .swiper-slide:hover .project-block_one.style-2 .image {
	margin-right: 175px;
}

/*** 

====================================================================
	project Two
====================================================================

***/

.project-two{
	position:relative;
	padding: 100px 0px 110px;
}

.project-two .project-block_three {
	position: relative;
	margin-bottom: 30px;
}

.project-two .project-block_three .inner {
	position: relative;
	background-color: var(--color-two);
}

.project-two .project-block_three .inner .pattern {
	position: absolute;
	left: 0;
	top: 0;
	right: 0px;
	bottom: 0px;
	top: 100px;
	background-position: left bottom;
	background-repeat: no-repeat;
}

.project-two .project-block_three .inner .image {
	position: absolute;
	left: 0;
	top: 0;
	right: 0px;
	bottom: 0px;
	width: 50%;
	left: auto;
	background-size: cover;
}

@media (max-width: 991.98px) {
	.project-two .project-block_three .inner .image {
		position: relative;
		width: 100%;
		height: 450px;
		background-size: cover;
	}
}

.project-two .project-block_three .content {
	position: relative;
	width: 50%;
	padding: 75px 30px 70px 70px;
}

@media (max-width: 1199.98px) {
	.project-two .project-block_three .content {
		padding: 40px 30px 40px 40px;
	}
}

@media (max-width: 991.98px) {
	.project-two .project-block_three .content {
		width: 100%;
		padding: 30px 30px 30px 30px;
	}
}

.project-two .project-block_three .number {
	font-size: 18px;
	line-height: 1em;
	margin-bottom: 180px;
	color: var(--white-color);
}
.project-two .project-block_three .number sub {
	opacity: 0.5;
	font-size: 14px;
}

@media (max-width: 575.98px) {
	.project-two .project-block_three .number {
		margin-bottom: 50px;
	}
}

.project-two .project-block_three .icon {
	font-size: 66px;
	line-height: 1em;
	margin-bottom: 20px;
	color: var(--white-color);
	font-family: "flaticon-agencyo";
}

.project-two .project-block_three .sub-title{
	font-size: 16px;
	font-weight: 500;
	margin-bottom: 0px;
	color: var(--white-color);
	text-transform: capitalize;
}

.project-two .project-block_three .title {
	font-size: 30px;
	margin-top: 15px;
	font-weight: 500;
	margin-bottom: 20px;
	color: var(--white-color);
	text-transform: capitalize;
}

.project-two .project-block_three .title a {
	color: var(--white-color);
}

.project-two .project-block_three .title a:hover {
	color: var(--main-color);
}

.project-two .project-block_three .text {
	font-size: 16px;
	line-height: 28px;
	font-weight: 400;
	max-width: 345px;
	margin-bottom: 25px;
	color: var(--white-color);
}

@media (max-width: 767.98px) {
	.project-two .project-block_three .text {
		max-width: 100%;
	}
}

/*** 

====================================================================
	project Three
====================================================================

***/

.project-three{
	position:relative;
	padding: 110px 0px 110px;
}

.project-block_two {
	position: relative;
	margin-bottom: 25px;
}

.project-block_two .inner {
	position: relative;
	overflow: hidden;
	border-radius: 20px;
}

.project-block_two .inner:hover .image-box img {
	transform: scale(1.05, 1.05) rotate(1deg);
}

.project-block_two .inner .image-box {
	position: relative;
}

.project-block_two .inner .image-box img {
	position: relative;
	width: 100%;
	display: block;
	transition: all 500ms ease;
}

.project-block_two .inner .image-box:before {
	opacity: 0.5;
	z-index: 1;
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	right: 0px;
	bottom: 0px;
	background-color: var(--color-two);
}

.project-block_two .inner .content-outer {
	position: absolute;
	left: 20px;
	z-index: 10;
	right: 20px;
	bottom: 20px;
	display: flex;
	gap: 20px;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	border-radius: 20px;
	padding: 25px 25px;
	background-color: var(--white-color);
}

.project-block_two .inner .content-outer .content .sub-title{
	position:relative;
	font-size: 16px;
	margin-bottom: 10px;
	color: var(--color-two);
}

.project-block_two .inner .content-outer .content .title{
	position:relative;
	font-weight: 500;
}

.project-block_two .inner .content-outer .content .title a {
	color: var(--color-two);
}

.project-block_two .inner .content-outer .content .title a:hover {
	color: var(--main-color);
}

.project-block_two .inner .content-outer .content .text {
	font-size: 18px;
	margin-top: 10px;
	color: var(--color-two);
}

.project-block_two .inner .content-outer .arrow {
	position: relative;
	width: 60px;
	height: 60px;
	line-height: 60px;
	font-size: 28px;
	text-align: center;
	border-radius: 12px;
	color: var(--white-color);
	background-color: var(--main-color);
	font-family: "flaticon_qonstruct";
}

.project-block_two .inner .content-outer .arrow:hover {
	color: var(--white-color);
	background-color: var(--color-two);
}

/***

====================================================================
	Project Detail
====================================================================

***/

.project-detail{
	position:relative;
	padding:110px 0px 110px;
	background-position:right bottom;
	background-repeat:no-repeat;
}

.project-detail:before{
	position:absolute;
	content:'';
	left:0px;
	top:0px;
	right:0px;
	height:50%;
	z-index:-1;
	background-image: linear-gradient(to bottom, #f5f5f5, #f7f7f7, #fafafa, #fcfcfc, #ffffff);
}

.project-detail_location{
	position:relative;
	font-size:16px;
	display:flex;
	gap:10px;
	font-weight:500;
	color:var(--color-two);
}

.project-detail_location i{
	position:relative;
	font-family: "flaticon_qonstruct";
}

.project-detail_heading{
	position:relative;
	font-weight:700;
	margin-top:15px;
	margin-bottom:35px;
	color:var(--color-two);
}

.project-detail_image{
	position:relative;
	display:block;
	overflow:hidden;
	border-radius:25px;
}

.project-detail_image img{
	position:relative;
	width:100%;
	display:block;
}

.project-detail_list{
	position:relative;
	margin-top:60px;
	margin-bottom:20px;
}

.project-detail_list li{
	position:relative;
	padding-left:80px;
	color:#1E1E1E;
	min-height:62px;
	font-size:16px;
	margin-right:35px;
	margin-bottom:25px;
	display:inline-block;
}

.project-detail_list li:last-child{
	margin-right:0px;
}

.project-detail_list li .icon{
	position:absolute;
	left:0px;
	top:0px;
	width:62px;
	height:62px;
	font-size: 32px;
	line-height:60px;
	text-align:center;
	border-radius:50px;
	color: var(--main-color);
	border:1px solid var(--main-color);
	font-family: "flaticon_qonstruct";
}

.project-detail_list li strong{
	position:relative;
	display:block;
	font-weight:600;
	margin-top:5px;
	color:var(--black-color);
}

.project-detail h3{
	position:relative;
	margin-bottom:20px;
	text-transform:capitalize;
}

.project-detail p{
	font-size: 18px;
	line-height: 32px;
	margin-bottom:15px;
}

.project-detail_list-two{
	position:relative;
}

.project-detail_list-two li{
	position:relative;
	font-size:18px;
	line-height:32px;
	margin-bottom:15px;
	color: var(--color-three);
}

.project-detail_list-two li span{
	position:relative;
	font-weight:700;
	color:var(--color-two);
}

.project-detail .middle-box{
	position:relative;
	margin-top:35px;
	margin-bottom:40px;
}

.more-projects{
	position:relative;
	margin-top:40px;
	border-radius:50px;
	border:1px solid rgba(0,0,0,0.20);
}

.more-projects:before{
	position:absolute;
	content:'';
	left:50%;
	top:0px;
	width:1px;
	opacity:0.20;
	bottom:0px;
	background-color:var(--black-color);
}

.more-projects a{
	position:relative;
	display:block;
	font-weight:600;
	padding:22px 30px;
	text-transform:uppercase;
	color:var(--black-color);
}

.more-projects i{
	position:relative;
	color:var(--main-color);
}

.more-projects a:hover{
	color:var(--main-color);
}
/* Qonstruct Construction Business HTML-5 Template */

/*** 

====================================================================
	Pricing One
====================================================================

***/

.pricing-one{
	position:relative;
	padding-bottom: 80px;
	background-position: right bottom;
	background-repeat: no-repeat;
}

.pricing-one.style-two{
	padding-top: 110px;
}

/* Pricing Tabs */

.pricing-tabs {
	position: relative;
}

.pricing-tabs .title-column {
	position: relative;
	text-align: center;
	margin-bottom: 40px;
}

.pricing-tabs .tab-buttons {
	position: relative;
	text-align: center;
	display: inline-block;
}

.pricing-tabs .tab-buttons .tab-btn {
	position: relative;
	font-size: 18px;
	font-weight: 500;
	float: left;
	cursor: pointer;
	margin: 0 20px;
	line-height: 47px;
	color: var(--black-color);
	transition: all 300ms ease;
}

.pricing-tabs .tab-buttons .tab-btn:hover,
.pricing-tabs .tab-buttons .tab-btn.active-btn {
	color: var(--main-color);
}

.pricing-tabs .tab-buttons .boll {
	position: relative;
	width: 92px;
	height: 45px;
	padding: 8px 8px;
	border-radius: 50px;
	text-align: left;
	box-shadow: 0 10px 15px rgba(0, 0, 0, 0.15);
	background-color: var(--main-color);
}

.pricing-tabs .tab-buttons .boll .round {
	position: relative;
	width: 30px;
	height: 29px;
	border-radius: 50px;
	display: inline-block;
	background-color: #ffffff;
	transition: all 300ms ease;
}

.pricing-tabs .tab-buttons .boll .round.boll-right {
	transform: translateX(45px);
}

.pricing-tabs .tabs-content .tab {
	position: relative;
	display: none;
	transition: all 600ms ease;
	transform: translateY(60px);
}

.pricing-tabs .tabs-content .tab.active-tab {
	display: block;
	transform: translateY(0px);
}

.pricing-tabs .tabs-content .tab .content .guarantee {
	position: relative;
	text-align: center;
	color: #373a5b;
	font-size: 14px;
	font-weight: 500;
}

.pricing-tabs .tabs-content .tab .content .guarantee .circle {
	position: relative;
	width: 18px;
	height: 18px;
	top: 3px;
	margin-right: 10px;
	display: inline-block;
	border-radius: 50px;
	border: 2px solid #2bb852;
}

.pricing-tabs .tabs-content .tab .content .guarantee .circle:before {
	position: absolute;
	content: '';
	left: 5px;
	top: 5px;
	width: 4px;
	height: 4px;
	border-radius: 50px;
	background-color: #2bb852;
}

.price-block_one {
  position: relative;
  margin-bottom: 30px;
}
.price-block_one .inner {
  position: relative;
  padding: 40px 35px;
  border-radius: 12px;
  background-color: #f5f5f5;
}

.price-block_one .title {
  position: relative;
  font-size: 18px;
  color: var(--color-two);
}
.price-block_one .price {
  position: relative;
  font-size: 48px;
  line-height: 1em;
  font-weight: 500;
  margin-top: 15px;
  margin-bottom: 55px;
  color: var(--color-two);
}
.price-block_one .price sub {
  opacity: 0.9;
  font-size: 18px;
  line-height: 1em;
  font-weight: 300;
}
.price-block_one .btn-box {
  position: relative;
}

.price-block_one .price-one_list {
  position: relative;
  padding-left: 35px;
  border-left: 1px solid rgba(0, 0, 0, 0.06);
}

.price-block_one .price-one_list li {
  position: relative;
  margin-bottom: 15px;
  font-size: 18px;
  padding-left: 30px;
  color: var(--color-two);
}
.price-block_one .price-one_list li:before {
  position: absolute;
  content: "\f12c";
  left: 0px;
  top: 0px;
  font-size: 16px;
  display: inline-block;
  color: var(--color-two);
  font-family: "flaticon_qonstruct";
}
.price-block_one .price-one_list li:last-child {
  margin-bottom: 0px;
}
/* Qonstruct Construction Business HTML-5 Template */

/*** 

====================================================================
	Team One
====================================================================

***/

.team-one{
	position: relative;
	overflow:hidden;
	padding: 0px 0px 80px;
	background-size: cover;
}

.team-one.style-two{
	padding-top: 110px;
}

.team-one .sec-title{
	max-width: 750px;
	margin:0 auto;
	margin-bottom: 40px;
}

.team-block_one{
	position:relative;
	margin-bottom: 30px;
}

.team-block_one-inner{
	position:relative;
	overflow: hidden;
}

.team-block_one-image{
	position:relative;
}

.team-block_one-image img{
	position:relative;
	width:100%;
	display: block;
}

.team-block_one-inner:hover .team-block_one-image img{
	transform: scale(1.04,1.04) rotate(2deg);
}

.team-block_one-content{
	position:relative;
	text-align:center;
	padding: 30px 30px;
	background-color:#f5f5f5;
}

.team-block_one-title{
	position:relative;
}

.team-block_one-title a{
	position:relative;
	color: var(--color-two);
}

.team-block_one-title a:hover{
	color: var(--main-color);
}

.team-block_one-designation{
	position:relative;
	margin-top: 4px;
	color: var(--color-two);
}

.team-block_one-inner:hover .team-block_one-overlay{
	left:0%;
	opacity:1;
	width:75%;
}

.team-block_one-overlay{
	position:absolute;
	left:-100%;
	top:0px;
	opacity:0;
	bottom:0px;
	width: 75%;
	border-right:8px solid var(--main-color);
}

.team-block_one-overlay:before{
	position:absolute;
	content:'';
	left:0px;
	top:0px;
	bottom:0px;
	right:0px;
	opacity: 0.80;
	background-color: var(--color-two);
}

.team-block_one-overlay .list{
	position:absolute;
	left:30px;
	bottom:30px;
}

.team-block_one-overlay .list li{
	position:relative;
	font-size: 18px;
	margin-bottom: 10px;
}

.team-block_one-overlay .list li span{
	position:relative;
	margin-right: 10px;
	color: var(--main-color);
}

.team-block_one-overlay .list li a{
	position:relative;
	color: var(--white-color);
}

.team-block_one-overlay .list li:last-child{
	margin-bottom: 0px;
}

.team-block_one-overlay .list li a:hover{
	color: var(--main-color);
}

/* Slider Socials Box */

.team-block_one .social-box{
	position: absolute;
	right: 0px;
	top: 50%;
	z-index: 1;
	text-align: center;
	padding: 35px 20px;
	transform: translateY(-50%);
}

.team-block_one .social-box:before{
	position: absolute;
	content:'';
	left:0px;
	right: 0px;
	top: 0px;
	bottom:0px;
	opacity:0.90;
	background-color: var(--color-two);
	clip-path: polygon(0 12%, 100% 0, 100% 100%, 0 88%);
}

.team-block_one .social-box a{
	position: relative;
	font-size: 18px;
	display: block;
	font-weight: 500;
	margin: 20px 0px;
	text-transform: capitalize;
	color: var(--white-color);
}

.team-block_one .social-box a:hover{
	color: var(--main-color);
}

/*** 

====================================================================
	Team Two
====================================================================

***/

.team-two{
	position:relative;
	padding-bottom: 110px;
}

.team-two .swiper-pagination-progressbar{
	position: relative;
	bottom: 15px;
    top: auto !important;
	margin: 0 auto;
    width: 200px !important;
    left: auto !important;
	background-color: #dddddd;
}

.team-two .swiper-pagination-progressbar .swiper-pagination-progressbar-fill{
	background-color: var(--main-color);
}

.team-two .team-two-arrow{
	position:relative;
	width: 350px;
	z-index: 1;
	margin: 0 auto;
	margin-top: 20px;
	text-align: left;
}

.team-two .team-two-arrow .four-item_carousel-prev{
	position:relative;
	font-size: 16px;
	letter-spacing: 1px;
	font-weight: 600;
	display: inline-block;
	text-transform: uppercase;
	color: var(--color-two);
}

.team-two .team-two-arrow .four-item_carousel-next{
	position:absolute;
	right:0px;
	bottom: 0px;
	font-size: 16px;
	font-weight: 600;
	letter-spacing: 1px;
	display: inline-block;
	text-transform: uppercase;
	color: var(--color-two);
}

.team-two .team-two-arrow .four-item_carousel-prev:hover,
.team-two .team-two-arrow .four-item_carousel-next:hover{
	color: var(--main-color);
}

/* Team Block Two */

.team-block_two{
	position:relative;
	margin-bottom: 30px;
}

.team-block_two-inner{
	position:relative;
	overflow: hidden;
	text-align: center;
}

.team-block_two-image{
	position:relative;
}

.team-block_two-image img{
	position:relative;
	width:100%;
	display: block;
}

.team-block_two-inner:hover .team-block_two-image img{
	transform: scale(1.04,1.04) rotate(2deg);
}

.team-block_two-inner:hover .team-block_two-overlay{
	bottom:0px;
	opacity:1;
}

.team-block_two-overlay{
	position:absolute;
	left:0px;
	bottom:-160px;
	right: 0px;
	z-index:10;
	opacity:0;
	text-align:center;
	padding: 30px 30px;
}

.team-block_two-title{
	position:relative;
}

.team-block_two-title a{
	position:relative;
	color: var(--white-color);
}

.team-block_two-title a:hover{
	color: var(--main-color);
}

.team-block_two-designation{
	position:relative;
	margin-top: 4px;
	font-size: 16px;
	color: var(--white-color);
}

.team-block_two-image:before{
	position: absolute;
    left: 0;
    top: 100%;
    right: 0px;
    bottom: 0px;
    content: "";
    z-index: 1;
	-webkit-transition:all 500ms ease;
	-moz-transition:all 500ms ease;
	-ms-transition:all 500ms ease;
	-o-transition:all 500ms ease;
	transition:all 500ms ease;
    background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0), var(--color-two));
}

.team-block_two-inner:hover .team-block_two-image:before{
	top: 30%;
}

/* Socials Box */

.team-block_two .social-box{
	position: relative;
	margin-top: 15px;
}

.team-block_two .social-box a{
	position: relative;
	font-size: 18px;
	font-weight: 500;
	margin: 0px 10px;
	display: inline-block;
	text-transform: capitalize;
	color: var(--white-color);
}

.team-block_two .social-box a:hover{
	color: var(--main-color);
}

/*** 

====================================================================
	Team Detail
====================================================================

***/

.team-detail{
	position:relative;
	padding: 110px 0px 90px;
}

.team-image-box{
	position:relative;
	text-align: center;
	background-color: #f5f5f5;
}

.team-image-box .image-box{
	position:relative;
}

.team-image-box .image-box img{
	position:relative;
	width:100%;
	display: block;
}

.team-image-box .content{
	position:relative;
	padding: 25px 10px 0px;
}

.team-image-box .title{
	position:relative;
	color: var(--color-two);
}

.team-image-box .designation{
	position:relative;
	margin:10px 0px;
	font-size: 18px;
	margin-bottom: 20px;
	color: var(--color-two);
}

.team-image-box .social-box{
	position:relative;
}

.team-image-box .social-box a{
	position:relative;
	width: 48px;
	height: 48px;
	line-height: 48px;
	text-align: center;
	font-size: 18px;
	display: inline-block;
	color: var(--white-color);
	background-color: var(--color-two);
}

.team-image-box .social-box a:hover{
	color: var(--white-color);
	background-color: var(--main-color);
}

.team-detail .content-box{
	position:relative;
}

.team-detail .content-box .title{
	position:relative;
}

.team-detail .content-box .title span{
	position:relative;
	font-size: 16px;
	top: -25px;
	font-weight:500;
	padding: 10px 25px;
	border-radius: 50px;
	color: var(--white-color);
	background-color: var(--color-two);
}

.team-detail .content-box h3{
	position:relative;
	margin-bottom: 20px;
}

.education-block{
	position:relative;
	padding-left: 35px;
}

.education-block li{
	position:relative;
	font-size: 18px;
	line-height: 28px;
	margin-bottom: 20px;
	color: var(--color-three);
}

.education-block strong{
	position:relative;
	display: block;
	font-size: 22px;
	line-height: 32px;
	margin-bottom: 12px;
	color: var(--color-two);
}

.education-block:before{
	position:absolute;
	left:0px;
	top:5px;
	content: "\f12c";
	font-size: 22px;
	line-height:1em;
	font-family: "flaticon_qonstruct";
}

.team-detail_list{
	position:relative;
	margin-bottom: 20px;
}

.team-detail_list li{
	position:relative;
	font-size: 18px;
	padding-left: 30px;
	margin-bottom: 15px;
	color: var(--color-three);
}

.team-detail_list li:before{
	position:absolute;
	left:0px;
	top:1px;
	content: "\f12c";
	font-size: 18px;
	line-height:1em;
	color: var(--main-color);
	font-family: "flaticon_qonstruct";
}

.team-detail_list li:last-child{
	margin-bottom: 0px;
}

.team-detail_form{
	position:relative;
	padding-bottom: 110px;
}

.team-detail_form .title-box{
	position:relative;
	margin-bottom: 30px;
}

.team-detail_form .title-box .text{
	position:relative;
	margin-top: 15px;
	max-width: 550px;
}

.team-detail_form .inner-container{
	position:relative;
	padding: 60px 60px;
	background-color: #f5f5f5;
}
/* Qonstruct Construction Business HTML-5 Template */

/*** 

====================================================================
	Testimonial One
====================================================================

***/

.testimonial-one{
	position:relative;
	overflow: hidden;
	padding: 31px 0px 30px;
	background-color: rgb(0 0 0 / 5%);
}

.testimonial-one .swiper-pagination-progressbar{
	position: relative;
	bottom: 15px;
    top: auto !important;
	margin: 0 auto;
    width: 200px !important;
    left: auto !important;
	background-color: #dddddd;
}

.testimonial-one .swiper-pagination-progressbar .swiper-pagination-progressbar-fill{
	background-color: var(--main-color);
}

.testimonial-one .testimonial-one-arrow{
	position:relative;
	width: 350px;
	z-index: 1;
	margin: 0 auto;
	margin-top: 20px;
	text-align: left;
}

.testimonial-one .testimonial-one-arrow .testimonial-swiper-prev{
	position:relative;
	font-size: 16px;
	letter-spacing: 1px;
	font-weight: 500;
	display: inline-block;
	text-transform: uppercase;
	color: rgb(0 0 0 / 37%);
}

.testimonial-one .testimonial-one-arrow .testimonial-swiper-next{
	position:absolute;
	right:0px;
	bottom: 0px;
	font-size: 16px;
	font-weight: 500;
	letter-spacing: 1px;
	display: inline-block;
	text-transform: uppercase;
	color: rgb(0 0 0 / 40%);
}

.testimonial-one .testimonial-one-arrow .testimonial-swiper-prev:hover,
.testimonial-one .testimonial-one-arrow .testimonial-swiper-next:hover{
	color: var(--main-color);
}

.testimonial-one .testimonial-swiper {
    max-width: 100%;
    margin:0 auto;
    overflow: hidden;
}

.testimonial-one .sec-title{
	max-width: 750px;
	margin:0 auto;
	margin-bottom: 40px;
}

.testimonial-block_one {
	position: relative;
	margin-bottom: 5px;
}

.testimonial-block_one-inner {
	position: relative;
	padding: 55px 30px 20px;
	background: white;
}

.testimonial-block_one-inner:before {
	position: absolute;
	/* content: ""; */
	left: 80px;
	top: 0px;
	right: 0px;
	bottom: 0px;
	background-color: var(--white-color);
}

.testimonial-block_one-content{
	position: relative;
	padding-left: 0px;
	padding-right: 0px;
}

.testimonial-block_one-author{
	position: absolute;
	left: 0px;
	top: 20px;
}

.testimonial-block_one-author img{
	position: relative;
	width: 150px;
	height: 150px;
	display: inline-block;
}

.testimonial-block_one-author .quote{
	position: absolute;
	left: 0px;
	top: -75px;
	width: 60px;
	height: 60px;
	font-size: 28px;
	line-height: 60px;
	display: inline-block;
	transform: translateX(-50%);
	color: rgb(255 0 0);
	background-color: rgb(248 29 14 / 0%);
}

.testimonial-block_one-text{
	position: relative;
	font-size: 17px;
	line-height: 26px;
	margin-bottom: 18px;
	color: var(--color-two);
}

.testimonial-block_one-designation{
	position: relative;
	font-size: 18px;
	font-weight: 600;
	color: var(--color-two);
}

.testimonial-block_one-designation span{
	display: block;
	font-weight: 400;
	font-size: 16px;
	margin-top: 5px;
	color: var(--color-three);
}

/*** 

====================================================================
	Testimonial One
====================================================================

***/

.testimonial-two{
	position: relative;
	overflow:hidden;
	padding: 110px 0px 120px;
	background-color:var(--white-color);
}

.testimonial-two_circle{
	position:absolute;
	right:-250px;
	top:80px;
	width:536px;
	height:536px;
	border-radius:550px;
	border:80px solid #f5f5f5;
}

.testimonial-two .single-item_carousel-pagination{
	position: absolute;
	top: 5%;
	z-index: 999;
	right: 0px !important;
	left: auto !important;
	width: 20px !important;
}

.testimonial-two .single-item_carousel-pagination .swiper-pagination-bullet{
	position: relative;
	opacity: 1;
	width: 10px;
	height: 10px;
	display: block;
	background: none;
	margin: 30px 0px !important;
	transition:all 300ms ease;
	-moz-transition:all 300ms ease;
	-webkit-transition:all 300ms ease;
	-ms-transition:all 300ms ease;
	-o-transition:all 300ms ease;
	border-radius: 50px;
	display: block;
	background-color:#d9d9d9;
}

.testimonial-two .single-item_carousel-pagination .swiper-pagination-bullet::before{
	position: absolute;
	content: '';
	left: -8px;
	top: -8px;
	right: -8px;
	bottom: -8px;
	opacity:0;
	border-radius:50px;
	border:1px solid var(--white-color);
}

.testimonial-two .single-item_carousel-pagination .swiper-pagination-bullet:hover,
.testimonial-two .single-item_carousel-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active{
	opacity: 1;
	background-color:var(--black-color);
}

.testimonial-two .single-item_carousel-pagination .swiper-pagination-bullet:hover::before,
.testimonial-two .single-item_carousel-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active::before{
	opacity: 1;
	border-color:var(--black-color);
}

.testimonial-two_options{
	position:relative;
	font-size:24px;
	font-weight:600;
	color:var(--black-color);
}

.testimonial-two_options .rating{
	position:relative;
	font-size:24px;
	margin-top:15px;
	color:var(--main-color);
}

.testimonial-two_authors{
	position:relative;
	margin-top:10px;
	margin-left:60px;
}

.testimonial-two_authors li{
	position: relative;
    width: 74px;
    height: 74px;
    margin-left: -30px;
    border-radius: 50px;
    display: inline-block;
    border: 3px solid var(--white-color);
}

.testimonial-two_trusted{
	position:relative;
	font-size:24px;
	font-weight:700;
	line-height:36px;
	margin-left:40px;
	color: var(--color-two);
}

.testimonial-two_trusted span{
	position:relative;
	display:block;
	font-size:22px;
	font-weight:400;
	color: var(--black-color);
}

.testimonial-two_carousel{
	position:relative;
	margin-top:50px;
}

.testimonial-block_two{
	position:relative;
}

.testimonial-block_two-inner{
	position:relative;
}

.testimonial-block_two-text{
	position:relative;
	font-size:40px;
	font-weight:700;
	line-height:55px;
	max-width:990px;
	color: var(--color-two);
}

.testimonial-block_two-designation{
	position:relative;
	font-size:20px;
	font-weight:700;
	line-height:30px;
	margin-top:30px;
	color: var(--color-two);
}

.testimonial-block_two-designation span{
	position:relative;
	display:block;
	font-size:16px;
	color:#666666;
	font-weight:400;
}

/*** 

====================================================================
	Testimonial Three
====================================================================

***/

.testimonial-three{
	position:relative;
	overflow: hidden;
	padding: 110px 0px 110px;
	background-color: var(--color-two);
	background-position: center bottom;
	background-repeat: no-repeat;
}

.testimonial-three .swiper-pagination-progressbar{
	position: relative;
	bottom: 15px;
    top: auto !important;
	margin: 0 auto;
    width: 200px !important;
    left: auto !important;
	background-color: var(--color-three);
}

.testimonial-three .swiper-pagination-progressbar .swiper-pagination-progressbar-fill{
	background-color: var(--main-color);
}

.testimonial-three .testimonial-three-arrow{
	position:relative;
	width: 350px;
	z-index: 1;
	margin: 0 auto;
	margin-top: 20px;
	text-align: left;
}

.testimonial-three .testimonial-three-arrow .three-item_carousel-prev{
	position:relative;
	font-size: 16px;
	letter-spacing: 1px;
	font-weight: 600;
	display: inline-block;
	text-transform: uppercase;
	color: var(--white-color);
}

.testimonial-three .testimonial-three-arrow .three-item_carousel-next{
	position:absolute;
	right:0px;
	bottom: 0px;
	font-size: 16px;
	font-weight: 600;
	letter-spacing: 1px;
	display: inline-block;
	text-transform: uppercase;
	color: var(--white-color);
}

.testimonial-three .testimonial-three-arrow .three-item_carousel-prev:hover,
.testimonial-three .testimonial-three-arrow .three-item_carousel-next:hover{
	color: var(--main-color);
}

.testimonial-block_three {
	position: relative;
	margin-bottom: 30px;
}

.testimonial-block_three .inner-box {
	position: relative;
	padding: 35px 30px;
	background-color: var(--white-color);
	background-position: left bottom;
	background-repeat: repeat-x;
}

.testimonial-block_three .rating {
	position: relative;
	font-size: 16px;
	margin-top: 25px;
	color: var(--main-color);
}

.testimonial-block_three .icon-quote {
	position: relative;
	width: 75px;
	height: 75px;
	font-size: 34px;
	line-height: 75px;
	text-align: center;
	border-radius: 5px;
	color: var(--white-color);
	background-color: var(--color-two);
	font-family: "flaticon_qonstruct";
}

.testimonial-block_three .text {
	position: relative;
	font-size: 16px;
	margin: 15px 0px 20px;
	color: var(--text-color);
}

.testimonial-block_three .author-box {
	position: relative;
	padding-left: 80px;
}

.testimonial-block_three .author-box .author-image {
	position: absolute;
	left: 0px;
	top: 0px;
	width: 64px;
	height: 64px;
	overflow: hidden;
	border-radius: 50px;
	border:3px solid var(--main-color);
}

.testimonial-block_three .author-box .name {
	margin-bottom: 5px;
}

.testimonial-block_three .author-box .designation {
	position: relative;
	color: var(--color-two);
}
/* Qonstruct Construction Business HTML-5 Template */

/*** 

====================================================================
	News One
====================================================================

***/

.blog-one{
	position:relative;
	overflow: hidden;
	padding:110px 0px 90px;
}

.blog-one .sec-title .d-flex{
	gap: 20px;
}

.blog-one .swiper-pagination-progressbar{
	position: relative;
	bottom: 15px;
    top: auto !important;
	margin: 0 auto;
    width: 200px !important;
    left: auto !important;
	background-color: #dddddd;
}

.blog-one .swiper-pagination-progressbar .swiper-pagination-progressbar-fill{
	background-color: var(--main-color);
}

.blog-one .blog-one-arrow{
	position:relative;
	width: 350px;
	z-index: 1;
	margin: 0 auto;
	margin-top: 20px;
	text-align: left;
}

.blog-one .blog-one-arrow .three-item_carousel-prev{
	position:relative;
	font-size: 16px;
	letter-spacing: 1px;
	font-weight: 600;
	display: inline-block;
	text-transform: uppercase;
	color: var(--color-three);
}

.blog-one .blog-one-arrow .three-item_carousel-next{
	position:absolute;
	right:0px;
	bottom: 0px;
	font-size: 16px;
	font-weight: 600;
	letter-spacing: 1px;
	display: inline-block;
	text-transform: uppercase;
	color: var(--color-three);
}

.blog-one .blog-one-arrow .three-item_carousel-prev:hover,
.blog-one .blog-one-arrow .three-item_carousel-next:hover{
	color: var(--main-color);
}

.blog-one .sec-title .sec-title_heading{
	position:relative;
	max-width: 600px;
}

.blog-one .sec-title .blog-more{
	position:relative;
	font-size: 18px;
	font-weight: 600;
	color: var(--color-two);
	border-bottom: 1px solid var(--color-two);
}

.blog-one .sec-title .blog-more:hover{
	color: var(--main-color);
}

/* News Block One */

.news-block_one {
	position: relative;
	margin-bottom: 30px;
}

.news-block_one .inner {
	position: relative;
}

.news-block_one .upper-box {
	position: relative;
	display: flex;
	gap: 20px;
	margin-bottom: 25px;
	align-items: center;
	flex-wrap: wrap;
	justify-content: space-between;
}

.news-block_one .upper-box .info {
	position: relative;
	gap: 15px;
	color: #4e595d;
	font-size: 16px;
	flex-wrap: wrap;
	align-items: center;
	display: inline-flex;
}

.news-block_one .upper-box .info .author-image{
	position:relative;
	width: 54px;
	height: 54px;
	overflow: hidden;
	border-radius:150px;
}

.news-block_one .upper-box .info strong {
	display: block;
	font-size: 20px;
	font-weight: 500;
	margin-bottom: 5px;
	color: var(--color-two);
}

.news-block_one .upper-box .date {
	position: relative;
	font-size: 16px;
	color: var(--color-two);
}

.news-block_one .upper-box .date span {
	font-weight: normal;
	margin-right: 5px;
}

.news-block_one .meta-options {
	position: relative;
	display: flex;
	gap: 30px;
	flex-wrap: wrap;
	margin-bottom: 20px;
}

.news-block_one .meta-options li {
	position: relative;
	display: flex;
	gap: 15px;
	font-size: 16px;
	color: var(--color-two);
	text-transform: uppercase;
}

.news-block_one .image {
	position: relative;
	overflow: hidden;
	background-color: var(--color-two);
}

.news-block_one .image img {
	opacity: 0.5;
	width: 100%;
	display: block;
	transition: all 500ms ease;
}

.news-block_one:hover .image img {
	transform: scale(1.06, 1.06);
}

.news-block_one .content {
	position: relative;
	margin-top: 30px;
}

.news-block_one .content .title {
	font-weight: 500;
}

.news-block_one .content .title a {
	color: var(--color-two);
}

.news-block_one .content .title a:hover {
	color: var(--main-color);
}

.news-block_one .content .text {
	color: var(--color-two);
	margin-top: 20px;
	font-size: 18px;
	line-height: 30px;
	margin-bottom: 30px;
}

.news-block_one .content .read-more {
	position: relative;
	font-size: 18px;
	font-weight: 500;
	padding-top: 25px;
	display: block;
	color: var(--color-two);
	border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.news-block_one .content .read-more:hover::before {
	width: 100%;
}

.news-block_one .content .read-more:hover span {
	color: var(--white-color);
	background-color: var(--main-color);
}

.news-block_one .content .read-more::before {
	position: absolute;
	content: "";
	left: 0px;
	top: -1px;
	width: 120px;
	height: 1px;
	background-color: var(--color-two);
	transition: all 500ms ease;
}

.news-block_one .content .read-more span {
	position: relative;
	width: 40px;
	height: 40px;
	line-height: 40px;
	border-radius: 50px;
	margin-left: 10px;
	text-align: center;
	display: inline-block;
	background-color: #e8e9ea;
	transition: all 300ms ease;
}

/*** 

====================================================================
	News Two
====================================================================

***/

.blog-two{
	position:relative;
	padding:110px 0px 200px;
	background-color: #f5f5f5;
	background-position: right bottom;
	background-repeat: no-repeat;
}

.blog-two .sec-title_heading{
	font-size: 38px;
	line-height: 52px;
}

.news-block_two{
	position: relative;
	z-index: 2;
	margin-bottom: 30px;
}

.news-block_two-inner{
	position:relative;
}

.news-block_two-image_outer{
	position:relative;
}

.news-block_two.style-two .news-block_two-image{
	border-radius: 10px;
}

.news-block_two-image{
	position:relative;
	overflow:hidden;
	border-radius:30px;
}

.news-block_two-image img:first-child{
	position:absolute;
	left:0px;
	top:0px;
	right:0px;
	bottom:0px;
	z-index:1;
	-webkit-transform: translatex(50%) scalex(2);
    transform: translatex(50%) scalex(2);
    opacity: 0;
    -webkit-filter: blur(10px);
    filter: blur(10px);
}

.news-block_two-inner:hover .news-block_two-image img:first-child{
	-webkit-transform: translatex(0) scalex(1);
	transform: translatex(0) scalex(1);
	opacity: 1;
	-webkit-filter: blur(0);
	filter: blur(0);
}

.news-block_two-inner:hover .news-block_two-image img:nth-child(2){
	-webkit-transform: translatex(-50%) scalex(2);
	transform: translatex(-50%) scalex(2);
	opacity: 0;
	-webkit-filter: blur(10px);
	filter: blur(10px);
}

.news-block_two-image img{
	position:relative;
	width:100%;
	display:block;
	-webkit-transition:all 500ms ease;
	-moz-transition:all 500ms ease;
	-ms-transition:all 500ms ease;
	-o-transition:all 500ms ease;
	transition:all 500ms ease;
}

.news-block_two-content{
	position: relative;
	padding-top:30px;
}

.news-block_two-date{
	position:absolute;
	right:10px;
	bottom:10px;
	z-index:10;
	font-size: 16px;
	font-weight: 600;
	padding: 9px 35px;
	border-radius:50px;
	letter-spacing: 1px;
	color: var(--white-color);
	text-transform: uppercase;
	background-color: var(--main-color);
}

.news-block_two-meta{
	position: relative;
}

.news-block_two-meta li{
	position: relative;
	font-size:18px;
	padding-left: 30px;
	margin-right: 15px;
	display: inline-block;
	color: var(--black-color);
}

.news-block_two-meta li .icon{
	position: absolute;
	left: 0px;
	top: 1px;
	line-height: 1em;
	color: var(--main-color);
}

.news-block_two-meta li:last-child{
	margin-right: 0px;
	padding-right: 0px;
}

.news-block_two-title{
	position: relative;
	margin-top:15px;
	text-transform: capitalize;
}

.news-block_two-title a{
	position: relative;
	color: var(--black-color);
}

.news-block_two-title a:hover{
	color: var(--main-color);
}

.news-block_two-text{
	position: relative;
	color: #666666;
	font-size:18px;
	line-height:28px;
	margin-top:15px;
}

.news-block_two-button{
	position:relative;
	margin-top: 25px;
}

.news-block_two-button:before{
	position:absolute;
	content:'';
	left:25px;
	bottom:0px;
	right:0px;
	transition:all 500ms ease;
	-moz-transition:all 500ms ease;
	-webkit-transition:all 500ms ease;
	-ms-transition:all 500ms ease;
	-o-transition:all 500ms ease;
	border-bottom:2px solid var(--color-two);
}

.news-block_two-button:after{
	position:absolute;
	content:'\f0da';
	right:0px;
	bottom:-10px;
	font-size:20px;
	font-weight:800;
	color:var(--color-two);
	transition:all 500ms ease;
	-moz-transition:all 500ms ease;
	-webkit-transition:all 500ms ease;
	-ms-transition:all 500ms ease;
	-o-transition:all 500ms ease;
	font-family: 'Font Awesome 6 Free';
}

.news-block_two-more{
	position: relative;
	font-weight: 700;
	letter-spacing: 1px;
	padding:17px 35px;
	display: inline-block;
	color: var(--white-color);
	text-transform: uppercase;
	border-radius:50px 50px 0px 50px;
	background-color: var(--color-two);
}

.news-block_two-inner:hover .news-block_two-button:after{
	color: var(--main-color);
}

.news-block_two-inner:hover .news-block_two-button:before{
	border-color: var(--main-color);
}

.news-block_two-inner:hover .news-block_two-more{
	color: var(--white-color);
	background-color: var(--main-color);
}

/*** 

====================================================================
	News Three
====================================================================

***/

.blog-three{
	position:relative;
	padding:110px 0px 180px;
	background-color: #f5f5f5;
}

.blog-three .sec-title_heading{
	font-size: 38px;
	line-height: 48px;
}

.blog-three_quote{
	position:relative;
	margin-top: 30px;
	padding: 45px 30px;
	text-align: center;
	background-position: right bottom;
	background-repeat: no-repeat;
	background-color: var(--main-color);
}

.blog-three_quote .quote{
	position:absolute;
	left:25px;
	bottom: 25px;
	opacity: 0.30;
	line-height:1em;
	font-size: 44px;
	color: var(--white-color);
	font-family: "flaticon_qonstruct";
}

.blog-three_quote .author{
	position:relative;
	font-size: 18px;
	font-weight: 500;
	color: var(--color-two);
}

.blog-three_quote .bold-text{
	position:relative;
	font-weight: 600;
	font-size: 20px;
	line-height: 30px;
	margin-top: 20px;
	color: var(--color-two);
}

.blog-three_quote .more{
	position:relative;
	font-size: 18px;
	font-weight: 600;
	margin-top: 20px;
	display: inline-block;
	color: var(--color-two);
	text-transform:capitalize;
}

/* News Block Three */

.news-block_three{
	position: relative;
	margin-bottom: 30px;
}

.news-block_three-inner{
	position:relative;
	overflow: hidden;
	padding: 35px 30px;
	border-radius: 8px;
	background-color: var(--white-color);
}

.news-block_three-inner:before{
	position:absolute;
	content:'';
	left:0px;
	top:0px;
	right:0px;
	bottom:0px;
	opacity:0;
	transform:scale(1,0.2);
	background-color: var(--color-two);
	-webkit-transition:all 500ms ease;
	-moz-transition:all 500ms ease;
	-ms-transition:all 500ms ease;
	-o-transition:all 500ms ease;
	transition:all 500ms ease;
}

.news-block_three-inner:hover::before{
	opacity:1;
	transform:scale(1,1);
}

.news-block_three-meta{
	position: relative;
}

.news-block_three-meta li{
	position: relative;
	font-size:18px;
	padding-left: 30px;
	margin-right: 15px;
	display: inline-block;
	color: var(--color-two);
}

.news-block_three-meta li .icon{
	position: absolute;
	left: 0px;
	top: 1px;
	line-height: 1em;
	color: var(--main-color);
}

.news-block_three-meta li:last-child{
	margin-right: 0px;
	padding-right: 0px;
}

.news-block_three-inner:hover .news-block_three-title a,
.news-block_three-inner:hover .news-block_three-meta li{
	color: var(--white-color);
}

.news-block_three-title{
	position: relative;
	margin-top:20px;
	text-transform: capitalize;
}

.news-block_three-title a{
	position: relative;
	color: var(--color-two);
}

.news-block_three-title a:hover{
	color: var(--main-color);
}

/* Post Widget */

.post-widget .widget-content{
	position:relative;
}

.post-widget .post{
	position: relative;
	min-height: 155px;
	padding-left: 160px;
	margin-bottom: 32px;
	border-bottom:1px solid rgba(0,0,0,0.10);
}

.post-widget .post:last-child{
	margin-bottom: 0px;
	padding-bottom: 0px;
}

.post-widget .post .thumb{
	position: absolute;
	left: 0;
	top: 0;
	height: 120px;
	width: 141px;
	overflow: hidden;
	border-radius:6px;
}

.post-widget .post .thumb a{
	display: block;
}

.post-widget .post .thumb img{
	display: block;
	width: 100%;
	height: auto;
}

.post-widget .post h5{
	font-weight: 500;
	text-transform: capitalize;
}

.post-widget .post h5 a{
	color:var(--black-color);
	-webkit-transition: all 300ms ease;
	-moz-transition: all 300ms ease;
	-ms-transition: all 300ms ease;
	-o-transition: all 300ms ease;
	transition: all 300ms ease;
}

.post-widget .post h5 a:hover{
	color:var(--main-color);
}

.post-widget .post .post-date{
	position: relative;
	display: block;
	font-weight:400;
	font-size: 14px;
	color:#666666;
	margin-bottom: 10px;
	display: inline-block;
	text-transform:capitalize;
}

/* Tags */

.popular-tags a{
	position: relative;
	padding: 10px 25px;
	font-size: 16px;
	font-weight: 400;
	border-radius: 2px;
	margin-right: 5px;
	margin-bottom: 10px;
	display: inline-block;
	color: var(--black-color);
	text-transform: capitalize;
	border:1px solid rgba(var(--black-color-rgb), 0.20);
}

.popular-tags a:hover{
	color: var(--white-color);
	border-color: var(--main-color);
	background-color: var(--main-color);
}


.blog-detail{
	position: relative;
}

.blog-detail_inner{
	position:relative;
}

.blog-detail_image-outer{
	position:relative;
}

.news-detail_image{
	position:relative;
	overflow:hidden;
	border-radius:30px;
}

.news-detail_image:before{
	position:absolute;
	content:'';
	right:0px;
	bottom:0px;
	width:174px;
	height:66px;
	z-index:9;
	background:url(../images/icons/shape-3.png);
	background-repeat:no-repeat;
}

.news-detail_image img:first-child{
	position:absolute;
	left:0px;
	top:0px;
	right:0px;
	bottom:0px;
	z-index:1;
	-webkit-transform: translatex(50%) scalex(2);
    transform: translatex(50%) scalex(2);
    opacity: 0;
    -webkit-filter: blur(10px);
    filter: blur(10px);
}

.blog-detail_inner:hover .news-detail_image img:first-child{
	-webkit-transform: translatex(0) scalex(1);
	transform: translatex(0) scalex(1);
	opacity: 1;
	-webkit-filter: blur(0);
	filter: blur(0);
}

.blog-detail_inner:hover .news-detail_image img:nth-child(2){
	-webkit-transform: translatex(-50%) scalex(2);
	transform: translatex(-50%) scalex(2);
	opacity: 0;
	-webkit-filter: blur(10px);
	filter: blur(10px);
}

.news-detail_image img{
	position:relative;
	width:100%;
	display:block;
	-webkit-transition:all 500ms ease;
	-moz-transition:all 500ms ease;
	-ms-transition:all 500ms ease;
	-o-transition:all 500ms ease;
	transition:all 500ms ease;
}

.blog-detail_content{
	position: relative;
	padding-top:30px;
}

.blog-detail_date{
	position:absolute;
	right:10px;
	bottom:10px;
	z-index:10;
	font-size: 16px;
	font-weight: 600;
	padding: 9px 35px;
	border-radius:50px;
	letter-spacing: 1px;
	color: var(--white-color);
	text-transform: uppercase;
	background-color: var(--main-color);
}

.blog-detail_meta{
	position: relative;
}

.blog-detail_meta li{
	position: relative;
	font-size:16px;
	padding-left: 30px;
	margin-right: 15px;
	display: inline-block;
	color: var(--color-two);
}

.blog-detail_meta li .icon{
	position: absolute;
	left: 0px;
	top: 2px;
	line-height: 1em;
	color: var(--main-color);
}

.blog-detail_meta li:last-child{
	margin-right: 0px;
	padding-right: 0px;
}

.blog-detail_title{
	position: relative;
	margin-top:15px;
	color: var(--black-color);
	text-transform: capitalize;
}

.blog-detail p{
	font-size:18px;
	line-height:32px;
	margin-top:18px;
}

.blog-detail_list{
	position:relative;
	margin-left:15px;
}

.blog-detail_list li{
	position:relative;
	color:#666666;
	font-size:16px;
	margin-bottom:15px;
	padding-left:15px;
}

.blog-detail_list li:before{
	position:absolute;
	content:'';
	left:0px;
	top:8px;
	width:6px;
	height:6px;
	border-radius:50px;
	background-color:#000000;
}

.blog-detail blockquote{
	position:relative;
	padding:34px 30px;
	border-radius:20px;
	margin-top:30px;
	margin-bottom:30px;
	background-color:#f5f5f5;
}

.blog-detail blockquote .blockquote-inner{
	position:relative;
	padding-left:95px;
	font-size:18px;
	line-height:30px;
	padding-top:5px;
	font-weight:500;
	color:var(--black-color);
}

.blog-detail blockquote:before{
	position:absolute;
	content:'';
	left:-6px;
	top:-6px;
	bottom:40px;
	width:60%;
	z-index:-1;
	border-radius:20px;
	background-color:var(--black-color);
}

.blog-detail blockquote .quote{
	position:absolute;
	left:0px;
	top:0px;
	width:68px;
	height:68px;
	line-height:68px;
	border-radius:10px;
	text-align:center;
	display:inline-block;
	background-color: var(--main-color);
}

.blog-detail blockquote i{
	position:relative;
	display:block;
	text-align:right;
	font-size:16px;
	font-weight:700;
	color:var(--main-color);
}

.news-detail_image-two{
	position:relative;
	margin-top:30px;
	overflow:hidden;
	margin-bottom:25px;
}

.news-detail_image-two img{
	position:relative;
	border-radius:25px;
}

.post-share-options{
	position:relative;
	padding-top:20px;
	margin-top:30px;
	margin-bottom:50px;
	border-top:1px solid rgba(0,0,0,0.20);
}

.post-share-options .post-tags{
	position:relative;
	display:flex;
	gap:20px;
	flex-wrap:wrap;
	align-items:center;
}

.post-share-options .post-tags strong{
	position:relative;
	font-weight:700;
	font-size:24px;
	color:var(--black-color);
}

.post-share-options .post-tags a{
	position:relative;
	font-size:16px;
	padding:12px 22px;
	border-radius:50px;
	display:inline-block;
	color:var(--black-color);
	border:1px solid rgba(0,0,0,0.20);
}

.post-share-options .post-tags a:hover{
	color:var(--white-color);
	border-color:var(--main-color);
	background-color:var(--main-color);
}

.post-share-options .social-links{
	position:relative;
}

.post-share-options .social-links span{
	position:relative;
	font-weight:700;
	font-size:20px;
	color:var(--black-color);
}

.post-share-options .social-links a{
	position:relative;
	font-size:18px;
	margin-left:10px;
	color:var(--black-color);
}

.post-share-options .social-links a:hover{
	color:var(--black-color);
}

/* Blog Author Post */

.blog-author-post{
	position: relative;
	margin-top: 30px;
	margin-bottom: 50px;
	padding-bottom:60px;
	border-bottom:1px solid rgba(0,0,0,0.10);
}

.blog-author-post_inner{
	position: relative;
	padding-left: 180px;
}

.blog-detail_author-image{
	position: absolute;
	left: 0px;
	top: 0px;
	width: 150px;
	overflow: hidden;
	border-radius:15px;
}

.blog-author-post h5{
	font-weight: 700;
	color: var(--black-color);
}

.blog-author-post .text{
	position: relative;
    line-height: 30px;
    font-size: 16px;
    margin-top: 10px;
    color: #666666;
}

.blog-author-post_socials{
	position:relative;
	margin-top:15px;
}

.blog-author-post_socials li{
	position:relative;
	margin-right:5px;
	display:inline-block;
}

.blog-author-post_socials li a{
	position:relative;
	font-size:16px;
	font-weight:600;
	color:var(--main-color);
}

.blog-author-post_socials li a:hover{
	color:var(--main-color);
}

/*** 

====================================================================
	Comment Form
====================================================================

***/

.comment-form-outer{
	position:relative;
	margin-top: 40px;
}

.comment-form-outer .rating{
	position:relative;
}

.comment-form-outer .rating strong{
	position:relative;
	font-weight: 600;
	font-size: 18px;
	margin-left:25px;
	color: var(--black-color);
}

.comment-form-outer .rating span{
	position:relative;
	color: #FECE50;
}

.comment-form .form-group{
	margin-bottom:25px;
}

.comment-form .form-group:last-child{
	margin-bottom:0px;
}

.comment-form .form-group input[type="text"],
.comment-form .form-group input[type="password"],
.comment-form .form-group input[type="tel"],
.comment-form .form-group input[type="email"],
.comment-form .form-group select{
	position:relative;
	display:block;
	width:100%;
	line-height:28px;
	padding:10px 25px;
	height:54px;
	border-radius:50px;
	font-size:16px;
	color:#666666;
	-webkit-transition:all 300ms ease;
	-ms-transition:all 300ms ease;
	-o-transition:all 300ms ease;
	-moz-transition:all 300ms ease;
	transition:all 300ms ease;
	background-color:var(--white-color);
	border:1px solid rgba(var(--black-color-rgb), 0.10);
}

.comment-form .form-group textarea::-webkit-input-placeholder,
.comment-form .form-group input::-webkit-input-placeholder{
	color:var(--color-five);
}

.comment-form .form-group input[type="text"]:focus,
.comment-form .form-group input[type="password"]:focus,
.comment-form .form-group input[type="tel"]:focus,
.comment-form .form-group input[type="email"]:focus,
.comment-form .form-group select:focus,
.comment-form .form-group textarea:focus{
	border-color:var(--main-color);
}

.comment-form .form-group textarea{
	position:relative;
	display:block;
	width:100%;
	line-height:24px;
	padding:15px 25px 25px;
	font-size:16px;
	color:#666666;
	height:120px;
	resize:none;
	border-radius:25px;
	-webkit-transition:all 300ms ease;
	-ms-transition:all 300ms ease;
	-o-transition:all 300ms ease;
	-moz-transition:all 300ms ease;
	transition:all 300ms ease;
	background-color:var(--white-color);
	border:1px solid rgba(var(--black-color-rgb), 0.10);
}

.comment-form .theme-btn{
	
}
/* Qonstruct Construction Business HTML-5 Template */

/*** 

====================================================================
	Contact One
====================================================================

***/

.contact-one{
	position:relative;
	padding: 30px 0px 30px;
}

.contact-one .image-column{
	position:relative;
}

.contact-one .image-column .image{
	position:relative;
	height: 100%;
}

.contact-one .image-column .image .overlay-box{
	position:absolute;
	left: 40px;
	right: 40px;
	bottom: 40px;
	z-index: 2;
}

.contact-one .image-column .image img{
	position:relative;
	width:100%;
	display: block;
	object-fit: cover;
	height: 100%;
}

.contact-one .image-column .image:before{
	position: absolute;
    left: 0;
    top: 0;
    right: 0px;
    bottom: 0px;
    content: "";
    z-index: 1;
    background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0), var(--color-two));
}

.contact-one .image-column h4{
	position:relative;
	color: var(--white-color);
}

.contact-one .image-column .text{
	position:relative;
	margin-top: 20px;
	max-width: 450px;
	color: var(--white-color);
}

.contact-one .image-column .signature{
	position:relative;
	margin-top: 30px;
}

.contact-one .image-column .signature img{
	position:relative;
	width:auto;
}

.contact-one .image-column .author{
	position:relative;
	font-size: 18px;
	margin-top: 20px;
	color: var(--white-color);
}

.contact-one .form-column{
	position:relative;
}

.contact-one .form-column .inner-column{
	position:relative;
	padding: 30px 40px;
	background-color: #f5f5f5;
}

.contact-one .form-column .title-box{
	position:relative;
	margin-bottom: 20px;
}

.contact-one .form-column .title-box h3{
	position:relative;
	margin-bottom: 15px;
}

.contact-one_info-list{
	position: relative;
}

.contact-one_info-list li{
	position: relative;
	min-height: 80px;
	font-size: 17px;
	font-weight: 600;
	margin-bottom: 32px;
	padding-left: 100px;
	color: var(--black-color);
}

.contact-one_info-list li .icon{
	position: absolute;
	left: 0px;
	top: 2px;
	width: 80px;
	height: 80px;
	line-height: 80px;
	text-align: center;
	font-size: 36px;
	color: var(--white-color);
	background-color: var(--main-color);
	font-family: "flaticon_qonstruct";
}

.contact-one_info-list li strong{
	position: relative;
	display: block;
	font-weight: 400;
	font-size: 16px;
	margin-top: 5px;
	line-height: 25px;
	word-wrap: break-word;
	color: var(--black-color);
}

/* Map Two */

.map-one{
	position: relative;
}

.map-one iframe{
	position: relative;
	width: 100%;
	height: 480px;
}
/* Qonstruct Construction Business HTML-5 Template */

/*** 

====================================================================
	Faq One
====================================================================

***/

.faq-one{
	position:relative;
	padding: 110px 0px 100px;
}

.faq-one .vector-icon{
	position:absolute;
	right:0px;
	top:10px;
	z-index:1;
}

.faq-one .image-column{
	position:relative;
	margin-bottom: 30px;
}

.faq-one .image-column .image{
	position:relative;
	border-radius: 8px;
	display:inline-block;
}

.faq-one .help-box{
	position:absolute;
	right:-90px;
	bottom:-50px;
	width: 320px;
	padding: 35px 35px;
	text-align: right;
	border-radius: 90px 0px 0px 0px;
	background-color: var(--color-two);
	border:12px solid var(--main-color);
}

.faq-one .help-box .icon{
	position:absolute;
	left:-30px;
	top:-30px;
	width: 90px;
	height: 90px;
	font-size: 40px;
	border-radius: 50px;
	line-height: 90px;
	text-align: center;
	color: var(--white-color);
	font-family: "flaticon_qonstruct";
	background-color: var(--color-three);
}

.faq-one .help-box h4{
	position:relative;
	color: var(--white-color);
}

.faq-one .help-box .text{
	position:relative;
	margin-top: 12px;
	margin-bottom: 15px;
	color: var(--white-color);
}

.faq-one .help-box .phone{
	position:relative;
	font-size: 24px;
	font-weight: 600;
	color: var(--main-color);
}

.faq-one .help-box .phone:hover{
	color: var(--white-color);
}

.faq-one .accordion-column{
	position:relative;
	margin-bottom: 30px;
}

/*** 

====================================================================
	Faq Two
====================================================================

***/

.faq-two{
	position:relative;
	padding: 110px 0px 100px;
}
/* Qonstruct Construction Business HTML-5 Template */

/*** 

====================================================================
	Video One
====================================================================

***/

.video-one{
	position:relative;
}

.video-one .video-one_outer{
	position:relative;
	max-width: 1800px;
	margin: 0 auto;
	padding: 0px 15px;
}

.video-one .image{
	position:relative;
	overflow: hidden;
	border-radius: 50px;
}

.video-one .image img{
	position:relative;
	width: 100%;
	display: block;
	
	display:block;
	-webkit-mask-image: url(../images/resource/video-1-1.png);
	-webkit-mask-size: cover;
	-webkit-mask-repeat: no-repeat;
	mask-image: url(../images/resource/video-1-1.png);
	mask-size: cover;
	mask-repeat: no-repeat;
}

.video-one_play{
	position: absolute;
	right:150px;
    top:180px;
	z-index:10;
	font-size: 34px;
	color: var(--white-color);
	font-family: "Alexandria", sans-serif;
}

.video-one_play strong{
	position:relative;
	z-index:10;
	font-weight: 400;
}

.video-one_play span{
	position:relative;
	width:150px;
	right: -25px;
	height: 150px;
	font-weight:400;
	font-size:30px;
	text-align: center;
	border-radius:50%;
	padding-left:4px;
	line-height:150px;
	display: inline-block;
	color: var(--white-color);
	font-family: "flaticon_induxt";
	background-color: var(--color-two);
	box-shadow:0px 20px 20px rgba(0,0,0,0.15);
	-webkit-animation: icon-bounce 0.8s ease-out infinite;
    animation: icon-bounce 0.8s ease-out infinite;
	border-left: 8px solid var(--main-color);
}

.video-one_play .ripple,
.video-one_play .ripple:before,
.video-one_play .ripple:after {
    position: absolute;
    top: 50%;
    left: 50%;
    width:150px;
	height: 150px;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    border-radius: 50%;
    -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, .6);
    -moz-box-shadow: 0 0 0 0 rgba(255, 255, 255, .6);
    -ms-box-shadow: 0 0 0 0 rgba(255, 255, 255, .6);
    -o-box-shadow: 0 0 0 0 rgba(255, 255, 255, .6);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, .6);
    -webkit-animation: ripple 3s infinite;
    -moz-animation: ripple 3s infinite;
    -ms-animation: ripple 3s infinite;
    -o-animation: ripple 3s infinite;
    animation: ripple 3s infinite;
}

.video-one_play .ripple:before {
    -webkit-animation-delay: .9s;
    -moz-animation-delay: .9s;
    -ms-animation-delay: .9s;
    -o-animation-delay: .9s;
    animation-delay: .9s;
    content: "";
    position: absolute;
}

.video-one_play .ripple:after {
    -webkit-animation-delay: .6s;
    -moz-animation-delay: .6s;
    -ms-animation-delay: .6s;
    -o-animation-delay: .6s;
    animation-delay: .6s;
    content: "";
    position: absolute;
}

@-webkit-keyframes ripple {
    70% {box-shadow: 0 0 0 70px rgba(253, 167, 0, 0);}
    100% {box-shadow: 0 0 0 0 rgba(253, 167, 0, 0);}
}

@keyframes ripple {
    70% {box-shadow: 0 0 0 70px rgba(253, 167, 0, 0);}
    100% {box-shadow: 0 0 0 0 rgba(253, 167, 0, 0);}
}
/* Qonstruct Construction Business HTML-5 Template */

/*** 

====================================================================
	Counter One
====================================================================

***/

.counter-one{
	position:relative;
	/* border-top: 1px solid rgba(var(--black-color-rgb), 0.08); */
	border-bottom: 1px solid rgb(0 0 0 / 5%);
	background: #cecece00;
	padding: 0px 0px 15px;
}

.counter-one .auto-container{
	/* max-width: 1600px; */
}

.counter-block{
	position:relative;
}

.counter-block:last-child .inner{
	/* border: none; */
}

.counter-block .inner{
	padding: 25px 0px;
	/* border-top: 1px solid rgb(255 0 0 / 26%); */
	background: #e1e1e1d4;
	box-shadow: 1px 1px 20px #85848400;
	border-right: 3px solid rgb(255 0 0 / 40%);
	border-radius: 30px;
}

.counter-block .content{
	position:relative;
	padding-left: 25px;
	padding-right: 25px;
	display: block;
	text-align: center;
}

.counter-block .icon{
	font-size: 60px;
	font-size: 52px;
	color: var(--color-two);
	font-family: "flaticon_qonstruct";
}

.counter-block .inner:hover .icon{
	animation: jello 1s;
}

.counter-block .count-box{
	position:relative;
	font-size: 38px;
	font-weight: 600;
	color: var(--color-two);
	display: block;
	margin: 20px 0px 15px;
}

.counter-block .text{
	position:relative;
	margin-top: 12px;
	font-size: 22px;
	line-height: 25px;
	color: var(--color-three);
}
/* Qonstruct Construction Business HTML-5 Template */

/*** 

====================================================================
	Welcome One
====================================================================

***/

.welcome-one{
	position:relative;
	padding: 18px 0px 0;
}

.welcome-one_image-column{
	position:relative;
	margin-bottom: 30px;
}

.welcome-one_image-outer{
	position:relative;
}

.welcome-one_image{
	position:relative;
	opacity: 3;
	/* clip-path: polygon(49% 0, 51% 0, 51% 100%, 49% 100%); */
}

.welcome-one_image.now-in-view{
	opacity:1;
	-webkit-transition-delay: 500ms;
	-moz-transition-delay: 500ms;
	-ms-transition-delay: 500ms;
	-o-transition-delay: 500ms;
	transition-delay: 500ms;
	clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
}

.welcome-one_content-column{
	position:relative;
	margin-bottom: 30px;
	margin-left: -25px;
}

.welcome-one_content-outer{
	position:relative;
}

.welcome-one_tag{
	position:relative;
	font-size: 20px;
	display: flex;
	font-weight: 600;
	line-height: 33px;
	align-content: center;
	color: var(--color-two);
	background-color:#f5f5f5;
	padding: 10px 12px 10px 12px;
	border-radius: 5px;
}

.welcome-one_tag span{
	position:relative;
	line-height:1em;
	margin-right: 15px;
	color: var(--main-color);
	font-family: "flaticon_qonstruct";
}

.welcome-one_experiance{
	position:relative;
	font-size: 22px;
	display: block;
	font-weight: 600;
	line-height: 34px;
	margin-top: 16px;
	color: var(--color-two);
	margin-bottom: 12px;
}

.welcome-one_experiance .odometer{
	position:relative;
	font-size: 72px;
	line-height:1em;
	font-weight:700;
	margin-right: 20px;
	color: var(--main-color);
}

.welcome-one_content{
	position:relative;
	padding-left: 0px;
	margin-top: 20px;
}

.welcome-one_content .award-box{
	position:absolute;
	left: -33px;
	top:0px;
	width:101px;
	z-index:1;
	padding-bottom: 40px;
	text-align: center;
	display: none;
}

.welcome-one_content .award-box:before{
	position:absolute;
	content:'';
	left:10px;
	top:50px;
	right:10px;
	bottom:0px;
	background-color:#151824;
	clip-path: polygon(100% 0, 100% 100%, 50% 90%, 0 100%, 0 0);
}

.welcome-one_content .award-text{
	position:relative;
	font-size:16px;
	padding:0px 15px;
	color: var(--white-color);
}

.welcome-one_content .award-text span{
	position:relative;
	display: block;
	font-size: 18px;
	font-weight: 500;
	padding-top: 10px;
	margin-top: 10px;
}

.welcome-one_content .award-text span:before{
	position:absolute;
	content:'';
	left: 50%;
	top:0px;
	width:30px;
	height: 2px;
	transform: translateX(-50%);
	background-color: var(--main-color);
}

.welcome-one_content .award-box .star{
	position:relative;
	width:101px;
	height:101px;
	z-index:1;
	font-size: 18px;
	line-height:101px;
	margin-bottom: 15px;
	color: var(--white-color);
}

.welcome-one_content .award-box .star:after{
	position:absolute;
	content:'';
	left:0px;
	top:0px;
	right:0px;
	bottom:0px;
	z-index:-1;
	background:url(../images/icons/circle.png) no-repeat;
}

.welcome-one_button{
	position:relative;
	margin-top: 30px;
}
/* Qonstruct Construction Business HTML-5 Template */

/*** 

====================================================================
	Faq One
====================================================================

***/

.features-one{
	position:relative;
	padding: 27px 0px 0px;
}

.feature-block_one{
	position:relative;
	margin-bottom: 20px;
}

.feature-block_one-inner{
	position:relative;
	padding: 0px 8px;
	background-color: #ffffff;
	box-shadow: 1px 1px 20px 0px #00000000;
	margin: 1px 10px;
	border-radius: 5px;
}

.feature-block_one-inner:before{
	position:absolute;
	/* content:''; */
	left:0px;
	top:0px;
	right:0px;
	bottom:0px;
	opacity:0;
	-webkit-transition:all 500ms ease;
	-moz-transition:all 500ms ease;
	-ms-transition:all 500ms ease;
	-o-transition:all 500ms ease;
	transition:all 500ms ease;
	transform: scale(1,0.2);
	background-color: var(--color-two);
}

.feature-block_one-inner:after{
	position:absolute;
	content:'';
	left:0px;
	right:0px;
	bottom: 0px;
	height: -1px;
	z-index:-1;
	opacity: 1;
	-webkit-transition:all 500ms ease;
	-moz-transition:all 500ms ease;
	-ms-transition:all 500ms ease;
	-o-transition:all 500ms ease;
	transition:all 500ms ease;
	/* transform: scale(0.1,1); */
	background-color: rgb(0 0 0 / 11%);
}

.feature-block_one-inner:hover::after{
	/* opacity:1; */
	/* transform: scale(1,1); */
}

.feature-block_one-inner:hover::before{
	/* opacity:1; */
	/* transform: scale(1,1); */
}

.feature-block_one-content{
	position:relative;
	padding-left: 0px;
	text-align: center;
	border: 1px solid #0000000d;
	padding: 10px;
	border-radius: 5px;
}

.feature-block_one-icon{
	left:0px;
	top:10px;
	font-size: 60px;
	line-height:1em;
	margin-bottom: 16px;
	font-weight: normal;
	color: var(--main-color);
	font-family: "flaticon_qonstruct";
}

.feature-block_one-inner:hover .feature-block_one-icon{
	animation: swing 1s;
}

.feature-block_one-inner:hover .feature-block_one-designation{
	color: var(--white-color);
}

.feature-block_one-inner:hover .feature-block_one-title{
	color: rgb(0 0 0);
}

.feature-block_one-designation{
	position:relative;
	color: var(--color-two);
}

.feature-block_one-title{
	position:relative;
	margin-top: 11px;
	color: var(--color-two);
	font-size: 20px;
}

.feature-block_one-title a{
	position:relative;
	color: var(--color-two);
}
/* Qonstruct Construction Business HTML-5 Template */

/*** 

====================================================================
	Fluid One
====================================================================

***/

.fluid-one{
	position: relative;
	background-position: right center;
	background-repeat: no-repeat;
	padding: 0px 0px 42px;
}

.fluid-one .outer-container{
	position: relative;
}

.fluid-one .left-box{
	position: absolute;
	left: 0px;
	top: 0px;
	width: 50%;
	height: 100%;
	background-size: cover;
}

.fluid-one_image{
	position: relative;
	display: none;
}

.fluid-one_image img{
	position: relative;
	width: 100%;
	display: block;
}

.fluid-one .right-box{
	position: relative;
	float: right;
	width: 50%;
	padding: 30px 15px 25px 31px;
}

.fluid-one .right-box_inner{
	position: relative;
	max-width: 580px;
}

.fluid-block_one{
	position:relative;
	z-index:1;
	margin-bottom: 30px;
}

.fluid-block_one:last-child{
	margin-bottom: 0px;
}

.fluid-block_one-inner{
	position:relative;
	padding-left: 70px;
}

.fluid-block_one-icon{
	position:absolute;
	left:0px;
	top:5px;
	width:48px;
	height:48px;
	font-size: 22px;
	line-height: 48px;
	text-align: center;
	display: inline-block;
	color: var(--white-color);
	font-family: "flaticon_qonstruct";
	background-color: var(--main-color);
}

.fluid-block_one-icon:after{
	position:absolute;
	content:'';
	left:-8px;
	bottom:-8px;
	width: 48px;
	height: 48px;
	z-index:-1;
	background:url(../images/vector.png) no-repeat;
}

.fluid-block_one-title{
	position:relative;
	color: var(--color-two);
	font-size: 20px;
	font-weight: 500;
}

.fluid-block_one-text{
	position:relative;
	font-size: 17px;
	margin-top: 2px;
	line-height: 28px;
	color: var(--color-two);
}

.fluid-one_content{
	position:absolute;
	right:-40px;
	bottom:50px;
	padding: 40px 50px;
	border-top: 8px solid var(--main-color);
	background-color: var(--white-color);
	box-shadow: 0px 0px 15px rgba(0,0,0,0.20);
}

.fluid-one_content-inner{
	position:relative;
	padding-left: 100px;
	font-size: 20px;
	font-weight: 700;
	line-height: 32px;
	color: var(--color-two);
}

.fluid-one_content-icon{
	position:absolute;
	left:0px;
	top:0px;
	line-height:1em;
	font-size: 70px;
	font-weight: normal;
	color: var(--main-color);
	font-family: "flaticon_qonstruct";
}
/* Qonstruct Construction Business HTML-5 Template */

/*** 

====================================================================
	CTA One
====================================================================

***/

.cta-one{
	position:relative;
	text-align:center;
	background-size: cover;
	padding: 46px 0px 33px;
	background-attachment: fixed;
}

.cta-one:before{
	position:absolute;
	content:'';
	left:0px;
	top:0px;
	right:0px;
	bottom:0px;
	opacity: 0.60;
	background-color: var(--color-two);
}

.cta-one_title{
	position:relative;
	color: var(--white-color);
}

.cta-one_text{
	position:relative;
	margin-top: 20px;
	font-size: 18px;
	line-height: 30px;
	margin-bottom: 15px;
	color: var(--white-color);
	text-align: left;
}

/*** 

====================================================================
	CTA Two
====================================================================

***/

.cta-two{
	position:relative;
	background-size: cover;
	padding: 120px 0px 120px;
	background-attachment: fixed;
}

.cta-two_image:before{
	position:absolute;
	content:'';
	left:0px;
	top:0px;
	right:0px;
	bottom:0px;
	opacity: 0.60;
	background-color: var(--color-two);
}

.cta-two_image{
	background-size: cover;
}

.cta-two_phone{
	position:relative;
	font-size: 18px;
	color: var(--white-color);
}

.cta-two_phone a{
	position:relative;
	font-weight: 600;
	color: var(--main-color);
}

.cta-two_title{
	position:relative;
	margin-top: 20px;
	color: var(--white-color);
}

.cta-two_text{
	position:relative;
	margin-top: 30px;
	font-size: 18px;
	line-height: 30px;
	margin-bottom: 35px;
	color: var(--white-color);
}

/*** 

====================================================================
	CTA Three
====================================================================

***/

.cta-three{
	position:relative;
	margin-top: -96px;
	z-index:10;
}

.cta-three .inner-container{
	position:relative;
	padding: 60px 70px;
	border-radius: 150px;
	background-color: var(--main-color);
}

.cta-three_heading{
	position:relative;
	margin-bottom: 10px;
}

.cta-three_title{
	position:relative;
	font-size: 20px;
	color: var(--color-two);
}

/* Newsletter Box */

.newsletter-box{
    position: relative;
}

.newsletter-box .form-group {
    position: relative;
    margin: 0px;
    width: 100%;
    max-width: 100%;
}

.newsletter-box .form-group input[type="text"],
.newsletter-box .form-group input[type="email"] {
    position: relative;
    line-height: 43px;
    display: block;
    height: 64px;
    width: 100%;
	width: 450px;
	border-radius: 50px;
    box-shadow: inherit;
    font-size: 16px;
    transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -webkit-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    padding: 10px 30px;
    color:var(--white-color);
    background: rgba(var(--black-color-rgb), 0.20);
}

.newsletter-box .form-group button {
    position: absolute;
    right: 20px;
    top: 5px;
	bottom: 5px;
    font-weight: 500;
    display: inline-block;
    font-size: 20px;
    background:none;
	color: var(--white-color);
}

/*** 

====================================================================
	CTA Four
====================================================================

***/

.cta-four{
	position:relative;
	z-index:10;
	padding: 120px 0px 120px;
	background-position: right top;
	background-repeat: no-repeat;
}

.cta-four .sec-title{
	position:relative;
	max-width: 950px;
}
/* Qonstruct Construction Business HTML-5 Template */

/*** 

====================================================================
	Our Shop
====================================================================

***/

/* Shop Cat */

.shop-cat{
	position:relative;
}

.shop-cat li{
	position:relative;
	margin-bottom:15px;
}

.shop-cat li a{
	position: relative;
	font-size: 17px;
	display: block;
	color: var(--black-color);
	-webkit-transition: all 300ms ease;
	-ms-transition: all 300ms ease;
	-o-transition: all 300ms ease;
	-moz-transition: all 300ms ease;
	transition: all 300ms ease;
	padding: 15px 50px 15px 20px;
	margin-bottom: 2px;
	border: 1px solid #eee;
	display: block;
	border-radius: 8px;
}

.shop-cat li a span{
	position:absolute;
	right:20px;
}

.shop-cat li a:hover{
	color:var(--main-color);
}

/*Sidebar Realated Posts */

.sidebar .related-posts .post{
	position:relative;
	padding-top:40px;
	min-height:156px;
	padding-left:150px;
	margin-bottom:20px;
}

.sidebar .related-posts .post:last-child{
	margin-bottom:0px;
	min-height:inherit;
}

.sidebar .related-posts .post .post-thumb{
	 position:absolute;
	 left:0px;
	 top:0px;
	 width:130px;
	 background-color:rgba(0,0,0,0.05);
}

.sidebar .related-posts .post .post-thumb img{
	display:block;
	width:100%;	
}

.sidebar .related-posts .post h4{
	top:-2px;
	font-size:22px;
	font-weight:500;
	line-height:1.3em;
	color:var(--black-color);
	text-transform:capitalize;
}

.sidebar .related-posts .post h4 a{
	color:var(--black-color);
	transition:all 300ms ease;
	-webkit-transition:all 300ms ease;
	-ms-transition:all 300ms ease;
	-o-transition:all 300ms ease;
	-moz-transition:all 300ms ease;
}

.sidebar .related-posts .post h4 a:hover{
	opacity:1;
	color:var(--main-color);
	text-decoration:underline;
}

.sidebar .related-posts .post .price{
	font-size:18px;
	letter-spacing:1px;
	font-weight:400;
	margin-top: 5px;
	color:var(--main-color);
}

/* Shop Section */

.shop-section{
	position:relative;
}

.shop-section .items-sorting{
	position:relative;
	margin-bottom:30px;
}

.shop-section .items-sorting .total-items{
	position:relative;
	font-size:18px;
	color:var(--black-color);
}

.shop-section .items-sorting .total-items span{
	color:var(--main-color);
}

/* Shop Item */

.shop-item{
	position:relative;
	margin-bottom:40px;
}

.shop-item .inner-box{
	position:relative;
	transition:all 0.3s ease;
	-moz-transition:all 0.3s ease;
	-webkit-transition:all 0.3s ease;
	-ms-transition:all 0.3s ease;
	-o-transition:all 0.3s ease;
}

.shop-item .inner-box:hover .image .overlay-box{
	opacity:1;
}

.shop-item .inner-box .image{
	position:relative;
	text-align:center;
	background-color:rgba(0,0,0,0.04);
}

.shop-item .inner-box .image .overlay-link{
	position:absolute;
	left:0px;
	top:0px;
	right:0px;
	bottom:0px;
	display:block;
	z-index:1;
}

.shop-item .inner-box .image .sale{
	position:absolute;
	right:10px;
	top:10px;
	z-index:2;
	padding:8px 20px;
	display:inline-block;
	color:var(--white-color);
	text-transform:uppercase;
	background-color:var(--black-color);
}

.shop-item .inner-box .image .overlay-box{
	position:absolute;
	content:'';
	left:0px;
	top:0px;
	width:100%;
	height:100%;
	opacity:0;
	text-align:center;
	background-color:rgba(0,0,0,0.50);
	transition:all 0.3s ease;
	-moz-transition:all 0.3s ease;
	-webkit-transition:all 0.3s ease;
	-ms-transition:all 0.3s ease;
	-o-transition:all 0.3s ease;
}

.shop-item .inner-box .image .overlay-box .cart-option{
	position:relative;
	top:50%;
	margin-top:-25px;
}

.shop-item .inner-box .image .overlay-box .cart-option li{
	position:relative;
	margin:0px 3px;
	color:var(--black-color);
	display:inline-block;
}

.shop-item .inner-box .image .overlay-box .cart-option li a{
	position:relative;
	color:var(--black-color);
	font-size: 56px;
	font-weight:700;
	display:block;
	transition:all 0.3s ease;
	-moz-transition:all 0.3s ease;
	-webkit-transition:all 0.3s ease;
	-ms-transition:all 0.3s ease;
	-o-transition:all 0.3s ease;
}

.shop-item .inner-box .image .overlay-box .cart-option li a .fa{
    margin-bottom: 8px;
    display: inline-block;
}

.shop-item .inner-box .image .overlay-box .cart-option li a:hover{
	color:var(--main-color);
}

.shop-item .inner-box .image img{
	width:100%;
	display:inline-block;
}

.shop-item .inner-box .lower-content{
	position:relative;
	padding:20px 0px 0px;
}

.shop-item .inner-box .lower-content h3{
	position:relative;
	font-size:22px;
	font-weight:500;
	margin-bottom:6px;
}

.shop-item .inner-box .lower-content h3 a{
	color:var(--black-color);
	transition:all 0.3s ease;
	-moz-transition:all 0.3s ease;
	-webkit-transition:all 0.3s ease;
	-ms-transition:all 0.3s ease;
	-o-transition:all 0.3s ease;
}

.shop-item .inner-box .lower-content h3 a:hover{
	color:var(--main-color);
}

.shop-item .inner-box .lower-content .price{
	position:relative;
	font-size:18px;
	font-weight:300;
	opacity:0.9;
	color:var(--black-color);
}

.shop-item .inner-box .lower-content .cart{
	position:relative;
	display:inline-block;
	font-size:28px;
	width:40px;
	color:var(--black-color);
}

.shop-section .lower-text{
	position:relative;
	margin-top:30px;
}

.shop-section .lower-text .products{
	position:relative;
	color:var(--black-color);
	font-size:16px;
	font-weight:600;
	z-index:1;
	padding-bottom:4px;
	letter-spacing:2px;
	display:inline-block;
	text-transform:uppercase;
	border-bottom:1px solid var(--black-color);
	-webkit-transition: -webkit-transform 0.4s ease;
	transition: -webkit-transform 0.4s ease;
	transition: transform 0.4s ease;
	transition: transform 0.4s ease, -webkit-transform 0.4s ease;
}

.shop-section .lower-text .products:before{
	position:absolute;
	content:'';
	left:0px;
	top:0px;
	width:100%;
	height:100%;
	display:block;
	z-index:-1;
	background-color:var(--black-color);
	-webkit-transition: -webkit-transform 0.4s ease;
	transition: -webkit-transform 0.4s ease;
	transition: transform 0.4s ease;
	transition: transform 0.4s ease, -webkit-transform 0.4s ease;
	-webkit-transform: scale(0, 1);
	-ms-transform: scale(0, 1);
	transform: scale(0, 1);
	-webkit-transform-origin: right center;
	-ms-transform-origin: right center;
	transform-origin: right center;
}

.shop-section .lower-text .products:hover::before{
	-webkit-transform: scale(1, 1);
	-ms-transform: scale(1, 1);
	transform: scale(1, 1);
	-webkit-transform-origin: left center;
	-ms-transform-origin: left center;
	transform-origin: left center;
}

.shop-section .lower-text .products:hover{
	color:var(--white-color);
}


/*** 

====================================================================
	Shop Detail
====================================================================

***/

.shop-detail{
	position: relative;
	padding: 100px 0px 70px;
}

.shop-detail_gallery-column{
	position: relative;
	margin-bottom: 30px;
}

.shop-detail_gallery-column .image{
	position: relative;
	overflow: hidden;
	text-align: center;
	border-radius: 10px;
	margin-bottom: 30px;
	background-color:  rgba(var(--color-two-rgb), 0.05);
}

.shop-detail_gallery-column .image img{
	position: relative;
	width: 100%;
	display: block;
}

.shop-detail_gallery-column .thumb{
	position: relative;
	cursor: pointer;
	transition:all 500ms ease;
	-moz-transition:all 500ms ease;
	-webkit-transition:all 500ms ease;
	-ms-transition:all 500ms ease;
	-o-transition:all 500ms ease;
	border:2px solid rgba(var(--black-color-rgb), 0.05);
}

.shop-detail_gallery-column .thumb img{
	width: 100%;
	display: block;
}

.shop-detail_gallery-column .thumb:hover{
	border-color:rgba(var(--black-color-rgb), 0.01);
	background-color:  rgba(var(--black-color-rgb), 0.05);
}

.shop-detail_content-column{
	position: relative;
	margin-bottom: 30px;
}

.shop-detail_content-column .inner-column{
	position: relative;
	padding-left: 20px;
}

.shop-detail_title{
	font-weight: 700;
	line-height: 1em;
	font-size: 40px;
	color: var(--black-color);
	text-transform: uppercase;
}

.shop-detail_rating{
	position: relative;
	margin-top: 20px;
}

.shop-detail_rating .fa-star{
	position: relative;
	font-size: 14px;
	color: var(--black-color);
}

.shop-detail_rating .fa-star.light{
	opacity: 0.40;
	color: var(--black-color);
}

.shop-detail_rating i{
	position: relative;
	font-size: 18px;
	margin-left: 10px;
	color: var(--black-color);
}

.shop-detail_price{
	position: relative;
	font-weight: 600;
	font-size: 24px;
	margin-top: 20px;
	color: var(--black-color);
}

.shop-detail_text{
	position: relative;
	line-height: 28px;
	font-size: 16px;
	opacity:0.80;
	margin-top: 20px;
	margin-bottom: 30px;
	color: var(--black-color);
}

/* Item Quantity */

.item-quantity{
	position: relative;
	width: 100%;
	max-width: 115px;
	padding: 0px 45px;
	border-radius: 5px;
	display: inline-block;
	margin-right: 30px;
	border:1px solid rgba(var(--black-color-rgb), 0.05);
}

.quantity-box .item-quantity .input-group{
	position: relative;
	display: table;
	border-collapse: separate;
	max-width: 144px;
	width: 100%;
	height: 42px;
}

.quantity-box .item-quantity input.qty-spinner {
	line-height: 40px;
	height: 40px;
	width: 20px !important;
	padding: 0px !important;
	box-shadow: none !important;
	border: none;
	text-align: center;
	font-size:16px;
	font-weight: 500;
	color: var(--black-color);
	border: none;
	border-radius: 0;
	background:none;
	margin-right: 0px;
}

.quantity-box .item-quantity input.qty-spinner:focus{
	background: none;
}

.quantity-box .bootstrap-touchspin .input-group-btn-vertical > .btn.bootstrap-touchspin-down{
	position: absolute;
	height: 44px;
	width: 44px;
	background:none;
	padding: 6px 0px !important;
	line-height: 30px;
	left: -40px;
	top: -40px;
	border:none !important;
	border-radius: 0px;
}

.quantity-box .bootstrap-touchspin .input-group-btn-vertical > .btn.bootstrap-touchspin-up{
	position: absolute;
	height: 44px;
	width: 44px;
	background:none;
	padding: 6px 0px !important;
	line-height: 30px;
	right: -25px;
    top: -40px;
	border:none !important;
	border-radius: 0px;
	margin-top: 0px;
}

.quantity-box .bootstrap-touchspin .input-group-btn-vertical > .btn.bootstrap-touchspin-down:hover,
.quantity-box .bootstrap-touchspin .input-group-btn-vertical > .btn.bootstrap-touchspin-up:hover{
	
}

.quantity-box .bootstrap-touchspin .glyphicon-chevron-up:before {
	content: "\2b";
	color: var(--black-color);
	font-weight: 700;
	font-style: normal;
	font-size:12px;
	font-family: 'Font Awesome 6 Free';
}

.quantity-box .bootstrap-touchspin .glyphicon-chevron-down:before {
	content: "\f068";
	color: var(--black-color);
	font-weight: 700;
	font-style: normal;
	font-size:12px;
	font-family: 'Font Awesome 6 Free';
}

.quantity-box .bootstrap-touchspin .input-group-btn-vertical{
	position: absolute;
	width: 100%;
}

.quantity-box .bootstrap-touchspin .input-group-btn-vertical i{
	top: 6px;
	left: 14px;
	font-size: inherit !important; 
}

.quantity-box .bootstrap-touchspin .input-group-btn-vertical .bootstrap-touchspin-down{
	margin-top: 0px;
}

.shop-detail_list{
	position: relative;
	margin-top:25px;
}

.shop-detail_list li{
	position: relative;
	font-weight: 500;
	font-size: 16px;
	margin-bottom: 15px;
	color: var(--black-color);
}

.shop-detail_list li span{
	position: relative;
	font-weight: 500;
	color: var(--black-color);
	text-transform: uppercase;
	margin-right: 10px;
}

.shop-detail_socials{
	position: relative;
}

.shop-detail_socials .share{
	position: relative;
	font-weight: 600;
	display: inline-block;
	color: var(--black-color);
	font-size: 16px;
}

.shop-detail_socials{
	position: relative;
	margin-top: 30px;
}

.shop-detail_socials li{
	position: relative;
	display: inline-block;
	margin-right: 5px;
}

.shop-detail_socials li a{
	position: relative;
	width: 40px;
	height: 40px;
	line-height: 38px;
	text-align: center;
	border-radius: 5px;
	display: inline-block;
	color: var(--black-color);
	font-size: 16px;
	font-family: 'Font Awesome 5 Brands';
	border:1px solid rgba(var(--black-color-rgb), 0.05);
}

.shop-detail_socials li a:hover{
	color: var(--white-color);
	border-color: var(--main-color);
	background-color: var(--main-color);
}

/*** 

====================================================================
	Product Tabs Style
====================================================================

***/

.shop-detail .prod-tabs{
	position:relative;
	margin-top:30px;
}

.shop-detail .prod-tabs .tab-btns{
	position:relative;
}

.shop-detail .prod-tabs .tab-btns::before{
	position:absolute;
	content: '';
	left: 0px;
	top: 30px;
	right: 0px;
	border-bottom:1px solid rgba(var(--black-color-rgb), 0.10);
}

.shop-detail .prod-tabs .tab-btns .tab-btn{
	position:relative;
	display:inline-block;
	color: var(--black-color);
	line-height:24px;
	cursor:pointer;
	font-weight:500;
	padding:16px 30px;
	font-size:20px;
	margin-right:20px;
	transition:all 500ms ease;
	text-transform:capitalize;
	background:var(--white-color);
	border:1px solid rgba(var(--black-color-rgb), 0.10);
}

.shop-detail .prod-tabs .tab-btns .tab-btn:last-child{
	margin-right: 0px;
}

.shop-detail .prod-tabs .tab-btns .tab-btn:hover,
.shop-detail .prod-tabs .tab-btns .tab-btn.active-btn{
	color:var(--white-color); 
	background-color: var(--main-color);
}

.shop-detail .prod-tabs .tabs-content{
	position:relative;
	padding:40px 0px 0px;
}

.shop-detail .prod-tabs .tabs-content .tab{
	position:relative;
	display:none;
	border-top:0px;
}

.shop-detail .prod-tabs .tabs-content .tab.active-tab{
	display:block;	
}

.prod-tabs .tabs-content p{
    line-height: 28px;
    font-size: 16px;
    color: var(--black-color);
    margin-bottom:20px;
}

.prod-tabs .tabs-content .tab .title{
	position:relative;
	font-weight:400;
	margin-bottom:25px;
	color: var(--black-color);
}

/* Comments Area */

.comments-area{
	position: relative;
	padding: 40px 40px;
	background-color: rgba(var(--black-color-rgb), 0.03);
}

.comments-area .group-title{
	position: relative;
	margin-bottom: 25px;
}

.comments-area .group-title h4{
	position: relative;
	font-weight: 700;
	color: var(--black-color);
}

.comments-content{
	position: relative;
	margin-bottom: 30px;
	/* padding: 45px 40px; */
	/* background-color: var(--black-color); */
}

.comment-box{
	position: relative;
	margin-bottom: 25px;
}

.comment-box:last-child{
	margin-bottom: 0px;
}

.comment-box .comment{
	position: relative;
	padding-left: 80px;
}

.comment-box .author-thumb{
	position: absolute;
	left: 0px;
	top: 0px;
	width: 60px;
	height: 60px;
	overflow: hidden;
}

.comment-options{
	position: absolute;
	right: 0px;
	top: 0px;
	z-index: 1;
}

.comment-options li{
	position: relative;
	display: inline-block;
	margin-left: 15px;
}

.comment-options li a{
	position: relative;
	font-size: 14px;
	color: var(--color-two);
}

.comment-options li a:hover{
	color: var(--black-color);
}

.comment-box .comment-info{
	position: relative;
	font-size: 18px;
	padding-bottom: 5px;
	color: var(--black-color);
}

.comment-box .comment-time{
	position: relative;
	font-size: 14px;
	margin-left: 15px;
	color: var(--black-color);
}

.comment-box .text{
	position: relative;
	line-height: 28px;
	font-size: 16px;
	opacity:0.70;
	color: var(--black-color);
	margin-top: 15px;
	margin-bottom: 15px;
}

.likes-option{
	position: absolute;
	right: 0px;
	bottom: 0px;
}

.likes-option li{
	position: relative;
	font-size: 16px;
	font-weight: 500;
	display: inline-block;
	color: var(--black-color);
	margin-left: 15px;
	padding-left: 25px;
}

.likes-option li span{
	position: absolute;
	left: 0px;
	top: 4px;
}

.comment-reply{
	position: relative;
	font-size: 16px;
	font-weight: 500;
	color: var(--black-color);
}

.comment-reply span{
	position: relative;
	margin-right: 10px;
}

.reply-comment{
	position: relative;
	margin-left: 40px;
	padding: 30px 30px;
	background-color: var(--white-color);
}

.related-products{
	position: relative;
	margin-top: 70px;
}

.related-products h3{
	position: relative;
	margin-bottom: 25px;
	color: var(--black-color);
	text-transform: uppercase;
}

/*** 

====================================================================
	Cart Section
====================================================================

***/

.shoping-cart-section{
	position:relative;
	padding:110px 0px 50px;
}

.shoping-cart-section .cart-column{
	position:relative;
	margin-bottom:30px;
}

.shoping-cart-section .cart-column .inner-column{
	position:relative;
}

.shoping-cart-section .cart-table {
    width: 100%;
    min-width: 740px;
}

.cart-total-outer{
	position:relative;
}

.cart-section .cart-table{
	width:100%;
	min-width:900px;	
}

.cart-table .cart-header{
	position:relative;
	width:100%;
	border-radius:0px;
	font-size:16px;
	text-transform:capitalize;
	color:var(--color-two);
}

.cart-table thead tr th{
	line-height:24px;
	padding:0px 15px 20px;
	min-width:120px;
	font-weight:500;
	font-size:18px;
	color:var(--black-color);
}

.cart-table thead tr th.prod-column{
	text-align:left;
	padding-left:40px;
}

.cart-table tbody tr td{
	line-height:24px;
	min-width:100px;
	vertical-align:middle;
	padding:20px 10px 5px;
}

.cart-table .prod-title{
	font-weight:500;
	font-size:16px;
	color:var(--black-color);
}

.cart-table .prod-text{
	font-weight:400;
	font-size:16px;
	color:rgba(var(--black-color-rgb), 0.80);
}

.cart-table tbody tr .prod-column .column-box{
	position:relative;
	min-height:90px;
	padding-left:90px;
	text-align:left;
}

.cart-table tbody tr .prod-column .column-box .prod-thumb{
	position:absolute;
	width:70px;
	left:0px;
	top:0px;
	padding:10px 10px;
	border:1px solid #f0f0f0;	
}

.cart-table .cross-icon{
	position:absolute;
	right:-8px;
	top:-8px;
	width:16px;
	height:16px;
	font-size:6px;
	font-weight:700;
	cursor:pointer;
	line-height:16px;
	text-align:center;
	border-radius:50px;
	color:var(--white-color);
	font-family: 'Font Awesome 6 Free';
	background-color:var(--main-color);
}

.cart-table tbody tr .prod-column .column-box .prod-thumb img{
	display:block;
	max-width:100%;
}

.cart-table tbody tr .prod-column .column-box h3{
	margin-bottom:10px;
}

.cart-table tbody tr .remove-btn{
	position:relative;
	font-size:18px;
	color:var(--color-two);
	width:34px;
	height:34px;
	text-align:center;
	line-height:30px;
	display:inline-block;
	border:2px solid #ececec;
	-webkit-transition:all 500ms ease;
	-ms-transition:all 500ms ease;
	-o-transition:all 500ms ease;
	-moz-transition:all 500ms ease;
	transition:all 500ms ease;
}

.cart-table tbody tr .remove-btn .fa{
	position:relative;
	top:2px;
	font-size:14px;
	line-height:14px;
	width:14px;
	height:14px;
	margin-right:5px;
	background:#f0f0f0;
	color:var(--white-color);
	text-align:center;
	overflow:hidden;
	text-indent:100px;
}

.cart-table tbody tr .remove{
	text-align:center;
}

.cart-table tbody tr .remove-btn:hover{
	color:var(--main-color);
	border-color:var(--main-color);
}

.cart-table tbody tr .remove-btn:hover .fa{
	text-indent:0px;
	background:var(--main-color);
}

.cart-table tbody tr{
	border-bottom:1px solid #f0f0f0;	
}

.cart-table tbody tr td.price{
	font-weight:500;
	font-size:15px;
	color:var(--black-color);
}

.cart-table tbody tr td.sub-total{
	font-weight:500;
	font-size:15px;
	color:var(--black-color);
}

.shoping-cart-section .total-column{
	position:relative;
	margin-bottom:25px;
}

.shoping-cart-section .total-column .inner-column{
	position:relative;
	
}

.shoping-cart-section .total-column .title-box{
	position:relative;
	text-align:center;
	margin-bottom:20px;
	color:var(--black-color);
}

.shoping-cart-section .total-column .title-box h6{
	color:var(--black-color);
}

.cart-total-box{
	position:relative;
	padding:30px 30px;
	margin-bottom:30px;
	border:1px solid rgba(var(--black-color-rgb), 0.06);
}

/* Cart Totals */

.cart-totals{
	position:relative;
}

.cart-totals li{
	position:relative;
	padding:15px 0px;
	font-size:18px;
	color:var(--black-color);
	margin-bottom:5px;
	border-bottom:1px solid rgba(var(--black-color-rgb), 0.06);
}

.cart-totals li span{
	position:absolute;
	right:0px;
}

.shoping-cart-section .check-box{
	position:relative;
	margin-bottom:25px;
	margin-top:20px;
}

.shoping-cart-section .check-box label{
	color:#2b2b2b;
}

.shoping-cart-section .check-box label{
	position: relative;
	display: block;
	width: 100%;
	cursor: pointer;
	margin-bottom: 0;
	font-weight: 400;
	line-height: 22px;
	padding: 4px 10px 0px;
	padding-left: 30px;
	font-size:16px;
	color:var(--black-color);
	-webkit-transition: all 300ms ease;
	-moz-transition: all 300ms ease;
	-ms-transition: all 300ms ease;
	-o-transition: all 300ms ease;
	transition: all 300ms ease;
}

.shoping-cart-section .check-box input[type="checkbox"]:checked + label{
	border-color: 0px;
}

.shoping-cart-section .form-group .check-box label {
    padding-left: 30px;
    padding-top: 1px;
    cursor: pointer;
}

.shoping-cart-section .check-box label:before{
	position: absolute;
	left: 0;
	top: 6px;
	height:20px;
	width: 20px;
	background: #ffffff;
	content: "";
	border-radius: 0px;
	-webkit-transition: all 300ms ease;
	-moz-transition: all 300ms ease;
	-ms-transition: all 300ms ease;
	-o-transition: all 300ms ease;
	transition: all 300ms ease;
	border:1px solid rgba(var(--black-color-rgb), 0.10);
}

.shoping-cart-section .check-box label:after {
	position: absolute;
	left: 0px;
	top: 0;
	height: 15px;
	line-height: 15px;
	max-width: 0;
	font-size: 14px;
	color: #ffffff;
	font-weight: 800;
	overflow: hidden;
	background: transparent;
	text-align: center;
	font-family: 'FontAwesome';
	-webkit-transition: max-width 500ms ease;
	-moz-transition: max-width 500ms ease;
	-ms-transition: max-width 500ms ease;
	-o-transition: max-width 500ms ease;
	transition: max-width 500ms ease;
}

.shoping-cart-section .check-box input[type="checkbox"] {
	display: none;
}

.shoping-cart-section .check-box input[type="checkbox"]:checked + label:before{
	border: 8px solid var(--main-color);
    background-color: var(--white-color);
}

.shoping-cart-section .check-box input[type="checkbox"]:checked + label:after {
	max-width: 20px;
	opacity: 1;	
}

/* Shipping Outer */

.shipping-outer{
	position:relative;
}

.shipping-outer .cart-shipping-box{
	position:relative;
	padding:20px 30px 20px;
	margin-bottom:30px;
	border:1px solid rgba(var(--black-color-rgb), 0.06);
}

/* Cart Totals */

.shipping-list{
	position:relative;
}

.shipping-list li{
	position:relative;
	padding:15px 0px;
	font-size:16px;
	margin-bottom:5px;
	color:var(--black-color);
	border-bottom:1px solid rgba(var(--black-color-rgb), 0.06);
}

.shipping-outer .buttons-box{
	position:relative;
	margin-top:25px;
}

/* Checkout Section */

.checkout-section{
	position:relative;
	padding:100px 0px 80px;
}

.checkout-section h4{
	margin-bottom:25px;
	color:var(--black-color);
}

.checkout-section .form-column{
	position:relative;
	margin-bottom:30px;
}

.checkout-section .form-column .inner-column{
	position:relative;
}

.checkout-section .order-column{
	position:relative;
	margin-bottom:30px;
}

.checkout-section .order-column .inner-column{
	position:relative;
}


/*** 

====================================================================
	Shipping Form
====================================================================

***/

.shipping-form .form-group{
	margin-bottom:30px;
}

.shipping-form .form-group:last-child{
	margin-bottom:0px;
}

.shipping-form .form-group input[type="text"],
.shipping-form .form-group input[type="password"],
.shipping-form .form-group input[type="tel"],
.shipping-form .form-group input[type="email"],
.shipping-form .form-group select,
.shipping-form .form-group .ui-selectmenu-button.ui-button{
	position:relative;
	display:block;
	width:100%;
	line-height:45px;
	padding:10px 25px;
	height:70px;
	border-radius:0px;
	font-size:16px;
	color:var(--black-color);
	background:var(--white-color);
	-webkit-transition:all 300ms ease;
	-ms-transition:all 300ms ease;
	-o-transition:all 300ms ease;
	-moz-transition:all 300ms ease;
	transition:all 300ms ease;
	border:1px solid rgba(var(--black-color-rgb), 0.06);
}

.shipping-form .form-group .ui-button .ui-icon{
	top: 11px;
}

.shipping-form .form-group textarea::-webkit-input-placeholder,
.shipping-form .form-group input::-webkit-input-placeholder{
	color:var(--black-color);
}

.shipping-form .form-group input[type="text"]:focus,
.shipping-form .form-group input[type="password"]:focus,
.shipping-form .form-group input[type="tel"]:focus,
.shipping-form .form-group input[type="email"]:focus,
.shipping-form .form-group select:focus,
.shipping-form .form-group textarea:focus{
	border-color:var(--main-color);
}

.shipping-form .form-group textarea{
	position:relative;
	display:block;
	width:100%;
	line-height:24px;
	font-size:16px;
	height:200px;
	resize:none;
	font-size:16px;
	border-radius:0px;
	padding:20px 25px 25px;
	color:var(--black-color);
	background:var(--white-color);
	-webkit-transition:all 300ms ease;
	-ms-transition:all 300ms ease;
	-o-transition:all 300ms ease;
	-moz-transition:all 300ms ease;
	transition:all 300ms ease;
	border:1px solid rgba(var(--black-color-rgb), 0.06);
}

.shipping-form .check-box{
	position:relative;
}

.shipping-form .check-box label{
	color:var(--black-color);
}

.shipping-form .check-box label{
	position: relative;
	display: block;
	width: 100%;
	cursor: pointer;
	margin-bottom: 0;
	font-weight: 400;
	line-height: 22px;
	padding: 4px 10px 0px;
	padding-left: 30px;
	font-size:18px;
	display:inline;
	color:var(--black-color);
	-webkit-transition: all 300ms ease;
	-moz-transition: all 300ms ease;
	-ms-transition: all 300ms ease;
	-o-transition: all 300ms ease;
	transition: all 300ms ease;
}

.shipping-form .check-box input[type="checkbox"]:checked + label{
	border-color: var(--main-color);
}

.shipping-form .check-box label {
    padding-left: 30px;
    padding-top: 1px;
    cursor: pointer;
}

.shipping-form .check-box label:before{
	position: absolute;
	left: 0;
	top: 2px;
	height:20px;
	width: 20px;
	background: #ffffff;
	content: "";
	border-radius: 0px;
	-webkit-transition: all 300ms ease;
	-moz-transition: all 300ms ease;
	-ms-transition: all 300ms ease;
	-o-transition: all 300ms ease;
	transition: all 300ms ease;
	border:1px solid rgba(var(--black-color-rgb), 0.10);
}

.shipping-form .check-box label:after {
	position: absolute;
	left: 0px;
	top: 0;
	height: 15px;
	line-height: 15px;
	max-width: 0;
	font-size: 14px;
	color: #ffffff;
	font-weight: 800;
	overflow: hidden;
	background: transparent;
	text-align: center;
	font-family: 'FontAwesome';
	-webkit-transition: max-width 500ms ease;
	-moz-transition: max-width 500ms ease;
	-ms-transition: max-width 500ms ease;
	-o-transition: max-width 500ms ease;
	transition: max-width 500ms ease;
}

.shipping-form .check-box input[type="checkbox"] {
	display: none;
}

.shipping-form .check-box input[type="checkbox"]:checked + label:before{
	border: 8px solid var(--main-color);
    background-color: var(--white-color);
}

.shipping-form .check-box input[type="checkbox"]:checked + label:after {
	max-width: 20px;
	opacity: 1;	
}

.shipping-form .theme-btn{
	cursor:pointer;
}

.order-box{
	position:relative;
	padding:25px 25px;
	border:1px solid rgba(var(--black-color-rgb), 0.10);
}

.order-totals{
	position:relative;
}

.order-totals li{
	position:relative;
	font-weight:600;
	padding:18px 25px;
	border-radius:3px;
	font-size:14px;
	text-transform:uppercase;
	margin-bottom:30px;
	border:1px solid rgba(var(--black-color-rgb), 0.07);
}

.order-totals li span{
	position:absolute;
	right:25px;
	font-weight:500;
	color:var(--black-color);
}

.order-totals li:last-child{
	color:var(--white-color);
	background-color:var(--black-color);
}

.order-totals li:last-child span{
	color:var(--white-color);
}

/* Voucher Box */

.voucher-box{
	position:relative;
}

.voucher-box .form-group{
	position:relative;
	margin:0px;
	width:100%;
	max-width:100%;
	padding-right:100px;
}

.voucher-box .form-group input[type="text"],
.voucher-box .form-group input[type="email"]{
	position:relative;
	line-height:38px;
	display:block;
	height:52px;
	width:100%;
	font-weight:500;
	border-radius:0px;
	box-shadow:inherit;
	font-size:14px;
	transition:all 500ms ease;
	-moz-transition:all 500ms ease;
	-webkit-transition:all 500ms ease;
	-ms-transition:all 500ms ease;
	-o-transition:all 500ms ease;
	padding:10px 15px 10px 25px;
	color:var(--black-color);
	background-color:rgba(var(--white-color-rgb), 1);
	border:1px solid rgba(var(--black-color-rgb), 0.07);
}

.voucher-box .form-group input::placeholder,
.voucher-box .form-group textarea::placeholder{
	color:var(--black-color);
}

.voucher-box .form-group button{
	position:absolute;
	right:0px;
	top:0px;
	font-weight:500;
	padding:15px 24px;
	font-size:14px;
	color:var(--white-color);
	text-transform:capitalize;
	background-color:var(--black-color);
}

.order-box .order-total{
	position:relative;
	font-weight:500;
	font-size:18px;
	color:var(--black-color);
	margin-top:30px;
}

.order-box .order-total span{
	position:absolute;
	right:0px;
}

.order-box .button-box{
	position:relative;
	margin-top:30px;
}

.order-box .pay-btn{
	position:relative;
	width:100%;
	text-align:center;
	padding:17px 15px;
	border-radius:6px;
	font-weight:600;
	color:var(--white-color);
	text-transform:uppercase;
	background-color:var(--black-color);
}

.order-box .pay-btn:hover{
	letter-spacing:2px;
	background-color:var(--black-color);
}

/*** 

====================================================================
	Register One
====================================================================

***/

.register-one{
	position: relative;
	padding: 100px 0px 80px;
}

.register-one .form-column{
	position: relative;
	margin-bottom: 30px;
}

.register-one .form-column .inner-column{
	position: relative;
	padding: 30px 30px;
	border-radius: 5px;
	border: 1px solid rgba(var(--black-color-rgb), 0.10);
}

.register-one h3{
	position: relative;
	margin-bottom: 20px;
	color: var(--black-color);
}

/* Contact Form */

.contact-form{
	position:relative;
}

.contact-form .form-group{
	margin-bottom: 18px;
}

.contact-form .form-group:last-child{
	margin-bottom:0px;
}

.contact-form .form-group input[type="text"],
.contact-form .form-group input[type="password"],
.contact-form .form-group input[type="tel"],
.contact-form .form-group input[type="email"],
.contact-form .form-group select{
	position:relative;
	display:block;
	width:100%;
	height: 50px;
	line-height:28px;
	padding:10px 30px;
	font-weight:400;
	font-size: 16px;
	background:none;
	color: #000000;
	border-radius: 5px;
	-webkit-transition:all 300ms ease;
	-ms-transition:all 300ms ease;
	-o-transition:all 300ms ease;
	-moz-transition:all 300ms ease;
	transition:all 300ms ease;
	background-color: #f5f5f5;
}

.contact-form .form-group input[type="text"]:focus,
.contact-form .form-group input[type="password"]:focus,
.contact-form .form-group input[type="tel"]:focus,
.contact-form .form-group input[type="email"]:focus,
.contact-form .form-group select:focus,
.contact-form .form-group textarea:focus{
	
}

.contact-form .form-group .theme-btn{
	margin-top:10px;
}

.contact-form .form-group textarea{
	position:relative;
	display:block;
	width:100%;
	height:180px;
	resize:none;
	color: #000000;
	font-size: 18px;
	line-height:26px;
	padding:20px 25px;
	border-radius: 5px;
	-webkit-transition:all 300ms ease;
	-ms-transition:all 300ms ease;
	-o-transition:all 300ms ease;
	-moz-transition:all 300ms ease;
	transition:all 300ms ease;
	background-color: #f5f5f5;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus{
	
}

.contact-form input.error,
.contact-form select.error,
.contact-form textarea.error{
	border-color:#ff0000 !important;	
}

.contact-form label.error{
	display:block;
	line-height:24px;
	padding:5px 0px 0px;
	margin:0px;
	text-transform:uppercase;
	font-size:12px;
	color:#ff0000;
	font-weight:500;	
}

.comment-form{
	position: relative;
	margin-top: 40px;
}

.comment-form .group-title{
	position: relative;
	margin-bottom: 20px;
}

.comment-form .default-form{
	position: relative;
	padding: 45px 45px;
	border-radius: 5px;
	background-color: #f8f6f6;
}

/*** 

====================================================================
	Default Form
====================================================================

***/

.default-form .form-group{
	position: relative;
	margin-bottom: 20px;
}

.default-form .form-group:last-child{
	margin-bottom:0px;
}

.default-form .form-group input[type="text"],
.default-form .form-group input[type="password"],
.default-form .form-group input[type="tel"],
.default-form .form-group input[type="email"],
.default-form .form-group select{
	position:relative;
	display:block;
	width:100%;
	line-height:28px;
	padding:10px 25px;
	height:60px;
	border-radius:5px;
	font-weight: 500;
	font-size: 16px;
	color:var(--black-color);
	-webkit-transition:all 300ms ease;
	-ms-transition:all 300ms ease;
	-o-transition:all 300ms ease;
	-moz-transition:all 300ms ease;
	transition:all 300ms ease;
	background-color:var(--white-color);
}

.default-form .form-group textarea::-webkit-input-placeholder,
.default-form .form-group input::-webkit-input-placeholder{
	color:var(--black-color);
}

.default-form .form-group input[type="text"]:focus,
.default-form .form-group input[type="password"]:focus,
.default-form .form-group input[type="tel"]:focus,
.default-form .form-group input[type="email"]:focus,
.default-form .form-group select:focus,
.default-form .form-group textarea:focus{
	border-color:var(--black-color);
}

.default-form .form-group textarea{
	position:relative;
	display:block;
	width:100%;
	line-height:24px;
	padding:15px 25px 25px;
	font-size: 16px;
	color:var(--black-color);
	height:122px;
	resize:none;
	border-radius:5px;
	font-weight: 500;
	-webkit-transition:all 300ms ease;
	-ms-transition:all 300ms ease;
	-o-transition:all 300ms ease;
	-moz-transition:all 300ms ease;
	transition:all 300ms ease;
	background-color:var(--white-color);
}

.default-form.contact-form .form-group input,
.default-form.contact-form .form-group textarea{
	border-radius: 0px;
	border: 1px solid rgba(var(--black-color-rgb), 0.06);
}

.default-form .form-group button{
	margin-top: 10px;
}

.default-form label{
	position: relative;
	display: block;
	font-weight: 500;
	color: #090909;
	font-size: 18px;
	margin-bottom: 15px;
}

.default-form .text{
	position: relative;
	color: #3A3A3A;
	line-height: 28px;
	font-size: 18px;
}

.default-form .text a{
	position: relative;
	color: #090909;
	font-weight: 600;
}
/* Qonstruct Construction Business HTML-5 Template */

/*** 

====================================================================
	Privacy Section
====================================================================

***/

.privacy-section{
	position:relative;
	padding:100px 0px 100px;
}

.privacy-section .privacy-content{
	position:relative;
	padding-bottom:15px;
	margin-bottom:25px;
	border-bottom:1px solid #e2e2e2;
}

.privacy-section .privacy-content:last-child{
	padding-bottom:0px;
	margin-bottom:0px;
	border:none;
}

.privacy-section h3{
	color:var(--black-color);
	margin-bottom:20px;
}

.privacy-section p{
	margin-bottom: 20px;
}

.privacy-section .date{
	position:relative;
	font-weight:500;
	font-size:18px;
	margin-bottom:15px;
	color:var(--main-color);
}

.privacy-section h4{
	color:var(--black-color);
	margin-bottom:20px;
}

.privacy-section .privacy-list{
	position:relative;
	margin-left:20px;
}

.privacy-section .privacy-list li{
	position:relative;
	font-weight:400;
	padding-left:26px;
	line-height:1.7em;
	font-size:18px;
	margin-bottom:10px;
	color:var(--black-color);
}

.privacy-section .privacy-list li:before{
	position:absolute;
	content:'';
	left:0px;
	top:10px;
	width:7px;
	height:7px;
	border-radius:50px;
	background-color:var(--main-color);
}
/* Qonstruct Construction Business HTML-5 Template */

/***

====================================================================
	Page Title
====================================================================

***/

.page-title{
	position:relative;
	overflow: hidden;
	padding: 170px 0px 40px;
	background-size: cover;
	text-align: center;
}

.page-title:before{
	position:absolute;
	content:'';
	left:0px;
	top:0px;
	right:0px;
	bottom:0px;
	opacity:0.80;
	background-color:var(--color-two);
}

.page-title .big-title{
	position:absolute;
	bottom:0px;
	font-size: 100px;
	line-height:1em;
	opacity:0.15;
	font-weight:700;
	color:var(--white-color);
	text-transform:capitalize;
}

.page-title h2{
	font-weight: 700;
	text-transform:capitalize;
	color:var(--white-color);
	margin-bottom: 10px;
}

.page-title .bread-crumb{
	position: relative;
	display: inline-block;
}

.page-title .bread-crumb li{
	position: relative;
	font-weight: 500;
	display:inline-block;
	font-size: 18px;
	color:var(--white-color);
	text-transform:capitalize;
	margin-right: 15px;
	padding-right: 15px;
}

.page-title .bread-crumb li:before{
	position: absolute;
	right: -6px;
	top:0px;
    content: "-";
	color:var(--white-color);
}

.page-title .bread-crumb li:last-child{
	padding-right: 0;
	margin-right: 0;
}

.page-title .bread-crumb li:last-child:before{
	display: none;
}

.page-title .bread-crumb li a{
	color:var(--white-color);
	-webkit-transition: all 300ms ease;
	-moz-transition: all 300ms ease;
	-ms-transition: all 300ms ease;
	-o-transition: all 300ms ease;
	transition: all 300ms ease;	
}

.page-title .bread-crumb li a:hover{
	color: var(--main-color);
}

.page-title_text{
	position:relative;
	font-size:18px;
	line-height:30px;
	max-width:320px;
	color:var(--white-color);
}
.facebook{
      background-color: #1877F2;
}
.instagram{
     background: radial-gradient(circle at 30% 107%, #fdf497 0%, 
        #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
}
.youtube{
     background-color: #FF0000; 
}
.linkedin{
     background-color: #0A66C2;
}
.cta-one_titlenew{
    text-align: justify;
    color: white;
    font-size: 38px;
    line-height: 50px;
}
.flex_box{
    height:100%;
    display:flex;
    align-items: center;
}
.activeser{
    background: black;
}
.activeser:after {
    position: absolute;
    content: '';
    left: 0px;
    right: 0px;
    bottom: -10px;
    height: 10px;
    z-index: -1;
    transform: scale(1, 1);
    opacity: 1;
    -webkit-transition: all 500ms 
ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms 
ease;
    /* transform: scale(0.1, 1); */
    background-color: var(--main-color);
}
.client-image{
    text-align: center;
    border: 1px solid #0000000d;
    border-radius: 2px;
    overflow: hidden;
}
.why_para{
    margin:15px 0px 10px;
}
.flex_box{
    height:100%;
    display:flex;
    align-items:center;
    justify-content: end;
}
.counbox{
    
}
.gallery_sec{
    padding: 0px 9px 20px;
}
.links-widget{
    margin-left: -40px;
}
@media(max-width:768px){
    .header-info_list {
    position: relative;
    display: flex;
    gap: 25px;
    display: none;
}
.header-top .inner-container {
    position: relative;
    padding: 7px 0px 13px;
    margin-left: 0px;
}
.main-header .header-lower .inner-container:after {
    position: absolute;
    content: '';
    z-index: -6;
    left: -320px;
    top: -64px;
    width: 747px;
    height: 1px;
    background: none;
}
.main-header .header-lower .inner-container:before {
    position: revert;
    content: '';
    left: 200px;
    top: 0px;
    right: 0px;
    bottom: 0px;
    border-radius: 4px;
    background-color: rgb(248 29 14 / 0%);
}
.main-header .header-lower .inner-container {
    position: relative;
    padding-left: 0px;
    padding-right: 0px;
}
.main-header .header-lower {
    position: relative;
    transition: all 900ms 
ease;
    -moz-transition: all 900ms ease;
    -webkit-transition: all 900ms 
ease;
    -ms-transition: all 900ms ease;
    -o-transition: all 900ms ease;
    padding-left: 0px;
}
.main-header .header-lower .logo-box {
    position: revert;
    left: -85px;
    top: -27px;
    z-index: 1;
}
.main-header .header-lower .logo-box .logo {
    position: sticky;
    max-width: 160px;
}
.header-top .inner-container {
    position: relative;
    padding: 4px 0px 9px;
    margin-left: 0px;
    border-bottom: 1px solid #00000021;
    margin-bottom: -6px;
}
.main-header .mobile-nav-toggler {
    position: relative;
    font-size: 26px;
    line-height: 1em;
    cursor: pointer;
    display: block;
    color: #000000;
    font-family: 'Font Awesome 6 Free';
}
.slider-one .side-image {
    position: revert;
    right: -255px;
    top: 46px;
    z-index: 10;
}
.mobile-menu .nav-logo {
    position: relative;
    padding: 5px 13px;
    text-align: left;
}
.slider-one .swiper-slide {
    position: relative;
    overflow: hidden;
    padding: 130px 0px 37px;
    height: 100%;
}
.slider-one .play-box .fa {
    position: relative;
    width: 26px;
    height: 26px;
    font-size: 15px;
    line-height: 28px;
    margin-right: -1px;
    padding-left: 8px;
    display: inline-block;
    color: var(--white-color);
    text-align: center !important;
    border-radius: 50px 0px 0px 50px;
    background-color: var(--main-color);
}
.slider-one .play-box {
    position: relative;
    font-size: 17px;
    font-weight: 600;
    color: rgb(255 255 255);
}
.slider-one_heading {
    margin-top: 12px;
    color: var(--color-two);
    text-transform: capitalize;
    transition: 1.3s 
cubic-bezier(0.5, 0.5, 0, 1);
    clip-path: polygon(0% 0%, 0% 0%, 0% 100%, 0% 100%);
}
h1 {
    line-height: 38px;
    font-size: 28px;
}
.text_invert > div {
    display: inline ! IMPORTANT;
}
.slider-one_text {
    font-weight: 400;
    font-size: 16px;
    max-width: 450px;
    line-height: 28px;
    margin-top: 16px;
    margin-bottom: 22px;
    color: rgb(255 255 255);
    text-transform: capitalize;
    transition: 1.3s 
cubic-bezier(0.5, 0.5, 0, 1);
    clip-path: polygon(0% 0%, 0% 0%, 0% 100%, 0% 100%);
}
.btn-style-two i {
    position: relative;
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    margin-left: 15px;
    border-radius: 42px;
    display: inline-block;
    color: var(--white-color);
    transform: rotate(-45deg);
    background-color: var(--black-color);
}
.slider-one .side-image img {
    top: 13px;
    position: relative;
    width: 100%;
    display: block;
}
.welcome-one_content-column {
    position: relative;
    margin-bottom: 30px;
    margin-left: 0px;
}
h2 {
    line-height: 40px;
    font-size: 28px;
}
.welcome-one_tag {
    position: relative;
    font-size: 16px;
    display: flex;
    font-weight: 600;
    line-height: 27px;
    align-content: center;
    color: var(--color-two);
    background-color: #f5f5f5;
    padding: 9px 12px 10px 11px;
    border-radius: 5px;
}
.sec-title {
    position: relative;
    z-index: 2;
    margin-bottom: 14px;
}
.counter-block .inner {
    padding: 15px 0px;
    border-right: none;
    background: #e1e1e1d4;
    box-shadow: 1px 1px 20px #00000000;
    border-bottom: 1px solid rgb(255 0 0 / 13%);
}
.project-one {
    position: relative;
    padding: 6px 0px 0px;
    background: #f5f5f500;
}
.cta-one_titlenew {
    text-align: left;
    color: white;
    font-size: 30px;
    line-height: 39px;
}
.btn-style-three i {
    position: relative;
    width: 35px;
    height: 35px;
    line-height: 37px;
    text-align: center;
    margin-left: 15px;
    border-radius: 50px;
    display: inline-block;
    color: var(--white-color);
    transform: rotate(-45deg);
    background-color: var(--black-color);
}
.fluid-one .left-box {
    display: none;
}
.fluid-one .right-box {
    position: relative;
    width: 100%;
    float: none;
    padding: 4px 20px 7px 20px;
}
.fluid-block_one-title {
    position: relative;
    color: var(--color-two);
    font-size: 18px;
    font-weight: 500;
    line-height: 27px;
}
.fluid-block_one-text {
    position: relative;
    font-size: 16px;
    margin-top: 2px;
    line-height: 26px;
    color: var(--color-two);
}
body {
    font-family: "Jost", sans-serif;
    line-height: 1.6em;
    font-weight: 400;
    font-size: 16px;
    color: var(--color-three);
    -webkit-font-smoothing: antialiased;
    -moz-font-smoothing: antialiased;
}
.text, p {
    position: relative;
    line-height: 30px;
    font-size: 16px;
    color: rgb(0 0 0);
}
.links-widget {
    margin-left: 0px;
}
}
.contact-one_form-outer{
    padding: 30px;
    border: 1px solid #b2b2b28a;
    border-radius: 5px;
}
.new-title{
    font-size:18px;
    line-height:28px;
}
@media(max-width:768px){
    .page-title {
    position: relative;
    overflow: hidden;
    padding: 142px 0px 20px;
    background-size: cover;
    text-align: center;
}
.main-header {
    position: fixed;
    left: 0px;
    top: 0px;
    right: 0px;
    z-index: 1001;
    width: 100%;
    transition: all 900ms 
ease;
    -moz-transition: all 900ms ease;
    -webkit-transition: all 900ms 
ease;
    -ms-transition: all 900ms ease;
    -o-transition: all 900ms ease;
    min-height: auto;
}
.page-title .bread-crumb li {
    position: relative;
    font-weight: 500;
    display: inline-block;
    font-size: 16px;
    color: var(--white-color);
    text-transform: capitalize;
    margin-right: 15px;
    padding-right: 15px;
}
.page-title h2 {
    font-weight: 700;
    text-transform: capitalize;
    color: var(--white-color);
    margin-bottom: 10px;
    font-size: 30px;
}
.contact-one_form-outer {
    padding: 8px;
    border: 1px solid #b2b2b252;
    border-radius: 5px;
}
.contact-one_info-list li .icon {
    position: absolute;
    left: 0px;
    top: 2px;
    width: 50px;
    height: 50px;
    line-height: 55px;
    text-align: center;
    font-size: 25px;
    color: var(--white-color);
    background-color: var(--main-color);
    font-family: "flaticon_qonstruct";
}
.contact-one_info-list li {
    position: relative;
    min-height: 80px;
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 0px;
    padding-left: 70px;
    color: var(--black-color);
}
.contact-one_form-outer {
    padding: 8px;
    border: 1px solid #b2b2b252;
    border-radius: 5px;
    margin-top: 18px;
}
.gallery_sec {
    padding: 6px 0px 20px !important;
}
}
.clientbox{
    margin-bottom:23px;
}
.gallerybox{
    margin-bottom:15px;
}
.about_new{
    margin: 0px;
}
.cout_img{
    max-width: 53px;
}
.moto_img{
    
}
.feature_box{
    
}
.vm_box{
    background: #00000069;
    z-index: 1111;
    position: relative;
    padding: 20px;
    text-align: left;
    border-radius: 5px;
}
.vm_name{
    margin-bottom: 10px;
    color: white;
    font-size: 30px;
}
.vm_para{
    color: white;
}
.text_invertnew > div {
    color: white !important;
}
@media(max-width:768px){
    .slider-one-arrow {
    position: absolute;
    left: 0px;
    bottom: -10px;
    right: 0px;
    text-align: center;
    display: none;
}
}
 .slider-one-arrow {
    position: absolute;
    left: 0px;
    bottom: -10px;
    right: 0px;
    text-align: center;
    display: none;
}
.why_ul{
    margin: 23px 30px 0px;
}
.whychoose_list{
    list-style: circle;
    margin: 12px 0px;
    font-size: 17px;
}
.sec-title_new{
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 12px;
}
.footer-a{
    color: white;
}
.links-widgetnew{
    margin-left: -50px;
}
@media(min-width:991px){
    .instagram-block_one {
    position: relative;
    margin: -8px;
}
}
@media(max-width:768px){
    .gallerybox {
    margin-bottom: -3px;
}
}
.thankyou_para{
	font-size: 20px;
	line-height: 32px;
	color: white;
}