/* AgenKX AI Digital Agency HTML-5 Template */

/************ TABLE OF CONTENTS ***************
1. Fonts
2. Reset
3. Global
4. Main Header / Two / Three / Four
5. Main Slider / Slider Two / Slider Three
6. About One / Two / Three
7. Service One / Two / Three / Four / Five / Six
8. Agency One
9. Marketing One / Two / Three / Four
10. Gallery One / Two / Three
11. Awards One / Two
12. Marque One / Two
13. Team One / Two / Three
14. Price One / Two
15. Testimonial One / Two
16. News One / Two / Three
17. Main Footer / Two / Three
18. Banner One / Two
19. Features One
20. Counter One / Two
21. CTA One
22. Clients One
23. Faq One
24. Contact One
25. Experiance One
26. Experts One
27. Page Title
28. Privacy Policy
29. Terms & Conditions
30. Team Detail
31. Service Detail
32. Project Masonry
33. Project Detail
34. Our Shops
35. Shop Detail
36. Shoping Cart
37. CheckOut
38. Register
39. Coming Soon
40. Our Blogs
41. Blogs Widgets
42. Blog Classic
43. Blog Detail
44. Comments Box
45. Comments Form
46. Not Found
47. Blog Masonry
48. Contact Info
49. Contact Form
50. Maps

**********************************************/

/* 

	font-family: "Manrope", sans-serif;

*/

/*** 

====================================================================
	Root Code Variables
====================================================================

 ***/

.theme_color{
	color:var(--main-color);
}

/* Theme Color */

:root {
	
	/* #d9f45f in decimal RGB */
	--main-color: rgb(217,244,95);
	--main-color-rgb:217,244,95;
	
	/* #121310 in decimal RGB */
	--color-two: rgb(18,19,16);
	--color-two-rgb:18,19,16;
	
	/* #222222 in decimal RGB */
	--color-three: rgb(34,34,34);
	--color-three-rgb:34,34,34;
	
    /* #ffffff in decimal RGB */
	--white-color:rgb(255,255,255);
	--white-color-rgb:255,255,255;

	/* #000000 in decimal RGB */
	--black-color:rgb(0,0,0);
	--black-color-rgb:0,0,0;
}

/*** 

====================================================================
	Reset
====================================================================

 ***/
 
* {
	margin:0px;
	padding:0px;
	border:none;
	outline:none;
}

.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;
}

/*** 

====================================================================
	Global Settings
====================================================================

***/


/* width */
::-webkit-scrollbar {
  width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
  background-color: #f1f1f1;
}

/* Handle */
::-webkit-scrollbar-thumb {
	background-color: var(--main-color);
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background-color: var(--color-two);
}

body {
	font-family: "Manrope", sans-serif;
	line-height:1.6em;
	font-weight:400;
	font-size:14px;
	background-color:#0d0d0d;
	-webkit-font-smoothing: antialiased;
	-moz-font-smoothing: antialiased;
}

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;
}
a:hover{
	color:var(--main-color);
}

h1,h2,h3,h4,h5,h6 {
	position:relative;
	margin:0px;
	background:none;
	font-weight: 600;
	font-family: "Inter", sans-serif;
}

textarea{
	overflow:hidden;
}

.text,
p{
	position:relative;
	line-height:28px;
	font-size:16px;
}

/* Typography */

h1{
	line-height:70px;
	font-size:60px;
}

h2{
	line-height:70px;
	font-size:55px;
}

h3{
	line-height:40px;
	font-size:30px;
}

h4{
	line-height:34px;
	font-size:24px;
}

h5{
	line-height:32px;
	font-size:22px;
}

h6{
	line-height:30px;
	font-size:18px;
}

.auto-container{
	position:static;
	max-width:1350px;
	padding:0px 15px;
	margin:0 auto;
}

.page-wrapper{
	position:relative;
	margin:0 auto;
	width:100%;
	min-width:300px;
}

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
====================================================================

