@charset "utf-8";
/* CSS Document */

/*---------- Google Fonts ----------*/



body{
	font-family: 'Roboto', sans-serif;
	background-color: #ffffff;
	font-weight: 400;
}

a,
input,
button,
textarea { outline: none !important; }

a {
	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;
}
.pad-left {
	padding-left:0;
}

.pad-right {
	padding-right:0;
}

.pad-top {
	padding-top:0;
}

.pad-bottom {
	padding-bottom:0;
}

.padding {
	padding:0;
}

p {
	font-weight: 400;
	font-size: 24px;
	line-height: 35px;
}

svg {
	max-width: 100%;
}

img.shape {
	z-index: -1;
	position: absolute;
}

/*========== Text & Background Colors Start ==========*/
.txt-000000 {
	color: #000000 !important;
}

.txt-ffffff {
	color: #ffffff !important;
}

.txt-37474F {
	color: #37474F !important;
}

.txt-21C87A {
	color: #21C87A !important;
}

.txt-4BD6FF {
	color: #4BD6FF !important;
}

.txt-7DDEFB {
	color: #7DDEFB !important;
}

.txt-93A2FF {
	color: #93A2FF !important;
}

.txt-455A64 {
	color: #455A64 !important;
}

.green-shadow-bg {
	background: linear-gradient(87.71deg, #21C87A 6.03%, #2AEBAA 98.12%);
}
/*========== Text & Background Colors End ==========*/

/*========== Checkmark List Start ==========*/
ul.checkmark-list {
	display: block;
	margin: 0;
	padding: 0;
	list-style-type: none;
}

/*ul.checkmark-list li {
	display: block;
	margin: 0;
	padding: 0 0 30px 43px;
	list-style-type: none;
	font-size: 24px;
	line-height: 32px;
	position: relative;
	font-weight: 500;
}*/

ul.checkmark-list li span {
	position: relative;
	font-weight: 400;
}

ul.checkmark-list li span:before {
	position: absolute;
	content: "";
	left: -43px;
	top: 10px;
	width: 27px;
	height: 19px;
}

ul.checkmark-list li span:before {
	background: url("../images/white-checkmark.svg") no-repeat;
	background-size: 100% 100%;
}

ul.checkmark-list.green-checkmark li {
	color: #000000;
}

ul.checkmark-list.green-checkmark li span:before {
	background: url("../images/green-checkmark.svg") no-repeat;
	background-size: 100% 100%;
}

ul.checkmark-list.purple-checkmark li span:before {
	background: url("../images/purple-checkmark.svg") no-repeat;
	background-size: 100% 100%;
} 
/*.choose-solutions-content ul.checkmark-list.green-checkmark li::before {
    background: unset;
}*/
.checkmark-list h4 {
    margin-left: 40px;
    font-size: 18px;
    font-weight: 500;
}
.choose-solutions-content ul.checkmark-list.green-checkmark li span::before {
    background: unset;
    top: 0;
    left: 0;
}

ul.checkmark-list li a {
	text-decoration: underline;
	color: inherit;
}

ul.checkmark-list li a:hover {
	opacity: 0.7;
}
/*========== Checkmark List End ==========*/

/*========== Font Weight Start ==========*/
.font-300 {
	font-weight: 300;
}

.font-400 {
	font-weight: 400;
}

.font-500 {
	font-weight: 500;
}

.font-600 {
	font-weight: 600;
}

.font-700 {
	font-weight: 700;
}

.font-900 {
	font-weight: 900;
}
/*========== Font Weight End ==========*/

/*========== Buttons Start ==========*/
.btn {
	border: none;
	font-weight: 700;
	font-size: 15px;
	line-height: 21px;
	box-shadow: none !important;
	padding: 13px 25px;
	text-align: center;
	/*text-transform: uppercase;*/
	border-radius: 0;
	-webkit-border-radius: 0;
	-moz-border-radius: 0;
	-ms-border-radius: 0;
	-o-border-radius: 0;
}

.btn img {
	width: 15px;
	margin-right: 5px;
}

.btn-big {
	font-size: 24px;
	line-height: 28px;
	padding: 20px 42px;
}

.btn-big img {
	width: 24px;
}

.btn-radius-20 {
	border-radius: 20px;
	-webkit-border-radius: 20px;
	-moz-border-radius: 20px;
	-ms-border-radius: 20px;
	-o-border-radius: 20px;
}

.btn-radius-60 {
	border-radius: 60px;
	-webkit-border-radius: 60px;
	-moz-border-radius: 60px;
	-ms-border-radius: 60px;
	-o-border-radius: 60px;
}

.btn-green-gradient {
	color: #fff;
	background: linear-gradient(87.71deg, #21C87A 6.03%, #2AEBAA 98.12%);
}

.btn-green-gradient:focus {
	color: #fff;
	background: linear-gradient(87.71deg, #21C87A 6.03%, #2AEBAA 98.12%);
}

.btn-green-gradient:hover,
.btn-green-gradient:active:focus {
	color: #fff;
	background-color: #FDD818;
}

.btn-green {
	color: #ffffff;
	background-color: #21C87A;
}

.btn-green:focus {
	color: #ffffff;
	background-color: #21C87A;
}

.btn-green:hover,
.btn-green:active:focus {
	color: #fff;
	background-color: #1a9c5f;
	border-color: #189159;
}

.btn-yellow {
	color: #37474F;
	background-color: #FDD818;
}

.btn-yellow:focus {
	color: #37474F;
	background-color: #FDD818;
}

.btn-yellow:hover,
.btn-yellow:active:focus {
	color: #37474F;
	background-color: rgba(253, 216, 24, 0.7);
}

.btn-purple {
	color: #ffffff;
	background-color: #A9B5FF;
}

.btn-purple:focus {
	color: #ffffff;
	background-color: #A9B5FF;
}

.btn-purple:hover,
.btn-purple:active:focus {
	color: #ffffff;
	background-color: rgba(169, 181, 255, 0.7);
}
/*========== Buttons End ==========*/

/*========== Section Title Start ==========*/
.section-title {
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	flex-direction: column;
	color: #000000;
	padding: 0 0 50px;
}

.section-title span {
	display: inline-flex;
	font-weight: 500;
	font-size: 36px;
	line-height: 42px;
	color: #4BD6FF;
	clear: both;
	padding: 0 0 15px;
	margin: 0 0 25px;
	position: relative;
}

.section-title span:before {
	position: absolute;
	content: "";
	left: 50%;
	bottom: 0;
	height: 4px;
	width: 275px;
	background-color: #78E0FF;
	transform: translate(-50%, 0);
	-webkit-transform: translate(-50%, 0);
	-moz-transform: translate(-50%, 0);
	-ms-transform: translate(-50%, 0);
	-o-transform: translate(-50%, 0);
}

.section-title h1,
.section-title h2,
.section-title h3,
.section-title h4,
.section-title h5,
.section-title h6 {
	font-size: 48px;
	line-height: 56px;
	color: inherit;
	margin: 0 0 30px;
}

.section-title p {
	font-size: 28px;
	line-height: 38px;
	color: #455A64;
	margin: 0;
}
/*========== Section Title End ==========*/

/*========== Block Title Start ==========*/
.block-title {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	color: #000000;
	padding: 0 0 35px;
}

.block-title h1,
.block-title h2,
.block-title h3,
.block-title h4,
.block-title h5,
.block-title h6 {
	font-size: 36px;
	line-height: 42px;
	color: inherit;
	margin: 0;
}
/*========== Block Title End ==========*/

/*==================================================================*/
/*========== Header Start ==========*/
/*==================================================================*/
.header {
	padding: 14px 15px;
	position: sticky;
	top: 0;
	background-color: #fff;
	z-index: 99;
	border-bottom: 1px solid #e3e6f0;
}

.header .container {
	max-width: 1470px;
}

.logo a {
	display: inline-flex;
}

.logo a svg {
	width: 180px;
}

.header .h-right {
	display: flex;
	justify-content: flex-end;
	align-items: center;
}

.h-social-icons {
	display: inline-flex;
	margin-right: 25px;
}

.h-social-icons ul {
	display: block;
	margin: 0;
	padding: 0;
	list-style-type: none;
}

.h-social-icons ul li {
	display: inline-block;
	margin: 0 5px;
	padding: 0;
	list-style-type: none;
}

.h-social-icons ul li:first-child {
	margin-left: 0;
}

.h-social-icons ul li:last-child {
	margin-right: 0;
}

.h-social-icons ul li img {
	width: 18px;
	height: 18px;
}

.h-social-icons ul li a {
	display: block;
}

.h-social-icons ul li a:hover {
	opacity: 0.7;
}

.h-sign-in-buttons {
	display: inline-flex;
	margin: 0 50px 0 40px;
}

.h-sign-in-buttons .btn {
	display: inline-block;
	margin: 0 9px;
	padding: 8px 16px;
}

.h-sign-in-buttons .btn:first-child {
	margin-left: 0;
}

.h-sign-in-buttons .btn:last-child {
	margin-right: 0;
}

.profile-dropdown {
	position: relative;
}

.profile-dropdown .btn {
	padding: 0;
	background-color: transparent !important;
}

.profile-dropdown .btn img {
	width: 33px;
	margin: 0;
}

.profile-dropdown .btn:after {
	display: none;
}

.profile-dropdown .dropdown-menu {
	top: 100% !important;
	left: auto !important;
	right: 0;
	border: none;
	padding: 0;
	margin: 10px 0 0;
	background-color: #21C87A;
	box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.12);
	transform: none !important;
	-webkit-transform: none !important;
	-moz-transform: none !important;
	-ms-transform: none !important;
	-o-transform: none !important;
	border-radius: 4px;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	-ms-border-radius: 4px;
	-o-border-radius: 4px;
}

.profile-dropdown .dropdown-menu .dropdown-item {
	color: #fff;
	font-size: 14px;
	line-height: 25px;
	padding: 10px 20px;
	border-bottom: 1px solid #ffffff;
}

.profile-dropdown .dropdown-menu .dropdown-item:last-child {
	border: none;
}

.profile-dropdown .dropdown-menu .dropdown-item:first-child {
	border-radius: 4px 4px 0 0;
	-webkit-border-radius: 4px 4px 0 0;
	-moz-border-radius: 4px 4px 0 0;
	-ms-border-radius: 4px 4px 0 0;
	-o-border-radius: 4px 4px 0 0;
}

.profile-dropdown .dropdown-menu .dropdown-item:last-child {
	border-radius: 0 0 4px 4px;
	-webkit-border-radius: 0 0 4px 4px;
	-moz-border-radius: 0 0 4px 4px;
	-ms-border-radius: 0 0 4px 4px;
	-o-border-radius: 0 0 4px 4px;
}

.profile-dropdown .dropdown-menu .dropdown-item:hover {
	color: #37474F;
	background-color: #FDD818;
}
/*==================================================================*/
/*========== Header End ==========*/
/*==================================================================*/

/*========== navigation Start ==========*/
.navbar {
	padding: 0;
}

.navbar-toggler {
	border: none;
	background-color: transparent;
	padding: 0;
}

.navbar-toggler-icon {
	height: auto;
}

.navbar-toggler .toggle-bar {
	display: block;
	height: 2px;
	width: 100%;
	border-radius: 2px;
	-webkit-border-radius: 2px;
	-ms-border-radius: 2px;
	margin: 0 0 5px;
	position: relative;
	transition: ease-in-out 0.2s;
	-webkit-transition: ease-in-out 0.2s;
	-ms-transition: ease-in-out 0.2s;
	background-color: #21C87A;
}

.navbar-toggler .navbar-toggler-icon.open .toggle-bar:first-child {
	-moz-transform: rotate(45deg);
	-o-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
	top: 10px;
}

.navbar-toggler .navbar-toggler-icon.open .toggle-bar:nth-child(2) {
	opacity: 0;
}

.navbar-toggler .navbar-toggler-icon.open .toggle-bar:last-child {
	-moz-transform: rotate(-45deg);
	-o-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
	top: -4px;
}

.navbar-nav .nav-item {
	margin: 0 15px;
}

.navbar-nav .nav-item:first-child {
	margin-left: 0;
}

.navbar-nav .nav-item:last-child {
	margin-right: 0;
}

.navbar-nav .nav-item .nav-link {
	font-weight: 500;
	font-size: 14px;
    line-height: 18px;
	color: #646F79;
	padding: 10px 0 !important;
	display: flex;
	align-items: center;
	text-transform: uppercase;
}

.navbar-nav .nav-item .nav-link.has-submenu .sub-arrow {
	width: 12px;
	height: 12px;
	margin-left: 5px;
	border: none;
	background: url("../images/nav-arrow.svg") no-repeat;
	background-size: 100% 100%;
	transition: 0.4s;
	-webkit-transition: 0.4s;
	-moz-transition: 0.4s;
	-ms-transition: 0.4s;
	-o-transition: 0.4s;
}

.navbar-nav .nav-item.show .nav-link .sub-arrow,
.navbar-nav .nav-item .nav-link:hover .sub-arrow {
	background: url("../images/nav-arrow-active.svg") no-repeat;
	background-size: 100% 100%;
	transform: rotate(-180deg);
	-webkit-transform: rotate(-180deg);
	-moz-transform: rotate(-180deg);
	-ms-transform: rotate(-180deg);
	-o-transform: rotate(-180deg);
}

.navbar-nav .nav-item.show .nav-link,
.navbar-nav .nav-item.active .nav-link,
.navbar-nav .nav-item.current-menu-item .nav-link,
.navbar-nav .nav-item .nav-link.active,
.navbar-nav .nav-item .nav-link.current-menu-item,
.navbar-nav .nav-item .nav-link:hover {
	color: #21C87A;
}

.navbar-nav .nav-item.show .nav-link .sub-arrow,
.navbar-nav .nav-item.active .nav-link .sub-arrow,
.navbar-nav .nav-item.current-menu-item .nav-link .sub-arrow,
.navbar-nav .nav-item .nav-link.active .sub-arrow,
.navbar-nav .nav-item .nav-link.current-menu-item .sub-arrow {
	background: url("../images/nav-arrow-active.svg") no-repeat;
	background-size: 100% 100%;
}

.navbar-nav .nav-item.show .dropdown-menu {
	top: 100% !important;
	visibility: visible;
}

.navbar-nav .dropdown-menu {
	padding: 0;
	border: none;
	box-shadow: none;
	top: 170% !important;
	visibility: hidden;
	left: 50% !important;
	transform: translate(-50%, 0);
	-webkit-transform: translate(-50%, 0);
	-moz-transform: translate(-50%, 0);
	-ms-transform: translate(-50%, 0);
	-o-transform: translate(-50%, 0);
	box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.12);
	border-radius: 4px;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	-ms-border-radius: 4px;
	-o-border-radius: 4px;
	transition: 0.3s;
	-webkit-transition: 0.3s;
	-moz-transition: 0.3s;
	-ms-transition: 0.3s;
	-o-transition: 0.3s;
}

.navbar-nav .dropdown-menu li {
	border-bottom: 1px solid #ffffff;
	overflow: hidden;
}

.navbar-nav .dropdown-menu li:first-child {
	border-radius: 4px 4px 0 0;
	-webkit-border-radius: 4px 4px 0 0;
	-moz-border-radius: 4px 4px 0 0;
	-ms-border-radius: 4px 4px 0 0;
	-o-border-radius: 4px 4px 0 0;
}

.navbar-nav .dropdown-menu li:last-child {
	border: none;
	border-radius: 0 0 4px 4px;
	-webkit-border-radius: 0 0 4px 4px;
	-moz-border-radius: 0 0 4px 4px;
	-ms-border-radius: 0 0 4px 4px;
	-o-border-radius: 0 0 4px 4px;
}

.navbar-nav .dropdown-menu li .dropdown-item {
	padding: 7px 20px;
	font-weight: 500;
	font-size: 14px;
	line-height: 25px;
	color: #ffffff;
	background-color: #21C87A;
}

.navbar-nav .dropdown-menu li.active .dropdown-item,
.navbar-nav .dropdown-menu li.current-menu-item .dropdown-item,
.navbar-nav .dropdown-menu li .dropdown-item.active,
.navbar-nav .dropdown-menu li .dropdown-item.current-menu-item,
.navbar-nav .dropdown-menu li .dropdown-item:hover {
	color: #37474F;
	background-color: #FDD818;
}
/*========== navigation End ==========*/


/*==================================================================*/
/*========== New Class Add Start ==========*/
/*==================================================================*/
/* Banner Section Start */
.banner-sections {
	padding: 56px 0 73px;
	position: relative;
	z-index: 9;
	overflow: hidden;
}

.banner-sections .banner-content {
	position: relative;
}

.banner-sections .shape-1 {
	right: 0;
	top: 65px;
}

.banner-sections .banner-content .shape-2 {
	right: 100%;
	top: 93px;
}

.banner-sections .banner-content .shape-3 {
	left: 195px;
	top: 100px;
}

.banner-sections .banner-content .shape-4 {
	right: 0;
	top: 71px;
}

.banner-sections .shape-5 {
	left: 0;
	bottom: 45px;
}

.banner-sections .banner-content .shape-6 {
	right: 180px;
	bottom: -28px;
}

.banner-sections .shape-7 {
	right: -41px;
	bottom: 52px;
}

/* .banner-section .banner-content .row {
	margin: 0 -56px;
}

.banner-section .banner-content [class^=col-] {
	padding: 0 56px;
} */

.banner-titles {
	font-weight: 700;
	color: #455A64;
}

.banner-titles h1,
.banner-titles h2,
.banner-titles h3,
.banner-titles h4,
.banner-titles h5,
.banner-titles h6 {
	font-weight: inherit;
	font-size: 72px;
	line-height: 95px;
	color: inherit;
	margin: 0;
}

.banner-section .banner-logo {
	padding-bottom: 30px;
}

.banner-section .banner-detail p {
	font-size: 36px;
	line-height: 57px;
	color: #455A64;
}
/* Banner Section End */

/* Employee Stress Balance Start */
.green-curve-shape-bg {
	background: url("../images/green-curve-shape-bg.png") no-repeat;
	background-size: 100% 100%;
}

.employee-stress-balance-section .employee-stress-balance-content {
	position: relative;
	padding: 255px 0 52px;
}

.employee-stress-balance-section .employee-stress-balance-content .shape-1 {
	left: 105px;
	top: 38px;
}
/* Employee Stress Balance End */

/* Employee Balance Start */
.employee-balance-section {
	padding: 55px 0;
}

.employee-balance-section .employee-balance-block {
	margin: 0;
}

.employee-balance-section .employee-balance-block:nth-child(odd) .row {
	flex-direction: row-reverse;
}

.employee-balance-block {
	margin-bottom: 30px;
}

.employee-balance-block .section-title {
	text-align: left;
	color: #ffffff;
	padding-bottom: 0;
}

.employee-balance-block .section-title span {
	color: #ffffff;
	font-size: inherit;
	margin: 0;
}

.employee-balance-block .section-title span:before {
	width: 100%;
	height: 7px;
	background-color: #FDD818;
}

.employee-balance-block .employee-balance-image img {
	width: 100%;
}

.employee-balance-block .employee-balance-detail {
	display: flex;
	align-items: center;
	max-width: 750px;
	flex-direction: column;
}

.employee-balance-block .employee-balance-detail p {
	color: #ffffff;
}
/* Employee Balance End */

/* Stress Start */
.stress-section {
	padding: 55px 0;
}

.stress-section .stress-content {
	background-color: #fff;
	box-shadow: 0px 0px 18px rgba(0, 0, 0, 0.12);
}

.stress-section .stress-content .stress-detail {
	padding: 70px 110px 0;
}

.stress-section .stress-block {
	margin: 50px 0 70px;
}

.stress-section .stress-block {
	display: flex;
	align-items: center;
}

.stress-section .stress-block .stress-persontage {
	width: 145px;
	height: 145px;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	margin-right: 18px;
	background-color: #21C87A;
	border-radius: 50%;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	-ms-border-radius: 50%;
	-o-border-radius: 50%;
}

.stress-section .stress-block .stress-persontage span {
	font-weight: 500;
	font-size: 62px;
	line-height: 62px;
	color: #ffffff;
}

.stress-section .stress-block p {
	font-size: 22px;
	line-height: 30px;
	color: #000000;
	max-width: 285px;
}

.stress-section .stress-year {
	padding: 30px;
	background-color: #2ED386;
	text-align: center;
}

.stress-section .stress-year span {
	font-weight: 500;
	font-size: 28px;
	line-height: 37px;
	color: #ffffff;
}
/* Stress End */

/* Straightforward Section Start */
.straightforward-sections {
	position: relative;
	overflow: hidden;
}

.straightforward-sections .straightforward-content {
	position: relative;
	padding: 194px 0 18px;
}

.straightforward-sections .straightforward-list {
	position: relative;
}

.straightforward-sections .straightforward-content .shape-1 {
	top: 70px;
	left: -65px;
}

.straightforward-sections .straightforward-content .shape-2 {
	top: 77px;
	right: 55px;
}

.straightforward-sections .straightforward-content .shape-3 {
	top: 462px;
	left: 30px;
}

.straightforward-sections .shape-4 {
	top: 470px;
	right: 0;
}

.straightforward-sections .straightforward-content .shape-5 {
	top: 615px;
	right: 55px;
}

.straightforward-sections .shape-6 {
	top: 890px;
	left: 22px;
}

.straightforward-sections .straightforward-list .shape-7 {
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	-moz-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	-o-transform: translate(-50%, -50%);
}

.straightforward-sections .straightforward-list .shape-8 {
	top: 50%;
	right: -40px;
	transform: translate(0, -50%);
	-webkit-transform: translate(0, -50%);
	-moz-transform: translate(0, -50%);
	-ms-transform: translate(0, -50%);
	-o-transform: translate(0, -50%);
}

.straightforward-sections .straightforward-content .shape-9 {
	bottom: 535px;
	left: -13px;
}

.straightforward-sections .straightforward-content .shape-10 {
	bottom: 0;
	left: -88px;
}

.straightforward-sections .section-title {
	padding-bottom: 220px;
}

.straightforward-sections .section-title span {
	display: inline;
	color: inherit;
	padding: 0;
}

.straightforward-sections .section-title span .presontage {
	font-size: 64px;
	line-height: 103px;
}

.straightforward-sections .section-title span:before {
	display: none;
}

.straightforward-sections .straightforward-content h3::before{
	display: none;
}

.straightforward-content {
	list-style: none;
	/* counter-reset: my-awesome-counter; */
}

.straightforward-content .straightforward-block:nth-child(odd) .row {
	flex-direction: row-reverse;
}

.straightforward-content .straightforward-block:nth-child(odd) .title h1:before,
.straightforward-content .straightforward-block:nth-child(odd) .title h2:before,
.straightforward-content .straightforward-block:nth-child(odd) .title h3:before,
.straightforward-content .straightforward-block:nth-child(odd) .title h4:before,
.straightforward-content .straightforward-block:nth-child(odd) .title h5:before,
.straightforward-content .straightforward-block:nth-child(odd) .title h6:before {
	color: #7DDEFB;
	background: none;
	-webkit-text-fill-color: unset;
}

.straightforward-block {
	counter-increment: my-awesome-counter;
	margin: 0 0 200px;
}

.straightforward-block .row {
	margin: 0 -50px;
}

.straightforward-block [class^=col-] {
	padding: 0 50px;
}

.straightforward-block .title {
	padding: 0 0 30px;
	color: #000000;
}

.straightforward-block .title h1,
.straightforward-block .title h2,
.straightforward-block .title h3,
.straightforward-block .title h4,
.straightforward-block .title h5,
.straightforward-block .title h6 {
	display: flex;
	align-items: center;
	position: relative;
	font-weight: 700;
	font-size: 48px;
	line-height: 68px;
	color: inherit;
	margin: 0;
}

.straightforward-block .detail p {
	font-size: 28px;
	line-height: 42px;
	color: #1D212A;
}

.straightforward-block .image {
	text-align: center;
}
/* Straightforward Section End */

/* Choose Solutions Section Start */
.choose-solutions-content .row {
	margin: 0 -10px;
}

.choose-solutions-content [class^=col-] {
	padding: 0 10px;
}

.choose-solutions-block {
	background-color: #ffffff;
	box-shadow: 0px -1px 17px #DCE7E2;
	padding: 40px;
	height: 100%;
	border-radius: 17px;
	-webkit-border-radius: 17px;
	-moz-border-radius: 17px;
	-ms-border-radius: 17px;
	-o-border-radius: 17px;
}
/* Choose Solutions Section End */

/* Benefits Section Start */
.benefits-section {
	padding: 405px 0 155px;
	margin-top: -315px;
}

.benefits-content {
	background-color: #2ED386;
	padding: 30px 48px 128px;
	box-shadow: 0px -1px 17px #4BB785;
	border-radius: 17px;
	-webkit-border-radius: 17px;
	-moz-border-radius: 17px;
	-ms-border-radius: 17px;
	-o-border-radius: 17px;
}

.benefits-content .row {
	margin: 0 -77px;
}

.benefits-content [class^=col-] {
	padding: 0 77px;
}

.benefits-content [class^=col-]:last-child .benefits-block ul:before {
	display: none;
}

.benefits-block .icon {
	width: 110px;
	height: 110px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.benefits-content .benefits-block .block-title {
	align-items: flex-start;
	padding-bottom: 65px;
	color: #ffffff;
}

.benefits-content .benefits-block ul {
	height: 100%;
	position: relative;
}

.benefits-content .benefits-block ul:before {
	position: absolute;
	content: "";
	right: -78px;
	top: 0;
	bottom: 0;
	width: 3px;
	height: 100%;
	background-color: #fff;
}
/* Benefits Section End */

/* Get Started Section Start */
.get-started-section {
	overflow: hidden;
}

.get-started-section .get-started-content {
	padding: 141px 0 90px;
	position: relative;
}

.get-started-section .get-started-content .shape-1 {
	top: 56px;
	left: 25px;
}

.get-started-section .get-started-content .shape-2 {
	top: 45px;
	left: 170px;
}

.get-started-section .get-started-content .shape-3 {
	top: 61px;
	right: 315px;
}

.get-started-section .get-started-content .shape-4 {
	top: 89px;
	right: -160px;
}

.get-started-section .get-started-content .shape-5 {
	left: -125px;
	bottom: 100px;
}

.get-started-section .get-started-content .shape-6 {
	left: 275px;
	bottom: 20px;
}

.get-started-section .get-started-content .shape-7 {
	right: 333px;
	bottom: 20px;
}

.get-started-section .get-started-content .shape-8 {
	right: -130px;
	bottom: 15px;
}
/* Get Started Section End */
/*==================================================================*/
/*========== New Class Add End ==========*/
/*==================================================================*/



/*==================================================================*/
/*========== Footer Start ==========*/
/*==================================================================*/
.footer {
	padding: 66px 0;
	background-color: #1D212A;
}

.footer .row {
	flex-direction: row-reverse;
}

.f-title {
	padding: 0 0 20px;
}

.f-title span {
	font-size: 16px;
	line-height: 23px;
	color: #ffffff;
}

.footer p {
	font-weight: 400;
	font-size: 14px;
	line-height: 14px;
	color: #ffffff;
}

.f-copyright {
	padding-left: 80px;
}

.f-block ul {
	display: block;
	margin: 0;
	padding: 0;
	list-style-type: none;
}

.f-block ul li {
	display: block;
	margin: 0;
	padding: 0 0 10px;
	list-style-type: none;
	font-size: 16px;
	line-height: 20px;
	color: #C8C8C8;
}

.f-block ul li:last-child {
	padding: 0;
}

.f-block ul li img {
	margin-right: 10px;
}

.f-block ul li a {
	text-decoration: none;
	color: #C8C8C8;
}

.f-block ul li.active a,
.f-block ul li a.active,
.f-block ul li a:hover {
	color: #ffffff;
}

.f-links-list .row {
	flex-direction: inherit;
}

.banner-logo-buisness {
    padding-bottom: 30px;
}
/*==================================================================*/
/*========== Footer End ==========*/
/*==================================================================*/
