/*------------------- Declare Roboto Font -------------------*/
/* roboto-regular - latin */
@font-face {
  font-display: swap; 
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 400;
  src: url('../../fonts/roboto/roboto-v51-latin-regular.woff2') format('woff2'), 
       url('../../fonts/roboto/roboto-v51-latin-regular.ttf') format('truetype');
}
/* roboto-500 - latin */
@font-face {
  font-display: swap;
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 500;
  src: url('../../fonts/roboto/roboto-v51-latin-500.woff2') format('woff2'),
       url('../../fonts/roboto/roboto-v51-latin-500.ttf') format('truetype');
}
/* roboto-600 - latin */
@font-face {
  font-display: swap;
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 600;
  src: url('../../fonts/roboto/roboto-v51-latin-600.woff2') format('woff2'),
       url('../../fonts/roboto/roboto-v51-latin-600.ttf') format('truetype');
}
/* roboto-700 - latin */
@font-face {
  font-display: swap;
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 700;
  src: url('../../fonts/roboto/roboto-v51-latin-700.woff2') format('woff2'),
       url('../../fonts/roboto/roboto-v51-latin-700.ttf') format('truetype');
}
/*------------------- Project Variables -------------------*/
:root {
	--theme-green-dark: #02CE80;
	--theme-green-light: #7BD706;
	--grey-text-dark: #737887;
	--grey-text-light: #A1A6B0;
	--black-color: #000000;
	--white-color: #ffffff;
	--title-font: 'Roboto', sans-serif;
	--body-font: 'Roboto', sans-serif;
	
	--section-space: 150px;
	--section-space-small: 100px;
	--section-space-large: 200px;
	
	--mobile-section-space: 70px;
	--mobile-section-space-small: 60px;
	--mobile-section-space-large: 75px;
	
	--menu-black: #16181D;
	--body-background-color: #0E0E0E;
}
/*------------------- Resets -------------------*/
.grecaptcha-badge { 
    visibility: hidden !important;
}
/*------------------- General Page Styling -------------------*/
html,
body {
	scroll-behavior: auto !important;
}
body {
	font-family: var(--title-font);
	font-size: 16px;
	font-weight: 400;
	color: var(--grey-text-dark);
	line-height: 26px;
	overflow-x: hidden;
	-webkit-font-smoothing: antialiased;
	background-color: var(--body-background-color) !important;
}
@media (max-width: 375px) {
body {
	font-size: 14px;
}
}
iframe {
	border: none;
	width: 100%;
}
button:focus,
a:focus,
a:active,
input,
input:hover,
input:focus,
input:active,
textarea,
textarea:hover,
textarea:focus,
textarea:active {
	outline: none;
}
input:focus {
	outline: none;
	box-shadow: none;
}
img,
embed {
	max-width: 100%;
	height: auto;
	border: none;
}
ul {
	list-style-type: disc;
}
a {
	color: var(--theme-green-light);
	text-decoration: none;
	outline: 0;
	-webkit-transition: all ease 0.4s;
	transition: all ease 0.4s;
}
a:hover {
	color: var(--white-color);
}
a:active, a:focus, a:hover, a:visited {
	text-decoration: none;
	outline: 0;
}
button {
	-webkit-transition: all ease 0.4s;
	transition: all ease 0.4s;
}

/*------------------- Section Spacers  -------------------*/
.spacer-top {
  padding-top: var(--section-space);
}

.spacer-top-small {
  padding-top: var(--section-space-small);
}

.spacer-top-large {
  padding-top: var(--section-space-large);
}

@media (max-width: 991px) {
.spacer-top {
  padding-top: var(--mobile-section-space);
}

.spacer-top-small {
  padding-top: var(--mobile-section-space-small);
}

.spacer-top-large {
  padding-top: var(--mobile-section-space-large);
}
}

/*------------------- Font Set-Up -------------------*/
p:empty {
	display: none;
}
p {
	font-family: var(--body-font);
	margin: 0 0 18px 0;
	color: var(--grey-text-dark);
	line-height: 1.75;
}
h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a,
p a,
span a {
	font-size: inherit;
	font-family: inherit;
	font-weight: inherit;
	line-height: inherit;
}
.h1,
h1,
.h2,
h2,
.h3,
h3,
.h4,
h4,
.h5,
h5,
.h6,
h6 {
	font-family: var(--title-font);
	color: var(--white-color);
	text-transform: none;
	font-weight: 700;
	line-height: 1.4;
	margin: 0 0 15px 0;
}
.h1,
h1 {
	font-size: 48px;
	line-height: 1.208;
}
.h2,
h2 {
	font-size: 40px;
	line-height: 1.25;
}
.h3,
h3 {
	font-size: 36px;
	line-height: 1.278;
}
.h4,
h4 {
	font-size: 30px;
	line-height: 1.333;
}
.h5,
h5 {
	font-size: 24px;
	line-height: 1.417;
}
.h6,
h6 {
	font-size: 20px;
	line-height: 1.5;
}
/* Large devices */
@media (max-width: 1199px) {
.h1,
h1 {
	font-size: 44px;
	line-height: 1.3;
}
.h2,
h2 {
	font-size: 36px;
	line-height: 1.3;
}
.h3,
h3 {
	font-size: 30px;
}
.h4,
h4 {
	font-size: 24px;
}
.h5,
h5 {
	font-size: 20px;
}
.h6,
h6 {
	font-size: 18px;
}
}
@media (max-width: 767px) {
.h1,
h1 {
	font-size: 40px;
}
.h2,
h2 {
	font-size: 34px;
	line-height: 1.3;
}
.h3,
h3 {
	font-size: 26px;
}
.h4,
h4 {
	font-size: 22px;
}
.h5,
h5 {
	font-size: 18px;
}
.h6,
h6 {
	font-size: 16px;
}
}
@media (max-width: 575px) {
.h1,
h1 {
	font-size: 34px;
	line-height: 1.35;
}
.h2,
h2 {
	font-size: 28px;
}
}
@media (max-width: 375px) {
.h1,
h1 {
	font-size: 32px;
}
.h2,
h2 {
	font-size: 28px;
}
.h3,
h3 {
	font-size: 24px;
}
.h4,
h4 {
	font-size: 20px;
}
.h5,
h5 {
	font-size: 16px;
}
.h6,
h6 {
	font-size: 14px;
}
}