***/

.progress-wrap {
	position: fixed;
	right: 30px;
	bottom: 40px;
	height: 35px;
	width: 35px;
	cursor: pointer;
	display: block;
	border-radius: 50px;
	color: var(--main-color);
	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;
    stroke: 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:var(--margin-bottom-10);
	padding-left:var(--padding-left-30);
}

.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;
}

/* ==== New Unique Button Style ==== */

.btn-style-one{ 
	position: relative;
	font-weight:600;
	font-size: 15px;
	line-height: 1em;
	overflow: hidden;
	text-align:center;
	border-radius:4px;
	padding:17px 30px;
	display:inline-block;
	color: var(--color-two);
	text-transform: capitalize;
	background-color: var(--main-color);
	transition: all 0.35s ease;
}

.btn-style-one .btn-wrap{
	position:relative;
	z-index:2;
	overflow:hidden;
	display:inline-block;
}

.btn-style-one .text-one{
	display:block;
	transition: all .4s ease;
	transform-origin: bottom;
}

.btn-style-one:hover .text-one{
	transform: rotateX(90deg);
	opacity:0;
}

.btn-style-one .text-two{
	position:absolute;
	left:0;
	right:0;
	top:0;
	transform: rotateX(-90deg);
	opacity:0;
	transition: all .4s ease;
	transform-origin: top;
}

.btn-style-one:hover .text-two{
	transform: rotateX(0deg);
	opacity:1;
	color: var(--color-two);
}

/* Btn Style Two */

.btn-style-two {
  position: relative;
  display: inline-flex;
  align-items: center;
  background: none;
}

.btn-style-two .left-arrow {
  position: absolute;
  left: 0px;
  top: 0px;
  opacity: 0;
  width: 56px;
  height: 56px;
  font-size: 20px;
  line-height: 56px;
  border-radius: 50px;
  display: inline-flex;
  text-align: center;
  align-items: center;
  justify-content: center;
  transform: scale(0);
  color: var(--color-two);
  transition: all 500ms ease;
  background-color: var(--white-color);
}

.btn-style-two .left-arrow:hover {
  color: var(--color-two);
  background-color: var(--main-color);
}

.btn-style-two .left-arrow:before {
  display: inline-block;
  transform: rotate(-45deg);
}

.btn-style-two .theme-btn {
  position: relative;
  font-size: 16px;
  font-weight: 700;
  padding: 17px 34px;
  border-radius: 50px;
  display: inline-block;
  text-transform: capitalize;
  transition: all 500ms ease;
  color: var(--color-two);
  background-color: var(--main-color);
}

.btn-style-two .theme-btn:hover {
  color: var(--color-two);
  background-color: var(--white-color);
}

.btn-style-two .right-arrow {
  position: relative;
  font-size: 20px;
  width: 56px;
  height: 56px;
  line-height: 56px;
  border-radius: 50px;
  display: inline-block;
  display: inline-flex;
  justify-content: center;
  transition: all 500ms ease;
  color: var(--color-two);
  background-color: var(--white-color);
}

.btn-style-two .right-arrow:before {
  display: inline-block;
  transform: rotate(-45deg);
}

.btn-style-two .right-arrow:hover {
  color: var(--theme-color1);
  background-color: var(--theme-color-white);
}

.btn-style-two:hover .left-arrow {
  opacity: 1;
  transform: scale(1);
}

.btn-style-two:hover .theme-btn {
  transform: translateX(56px);
}

.btn-style-two:hover .right-arrow {
  transform: scale(0);
}

/* Btn Style Three */

