@charset "utf-8";
/* CSS Document */

/*---------- Google Fonts ----------*/

@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root {
	--white: #FFFFFF;
	--black: #000000;
	--grey: #757575;
	--green: #097B37;
	--lightblue: #1FB7DB;
}

figure {
	margin: 0;
}

html:has(body.admin-bar) {
	margin-top: 0 !important;
}

body {
	font-family: "Poppins", serif;
	background-color: #fff;
	color: var(--grey);
	font-size: 20px;
	font-weight: 400;
	line-height: 150%;
}

a,
input,
button,
textarea {
	outline: none !important;
}

a {
	text-decoration: none;
	transition: all ease-in-out 300ms;
	-webkit-transition: all ease-in-out 300ms;
	-ms-transition: all ease-in-out 300ms;
	-o-transition: all ease-in-out 300ms;
	-moz-transition: all ease-in-out 300ms;
}

.container-fluid,
.container {
	padding-left: 15px;
	padding-right: 15px;
}

.row {
	margin-left: -15px;
	margin-right: -15px;
}

.row>* {
	padding-left: 15px;
	padding-right: 15px;
}

p {
	font-family: inherit;
	font-size: inherit;
	line-height: inherit;
	font-weight: inherit;
	color: inherit;
	margin: 0;
}

p a {
	text-decoration: none;
	color: inherit;
}

p a:hover {
	text-decoration: none;
	color: var(--grey);
}

ul li,
ol li {
	font-size: 20px;
	line-height: 150%;
	color: var(--grey);
}

ul li a,
ol li a {
	text-decoration: none;
	color: inherit;
}

ul li a:hover,
ol li a:hover {
	text-decoration: none;
	color: var(--grey);
}

h1 {
	font-size: 74px;
	line-height: 112px;
	font-weight: 600;
}

h2 {
	font-size: 74px;
	line-height: 88px;
	font-weight: 500;
}

h3 {
	font-size: 56px;
	line-height: 84px;
	font-weight: 600;
}

h4 {
	font-size: 48px;
	line-height: 72px;
	font-weight: 600;
}

h5 {
	font-size: 32px;
	line-height: 48px;
	font-weight: 500;
}

h6 {
	font-size: 21px;
	line-height: 40px;
	font-weight: 400;
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
	-webkit-appearance: none;
	margin: 0;
}

.form-control:focus {
	box-shadow: none;
	border-color: transparent;
}

/* Firefox */
input[type=number] {
	-moz-appearance: textfield;
}

textarea {
	resize: none;
}

/* common style */
.main-title {
	position: relative;
	color: var(--black);
	font-size: 70px;
	font-weight: 600;
	line-height: 114%;
	padding-bottom: 30px;
}

.main-title * {
	font-family: inherit;
	font-size: inherit;
	line-height: inherit;
	font-weight: inherit;
	color: inherit;
	margin: 0;
}

.main-title::after {
	position: absolute;
	content: "";
	background: var(--green);
	width: 407px;
	height: 9px;
	border-radius: 20px;
	left: 0;
	bottom: 0;
}

.main-title::before {
	position: absolute;
	content: "";
	background: var(--lightblue);
	width: 328px;
	height: 9px;
	border-radius: 20px;
	left: 0;
	bottom: 0;
	z-index: 9;
}

.section-title {
	position: relative;
	color: var(--green);
	font-size: 60px;
	font-weight: 600;
	line-height: 116%;
	padding-bottom: 20px;
}

.section-title * {
	font-family: inherit;
	font-size: inherit;
	line-height: inherit;
	font-weight: inherit;
	color: inherit;
	margin: 0;
}

.section-title::after {
	position: absolute;
	content: "";
	background: var(--green);
	width: 407px;
	height: 9px;
	border-radius: 20px;
	left: 0;
	bottom: 0;
}

.section-title::before {
	position: absolute;
	content: "";
	background: var(--lightblue);
	width: 328px;
	height: 9px;
	border-radius: 20px;
	left: 0;
	bottom: 0;
	z-index: 9;
}

.sub-title {
	color: var(--green);
	font-size: 25px;
	font-weight: 500;
	line-height: 140%;
}

.sub-title * {
	font-family: inherit;
	font-size: inherit;
	line-height: inherit;
	font-weight: inherit;
	color: inherit;
	margin: 0;
}

/* common style */