/*------------------- Pre-Loader -------------------*/
.preloader {
	position: fixed;
	inset: 0;
	z-index: 999;
	background-color: var(--body-background-color);
}

.preloader-div {
	-webkit-box-align: center;
		-webkit-align-items: center;
			-ms-flex-align: center;
	align-items: center;
	cursor: none;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	height: 100%;
	-webkit-box-pack: center;
		-webkit-justify-content: center;
		-ms-flex-pack: center;
	justify-content: center;
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
}

.loader {
	position: absolute;
	top: calc(50% - 32px);
	left: calc(50% - 32px);
	width: 64px;
	height: 64px;
	border-radius: 50%;
	perspective: 800px;
}

.inner {
	position: absolute;
	box-sizing: border-box;
	width: 100%;
	height: 100%;
	border-radius: 50%;  
}

.inner.one {
	left: 0%;
	top: 0%;
	animation: rotate-one 1s linear infinite;
	border-bottom: 3px solid #7BD706;
}

.inner.two {
	right: 0%;
	top: 0%;
	animation: rotate-two 1s linear infinite;
	border-right: 3px solid #7BD706;
}

.inner.three {
	right: 0%;
	bottom: 0%;
	animation: rotate-three 1s linear infinite;
	border-top: 3px solid #7BD706;
}

@keyframes rotate-one {
0% {
	transform: rotateX(35deg) rotateY(-45deg) rotateZ(0deg);
}
100% {
	transform: rotateX(35deg) rotateY(-45deg) rotateZ(360deg);
}
}

@keyframes rotate-two {
0% {
	transform: rotateX(50deg) rotateY(10deg) rotateZ(0deg);
}
100% {
	transform: rotateX(50deg) rotateY(10deg) rotateZ(360deg);
}
}

@keyframes rotate-three {
0% {
	transform: rotateX(35deg) rotateY(55deg) rotateZ(0deg);
}
100% {
	transform: rotateX(35deg) rotateY(55deg) rotateZ(360deg);
}
}

/*------------------- Text Colours  -------------------*/
.gradient-text {
	background: -webkit-linear-gradient(top, var(--theme-green-light) 40%, var(--theme-green-dark) 100%);
	background: linear-gradient(180deg, var(--theme-green-light) 40%, var(--theme-green-dark) 100%);
	background-clip: text;
		-webkit-background-clip: text;
			-webkit-text-fill-color: transparent;

}

a.gradient-text:hover {
	text-decoration: underline;
}

.text-white {
	color: var(--white-color) !important;
}

.text-green {
	color: var(--theme-green-light) !important;
}

/*------------------- Titles  -------------------*/
.title-area-div {
	margin-bottom: 50px;
	margin-top: -0.32em;
}

.sub-title-text {
	position: relative;
	display: block;
	font-family: var(--body-font);
	font-size: 16px;
	font-weight: 600;
	background: -webkit-linear-gradient(top, var(--theme-green-dark) 0%, var(--theme-green-light) 100%);
	background: linear-gradient(180deg, var(--theme-green-dark) 0%, var(--theme-green-light) 100%);
		-webkit-background-clip: text;
			-webkit-text-fill-color: transparent;
	background-clip: text;
	text-fill-color: transparent;
	margin-bottom: 25px;
	text-transform: uppercase;
	line-height: 24px;
	margin-top: 0px;
}

/*- One Line Style-*/
.sub-title-one-line:after {
	content: "";
	position: absolute;
	top: 48%;
	height: 2px;
	width: 40px;
	background: -webkit-linear-gradient(top, var(--theme-green-dark) 0%, var(--theme-green-light) 100%);
	background: linear-gradient(180deg, var(--theme-green-dark) 0%, var(--theme-green-light) 100%);
	margin-left: 10px;
	opacity: 0.5;
}

/*- Two Line Style-*/
.sub-title-two-line:before {
	content: "";
	position: absolute;
	top: 48%;
	height: 2px;
	width: 40px;
	background: -webkit-linear-gradient(top, var(--theme-green-dark) 0%, var(--theme-green-light) 100%);
	background: linear-gradient(180deg, var(--theme-green-dark) 0%, var(--theme-green-light) 100%);
	margin-left: -3.2rem;
	opacity: 0.5;
}

.sub-title-two-line:after {
	content: "";
	position: absolute;
	top: 48%;
	height: 2px;
	width: 40px;
	background: -webkit-linear-gradient(top, var(--theme-green-dark) 0%, var(--theme-green-light) 100%);
	background: linear-gradient(180deg, var(--theme-green-dark) 0%, var(--theme-green-light) 100%);
	margin-left: 10px;
	opacity: 0.5;
}

@media (max-width: 767px) {
.sub-title-one-line:after, 
.sub-title-two-line:before, 
.sub-title-two-line:after {
	width: 30px;
}

.sub-title-two-line:before {
	margin-left: -2.6rem;
}
}

@media (max-width: 575px) {
.sub-title-one-line:after, 
.sub-title-two-line:before, 
.sub-title-two-line:after {
	width: 20px;
}

.sub-title-two-line:before {
	margin-left: -1.9rem;
}
}

@media (max-width: 375px) {
.sub-title-one-line:after, 
.sub-title-two-line:before, 
.sub-title-two-line:after {
	display: none;
}
}

.main-title {
	margin-bottom: 50px;
}

@media (max-width: 1199px) {
.title-area-div {
	margin-bottom: 40px;
}
.main-title {
	margin-bottom: 40px;
}
}

@media (max-width: 991px) {
.title-area-div {
	margin-bottom: 35px;
}
.main-title {
	margin-bottom: 30px;
}
}

@media (max-width: 767px) {
.title-area-div {
	margin-bottom: 30px;
}
.main-title {
	margin-bottom: 25px;
}
}
}

/*------------------- Checklist  -------------------*/
.checklist ul {
	padding-left: 0;
	list-style: none;
	text-align: left;
	margin-bottom: 0;
}
.checklist li {
	color: var(--white-color);
	font-weight: 500;
	position: relative;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
		-webkit-box-align: center;
			-webkit-align-items: center;
				-ms-flex-align: center;
	align-items: center;
	gap: 10px;
}
.checklist li > i {
	color: var(--theme-green-light);
}
.checklist li:not(:last-child) {
	margin-bottom: 10px;
}