.btn-style-three {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.btn-style-three .left-arrow {
  position: absolute;
  left: 0px;
  top: 0px;
  opacity: 0;
  width: 56px;
  height: 56px;
  font-size: 20px;
  line-height: 56px;
  border-radius: 50px;
  display: inline-flex;
  text-align: center;
  align-items: center;
  justify-content: center;
  transform: scale(0);
  color: var(--white-color);
  transition: all 500ms ease;
  border:1px solid var(--white-color);
}

.btn-style-three .left-arrow:hover {
  color: var(--color-two);
  border-color: var(--main-color);
  background-color: var(--main-color);
}

.btn-style-three .left-arrow:before {
  display: inline-block;
  transform: rotate(-45deg);
}

.btn-style-three .theme-btn {
  position: relative;
  font-size: 16px;
  font-weight: 500;
  padding: 16px 36px;
  border-radius: 50px;
  display: inline-block;
  text-transform: capitalize;
  transition: all 500ms ease;
  color: var(--white-color);
  border:1px solid var(--white-color);
}

.btn-style-three .theme-btn:hover {
  color: var(--color-two);
  border-color: var(--main-color);
  background-color: var(--main-color);
}

.btn-style-three .right-arrow {
  position: relative;
  font-size: 20px;
  width: 56px;
  height: 56px;
  line-height: 56px;
  border-radius: 50px;
  display: inline-block;
  display: inline-flex;
  justify-content: center;
  transition: all 500ms ease;
  color: var(--color-two);
  background-color: var(--white-color);
}

.btn-style-three .right-arrow:before {
  display: inline-block;
  transform: rotate(-45deg);
}

.btn-style-three .right-arrow:hover {
  color: var(--theme-color1);
  background-color: var(--theme-color-white);
}

.btn-style-three:hover .left-arrow {
	opacity: 1;
	transform: scale(1);
}

.btn-style-three:hover .theme-btn {
	transform: translateX(56px);
}

.btn-style-three:hover .right-arrow {
	transform: scale(0);
}

/* Btn Style Four */

.btn-style-four{
  position: relative;
  display: inline-flex;
  align-items: center;
  border-radius: 50px;
  padding-right: 5px;
  color: var(--color-two);
  background-color: var(--main-color);
}

.btn-style-four .left-arrow {
  position: absolute;
  left: 5px;
  top: 4px;
  opacity: 0;
  width: 46px;
  height: 46px;
  font-size: 20px;
  line-height: 46px;
  border-radius: 50px;
  display: inline-flex;
  text-align: center;
  align-items: center;
  justify-content: center;
  transform: scale(0);
  color: var(--color-two);
  transition: all 500ms ease;
  color: var(--white-color);
  background-color: var(--color-two);
}

.btn-style-four .left-arrow:hover {
  color: var(--white-color);
  background-color: var(--color-three);
}

.btn-style-four .left-arrow:before {
  display: inline-block;
  transform: rotate(-45deg);
}

.btn-style-four .theme-btn {
  position: relative;
  font-size: 16px;
  font-weight: 600;
  border-radius: 50px;
  color: var(--color-two);
  display: inline-block;
  text-transform: capitalize;
  transition: all 500ms ease;
  padding: 16px 20px 16px 30px;
}

.btn-style-four .theme-btn:hover {
  color: var(--color-two);
}

.btn-style-four .right-arrow {
  position: relative;
  font-size: 20px;
  width: 46px;
  height: 46px;
  line-height: 46px;
  border-radius: 50px;
  display: inline-flex;
  justify-content: center;
  transition: all 500ms ease;
  color: var(--white-color);
  background-color: var(--color-two);
}

.btn-style-four .right-arrow:before {
  display: inline-block;
  transform: rotate(-45deg);
}

.btn-style-four .right-arrow:hover {
  color: var(--theme-color1);
  background-color: var(--theme-color-white);
}

.btn-style-four:hover .left-arrow {
	opacity: 1;
	transform: scale(1);
}

.btn-style-four:hover .theme-btn {
	transform: translateX(40px);
}

.btn-style-four:hover .right-arrow {
	transform: scale(0);
}

/* Btn Style Five */

.btn-style-five{
  position: relative;
  display: inline-flex;
  align-items: center;
}

.btn-style-five .left-arrow {
  position: absolute;
  left: 0px;
  top: 0px;
  opacity: 0;
  width: 56px;
  height: 56px;
  font-size: 20px;
  line-height: 56px;
  border-radius: 50px;
  display: inline-flex;
  text-align: center;
  align-items: center;
  justify-content: center;
  transform: scale(0);
  color: var(--main-color);
  transition: all 500ms ease;
  border:1px solid var(--main-color);
}

.btn-style-five .left-arrow:hover {
  color: var(--color-two);
  border-color: var(--main-color);
  background-color: var(--main-color);
}

.btn-style-five .left-arrow:before {
  display: inline-block;
  transform: rotate(-45deg);
}

.btn-style-five .theme-btn {
  position: relative;
  font-size: 16px;
  font-weight: 600;
  padding: 16px 36px;
  letter-spacing:1px;
  border-radius: 50px;
  display: inline-block;
  color: var(--main-color);
  text-transform: uppercase;
  transition: all 500ms ease;
  border:1px solid var(--main-color);
}

.btn-style-five .theme-btn:hover {
  color: var(--color-two);
  border-color: var(--main-color);
  background-color: var(--main-color);
}

.btn-style-five .right-arrow {
  position: relative;
  font-size: 20px;
  width: 56px;
  height: 56px;
  line-height: 54px;
  border-radius: 50px;
  display: inline-block;
  display: inline-flex;
  justify-content: center;
  transition: all 500ms ease;
  color: var(--main-color);
  border:1px solid var(--main-color);
}

.btn-style-five .right-arrow:before {
  display: inline-block;
  transform: rotate(-45deg);
}

.btn-style-five .right-arrow:hover {
  color: var(--theme-color1);
  background-color: var(--theme-color-white);
}

.btn-style-five:hover .left-arrow {
	opacity: 1;
	transform: scale(1);
}

.btn-style-five:hover .theme-btn {
	transform: translateX(56px);
}

.btn-style-five:hover .right-arrow {
	transform: scale(0);
}

/* Btn Style Six */

.btn-style-six{
	position: relative;
	display: inline-flex;
	align-items: center;
}

.btn-style-six .left-arrow {
	position: absolute;
	left: 0px;
	top: 0px;
	opacity: 0;
	width: 56px;
	height: 56px;
	font-size: 20px;
	line-height: 56px;
	border-radius: 50px;
	display: inline-flex;
	text-align: center;
	align-items: center;
	justify-content: center;
	transform: scale(0);
	color: var(--white-color);
	transition: all 500ms ease;
	background-color:#e8063c;
}

.btn-style-six .left-arrow:hover {
	color: var(--white-color);
	background-color: var(--black-color);
}

.btn-style-six .left-arrow:before {
	display: inline-block;
	transform: rotate(-45deg);
}

.btn-style-six .theme-btn {
	position: relative;
	font-size: 16px;
	font-weight: 600;
	padding: 17px 36px;
	letter-spacing:1px;
	border-radius: 50px;
	display: inline-block;
	color: var(--white-color);
	text-transform: uppercase;
	transition: all 500ms ease;
	background-color:#e8063c;
	font-family: "Baloo 2", sans-serif;
}

.btn-style-six .theme-btn:hover {
	color: var(--white-color);
	background-color: var(--black-color);
}

.btn-style-six .right-arrow {
	position: relative;
	font-size: 20px;
	width: 56px;
	height: 56px;
	line-height: 54px;
	border-radius: 50px;
	display: inline-block;
	display: inline-flex;
	justify-content: center;
	transition: all 500ms ease;
	color: var(--white-color);
	background-color:#e8063c;
}

.btn-style-six .right-arrow:before {
	display: inline-block;
	transform: rotate(-45deg);
}

.btn-style-six .right-arrow:hover {
	color: var(--white-color);
	background-color: var(--black-color);
}

.btn-style-six:hover .left-arrow {
	opacity: 1;
	transform: scale(1);
}

.btn-style-six:hover .theme-btn {
	transform: translateX(56px);
}

.btn-style-six:hover .right-arrow {
	transform: scale(0);
}

/* Btn Style Seven */

.btn-style-seven{
	position: relative;
	font-weight:500;
    font-size: 18px;
	overflow: hidden;
	text-align:center;
	padding:17px 34px;
	border-radius: 50px;
	letter-spacing: 1px;
	display:inline-block;
    color: var(--black-color);
	text-transform: uppercase;
	background-color:var(--main-color);
	font-family: "Big Shoulders", sans-serif;
}

.btn-style-seven: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(--white-color);
}