/* buttons */
.common-btn {
	position: relative;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	padding: 6px 30px;
	border-radius: 5px;
	background: linear-gradient(90deg, #007E69 0%, #05807F 37.87%, #1486B6 91.5%);
	color: var(--white);
	font-size: 18px;
	font-weight: 600;
	line-height: 155%;
}

.common-btn::after {
	position: absolute;
	content: "";
	border-radius: 5px;
	border: 1px solid #07632C;
	top: -3px;
	left: -3px;
	right: -3px;
	bottom: -3px;
}

.common-btn {
	position: relative;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	padding: 6px 30px;
	border-radius: 5px;
	background: linear-gradient(90deg, #007E69 0%, #05807F 20.87%, #1486B6 60%, #007E69 100%);
	background-size: 150% auto;
	color: var(--white);
	font-size: 18px;
	font-weight: 600;
	line-height: 155%;
	transition: 0.5s;
	-webkit-transition: 0.5s;
	-moz-transition: 0.5s;
	-ms-transition: 0.5s;
	-o-transition: 0.5s;
}

.common-btn:hover {
	background-position: right center;
	color: var(--white);
}

.common-btn::after {
	position: absolute;
	content: "";
	border-radius: 5px;
	top: -3px;
	left: -3px;
	right: -3px;
	bottom: -3px;
}

/* buttons */

.content {
	padding-top: 98px;
}

/*==================================================================*/
/*========== Header Start ==========*/
/*==================================================================*/

.header {
	position: fixed;
	left: 0;
	right: 0;
	top: 0;
	padding: 0 40px;
	z-index: 999;
}

.header.fixed {
	background: var(--white);
}

.header-main {
	padding: 20px 10px 15px 0;
	border-bottom: 1px solid rgb(0, 0, 0, 0.2);
}

.header-main .navbar-brand {
	margin: 0;
	padding: 0;
	height: 62px;
	width: 343px;
}

.header-main .navbar-expand-lg {
	padding: 0;
	align-items: center;
}

.header-main .navbar-collapse {
	justify-content: flex-end;
	margin-right: 10px;
}

.header-main .navbar-expand-lg .navbar-nav .nav-item {
	margin: 0 20px;
}

.header-main .navbar-expand-lg .navbar-nav .nav-link {
	font-family: "Poppins";
	font-size: 20px;
	color: var(--grey);
	font-style: normal;
	font-weight: 400;
	line-height: 30px;
	/* 150% */
	padding: 0;
}

.header-main .navbar-expand-lg .navbar-nav .nav-link.active,
.header-main .navbar-expand-lg .navbar-nav .nav-link:hover {
	color: var(--lightblue);
}

/*==================================================================*/
/*========== Header End ==========*/
/*==================================================================*/

/* banner */
.banner-section {
	position: relative;
	padding: 0 0 75px;
}

.banner-monitor-img {
	position: absolute;
	left: 0;
	bottom: 107px;
	opacity: 0.2;
}

.banner-section::after {
	position: absolute;
	content: "";
	border-radius: 20px 0px 0px 20px;
	background: linear-gradient(90deg, #007E69 0%, #05807F 37.87%, #1486B6 91.5%);
	width: calc(100% - 470px);
	height: 214px;
	right: 0;
	bottom: 107px;
	z-index: -1;
}

.banner-section .container-fluid {
	margin-right: 0;
	padding: 0;
	width: calc(750px + 50vw);
}

.banner-content .row {
	margin: 0;
}

.banner-content .row>* {
	padding: 0;
}

.banner-left-part {
	padding: 150px 0 0;
}

.banner-left-part .common-detail {
	margin: 30px 0 0;
	width: 100%;
	max-width: 611px;
}

.banner-left-part .common-detail * {
	color: var(--grey);
	font-size: 25px;
	font-weight: 500;
	line-height: 140%;
}

.banner-btn-block {
	margin: 53px 0 0;
}

.banner-right-part {
	margin-right: 40px;
	width: 100%;
	max-width: 590px;
	height: 834px;
	margin-left: auto;
	filter: drop-shadow(0px 5px 11px rgba(0, 0, 0, 0.10));
	border-radius: 0 0 295px 295px;
	-webkit-border-radius: 0 0 295px 295px;
	-moz-border-radius: 0 0 295px 295px;
	-ms-border-radius: 0 0 295px 295px;
	-o-border-radius: 0 0 295px 295px;
}

.banner-right-part * {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.banner-right-part img {
	border-radius: 0 0 295px 295px;
	-webkit-border-radius: 0 0 295px 295px;
	-moz-border-radius: 0 0 295px 295px;
	-ms-border-radius: 0 0 295px 295px;
	-o-border-radius: 0 0 295px 295px;
}

/* banner */

/* about */
.about-section {
	position: relative;
	padding: 75px 0;
	margin: 75px 0;
}

.about-section::before {
	position: absolute;
	content: "";
	border-radius: 0px 30px 30px 0px;
	background: linear-gradient(90deg, #007E69 0%, #05807F 37.87%, #1486B6 91.5%);
	-webkit-border-radius: 0px 30px 30px 0px;
	-moz-border-radius: 0px 30px 30px 0px;
	-ms-border-radius: 0px 30px 30px 0px;
	-o-border-radius: 0px 30px 30px 0px;
	left: 0;
	top: 0;
	bottom: 0;
	width: calc(100% - 72.3%);
}

.about-img {
	position: relative;
	width: 100%;
	max-width: 600px;
	height: 452px;
}

.about-img * {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.about-img img {
	border-radius: 20px;
	border: 1px solid var(--green);
	-webkit-border-radius: 20px;
	-moz-border-radius: 20px;
	-ms-border-radius: 20px;
	-o-border-radius: 20px;
}

.about-right-part {
	width: 100%;
	max-width: 840px;
	margin-left: auto;
}

.about-right-part .common-detail {
	margin: 30px 0 0;
}

.about-right-part .common-detail>*:not(:last-child) {
	margin-bottom: 30px;
}

.about-right-part .common-detail ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.about-right-part .common-detail ul li {
	position: relative;
	color: var(--green);
	font-size: 20px;
	font-weight: 500;
	line-height: 150%;
	padding-left: 25px;
}

.about-right-part .common-detail ul li:not(:last-child) {
	margin-bottom: 15px;
}

.about-right-part .common-detail ul li::before {
	position: absolute;
	content: "";
	width: 16px;
	height: 16px;
	background: var(--green);
	left: 0;
	top: 7px;
	border-radius: 50%;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	-ms-border-radius: 50%;
	-o-border-radius: 50%;
}

.about-right-part .common-detail ul li::after {
	position: absolute;
	content: "";
	background-image: url('../images/checkmarksvg.svg');
	background-repeat: no-repeat;
	background-size: cover;
	width: 9px;
	height: 7px;
	left: 4px;
	top: 11px;
	z-index: 9;
}

/* about */

/* services */
.services-section {
	position: relative;
	padding: 95px 0;
	margin: 0 0 75px;
}

.services-vector-shape {
	position: absolute;
	left: 0;
	bottom: -150px;
	opacity: 0.2;
}

.services-left-part .common-detail {
	width: 100%;
	max-width: 579px;
	margin: 30px 0 0;
}

.services-left-part .common-detail p {
	width: 100%;
	max-width: 468px;
}

.services-left-part .common-detail>*:not(:last-child) {
	margin-bottom: 30px;
}

.services-left-part .common-detail ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.services-left-part .common-detail ul li {
	position: relative;
	color: var(--green);
	font-size: 20px;
	font-weight: 500;
	line-height: 150%;
	padding-left: 25px;
}

.services-left-part .common-detail ul li:not(:last-child) {
	margin-bottom: 15px;
}

.services-left-part .common-detail ul li::before {
	position: absolute;
	content: "";
	width: 16px;
	height: 16px;
	background: var(--green);
	left: 0;
	top: 7px;
	border-radius: 50%;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	-ms-border-radius: 50%;
	-o-border-radius: 50%;
}

.services-left-part .common-detail ul li::after {
	position: absolute;
	content: "";
	background-image: url('../images/checkmarksvg.svg');
	background-repeat: no-repeat;
	background-size: cover;
	width: 9px;
	height: 7px;
	left: 4px;
	top: 11px;
	z-index: 9;
}

.services-image {
	position: relative;
	width: 100%;
	max-width: 653px;
	height: 524px;
}

.services-image::after {
	position: absolute;
	content: "";
	border: 1px solid var(--green);
	top: -20px;
	left: -20px;
	right: -20px;
	bottom: -20px;
	border-radius: 20px;
	-webkit-border-radius: 20px;
	-moz-border-radius: 20px;
	-ms-border-radius: 20px;
	-o-border-radius: 20px;
}

.services-image figure,
.services-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.services-image img {
	border-radius: 20px;
	box-shadow: 0px 38px 38px 0px rgba(0, 0, 0, 0.09), 0px 10px 21px 0px rgba(0, 0, 0, 0.10);
	-webkit-border-radius: 20px;
	-moz-border-radius: 20px;
	-ms-border-radius: 20px;
	-o-border-radius: 20px;
}

.logo-block {
	padding: 27px 20px;
	width: 100%;
	max-width: 322px;
	position: absolute;
	z-index: 9;
	border-radius: 0px 0px 10px 10px;
	background: #FFF;
	box-shadow: 0px 38px 38px 0px rgba(0, 0, 0, 0.09), 0px 10px 21px 0px rgba(0, 0, 0, 0.10);
	left: 50%;
	transform: translateX(-50%);
	-webkit-transform: translateX(-50%);
	-moz-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	-o-transform: translateX(-50%);
	-webkit-border-radius: 0px 0px 10px 10px;
	-moz-border-radius: 0px 0px 10px 10px;
	-ms-border-radius: 0px 0px 10px 10px;
	-o-border-radius: 0px 0px 10px 10px;
}

.logo-block img {
	box-shadow: none;
	border-radius: 0;
	-webkit-border-radius: 0;
	-moz-border-radius: 0;
	-ms-border-radius: 0;
	-o-border-radius: 0;
}

/* services */

/* partner-section */
.partner-section {
	padding: 75px 0;
	margin: 75px 0;
}

.partner-image {
	padding: 15px 20px;
	position: relative;
	width: 100%;
	max-width: 693px;
	height: 576px;
	border-radius: 20px;
	border: 1px solid var(--green);
	-webkit-border-radius: 20px;
	-moz-border-radius: 20px;
	-ms-border-radius: 20px;
	-o-border-radius: 20px;
}

.partner-image figure,
.partner-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.partner-image img {
	border-radius: 20px;
	box-shadow: 0px 38px 38px 0px rgba(0, 0, 0, 0.09), 0px 10px 21px 0px rgba(0, 0, 0, 0.10);
	-webkit-border-radius: 20px;
	-moz-border-radius: 20px;
	-ms-border-radius: 20px;
	-o-border-radius: 20px;
}

.logo-block {
	padding: 27px 20px;
	width: 100%;
	max-width: 322px;
	position: absolute;
	z-index: 9;
	border-radius: 0px 0px 10px 10px;
	background: #FFF;
	box-shadow: 0px 38px 38px 0px rgba(0, 0, 0, 0.09), 0px 10px 21px 0px rgba(0, 0, 0, 0.10);
	left: 50%;
	transform: translateX(-50%);
	-webkit-transform: translateX(-50%);
	-moz-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	-o-transform: translateX(-50%);
	-webkit-border-radius: 0px 0px 10px 10px;
	-moz-border-radius: 0px 0px 10px 10px;
	-ms-border-radius: 0px 0px 10px 10px;
	-o-border-radius: 0px 0px 10px 10px;
}

.logo-block img {
	box-shadow: none;
	border-radius: 0;
	-webkit-border-radius: 0;
	-moz-border-radius: 0;
	-ms-border-radius: 0;
	-o-border-radius: 0;
}

.partner-right-part {
	width: 100%;
	max-width: 693px;
}

.partner-right-part .section-title {
	padding-bottom: 20px;
}

.partner-right-part .common-detail {
	margin: 30px 0 0;
}

.partner-right-part .common-detail ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.partner-right-part .common-detail ul li {
	position: relative;
	color: var(--green);
	font-size: 20px;
	font-weight: 500;
	line-height: 150%;
	padding-left: 25px;
}

.partner-right-part .common-detail ul li:not(:last-child) {
	margin-bottom: 15px;
}

.partner-right-part .common-detail ul li::before {
	position: absolute;
	content: "";
	width: 16px;
	height: 16px;
	background: var(--green);
	left: 0;
	top: 7px;
	border-radius: 50%;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	-ms-border-radius: 50%;
	-o-border-radius: 50%;
}

.partner-right-part .common-detail ul li::after {
	position: absolute;
	content: "";
	background-image: url('../images/checkmarksvg.svg');
	background-repeat: no-repeat;
	background-size: cover;
	width: 9px;
	height: 7px;
	left: 4px;
	top: 11px;
	z-index: 9;
}

/* partner-section */

/*Your Trusted partner*/
.trusted-partner-wrap {
	padding: 34px 0;
	position: relative;
	margin: 155px 0 75px;
}

.trusted-partners-left img {
	border: 1px solid var(--green);
	border-radius: 20px;
	-webkit-border-radius: 20px;
	-moz-border-radius: 20px;
	-ms-border-radius: 20px;
	-o-border-radius: 20px;
	max-width: 601px;
}

.trusted-partner-flx {
	display: flex;
}

.trusted-partners-right {
	max-width: 862px;
	margin: 0 0 0 auto;
}

.trusted-partner-content {
	max-width: 772px;
	margin: 0 0 0 20px;
}

.trusted-partner-flx {
	margin: 0 0 25px 0;
	padding: 0 0 25px 0;
	border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.trusted-partners-lists>*:last-child {
	border-bottom: 0px;
	margin-bottom: 0;
	padding-bottom: 0;
}

.trusted-partners-lists {
	margin-top: 30px;
}

.trusted-partner-content .sub-title {
	margin-bottom: 10px;
}

.trusted-partner-content .detail * {
	color: var(--grey);
}

.trusted-partner-flx .trusted-partner-img {
	width: 100%;
	height: 100%;
	border-radius: 10px;
	/* border: 1px solid #007e69; */
	background: linear-gradient(180deg, #fff 0%, #96c7d9 100%), #fff;
	display: flex;
	justify-content: center;
	align-items: center;
}

.trusted-partners-left * {
	width: 100%;
}

.trusted-partners-left {
	position: relative;
}

/* .trusted-partner-wrap::before {
	content: "";
	position: absolute;
	height: calc(100% - 156px);
	z-index: -1;
	border-radius: 0px 30px 30px 0px;
	-webkit-border-radius: 0px 30px 30px 0px;
	-moz-border-radius: 0px 30px 30px 0px;
	-ms-border-radius: 0px 30px 30px 0px;
	-o-border-radius: 0px 30px 30px 0px;
	background: linear-gradient(90deg, #007e69 0%, #05807f 37.87%, #1486b6 91.5%);
	left: -192px;
	top: 34px;
	width: calc(100% - 62%);
} */

.trusted-partner-wrap::before {
	position: absolute;
	content: "";
	border-radius: 0px 30px 30px 0px;
	background: linear-gradient(90deg, #007E69 0%, #05807F 37.87%, #1486B6 91.5%);
	-webkit-border-radius: 0px 30px 30px 0px;
	-moz-border-radius: 0px 30px 30px 0px;
	-ms-border-radius: 0px 30px 30px 0px;
	-o-border-radius: 0px 30px 30px 0px;
	left: 0;
	top: 0;
	bottom: 0;
	width: calc(100% - 72.3%);
}

/*Your Trusted partner*/

/*Maintainance*/
.maintenance-wrap {
	position: relative;
	padding: 75px 0;
}

.maintenance-wrap .section-title {
	max-width: 1029px;
	margin: 0 auto;
}

.maintenance-wrap .section-title::after {
	left: 50%;
	transform: translateX(-50%);
}

.maintenance-wrap .section-title::before {
	left: 50%;
	transform: translateX(-50%);
	width: 249px;
}

.maintainance-inner {
	margin-top: 50px;
}

.maintainance-left .maintainance-content {
	border-bottom: 1px solid rgba(0, 0, 0, 0.1);
	padding-bottom: 25px;
	margin-bottom: 25px;
	max-width: 1029px;
}

.maintainance-left .maintainance-content .sub-title {
	color: var(--lightblue);
	margin-bottom: 10px;
	text-transform: capitalize;
}

.maintainance-left>*:first-child .sub-title {
	font-weight: 600;
}

.maintainance-left .maintainance-content ul li {
	margin-bottom: 15px;
	color: #757575;
	font-size: 20px;
	font-weight: 400;
	line-height: 30px;
}

.maintainance-left .maintainance-content ul {
	margin-bottom: 0px;
}

.maintainance-left .maintainance-content ul>*:last-child {
	margin-bottom: 0px;
}

.maintainance-content-left {
	max-width: 392px;
}

.maintainance-content-left .detail {
	color: var(--green);
	font-weight: 500;
	margin-bottom: 10px;
}

.maintainance-content-flx {
	display: flex;
}

.maintainance-left>*:last-child {
	border: 0px;
	padding-bottom: 0;
	margin-bottom: 0;
}

.maintainance-content-flx .maintainance-content-left {
	margin-right: 60px;
	padding-right: 60px;
	border-right: 1px solid rgba(0, 0, 0, 0.1);
}

.maintainance-content-flx>*:last-child {
	border-right: 0px;
	margin-right: 0px;
	padding-right: 0;
}

.maintainance-content-flx .maintainance-content-left {
	max-width: 499px;
	width: 100%;
}

.maintainance-content-flx .maintainance-content-left ul li {
	max-width: 341px;
}

.maintainance-inner .row {
	align-items: center;
}

.maintenance-right * {
	width: 100%;
	height: 100%;
}

.maintenance-right img {
	border-radius: 30px 0px 0px 30px;
	border: 1px solid var(--green);
	margin-top: 94px;
}

.maintenance-wrap .container-fluid {
	margin-right: 0;
	padding: 0;
	width: calc(750px + 50vw);
}

.maintainance-inner .row {
	margin: 0;
}

.maintainance-inner .row>* {
	padding: 0;
}

.maintenance-wrap .maintenance-right {
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	width: 33.7%;
	height: 891px;
	object-fit: cover;
}

.maintenance-wrap .maintenance-right * {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/*maintainance*/

/*trading services*/
.trading-wrap {
	margin: 75px 0;
	padding: 20px 0;
	position: relative;
}

.trading-left img {
	border: 1px solid var(--green);
	border-radius: 20px;
	-webkit-border-radius: 20px;
	-moz-border-radius: 20px;
	-ms-border-radius: 20px;
	-o-border-radius: 20px;
	max-width: 601px;
}

.trading-flx {
	display: flex;
}

.trading-right {
	max-width: 862px;
	margin: 0 0 0 auto;
}

.trading-content {
	max-width: 772px;
	margin: 0 0 0 20px;
}

.trading-flx {
	margin: 0 0 25px 0;
	padding: 0 0 25px 0;
	border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.trading-lists>*:last-child {
	border-bottom: 0px;
	margin: 0;
	padding: 0;
}


.trading-lists {
	margin-top: 30px;
}

.trading-content .sub-title {
	margin-bottom: 10px;
}

.trading-content ul {
	margin-bottom: 0;
}

.trading-content ul li {
	color: var(--grey);
	font-weight: 400;
	font-size: 20px;
	line-height: 30px;
	margin-bottom: 15px;
}

.trading-content ul>*:last-child {
	margin-bottom: 0px;
}

.trading-flx .trading-img {
	width: 100%;
	height: 100%;
	border-radius: 9px;
	/* border: 1px solid #007e69; */
	background: linear-gradient(180deg, #fff 0%, #96c7d9 100%), #fff;
	display: flex;
	justify-content: center;
	align-items: center;
}

.trading-left * {
	width: 100%;
}

.trading-left {
	position: relative;
}

.trading-wrap::before {
	position: absolute;
	content: "";
	border-radius: 0px 30px 30px 0px;
	background: linear-gradient(90deg, #007E69 0%, #05807F 37.87%, #1486B6 91.5%);
	-webkit-border-radius: 0px 30px 30px 0px;
	-moz-border-radius: 0px 30px 30px 0px;
	-ms-border-radius: 0px 30px 30px 0px;
	-o-border-radius: 0px 30px 30px 0px;
	left: 0;
	top: 0;
	bottom: 0;
	width: calc(100% - 72.3%);
}

.trading-shape-img {
	position: absolute;
	right: 0;
	margin: -100px 0 0 0;
	z-index: -1;
}

.img-border {
	border-radius: 10px;
	background: linear-gradient(90deg, rgba(0, 126, 105, 0.5) 0%, rgba(5, 128, 127, 0.5) 37.87%, rgba(20, 134, 182, 0.5) 91.5%);
	width: 70px;
	height: 70px;
	padding: 1px;
	flex: 0 0 auto;
}

/*trading services*/

/* <======= partener css start ======> */

figure {
	margin: 0;
}

.partener-main {
	padding: 0 0 150px 0;
}

.partener-wrp {
	width: 100%;
	max-width: 1100px;
	margin: 0 auto;
}

.partener-wrp .section-title::before {
	width: 249px;
	left: 50%;
	transform: translateX(-50%);
	-webkit-transform: translateX(-50%);
	-moz-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	-o-transform: translateX(-50%);
}

.partener-wrp .section-title::after {
	left: 50%;
	transform: translateX(-50%);
	-webkit-transform: translateX(-50%);
	-moz-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	-o-transform: translateX(-50%);
}

.partener-wrp .slick-wrapper {
	opacity: 0;
}

.partener-wrp .slick-wrapper.slick-initialized {
	opacity: 1;
}

.partener-wrp .slick-slide {
	padding: 0 10px;
}

.partener-wrp .slick-wrapper {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-top: 50px;
}

.partener-wrp .slick-slide img {
	margin: 0 auto;
}

.slick-arrow {
	position: relative;
	flex: 0 0 auto;
	cursor: pointer;
	min-width: 36px;
	width: 36px;
	height: 36px;
	padding: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 5px;
	background-size: 1px;
	border-radius: 5px;
	border: 1px solid rgba(9, 123, 55, 0.5);
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.5) 0%, rgba(150, 199, 217, 0.5) 100%);
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	-ms-border-radius: 5px;
	-o-border-radius: 5px;
	transition: 0.4s;
	-webkit-transition: 0.4s;
	-moz-transition: 0.4s;
	-ms-transition: 0.4s;
	-o-transition: 0.4s;
}

.slick-arrow:hover{
	border: 1px solid rgba(9, 123, 55, 1);
	background: var(--lightblue);
	border-color: var(--lightblue);
}

.slick-arrow:hover svg path{
	fill: white;
	transition: 0.4s;
	-webkit-transition: 0.4s;
	-moz-transition: 0.4s;
	-ms-transition: 0.4s;
	-o-transition: 0.4s;
}

.slick-initialized .slick-slide {
	display: flex;
	align-items: center;
	justify-content: center;
}

.slick-track {
	display: flex !important;
	align-items: center;
}

/* <======= partener css end ======> */

/* <======= contact css start ======> */

.contact-main {
	padding: 110px 0;
	position: relative;
	z-index: 1;
}

.contact-main::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: var(--g-horizontal, linear-gradient(90deg, #007E69 0%, #05807F 37.87%, #1486B6 91.5%));
	opacity: 0.05;
	z-index: -1;
}

.contact-main:after {
	content: "";
	position: absolute;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	background-image: url(../images/contact-bg-img.png);
	background-repeat: no-repeat;
	background-position: right bottom;
	opacity: 0.2;
	z-index: -1;
}

.contact-wrp {
	width: 100%;
	max-width: 1156px;
	margin: 0 auto;
}

.contact-wrp .section-title::before {
	width: 249px;
	left: 50%;
	transform: translateX(-50%);
	-webkit-transform: translateX(-50%);
	-moz-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	-o-transform: translateX(-50%);
}

.contact-wrp .section-title::after {
	left: 50%;
	transform: translateX(-50%);
	-webkit-transform: translateX(-50%);
	-moz-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	-o-transform: translateX(-50%);
}

.contact-wrp form {
	width: 100%;
	margin-top: 30px;
}

.contact-wrp form .form-group {
	position: relative;
	margin-top: 25px;
}

.form-control {
	padding: 15px 50px 15px 15px;
	border-radius: 6px;
	border: 1px solid #D9D9D9;
	background: var(--white);
	-webkit-border-radius: 6px;
	-moz-border-radius: 6px;
	-ms-border-radius: 6px;
	-o-border-radius: 6px;
}

textarea.form-control {
	padding: 15px 50px 15px 15px;
	border-radius: 6px;
	border: 1px solid #D9D9D9;
	background: var(--white);
	-webkit-border-radius: 6px;
	-moz-border-radius: 6px;
	-ms-border-radius: 6px;
	-o-border-radius: 6px;
}

.form-label {
	color: var(--black);
	font-weight: 500;
	line-height: 30px;
}

.form-control::placeholder {
	font-family: "Poppins", serif;
	font-size: 18px;
	font-weight: 400;
	line-height: 28px;
	color: #999;
}

textarea.form-control::placeholder {
	font-family: "Poppins", serif;
	font-size: 18px;
	font-weight: 400;
	line-height: 28px;
	color: #999;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}

form .common-btn {
	width: fit-content;
	margin: 30px auto 0;
}

form .input-group-image {
	position: absolute;
	top: 48px;
	right: 20px;
	padding-left: 10px;
}

.form-control:focus {
	border-color: #D9D9D9;
}

/* error style */
.wpcf7-not-valid-tip {
	font-size: 16px;
}

.wpcf7 form .wpcf7-response-output {
	margin: 20px 0;
	border: none;
	font-size: 18px;
	text-align: center;
	padding: 0;
	color: #dc3232;
}

.wpcf7 form.sent .wpcf7-response-output {
	color: var(--green);
}

/* error style */
/* <======= contact css end ======> */

/* repair cost start */

.repair-cost {
	padding: 75px 0 0;
	position: relative;
}

.repair-cost::before {
	position: absolute;
	content: "";
	bottom: 0;
	right: 0;
	width: 528px;
	height: 727px;
	border-radius: 30px 0 0 30px;
	background: var(--g-horizontal, linear-gradient(270deg, #007E69 0%, #05807F 37.87%, #1486B6 91.5%));
	-webkit-border-radius: 30px 0 0 30px;
	-moz-border-radius: 30px 0 0 30px;
	-ms-border-radius: 30px 0 0 30px;
	-o-border-radius: 30px 0 0 30px;
	z-index: -1;
}

.repair-cost-main {
	margin: 0 -2px;
}

.repair-cost-main .row {
	align-items: flex-end;
}

.repair-cost-left .section-title {
	padding-bottom: 20px;
}

.repair-cost-left .sub-title {
	padding: 30px 0 20px;
}

.repair-cost-table {
	max-width: 832px;
	margin: 0 0 30px;
	border: 1px solid var(--lightblue);
	border-radius: 10px;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	-ms-border-radius: 10px;
	-o-border-radius: 10px;
	box-shadow: 0px 21px 21px 0px rgba(0, 0, 0, 0.09), 0px 5px 12px 0px rgba(0, 0, 0, 0.10);
}

.repair-cost-left table {
	width: 100%;
	border-radius: 8px;
	border: 1px solid var(--2, #1FB7DB);
	background: #FFF;
	-webkit-border-radius: 8px;
	-moz-border-radius: 8px;
	-ms-border-radius: 8px;
	-o-border-radius: 8px;
	overflow: hidden;
	vertical-align: middle;
	margin: 0;
	border: none;
}

.repair-cost-left table thead {
	border: none;
}

.repair-cost-left .table thead th {
	font-family: "Poppins";
	font-size: 25px;
	color: var(--white);
	font-style: normal;
	font-weight: 400;
	line-height: 35px;
	/* 140% */
	padding: 18px 0;
	text-align: center;
	background-color: var(--lightblue);
	vertical-align: middle;
}

.repair-cost-left .table tbody td {
	font-family: "Poppins";
	font-size: 20px;
	color: var(--lightblue);
	font-style: normal;
	font-weight: 400;
	line-height: 30px;
	/* 150% */
	padding: 8px;
	text-align: center;
	border: none;
	max-width: 192px;
}

.table tbody tr:nth-child(even) td {
	background: rgb(31, 183, 219, 0.08);
}

.repair-cost-list {
	max-width: 825px;
}

.repair-cost-list ul {
	margin: 0;
	padding: 0;
}

.repair-cost-list ul li {
	font-family: "Poppins";
	font-size: 20px;
	color: var(--grey);
	font-style: normal;
	font-weight: 400;
	line-height: 30px;
	list-style-type: none;
	position: relative;
	padding-left: 38px;
	margin: 0 0 25px;
}

.repair-cost-list ul li::before {
	position: absolute;
	content: "";
	top: 13px;
	left: 10px;
	width: 5px;
	height: 5px;
	background-color: var(--green);
	border-radius: 100%;
	-webkit-border-radius: 100%;
	-moz-border-radius: 100%;
	-ms-border-radius: 100%;
	-o-border-radius: 100%;
}

.repair-cost-list ul li strong {
	font-size: 25px;
	color: var(--green);
	line-height: 35px;
	font-weight: 500;
}

.repair-cost-detail {
	max-width: 800px;
}

.repair-cost-detail ul {
	padding: 0;
	margin: 0;
}

.repair-cost-detail ul li {
	position: relative;
	font-family: "Poppins";
	font-size: 20px;
	color: var(--green);
	font-style: normal;
	font-weight: 500;
	line-height: 30px;
	list-style-type: none;
	margin: 0 0 25px;
	padding-left: 25px;
}

.repair-cost-detail ul li::before {
	position: absolute;
	content: "";
	width: 16px;
	height: 16px;
	background: var(--green);
	left: 0;
	top: 7px;
	border-radius: 50%;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	-ms-border-radius: 50%;
	-o-border-radius: 50%;
}

.repair-cost-detail ul li::after {
	position: absolute;
	content: "";
	background-image: url(../images/checkmarksvg.svg);
	background-repeat: no-repeat;
	background-size: cover;
	width: 9px;
	height: 7px;
	left: 4px;
	top: 11px;
	z-index: 9;
}

.repair-cost-detail ul li strong {
	font-size: 25px;
	font-weight: 500;
	line-height: 35px;
}

.repair-cost-detail ul li:last-child {
	margin: 0;
}

.repair-cost-right {
	margin: 0 0 50px;
}

.repair-cost-img {
	width: 100%;
	height: 100%;
	max-width: 601px;
	height: 627px;
	margin: 0 0 0 auto;
	border: 1px solid var(--green);
	overflow: hidden;
	border-radius: 20px;
	-webkit-border-radius: 20px;
	-moz-border-radius: 20px;
	-ms-border-radius: 20px;
	-o-border-radius: 20px;
}

.repair-cost-img * {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.repair-cost-table .table {
	min-width: 514px;
}

/* repair cost end */


/* founder wapper start */

.founder-wapper {
	position: relative;
	margin: 240px 0 230px;
}

.founder-wapper::before {
	position: absolute;
	content: "";
	bottom: 0;
	left: 0;
	width: 477px;
	height: 351px;
	background-image: url(../images/founder-bg-img1.svg);
	background-repeat: no-repeat;
	background-position: center;
	background-size: 100% 100%;
}

.founder-wapper::after {
	position: absolute;
	content: "";
	top: -77px;
	bottom: auto;
	right: 0;
	width: 528px;
	height: 617px;
	border-radius: 30px 0 0 30px;
	background: linear-gradient(270deg, #007E69 0%, #05807F 37.87%, #1486B6 91.5%);
	-webkit-border-radius: 30px 0 0 30px;
	-moz-border-radius: 30px 0 0 30px;
	-ms-border-radius: 30px 0 0 30px;
	-o-border-radius: 30px 0 0 30px;
	z-index: -1;
}

.founder-main {
	max-width: 1421px;
	margin: 0 auto;
}

.founder-left .section-title {
	padding-bottom: 28px;
}

.founder-left .section-title::before {
	width: 267px;
}

.founder-left .section-title::after {
	width: 331px;
}

.founder-right {
	display: flex;
	justify-content: flex-end;
	align-self: center;
}

.founder-block {
	position: relative;
	width: 100%;
	height: 100%;
	max-width: 405px;
	border: 1px solid var(--green);
	overflow: hidden;
	border-radius: 17.138px;
	-webkit-border-radius: 17.138px;
	-moz-border-radius: 17.138px;
	-ms-border-radius: 17.138px;
	-o-border-radius: 17.138px;
	margin: 0 50px 0;
}

.founder-block:last-child {
	margin: 0;
}

.founder-block::before {
	position: absolute;
	content: "";
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.00) 29.96%, rgba(5, 128, 127, 0.00) 64.98%, #1486B6 100%);
	border-radius: 17.138px;
	-webkit-border-radius: 17.138px;
	-moz-border-radius: 17.138px;
	-ms-border-radius: 17.138px;
	-o-border-radius: 17.138px;
}

.founder-block img {
	border-radius: 17.138px;
	-webkit-border-radius: 17.138px;
	-moz-border-radius: 17.138px;
	-ms-border-radius: 17.138px;
	-o-border-radius: 17.138px;
}

.founder-detail {
	position: absolute;
	bottom: 15px;
	left: 0;
	right: 0;
	text-align: center;
}

.founder-detail * {
	font-family: "Poppins";
	font-size: 25px;
	color: var(--white);
	font-style: normal;
	font-weight: 500;
	line-height: 35px;
	/* 140% */
	margin: 0;
}

.founder-detail>*:last-child {
	font-weight: 600;
}

/* founder wapper end */

/*404 Page*/
.section-404.error-pg {
	padding: 100px 0;
}

.section-404.error-pg .common-btn {
	margin-top: 40px;
}

.detail-404 h2 {
	color: var(--green);
}

/*404 Page*/

/* typography */
.typography-section{
	padding: 100px 0;
}

.typography-section .section-title::after{
	left: 50%;
	transform: translateX(-50%);
	-webkit-transform: translateX(-50%);
	-moz-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	-o-transform: translateX(-50%);
}

.typography-section .section-title::before{
	width: 249px;
	left: 50%;
	transform: translateX(-50%);
	-webkit-transform: translateX(-50%);
	-moz-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	-o-transform: translateX(-50%);
}

.typography-description{
	padding: 80px 0 0;
}

.alignnone {
	float: none;
	margin: 20px 0;
}

.alignleft {
	float: left;
	margin: 20px 20px 20px 0;
}

.aligncenter {
	float: none;
	display: block;
	margin: 20px auto;
}

.alignright {
	float: right;
	margin: 20px 0 20px 20px;
}

.typography-content h1 {
	font-size: 60px;
	line-height: 80px;
	color: var(--grey);
	font-weight: 700;
	margin-bottom: 25px;
}

.typography-content h2 {
	font-size: 50px;
	line-height: 70px;
	color: var(--grey);
	font-weight: 700;
	margin-bottom: 25px;
}

.typography-content h3 {
	font-size: 40px;
	line-height: 50px;
	color: var(--grey);
	font-weight: 600;
	margin-bottom: 25px;
}

.typography-content h4 {
	font-size: 30px;
	line-height: 40px;
	color: var(--grey);
	font-weight: 600;
	margin-bottom: 25px;
}

.typography-content h5 {
	font-size: 28px;
	line-height: 36px;
	color: var(--grey);
	font-weight: 500;
	margin-bottom: 25px;
}

.typography-content h6 {
	font-size: 24px;
	line-height: 32px;
	color: var(--grey);
	font-weight: 500;
	margin-bottom: 25px;
}

.typography-content a{
	color: var(--grey);
}

.typography-content a:hover{
	color: var(--green);
}

.typography-content blockquote{
    padding-left: 20px;
    border-left: 5px solid var(--black);
    margin: 20px 0;
}

.typography-content p{
	margin-bottom: 25px;
}

.typography-content ol,
.typography-content ul{
	margin: 25px 0;
}
/*==================================================================*/
/*========== New Class Add Start ==========*/
/*==================================================================*/

/*==================================================================*/
/*========== New Class Add End ==========*/
/*==================================================================*/


/*==================================================================*/
/*========== Footer Start ==========*/
/*==================================================================*/
.footer {
	overflow: hidden;
	border-top: 1px solid var(--green);
	box-shadow: 0px -22px 13px 0px rgba(0, 0, 0, 0.05), 0px -10px 10px 0px rgba(0, 0, 0, 0.09), 0px -2px 5px 0px rgba(0, 0, 0, 0.10);
}

.footer-logo {
	display: flex;
	justify-content: center;
	padding: 30px 0;
}

.footer-logo a{
	width: 349px;
}

.footer-nav {
	padding: 40px 0;
	border-top: 1px solid rgb(0, 0, 0, 0.1);
	border-bottom: 1px solid rgb(0, 0, 0, 0.1);
}

.footer-nav ul {
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 0;
	margin: 0;
}

.footer-nav ul li {
	list-style-type: none;
	margin: 0 18px;
	line-height: 1;
}

.footer-nav ul li a {
	font-family: "Poppins";
	font-size: 20px;
	color: var(--black);
	font-style: normal;
	font-weight: 400;
	line-height: 30px;
	/* 150% */
}

.footer-nav ul li a:hover {
	color: var(--lightblue);
}

.footer-content {
	display: flex;
	justify-content: center;
	align-self: center;
	max-width: 1664px;
	margin: 0 auto;
	padding: 40px 0 30px;
}

.footer-block {
	display: flex;
	align-items: flex-start;
	margin: 0 50px 0 0;
}

.footer-block:first-child {
	margin: 0 40px 0 0;
}

.footer-block:last-child {
	margin: 0;
}

.footer-icon {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 58px;
	height: 58px;
	border-radius: 5px;
	border: 1px solid rgba(9, 123, 55, 0.50);
	background: rgba(9, 123, 55, 0.05);
}

.footer-icon figure {
	display: flex;
}

.footer-inner {
	max-width: 382px;
	margin: 0 0 0 15px;
}

.footer-inner .footer-detail {
	padding-bottom: 6px;
}

.footer-inner .footer-detail strong {
	font-weight: 500;
	color: var(--lightblue);
	display: block;
}

.footer-inner .footer-link a {
	font-family: "Poppins";
	font-size: 20px;
	color: var(--lightblue);
	font-style: normal;
	font-weight: 500;
	line-height: 30px;
	/* 150% */
}

.footer-inner .footer-link a:hover {
	color: var(--green);
}

.footer-bottom {
	padding: 15px 15px 14px;
	text-align: center;
	background: var(--g-horizontal, linear-gradient(90deg, #007E69 0%, #05807F 37.87%, #1486B6 91.5%));
}

.footer-bottom * {
	font-family: "Poppins";
	font-size: 18px;
	color: var(--white);
	font-style: normal;
	font-weight: 400;
	line-height: 28px;
	/* 155.556% */
	text-transform: capitalize;
	margin: 0;
}

/*==================================================================*/
/*========== Footer End ==========*/
/*==================================================================*/