/*------------------- Forms / Input -------------------*/
select,
.form-control,
.form-select,
textarea,
input {
	height: 56px;
	padding: 0 25px 0 25px;
	border: 1px solid transparent;
	color: var(--grey-text-dark);
	border-radius: 4px;
	font-size: 16px;
	width: 100%;
	font-family: var(--body-font);
	-webkit-transition: 0.4s ease-in-out;
	transition: 0.4s ease-in-out;
	background-color: var(--black-color) !important;
}

select:focus,
.form-control:focus,
.form-select:focus,
textarea:focus,
input:focus {
	outline: 0;
	box-shadow: none;
	border-color: var(--theme-green-light);
	color: var(--grey-text-dark);
}

select::placeholder,
.form-control::placeholder,
.form-select::placeholder,
textarea::placeholder,
input::placeholder,
::placeholder {
	color: var(--grey-text-dark);
}

textarea.form-control,
textarea {
	min-height: 154px;
	padding-top: 16px;
	padding-bottom: 17px;
}

.form-group {
	margin-bottom: var(--bs-gutter-x);
	position: relative;
}

[class*="col-"].form-group > i {
	right: calc((var(--bs-gutter-x) / 2) + 25px);
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
	-webkit-appearance: none;
	margin: 0;
}

.form-select,
select {
	display: block;
	width: 100%;
	line-height: 1.5;
	vertical-align: middle;
	background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='none' stroke='%237BD706' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3E%3C/svg%3E");
	background-position: right 26px center;
	background-repeat: no-repeat;
	background-size: 16px 12px;
		-webkit-appearance: none;
		-moz-appearance: none;
	appearance: none;
	cursor: pointer;
}
/*------------------- Buttons  -------------------*/
.main-button {
	position: relative;
	z-index: 2;
	overflow: hidden;
	vertical-align: middle;
	display: inline-block;
	border: none;
	text-align: center;
	font-family: var(--body-font);
	font-size: 14px;
	font-weight: 500;
	line-height: 1;
	min-width: 144px;
}

.green-button {
	background: -webkit-linear-gradient(top, var(--theme-green-dark) 0%, var(--theme-green-light) 100%);
	background: linear-gradient(180deg, var(--theme-green-dark) 0%, var(--theme-green-light) 100%);
	color: var(--white-color);
}

.clear-button {
	background: transparent;
	color: var(--white-color);
	border: 1px solid var(--white-color);
}

.button-radius {
	border-radius: 100px;
	padding: 18px 40px;
}

@media (max-width: 375px) {
.button-radius {
	padding: 18px 25px;
}
}

/*-White Transition For All Buttons-*/
.main-button:before, .main-button:after {
	content: "";
	position: absolute;
	height: 100%;
	top: 0;
	left: 0;
	width: 100%;
	background-color: var(--white-color);
	z-index: -1;
		-webkit-transition: all 0.4s ease-out;
	transition: all 0.4s ease-out;
	border-radius: 99px;
		-webkit-transform: scaleY(1.1);
			-ms-transform: scaleY(1.1);
	transform: scaleY(1.1);
}

.main-button:before {
	-webkit-transform: scaleY(0);
		-ms-transform: scaleY(0);
			transform: scaleY(0);
}

.main-button:after {
	-webkit-transform: scaleY(0);
		-ms-transform: scaleY(0);
			transform: scaleY(0);
}

.main-button:hover, .main-button.active {
	color: var(--theme-green-light);
	box-shadow: none;
}

.main-button:hover::before, .main-button:hover:after, .main-button.active::before, .main-button.active:after {
	border-radius: 0;
		-webkit-transform: scale(1);
			-ms-transform: scale(1);
	transform: scale(1);
}

/*------------------- Scroll Top Button  -------------------*/
.scroll-top {
	position: fixed;
	right: 30px;
	bottom: 30px;
	height: 50px;
	width: 50px;
	cursor: pointer;
	display: block;
	border-radius: 50px;
	z-index: 10000;
	opacity: 1;
	visibility: hidden;
		-webkit-transform: translateY(45px);
			-ms-transform: translateY(45px);
				transform: translateY(45px);
		-webkit-transition: all 300ms linear;
				transition: all 300ms linear;
}

.scroll-top:after {
	content:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 50 50' width='48px' height='48px' fill='%237BD706'><path d='M25.7,13.6L25,12.9l-0.7,0.7l-7.5,7.5l1.4,1.4l0.7-0.7l5.1-5.1V34H26V16.6l5.1,5.1l0.7,0.7l1.4-1.4l-0.7-0.7L25.7,13.6 L25.7,13.6z' /></svg>");
	position: absolute;
	text-align: center;
	line-height: 50px;
	left: 0;
	top: 0;
	height: 50px;
	width: 50px;
	cursor: pointer;
	z-index: 1;
	border: 2px solid var(--theme-green-light);
	box-shadow: none;
	border-radius: 50%;
}

.scroll-top svg {
	color: var(--theme-green-light);
	border-radius: 50%;
	background: var(--white-color);
}

.scroll-top svg path {
	fill: none;
}

.scroll-top .progress-circle path {
	stroke: var(--theme-green-light);
	stroke-width: 20px;
	box-sizing: border-box;
		-webkit-transition: all 400ms linear;
			transition: all 400ms linear;
}

.scroll-top.show {
	opacity: 1;
	visibility: visible;
		-webkit-transform: translateY(0);
			-ms-transform: translateY(0);
				transform: translateY(0);
}

/*------------------- Title Buttons  -------------------*/
.title-button {
	margin-bottom: 70px;
}

@media (max-width: 1199px) {
.title-button {
	margin-bottom: 60px;
}
}

@media (max-width: 991px) {
.title-button {
	margin-bottom: 50px;
}
}

@media (max-width: 767px) {
.title-button {
	margin-bottom: 40px;
}
}

/*------------------- Read More / Report Links  -------------------*/
.line-button {
	font-size: 16px;
	font-weight: 600;
	display: inline-block;
	line-height: 0.8;
	position: relative;
	padding-bottom: 4px;
	margin-bottom: -1px;
	color: var(--theme-green-light);
	text-transform: none;
	text-decoration: none;
}