.btn-style-seven:hover:before{
	top: 0%;
}

.btn-style-seven i{
	position: relative;
	display: inline-block;
	transform: rotate(-45deg);
	transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
	-webkit-transition: all 0.3s ease;
}

.btn-style-seven:hover i{
	transform: rotate(0deg);
}

.btn-style-seven .btn-wrap{
	position:relative;
	z-index:1;
	float:left;
    overflow: hidden;
    display: inline-block;
}

.btn-style-seven .btn-wrap .text-one{
	position: relative;
	display: block;
	color: var(--black-color);
	transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
	-webkit-transition: all 0.3s ease;
}

.btn-style-seven:hover .btn-wrap  .text-one:first-child{
	-webkit-transform: translateY(-150%);
    -ms-transform: translateY(-150%);
    transform: translateY(-150%);
}

.btn-style-seven .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-seven:hover .btn-wrap .text-two{
	top: 50%;
    -webkit-transform: translateY(-50%); 
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

.btn-style-seven:hover .btn-wrap .text-two{
	color: var(--black-color);
}

.btn-style-seven:hover:before{
	top: -40%;
}

img{
	display:inline-block;
	max-width:100%;
	height:auto;	
}

/*** 

====================================================================
	Section Title
====================================================================

***/

.sec-title{
	position:relative;
    z-index: 2;
}

.sec-title_title{
	position: relative;
    font-weight: 600;
	display: block;
	font-size:16px;
	letter-spacing:1px;
	display: inline-block;
	color:var(--white-color);
}

.sec-title_title.star-icon{
	padding-left: 25px;
}

.sec-title_title.star-icon:before{
	position: absolute;
	content:'';
	left:0px;
	top:4px;
	width: 14px;
	height: 14px;
	background:url(../images/icons/star.png) no-repeat;
}

.sec-title_heading{
	font-weight: 600;
	color:var(--white-color);
}

.sec-title_text{
	line-height:30px; 
	font-size:18px;
    color:var(--white-color);
}

.sec-title.light .sec-title_text,
.sec-title.light .sec-title_heading{
	color:var(--white-color);
}

.sec-title.centered{
	text-align: center !important;
}

.sec-title.centered .separator{
	margin:0 auto;
}

/*** 

====================================================================
	Section Title Two
====================================================================

***/

.sec-title_two{
	position:relative;
    z-index: 2;
	margin-bottom:40px;
}

.sec-title_two-title{
	position: relative;
    font-weight: 600;
	display: block;
	font-size:16px;
	letter-spacing:1px;
	padding-left: 25px;
	color:var(--white-color);
	text-transform:uppercase;
}

.sec-title_two-title:before{
	position: absolute;
	content:'';
	left:0px;
	top:4px;
	width: 14px;
	height: 14px;
	background:url(../images/icons/star.png) no-repeat;
}

.sec-title_two-heading{
	font-size: 90px;
	margin-top: -10px;
	font-weight: 500;
	line-height:1.15em;
	color:var(--white-color);
    text-transform: capitalize; 
}

.sec-title_two-heading span{
	font-style: italic;
	 font-family: "Playfair", serif;
}

.sec-title_two .left-box {
    gap: 150px;
}

.sec-title_two-text{
	opacity:0.60;
	line-height:30px; 
	font-size:18px;
	margin-top:20px;
    color:var(--white-color);
}

.sec-title_two.light .sec-title_text,
.sec-title_two.light .sec-title_heading{
	color:var(--white-color);
}

.sec-title_two.centered{
	text-align: center !important;
}

.sec-title_two.centered .separator{
	margin:0 auto;
}

/* Custom Select */

.form-group .ui-selectmenu-button.ui-button{
	top:-2px;
	width:100%;
	border:0px;
	padding: 17px 25px;
	font-weight:500;
	line-height:28px;
	font-size:16px;
	color:var(--color-three);
	background-color: var(--white-color);
}

.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: "\f0d7";
	position:absolute;
	right:0px;
	top:2px !important;
	top:10px;
	height:22px;
	display:block;
	line-height:20px;
	font-size:18px;
	font-weight:normal;
	text-align:center;
	z-index:5;
	color:var(--color-fiftyfour);
}

.ui-menu .ui-menu-item{
	font-size:16px;
}

.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: 50%;
    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: 50%;
	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) rotate(-45deg);
	transform: translate(2px, 2px) rotate(-45deg);
}

.cursor-follower.active {
	opacity: 1;
	-webkit-transform: scale(2) rotate(-45deg);
	transform: scale(2) rotate(-45deg);
}

.cursor-follower.menu-active {
	opacity: 1;
	-webkit-transform: scale(2) rotate(-45deg);
	transform: scale(2) rotate(-45deg);
}

.cursor-follower.hovered {
	opacity: 1;
}
  
/* Cursor End */

.xs-sidebar-group .close-button{
	font-family: "Flaticon";
}

.newsletter-popup-area-section{
	display: none;
}

.text_invert > div {
  background-image: -webkit-gradient(linear, left top, right top, color-stop(50%, rgb(255, 255, 255)), color-stop(50%, rgb(255, 255, 255, 0.20)));
  background-image: linear-gradient(to right, rgb(255, 255, 255) 50%, rgb(255, 255, 255, 0.20) 50%);
  background-size: 200% 100%;
  background-position-x: 100%;
  color: transparent;
  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: transparent;
  background-clip: text;
  -webkit-background-clip: text;
}

/* 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;
}

.waves {
	position: absolute;
	left:0px;
	bottom:0px;
	width: 100%;
	height: 15vh;
	min-height: 100px;
	max-height: 150px;
}

.waves .content {
	position: relative;
	height: 20vh;
	text-align: center;
}

/* Animation */