@media (max-width: 767px) {
.line-button {
	font-size: 14px;
}
}

.line-button svg {
	width: 20px;
	height: 20px;
	display: inline-block;
	fill: var(--theme-green-light);
	padding-left:4px;
	margin-top: -2px;
}

.line-button:hover svg {
	fill: var(--white-color);
}

.line-button:hover {
	color: var(--white-color);
}

@media (max-width: 375px) {
.line-button svg {
	display: none;
}
}

/*------------------- Cursor  -------------------*/
.cursor2 {
	width: 25px;
	height: 25px;
	border-radius: 100%;
	border: 1px solid var(--theme-green-dark);
		-webkit-transition: all 200ms ease-out;
			transition: all 200ms ease-out;
	position: fixed;
	pointer-events: none;
	left: 0;
	top: 0;
	z-index: 999999;
		-webkit-transform: translate(calc(-50% + 15px), -50%);
			-ms-transform: translate(calc(-50% + 15px), -50%);
				transform: translate(calc(-50% + 15px), -50%);
}

.cursor {
	width: 10px;
	height: 10px;
	border-radius: 100%;
	background-color: var(--theme-green-dark);
	opacity: .3;
	position: fixed;
		-webkit-transform: translate(-50%, -50%);
			-ms-transform: translate(-50%, -50%);
				transform: translate(-50%, -50%);
	pointer-events: none;
	z-index: 999999;
		-webkit-transition: 0.2s cubic-bezier(0.75, -0.27, 0.3, 1.33) opacity, 0.4s 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.4s cubic-bezier(0.75, -1.27, 0.3, 2.33) -webkit-transform;
			transition: 0.4s 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.4s 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.4s cubic-bezier(0.75, -1.27, 0.3, 2.33) -webkit-transform;
}

/*------------------- YouTube iFrame  -------------------*/
.youtube {
	background-color: #000;
	position: relative;
	padding-top: 56.25%;
	overflow: hidden;
	cursor: pointer;
	height: 100px;
	border-radius: 25px; 
}
.youtube img {
	width: 100%;
	top: -16.84%;
	left: 0;
	opacity: 0.7;
}
.youtube .play-button {
	width: 80px;
	height: 50px;
	background-color: #ff0033;
	box-shadow: 0 0 30px rgba( 0,0,0,0.6 );
	z-index: 1;
	opacity: 0.8;
	border-radius: 8px;
}
.youtube .play-button:before {
	content: "";
	border-style: solid;
	border-width: 15px 0 15px 26.0px;
	border-color: transparent transparent transparent #fff;
}
.youtube img,
.youtube .play-button {
	cursor: pointer;
}
.youtube img,
.youtube iframe,
.youtube .play-button,
.youtube .play-button:before {
	position: absolute;
}
.youtube .play-button,
.youtube .play-button:before {
	top: 50%;
	left: 50%;
	transform: translate3d( -50%, -50%, 0 );
}

.youtube iframe {
	height: 100%;
	width: 100%;
	top: 0;
	left: 0;
}

/*------------------- Header / Main Menu  -------------------*/
.header-logo {
	padding-top: 15px;
	padding-bottom: 15px;
}

@media (max-width: 575px) {
.header-logo {
	max-width: 150px;
}
}

/*------------------- Sticky Menu  -------------------*/
.main-header .sticky-wrapper.sticky {
	background-color: transparent;
}

.main-header .sticky-wrapper.sticky .menu-area {
	max-width: 100%;
	border-radius: 0;
	background-color: var(--menu-black);
}

.sticky-wrapper {
	-webkit-transition: 0.4s ease-in-out;
		transition: 0.4s ease-in-out;
}

.sticky-wrapper.sticky {
	position: fixed;
	top: 0;
	right: 0;
	left: 0;
	background-color: var(--white-color);
	box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.07);
		-webkit-animation: stickyAni 0.4s ease-in-out;
			animation: stickyAni 0.4s ease-in-out;
}

@-webkit-keyframes stickyAni {
  0% {
    -webkit-transform: translate3d(0, -40px, 0) scaleY(0.8);
            transform: translate3d(0, -40px, 0) scaleY(0.8);
    opacity: 0.7;
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0) scaleY(1);
            transform: translate3d(0, 0, 0) scaleY(1);
    opacity: 1;
  }
}

@keyframes stickyAni {
  0% {
    -webkit-transform: translate3d(0, -40px, 0) scaleY(0.8);
            transform: translate3d(0, -40px, 0) scaleY(0.8);
    opacity: 0.7;
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0) scaleY(1);
            transform: translate3d(0, 0, 0) scaleY(1);
    opacity: 1;
  }
}

.sticky-wrapper.sticky .main-menu {
	margin-right: 100px;
}

@media (max-width: 991px) {
.sticky-wrapper.sticky {
	display: none;
}
}

@media (max-width: 1399px) {
.sticky-wrapper.sticky .main-menu {
	margin-right: 0px;
}
}

/*------------------- Header Area  -------------------*/
.main-header {
	position: absolute;
	top: 120px;
	left: 0;
	width: 100%;
	z-index: 41;
}

@media (max-width: 1699px) {
.main-header {
	top: 50px;
}
}

.main-header .menu-area {
	max-width: 1500px;
	display: block;
	margin: auto;
	background: rgba(22, 24, 29, 0.5);
	border: 1px solid rgba(255, 255, 255, 0.2);
	-webkit-backdrop-filter: blur(10px);
	backdrop-filter: blur(10px);
	border-radius: 50px;
	padding: 16px 45px;
}

@media (max-width: 1299px) {
.main-header .menu-area {
	padding: 16px 38px;
}
}

@media (max-width: 991px) {
.main-header .menu-area {
	padding: 5px 20px;
}
}

/*------------------- Main Menu  -------------------*/
.main-menu {
	margin-right: 80px;
}

@media (max-width: 1399px) {
.main-menu {
	margin-right: 0px;
}
}

.main-menu ul {
	margin: 0;
	padding: 0;
}

.main-menu ul li {
	list-style-type: none;
	display: inline-block;
	position: relative;
}

.main-menu ul li:last-child {
	margin-right: 0 !important;
}

.main-menu ul li:first-child {
	margin-left: 0 !important;
}