.parallax > use {
  -webkit-animation: move-forever 25s cubic-bezier(0.55, 0.5, 0.45, 0.5) infinite;
          animation: move-forever 25s cubic-bezier(0.55, 0.5, 0.45, 0.5) infinite; }

.parallax > use:nth-child(1) {
  -webkit-animation-delay: -2s;
          animation-delay: -2s;
  -webkit-animation-duration: 7s;
          animation-duration: 7s; }

.parallax > use:nth-child(2) {
  -webkit-animation-delay: -3s;
          animation-delay: -3s;
  -webkit-animation-duration: 10s;
          animation-duration: 10s; }

.parallax > use:nth-child(3) {
  -webkit-animation-delay: -4s;
          animation-delay: -4s;
  -webkit-animation-duration: 13s;
          animation-duration: 13s; }

.parallax > use:nth-child(4) {
  -webkit-animation-delay: -5s;
          animation-delay: -5s;
  -webkit-animation-duration: 20s;
  animation-duration: 20s;
}

@keyframes rollInRight {
  from {
    opacity: 0;
    transform: translateX(100%) rotate(120deg);
  }
  to {
    opacity: 1;
    transform: translateX(0) rotate(0deg);
  }
}

.rollInRight {
  animation-name: rollInRight;
  animation-duration: 1s;
  animation-fill-mode: both;
}