.main-menu a {
	display: block;
	position: relative;
	font-family: var(--title-font);
}

.main-header .main-menu > ul > li {
	margin: 0 4px;
}

.main-header .main-menu > ul > li > a {
	color: var(--white-color) !important;
	font-size: 15px;
	font-weight: 500;
	padding: 2px 19px;
	border-radius: 100px;
	background-color: transparent;
	-webkit-transition: all 0.4s ease-in-out;
	transition: all 0.4s ease-in-out;
}

@media (max-width: 1199px) {
.main-header .main-menu > ul > li > a {
	padding: 2px 6px;
}
}

.main-header .main-menu > ul > li > a:hover {
	color: var(--theme-green-light) !important;
}

.main-header .main-menu ul li.menu-item-has-children > a:after {
	position: relative;
	content:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512' width='16px' height='16px' fill='white'><path d='M248 56c0-13.3-10.7-24-24-24s-24 10.7-24 24l0 176-176 0c-13.3 0-24 10.7-24 24s10.7 24 24 24l176 0 0 176c0 13.3 10.7 24 24 24s24-10.7 24-24l0-176 176 0c13.3 0 24-10.7 24-24s-10.7-24-24-24l-176 0 0-176z' /></svg>");
	left: 8px;
	top: 2px;
		-webkit-transition: 0.3s ease-in-out;
			transition: 0.3s ease-in-out;
}

.main-header .main-menu ul li.menu-item-has-children > a:hover:after {
	content:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512' width='16px' height='16px' fill='%237BD706'><path d='M0 256c0-13.3 10.7-24 24-24l400 0c13.3 0 24 10.7 24 24s-10.7 24-24 24L24 280c-13.3 0-24-10.7-24-24z' /></svg>");
}

/*------------------- Main Menu Sub -------------------*/
.main-menu ul li:hover > ul.sub-menu {
	visibility: visible;
	opacity: 1;
		-webkit-transform: scaleY(1);
			-ms-transform: scaleY(1);
				transform: scaleY(1);
	z-index: 9;
}

.main-menu ul.sub-menu li {
	display: block;
	margin: 0 0;
	padding: 0px 9px;
}

.main-menu ul.sub-menu {
	position: absolute;
	text-align: left;
	top: 100%;
	left: 0;
	background-color: var(--menu-black);
	visibility: hidden;
	min-width: 190px;
	width: -webkit-max-content;
	width: -moz-max-content;
	width: max-content;
	padding: 7px;
	left: -14px;
	opacity: 0;
	z-index: -1;
	border: 0;
	box-shadow: 0px 4px 15px rgba(1, 15, 28, 0.06);
	border-radius: 0;
		-webkit-transform: scaleY(0);
			-ms-transform: scaleY(0);
				transform: scaleY(0);
		-webkit-transform-origin: top center;
			-ms-transform-origin: top center;
				transform-origin: top center;
		-webkit-transition: all 0.4s ease 0s;
				transition: all 0.4s ease 0s;
}

.main-menu ul.sub-menu a {
	position: relative;
	padding-left: 23px;
	font-family: var(--title-font);
	font-size: 16px;
	font-weight: 500;
	line-height: 30px;
	color: var(--white-color) !important;
}

.main-menu ul.sub-menu {
	padding: 18px 20px 18px 18px;
	left: -27px;
	margin-top: 15px;
}

.main-menu ul.sub-menu a:hover {
	color: var(--theme-green-light) !important;
}

.main-menu ul.sub-menu li a:before {
	position: absolute;
	content:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 256 512' width='16px' height='16px' fill='%23ffffff'><path d='M246.8 256l-11.3 11.3-160 160-11.3 11.3-22.6-22.6 11.3-11.3 148.7-148.7-148.7-148.7-11.3-11.3 22.6-22.6 11.3 11.3 160 160 11.3 11.3z' /></svg>");
	left: 5px;
	top: 1px;
}

.main-menu ul.sub-menu li a:hover:before {
	content:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 256 512' width='16px' height='16px' fill='%237BD706'><path d='M246.8 256l-11.3 11.3-160 160-11.3 11.3-22.6-22.6 11.3-11.3 148.7-148.7-148.7-148.7-11.3-11.3 22.6-22.6 11.3 11.3 160 160 11.3 11.3z' /></svg>");
}

/*------------------- Mobile Menu  -------------------*/
.mobile-menu-wrapper {
	position: fixed;
	top: 0;
	left: 0;
	bottom: 0;
	background-color: rgba(0, 0, 0, 0.6);
	z-index: 999999;
	width: 0;
	width: 100%;
	height: 100%;
	-webkit-transition: all ease 0.8s;
	transition: all ease 0.8s;
	opacity: 0;
	visibility: hidden;
}

.mobile-menu-wrapper .mobile-logo {
	padding-bottom: 30px;
	padding-top: 40px;
	display: block;
	text-align: center;
	background-color: var(--menu-black);
}

.mobile-menu-wrapper .mobile-logo svg {
	max-width: 185px;
}

.mobile-menu-open {
	width: 40px;
	height: 40px;
	padding: 0;
	border: none;
	background-color: var(--theme-green-light);
	display: inline-block;
	border-radius: 4px;
}

.mobile-menu-open svg{
	width: 18px;
	height: 18px;
	fill: var(--white-color);
}

.mobile-menu-open:hover {
	background-color: var(--white-color);
}

.mobile-menu-open:hover svg {
	fill: var(--theme-green-light);
}

.mobile-menu-close {
	border: none;
	position: absolute;
	right: -16.5px;
	top: 25px;
	padding: 0;
	line-height: 1;
	width: 33px;
	height: 33px;
	line-height: 33px;
	z-index: 1;
	background-color: var(--theme-green-light);
	border-radius: 50%;
}

.mobile-menu-close svg{
	width: 20px;
	height: 20px;
	fill: var(--white-color);
	margin-top: -2px;
	margin-left: 1px
}

.mobile-menu-close:hover {
	background-color: var(--white-color);
	color: var(--theme-green-light);
}

.mobile-menu-close:hover svg {
	fill: var(--theme-green-light);
}

.mobile-menu-wrapper .menu-area-div {
	width: 100%;
	max-width: 310px;
	background-color: var(--white-color);
	border-right: 3px solid var(--theme-green-light);
	height: 100%;
	position: relative;
	left: -110%;
	opacity: 0;
	visibility: hidden;
	-webkit-transition: all ease 1s;
	transition: all ease 1s;
	z-index: 1;
}

.mobile-menu-wrapper.mobile-menu-visible {
	opacity: 1;
	visibility: visible;
}

.mobile-menu-wrapper.mobile-menu-visible .menu-area-div {
	left: 0;
	opacity: 1;
	visibility: visible;
}

.mobile-menu {
	overflow-y: scroll;
	max-height: calc(100vh - 200px);
	padding-bottom: 40px;
	margin-top: 33px;
	text-align: left;
}

.mobile-menu ul {
	margin: 0;
	padding: 0 40px;
}

.mobile-menu ul li {
	border-bottom: 1px solid #fdedf1;
	list-style-type: none;
}

.mobile-menu ul li:first-child {
	border-top: 1px solid #fdedf1;
}

.mobile-menu ul li:last-child {
	border-bottom: none;
}

.mobile-menu ul li a {
	display: block;
	position: relative;
	padding: 12px 0;
	line-height: 1.4;
	font-size: 16px;
	color: var(--menu-black);
	padding-left: 18px;
}

.mobile-menu ul li a:before {
	position: absolute;
	content:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 256 512' width='18px' height='18px' fill='%237BD706'><path d='M246.8 256l-11.3 11.3-160 160-11.3 11.3-22.6-22.6 11.3-11.3 148.7-148.7-148.7-148.7-11.3-11.3 22.6-22.6 11.3 11.3 160 160 11.3 11.3z' /></svg>");
	left: -2px;
	top: 13px;
}

@media (max-width: 399px) {
.mobile-menu-wrapper .menu-area-div {
	width: 100%;
	max-width: 270px;
}
.mobile-menu ul {
	padding: 0 20px;
}
}

/*------------------- Hero Main Styling All Pages  -------------------*/
.hero-area-div {
	position: relative;
	z-index: 2;
	overflow: hidden;
	margin: 60px 60px 0 60px;
	border-radius: 90px;
}

@media (max-width: 1199px) {
.hero-area-div {
	border-radius: 0px;
}
}	

@media (max-width: 1699px) {
.hero-area-div {
	margin: 0 50px;
}
}

@media (max-width: 1499px) {
.hero-area-div {
	margin: 0;
}
}

.main-hero-image-section {
	position: relative;
}

/*- Hero Image Section Background Shapes -*/
.hero-background-shape-ani {
	position: absolute;
	width: 4px;
	background: -webkit-linear-gradient(top, var(--theme-green-dark) 0%, rgba(2, 206, 128, 0) 81.03%);
	background: linear-gradient(180deg, var(--theme-green-dark) 0%, rgba(2, 206, 128, 0) 81.03%);
	border-radius: 50px;
		-webkit-animation: cloudAni 15s linear infinite;
	animation: cloudAni 15s linear infinite;
}

@-webkit-keyframes cloudAni {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
  50% {
    -webkit-transform: translateY(-300px);
            transform: translateY(-300px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}

@keyframes cloudAni {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
  50% {
    -webkit-transform: translateY(-300px);
            transform: translateY(-300px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}

.hero-background-shape-ani.style1 {
	top: 15%;
	right: -10%;
	height: 203px;
		-webkit-animation-delay: 1s;
	animation-delay: 1s;
}

.hero-background-shape-ani.style2 {
	top: -10%;
	right: 30%;
	height: 58px;
		-webkit-animation-delay: 2s;
			animation-delay: 2s;
}

.hero-background-shape-ani.style3 {
	top: -5%;
	left: -10%;
	width: 6px;
	height: 100px;
		-webkit-animation-delay: 3s;
			animation-delay: 3s;
}

.hero-background-shape-ani.style4 {
	bottom: 25%;
	left: -20%;
	height: 58px;
}

@media (max-width: 1399px) {
.hero-background-shape-ani.style1 {
	top: 15%;
	right: -10%;
	height: 203px;
}

.hero-background-shape-ani.style2 {
	top: -10%;
	right: 30%;
	height: 58px;
}

.hero-background-shape-ani.style3 {
	top: -5%;
	left: 5%;
	width: 6px;
	height: 100px;
}

.hero-background-shape-ani.style4 {
	bottom: 25%;
	left: 0%;
	height: 58px;
}
}

@media (max-width: 1199px) {
.hero-background-shape-ani.style1 {
	top: 35%;
	right: 5%;
	height: 203px;
}

.hero-background-shape-ani.style2 {
	top: 25%;
	right: 20%;
	height: 58px;
}

.hero-background-shape-ani.style3 {
	top: 15%;
	left: 10%;
	width: 6px;
	height: 100px;
}

.hero-background-shape-ani.style4 {
	bottom: 25%;
	left: 5%;
	height: 58px;
}
}

/*- Hero Main Image -*/
.hero-main-image {
	background-size: cover;
	background-repeat: no-repeat;
	text-align: center;
	display: block;
	margin: 200px auto auto auto;
}

@media (max-width: 1199px) {
.hero-main-image {
	margin: 210px auto auto auto;
}
}

@media (max-width: 991px) {
.hero-main-image {
	margin: 180px auto auto auto;
}
}

@media (max-width: 575px) {
.hero-main-image {
	width: 100%;
	height: 100%;
}

.hero-main-image {
	margin: 165px auto auto auto;
}
}

/*- Hero Text Area -*/
.hero-text-area-div {
	padding: 340px 0 240px 60px;
	max-width: 725px;
}

@media (max-width: 1399px) {
.hero-text-area-div {
	padding: 330px 0 130px 0;
}
}

@media (max-width: 1199px) {
.hero-text-area-div {
	text-align: center;
	max-width: 725px;
	margin-left: auto;
	margin-right: auto;
	padding: 90px 0 80px 0;
}
}

@media (max-width: 575px) {
.hero-text-area-div {
	max-width: 480px;
}
}

@media (max-width: 480px) {
.hero-text-area-div {
	max-width: 100%;
	padding: 70px 0 60px 0;
}
}

/*- Hero Text Styling -*/
.hero-main-title-text {
	font-weight: 700;
	font-size: 72px;
	line-height: 82px;
	color: var(--white-color);
	letter-spacing: -0.02em;
	margin-bottom: 21px;
}

@media (max-width: 1299px) {
.hero-main-title-text {
	font-size: 68px;
	line-height: 78px;
	margin-bottom: 25px;
}
}

@media (max-width: 991px) {
.hero-main-title-text {
	font-size: 60px;
	line-height: 70px;
	margin-bottom: 30px;
}
}

@media (max-width: 767px) {
.hero-main-title-text {
	font-size: 54px;
	line-height: 64px;
	margin-bottom: 36px;
}
}

@media (max-width: 575px) {
.hero-main-title-text {
	font-size: 44px;
	line-height: 54px;
	margin-bottom: 36px;
}
}

@media (max-width: 375px) {
.hero-main-title-text {
	font-size: 36px;
	line-height: 46px;
}
}

.hero-tagline-text {
	color: var(--grey-text-light);
	max-width: 657px;
	margin-bottom: 40px;
	font-size: 18px;
}

@media (max-width: 1199px) {
.hero-tagline-text {
	display: block;
	margin: auto auto 40px auto;
}
}

@media (max-width: 575px) {
.hero-tagline-text {
	font-size: 16px;
}
}

/*- Hero Sub Title -*/
.hero-sub-title-text {
	position: relative;
	display: block;
	font-family: var(--body-font);
	font-size: 16px;
	font-weight: 600;
	background: -webkit-linear-gradient(top, var(--theme-green-dark) 0%, var(--theme-green-light) 100%);
	background: linear-gradient(180deg, var(--theme-green-dark) 0%, var(--theme-green-light) 100%);
		-webkit-background-clip: text;
			-webkit-text-fill-color: transparent;
	background-clip: text;
	text-fill-color: transparent;
	margin-bottom: 25px;
	text-transform: uppercase;
	line-height: 24px;
	margin-top: 0px;
}

.hero-sub-title-line:before {
	content: "";
	position: absolute;
	top: 48%;
	height: 2px;
	width: 40px;
	background: -webkit-linear-gradient(top, var(--theme-green-dark) 0%, var(--theme-green-light) 100%);
	background: linear-gradient(180deg, var(--theme-green-dark) 0%, var(--theme-green-light) 100%);
	margin-left: -3.2rem;
	opacity: 0.5;
}

@media (min-width: 1200px) {
	.hero-sub-title-line:before {
		display: none;
}
}

.hero-sub-title-line:after {
	content: "";
	position: absolute;
	top: 48%;
	height: 2px;
	width: 40px;
	background: -webkit-linear-gradient(top, var(--theme-green-dark) 0%, var(--theme-green-light) 100%);
	background: linear-gradient(180deg, var(--theme-green-dark) 0%, var(--theme-green-light) 100%);
	margin-left: 10px;
	opacity: 0.5;
}

@media (max-width: 767px) {
.hero-sub-title-line:before, 
.hero-sub-title-line:after {
	width: 30px;
}

.hero-sub-title-line:before {
	margin-left: -2.6rem;
}
}

@media (max-width: 575px) {
.hero-sub-title-line:before, 
.hero-sub-title-line:after {
	width: 20px;
}

.hero-sub-title-line:before {
	margin-left: -1.9rem;
}
}

@media (max-width: 375px) {
.hero-sub-title-line:before, 
.hero-sub-title-line:after {
	display: none;
}
}

/*- Hero Button-*/
@media (max-width: 575px) {
.hero-button-spacer {
  margin-bottom: 25px;
}
}

.hero-button {
	min-width: 210px;
}

/*------------------- Footer Styling All Pages  -------------------*/
.footer-wrapper {
	margin-top: 100px;
		--border-color: rgba(255, 255, 255, 0.3);
	background-color: var(--black-color) !important;
	position: relative;
	z-index: 2;
}

.footer-widget-area {
	padding-bottom: 60px;
}

.footer-widget-area .widget-div {
	padding: 0;
	border: none;
	padding-bottom: 0;
	background-color: transparent;
	box-shadow: none;
	position: relative;
	border-radius: 5px;
	margin-bottom: 50px;
}

.footer-widget-area .newsletter-div {
	max-width: 561px;
	background-color: var(--menu-black);
	padding: 40px;
	border-radius: 20px;
}


.footer-widget-area .footer-widget-title {
	position: relative;
	max-width: 270px;
	font-family: var(--title-font);
	font-size: 20px;
	font-weight: 600;
	line-height: 1em;
	color: var(--white-color);
	margin: -0.12em 0 35px 0;
	padding: 0 0 17px 0;
}

.footer-widget-area .footer-widget-title:before, .footer-widget-area .footer-widget-title:after {
	content: '';
	position: absolute;
	left: 0;
	bottom: 0;
	width: 61px;
	height: 2px;
	background: -webkit-linear-gradient(top, var(--theme-green-dark) 0%, var(--theme-green-light) 100%);
	background: linear-gradient(180deg, var(--theme-green-dark) 0%, var(--theme-green-light) 100%);
}

.footer-widget-area .footer-widget-title:after {
	width: 16px;
	border: 2px solid var(--black-color);
	height: 10px;
	background: transparent;
	bottom: -3px;
	left: 40px;
		-webkit-animation: footerLine 7s linear infinite;
	animation: footerLine 7s linear infinite;
}

@-webkit-keyframes footerLine {
  0% {
    left: 40px;
  }
  50% {
    left: 0;
  }
  100% {
    left: 40px;
  }
}

@keyframes footerLine {
  0% {
    left: 40px;
  }
  50% {
    left: 0;
  }
  100% {
    left: 40px;
  }
}

/*------------------- Footer Newsletter  -------------------*/
.footer-widget-area .footer-newsletter-widget {
	position: relative;
	overflow: hidden;
	max-width: 100%;
}

.footer-widget-area .footer-newsletter-form {
	position: relative;
	width: 100%;
	max-width: 481px;
	align-items: center;
	gap: 10px;
}

.footer-newsletter-form .form-group {
	margin-bottom: 0;
	width: 100%;
}

.footer-widget-area .footer-newsletter-form svg {
	width: 20px;
	height: 20px;
	position: absolute;
	top: 18px;
	left: 28px;
	fill: var(--theme-green-light);
}

.footer-widget-area .footer-newsletter-form .form-control {
	border-radius: 100px;
	min-height: 56px;
	padding-left: 55px;
	padding-right: 130px;
	background-color: var(--black-color) !important;
	border: 1px solid transparent;
		-webkit-transition: all 0.3s ease-in-out;
			transition: all 0.3s ease-in-out;
}

.footer-newsletter-form .form-control, input {
	height: 56px;
	padding: 0 25px 0 25px;
	color: var(--grey-text-dark);
	font-size: 16px;
	font-family: var(--body-font);
	width: 100%;
}


.footer-newsletter-form input:focus {
	color: var(--grey-text-dark);
}

.footer-newsletter-form .form-control:hover {
	border: 1px solid var(--theme-green-light);
}

.footer-newsletter-form .footer-newsletter-button {
	z-index: 2;
	overflow: hidden;
	vertical-align: middle;
	display: inline-block;
	border: none;
	text-align: center;
	color: var(--white-color);
	font-family: var(--body-font);
	font-size: 14px;
	font-weight: 500;
	line-height: 1;
	background-color: transparent;
	background: -webkit-linear-gradient(top, var(--theme-green-dark) 0%, var(--theme-green-light) 100%);
	background: linear-gradient(180deg, var(--theme-green-dark) 0%, var(--theme-green-light) 100%);
	min-width: 115px;
	padding: 16px 25px;
	border-radius: 100px;
	position: absolute;
	top: 5px;
	right: 5px;
}

.footer-newsletter-button:hover {
	color: var(--theme-green-light);
}

.footer-subscribed-text {
	font-size: 16px;
	font-weight: 500;
	Color: var(--white-color);
	padding-top: 20px;
}

@media (max-width: 1199px) {
.footer-widget-area .newsletter-div,
.footer-widget-area .footer-newsletter-form {
	max-width: 100%;
}
}

@media (max-width: 575px) {
.footer-widget-area .footer-newsletter-form .form-control {
	min-width: 100%;
	padding-right: 30px;
}

.footer-newsletter-form .footer-newsletter-button {
	max-width: 100%;
	padding: 16px 20px;
	position: relative;
	margin-top: 10px;
	display: block;
	width: 100%;
}
}

@media (max-width: 375px) {
.footer-widget-area .newsletter-div {
	padding: 30px;
}
}

/*------------------- Footer Menus  -------------------*/
.footer-widget-area .footer-menu-list li {
	display: block;
	position: relative;
}

.footer-widget-area .footer-menu-list li:last-child a {
	border-bottom: none;
}

.footer-widget-area .footer-menu-list ul {
	list-style: none;
	padding: 0;
	margin-top: -5px;
	margin-bottom: -10px;
}

.footer-widget-area .footer-menu-list a {
	font-size: 16px;
	font-weight: 400;
	padding: 0 0 0 20px;
	margin-bottom: 21px;
	font-family: var(--body-font);
	display: block;
	max-width: 100%;
	width: -webkit-max-content;
	width: -moz-max-content;
	width: max-content;
	padding-right: 0;
	background-color: transparent;
	border-bottom: none;
	position: relative;
	line-height: 1.313;
	color: var(--grey-text-dark);
}

.footer-widget-area .footer-menu-list a:before {
	position: absolute;
	content:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 256 512' width='18px' height='18px' fill='%23737887'><path d='M246.8 256l-11.3 11.3-160 160-11.3 11.3-22.6-22.6 11.3-11.3 148.7-148.7-148.7-148.7-11.3-11.3 22.6-22.6 11.3 11.3 160 160 11.3 11.3z' /></svg>");
	left: 0;
	top: 1px;
}

.footer-widget-area .footer-menu-list a:hover {
	color: var(--theme-green-light);
}

.footer-widget-area .footer-menu-list a:hover:before {
	content:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 256 512' width='18px' height='18px' fill='%237BD706'><path d='M246.8 256l-11.3 11.3-160 160-11.3 11.3-22.6-22.6 11.3-11.3 148.7-148.7-148.7-148.7-11.3-11.3 22.6-22.6 11.3 11.3 160 160 11.3 11.3z' /></svg>");
}

@media (max-width: 1199px) {
.footer-widget-area .footer-menu-list a {
	margin-bottom: 16px;
}
}

/*------------------- Copyright Section (Footer)  -------------------*/
.copyright-wrapper {
	padding: 22px 0;
	background-size: 100% auto;
	background-color: var(--menu-black);
}

.copyright-wrapper .copyright-text {
	margin: 0;
	font-size: 12px;
	color: var(--white-color);
}

.copyright-wrapper .copyright-text a {
	color: var(--theme-green-light);
}

.copyright-wrapper .copyright-text a:hover {
	color: var(--white-color);
}

@media (max-width: 991px) {
.copyright-wrapper .copyright-text {
	text-align: center;
	margin-top: 20px;
	margin-bottom: 20px;
}
}

@media (max-width: 575px) {
.copyright-wrapper {
	background-size: cover;
}
}

/*------------------- Copyright Social Icons  -------------------*/
.copyright-wrapper .footer-social a {
	display: inline-block;
	width: 40px;
	height: 40px;
	line-height: 40px;
	background-color: #292E38;
	border-color: #292E38;
	text-align: center;
	margin-right: 5px;
	border-radius: 50%;
}

@media (max-width: 480px) {
.copyright-wrapper .footer-social a {
	margin-top: 15px;
}
}

.copyright-wrapper .footer-social a:last-child {
	margin-right: 0;
}

.copyright-wrapper .footer-social a:hover {
	background: -webkit-linear-gradient(top, var(--theme-green-dark) 0%, var(--theme-green-light) 100%);
	background: linear-gradient(180deg, var(--theme-green-dark) 0%, var(--theme-green-light) 100%);
	color: #292E38;
	border-color: var(--theme-green-dark);
}

.copyright-text svg {
	width: 15px;
	height: 15px;
	display: inline-block;
	color: var(--white-color);
	margin-left: 3px;
	margin-right: 3px;
}

.footer-social svg {
	display: inline-block;
	width: 25px;
	height: 25px;
	line-height: 25px;
	fill: var(--white-color);
}

.footer-social svg:hover {
	fill: #292E38;
}