.page-header {
	position: relative;
	margin-bottom: -120px;
	z-index: 1;	
}

@media screen and (max-width:768px) {
	.page-header {
		margin-bottom: -36px;
	}
}

/*----------------------------------------------------------------------
hero-wrapp for home page
----------------------------------------------------------------------*/
.hero-wrapp {
	position: relative;
	height: auto;
	z-index: 0;
}

.hero-wrapp .hero-image {
	position: relative;
	width: 100%;
}

.hero-wrapp .hero-image img {
	width: 100%;
}

.hero-wrapp .hero-inner {
	position: relative;
	background-color: #f9f5ee;
}

.hero-wrapp .hero-inner .inner-content {
	position: absolute;
	bottom: calc(100% + 50px);
	left: 50%;
	transform: translateX(-50%);
	width: 100%;
	padding: 0 15px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 15px;
}

.hero-wrapp .hero-inner .inner-content .content-title {
	font-size: 30px;
	font-weight: 900;
	color: var(--color-secondary);
	text-align: center;
	margin: 0;
	text-shadow: 0px 4px 4px #00000040;
	;
}

.hero-wrapp .hero-inner .inner-content .content-description {
	position: relative;
	font-weight: 700;
	font-size: 28px;
	text-align: center;
	color: var(--color-secondary);
	margin: 0;
}

.hero-wrapp .hero-inner .inner-content .content-description::before {
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	height: 18px;
	background-color: var(--color-primaryAlpha);
	z-index: -1;
}

.hero-wrapp .hero-inner .inner-search {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 15px;
}

.hero-wrapp .hero-inner .inner-search .search-description {
	font-weight: 600;
	font-size: 22px;
	max-width: 600px;
	text-align: center;
	margin-bottom: 64px;
}

.hero-wrapp .hero-inner .inner-search .search-title {
	margin-bottom: 20px;
	font-weight: 900;
	font-size: 22px;
	text-align: center;
	color: #1B1F26CC;
}

.hero-wrapp .hero-inner .inner-search .search-inputs {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 60%;
}

.hero-wrapp .hero-inner .inner-search .search-inputs input {
	flex: 1;
	height: 52px;
	font-weight: 500;
	font-size: 14px;
	padding: 0 15px;
	border-radius: 40px;
	box-shadow: 2px 2px 10px 0px #25538433, -2px -2px 10px 0px #25538433;
	border: none;
	outline: none;
}

.hero-wrapp .hero-inner .inner-search .search-inputs input::placeholder {
	color: #727677B8;
}

.hero-wrapp .hero-inner .inner-search .search-inputs button {
	height: 52px;
	font-size: 20px;
	border-radius: 40px;
	box-shadow: 0px 4px 4px 0px #00000040;
}

.hero-wrapp .hero-inner .inner-search .search-dropdowns {
	display: flex;
	align-items: center;
	justify-content: end;
	gap: 15px;
	width: 60%;
}

.hero-wrapp .hero-inner .inner-search .search-dropdowns .dropdown {
	display: inline-flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	padding: 8px 40px;
	border-radius: 40px;
	box-shadow: 2px 2px 2px 0px #25538440;
	background-color: #fff;
	color: var(--color-secondary);
	font-size: 18px;
	font-weight: 900;
	cursor: pointer;
}

.hero-wrapp .hero-inner .inner-search .search-dropdowns .dropdown::after {
	content: '';
	width: 18px;
	height: 18px;
	background-image: url("../images/arrow-down.svg");
	background-position: center;
	background-size: contain;
	background-repeat: no-repeat;
}

.hero-wrapp .hero-inner .inner-registerBox {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: space-between;
	border-radius: 16px;
	background-color: var(--color-secondary);
	height: 127px;
	padding: 0 36px;
	margin: 120px 0;
}

.hero-wrapp .hero-inner .inner-registerBox .btn {
	font-size: 22px;
}

.hero-wrapp .hero-inner .inner-registerBox .image-shape {
	position: absolute;
	left: 15%;
	top: 0;
	bottom: 0;
	width: 100%;
	background-image: url('../images/hero/registerBox_shape.svg');
	background-position: top left;
	background-size: contain;
	background-repeat: no-repeat;
}

.hero-wrapp .hero-inner .inner-registerBox .image-shape img {
	height: 100%;
	object-fit: contain;
}

.hero-wrapp .hero-inner .inner-registerBox .inner-registerBox-content {
	display: inline-flex;
	align-items: center;
	gap: 10px;
}

.hero-wrapp .hero-inner .inner-registerBox .inner-registerBox-content img.icon {
	height: 50px;
}

.hero-wrapp .hero-inner .inner-registerBox .inner-registerBox-content .text {
	display: inline-flex;
	font-weight: 700;
	font-size: 22px;
	color: #fff;
	margin: 0;
}


@media screen and (max-width:1025px) {
	.hero-wrapp .hero-inner .inner-search .search-inputs {
		width: 80%;
	}

	.hero-wrapp .hero-inner .inner-search .search-dropdowns {
		width: 80%;
	}

	.hero-wrapp .hero-inner .inner-search .search-dropdowns .dropdown {
		padding: 8px 20px;
		font-size: 16px;
	}
}

@media screen and (max-width:768px) {

	.hero-wrapp .hero-inner .inner-registerBox {
		flex-direction: column;
		align-items: center;
		justify-content: center;
		gap: 20px;
		height: auto;
		padding: 20px 0;
	}

	.hero-wrapp .hero-inner .inner-registerBox .inner-registerBox-content .icon {
		display: none;
	}

	.hero-wrapp .hero-inner .inner-registerBox .inner-registerBox-content .text {
		flex-direction: column;
		align-items: center;
		text-align: center;
		font-size: 18px;
		padding-bottom: 36px;
	}

	.hero-wrapp .hero-inner .inner-registerBox .btn {
		width: 60%;
		border-radius: 16px;
		font-size: 18px;
	}

	.hero-wrapp .hero-inner .inner-registerBox .image-shape {
		left: 10px;
		right: 10px;
		top: unset;
		bottom: 42px;
		height: 54px;
		width: unset;		
		background-image: url('../images/hero/registerBox_shape_device.svg');
	}

	.hero-wrapp .hero-inner {
		padding-top: 56px;
	}

	.hero-wrapp .hero-image {
		display: flex;
		justify-content: center;
	}

	.hero-wrapp .hero-image img {
		width: 125%;
	}

	.hero-wrapp .hero-inner .inner-content {
		bottom: calc(100% - 32px);
	}

	.hero-wrapp .hero-inner .inner-content .content-title {
		font-size: 18px;
	}

	.hero-wrapp .hero-inner .inner-content .content-description {
		font-size: 16px;
	}

	.hero-wrapp .hero-inner .inner-content .content-description::before {
		height: 12px;
	}

	.hero-wrapp .hero-inner .inner-search {
		padding: 0 30px;
	}

	.hero-wrapp .hero-inner .inner-search .search-description {
		font-size: 16px;
		max-width: 100%;
		width: 100%;
		margin-bottom: 28px;
	}

	.hero-wrapp .hero-inner .inner-search .search-title {
		font-size: 16px;
	}

	.hero-wrapp .hero-inner .inner-search .search-inputs {
		width: 100%;
		justify-content: center;
		position: relative;
	}

	.hero-wrapp .hero-inner .inner-search .search-inputs input {
		height: 38px;
		padding-right: 92px;
	}

	.hero-wrapp .hero-inner .inner-search .search-inputs button {
		position: absolute;
		height: 38px;
		font-size: 14px;
		right: 0;
	}

	.hero-wrapp .hero-inner .inner-search .search-dropdowns {
		width: 100%;
		flex-direction: column;
		justify-content: center;
	}

	.hero-wrapp .hero-inner .inner-search .search-dropdowns .dropdown {
		width: 220px;
		font-size: 14px;
		font-weight: 800;
	}
}

/* ---------------------------------------------------------------------
statistics-wrapp
----------------------------------------------------------------------*/
.statistics-wrapp {
	position: relative;
}

.statistics-wrapp .statistics-items {
	position: relative;
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
	gap: 56px;
	padding: 15px;
}

.statistics-wrapp .statistics-items .statistics-items-background {
	position: absolute;
	top: 0;
	right: 0;
	width: 100%;
	height: 100%;
	border-radius: 18px;
	background-color: #fff;
	box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
	border-radius: 18px;
	z-index: 1;
}

.statistics-wrapp .statistics-items::before {
	content: '';
	position: absolute;
	width: 50%;
	height: 50%;
	top: -5px;
	right: 5px;
	transform: rotate(-3deg);
	background-color: var(--color-secondary);
	border-radius: 0 25px 25px 0;
	z-index: 0;
}

.statistics-wrapp .statistics-items::after {
	content: '';
	position: absolute;
	width: 50%;
	height: 50%;
	bottom: -5px;
	left: 5px;
	transform: rotate(-3deg);
	background-color: var(--color-secondary);
	border-radius: 25px 0 0 25px;
	z-index: 0;
}

.statistics-wrapp .statistics-items .statistics-item {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	flex: 1;
	justify-content: center;
	width: 180px;
	min-height: 96px;
	z-index: 1;
}

.statistics-wrapp .statistics-items .statistics-item::after {
	content: '';
	position: absolute;
	width: 2px;
	height: 100%;
	top: 0;
	left: 0;
	background: linear-gradient(180deg, #F5F5F5 0%, rgba(27, 31, 38, 0.5) 49.52%, #F5F5F5 100%);
}

.statistics-wrapp .statistics-items .statistics-item:last-child:after {
	display: none;
}

.statistics-wrapp .statistics-items .statistics-item .statistics-item-number {
	font-weight: 900;
	font-size: 36px;
	text-align: center;
	vertical-align: middle;
	color: #000;
}

.statistics-wrapp .statistics-items .statistics-item .statistics-item-title {
	font-weight: 500;
	font-size: 20px;
	text-align: center;
	vertical-align: middle;
	color: rgba(0, 0, 0, 0.55);
}

@media screen and (max-width:768px) {
	.statistics-wrapp {
		display: block;
	}

	.statistics-wrapp .statistics-items {
		flex-direction: column;
	}

	.statistics-wrapp .statistics-items .statistics-items-background {
		width: unset;
		left: 25px;
		right: 25px;
		box-shadow: 1px 1px 4px 0px rgba(0, 0, 0, 0.25);
	}

	.statistics-wrapp .statistics-items::before {
		top: 10px;
		right: 18px;
		transform: rotate(3deg);
	}

	.statistics-wrapp .statistics-items::after {
		bottom: 10px;
		left: 18px;
		transform: rotate(3deg);
	}

	.statistics-wrapp .statistics-items .statistics-item::after {
		display: none;
	}
}

/*----------------------------------------------------------------------
main-header-wrapp
----------------------------------------------------------------------*/
.main-header-wrapp {
	position: relative;
	display: flex;
	height: 898px;
}

.main-header-wrapp .item-container-left,
.main-header-wrapp .item-container-right,
.main-header-wrapp .item-container-center {
	position: relative;
	width: 33.333%;
	height: 100%;
	padding-top: 90px;
}

.main-header-wrapp .item-container-center {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 25px;
}

.main-header-wrapp .header-background {
	position: absolute;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	background: radial-gradient(circle at center, #01469b 0%, #011f46 70%);
	z-index: 1;
}

.main-header-wrapp .header-content {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: space-between;
	gap: 25px;
	width: 90%;
	color: #fff;
	z-index: 2;
}

.main-header-wrapp .header-content .header-content-title {
	text-align: center;
	padding-bottom: 25px;
	border-bottom: 2px solid #fff;
	font-size: 2.7rem;
}

.main-header-wrapp .header-content .header-content-description {
	font-size: 1.4rem;
	text-align: center;
	color: rgba(217, 217, 217, 1);
}

.main-header-wrapp .header-content .header-content-actions {
	display: flex;
	flex-direction: column;
	align-items: center;
}

.main-header-wrapp .header-content .header-content-actions .btn,
.main-header-wrapp .header-content .header-content-actions a {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	margin-top: 5px;
	font-size: 1.2rem;
	padding-top: 4px;
	padding-bottom: 4px;
	border-radius: 25px;
	width: 260px;
	height: 56px;
	padding: 0;
	font-size: 24px;
}

.main-header-wrapp .header-video {
	position: relative;
	max-width: 460px;
	background-color: #000;
	border-radius: 20px;
	box-shadow: 0px 1px 4px 0px rgba(0, 0, 0, 1);
	overflow: hidden;
	z-index: 3;
}

.main-header-wrapp .header-video video {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: top;
}

.main-header-wrapp .header-video .video-play {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	font-size: 40px;
	color: white;
	background-color: rgba(0, 0, 0, 0.5);
	border: none;
	border-radius: 50%;
	width: 80px;
	height: 80px;
	cursor: pointer;
	display: flex;
	justify-content: center;
	align-items: center;
}

.main-header-wrapp .header-video .video-play::before {
	content: "\f04b";
	font-family: "Font Awesome 6 Pro";
	font-weight: 600;
}

.main-header-wrapp .item-container-left img,
.main-header-wrapp .item-container-right img {
	position: absolute;
	object-fit: cover;
	object-position: center;
	z-index: 2;
	border-radius: 15px;
}

.main-header-wrapp .item-container-left img:nth-child(1) {
	top: 90px;
	left: 25px;
	width: 160px;
	height: 160px;
}

.main-header-wrapp .item-container-left img:nth-child(2) {
	top: calc(90px + 80px);
	left: calc(160px + 50px);
	width: 160px;
	height: 160px;
}

.main-header-wrapp .item-container-left img:nth-child(3) {
	top: calc(90px + (80px * 2) + 25px);
	left: 25px;
	width: 160px;
	height: 160px;
}

.main-header-wrapp .item-container-left img:nth-child(4) {
	top: calc(90px + (80px * 3) + 25px);
	left: calc(160px + 50px);
	width: 160px;
	height: 160px;
}

.main-header-wrapp .item-container-left img:nth-child(5) {
	top: calc(90px + (80px * 5) + 25px);
	left: calc(270px);
	width: 100px;
	height: 100px;
}

.main-header-wrapp .item-container-right img:nth-child(1) {
	top: 90px;
	right: 25px;
	width: 160px;
	height: 160px;
}

.main-header-wrapp .item-container-right img:nth-child(2) {
	top: calc(90px + 80px);
	right: calc(160px + 50px);
	width: 160px;
	height: 160px;
}

.main-header-wrapp .item-container-right img:nth-child(3) {
	top: calc(90px + (80px * 2) + 25px);
	right: 25px;
	width: 160px;
	height: 160px;
}

.main-header-wrapp .item-container-right img:nth-child(4) {
	top: calc(90px + (80px * 3) + 25px);
	right: calc(160px + 50px);
	width: 160px;
	height: 160px;
}

.main-header-wrapp .item-container-right img:nth-child(5) {
	top: calc(90px + (80px * 5) + 25px);
	right: calc(270px);
	width: 100px;
	height: 100px;
}

@media screen and (max-width:768px) {
	.main-header-wrapp {
		flex-direction: column;
		display: flex;
		align-items: center;
		height: 520px;
	}

	.main-header-wrapp .item-container-left,
	.main-header-wrapp .item-container-right {
		display: none;
	}

	.main-header-wrapp .item-container-center {
		width: 100%;
		padding-top: 0px;
	}

	.main-header-wrapp .header-content {
		width: 100%;
		left: 0;
		right: 0;
		top: 0;
		bottom: unset;
		padding: 50px;
	}

	.main-header-wrapp .header-background {
		clip-path: polygon(0 0, 100% 0, 100% 85%, 55% 70%, 0 85%);
	}

	.main-header-wrapp .header-content .header-content-title {
		font-size: 24px;
		border-bottom: none;
	}

	.main-header-wrapp .header-content .header-content-description {
		display: none;
	}

	.main-header-wrapp .header-content .header-content-actions {
		flex-direction: row;
	}

	.main-header-wrapp .header-content .header-content-actions .btn:first-child {
		margin-left: 5px;
	}

	.main-header-wrapp .header-content .header-content-actions .btn,
	.main-header-wrapp .header-content .header-content-actions a {
		width: 160px;
		height: 36px;
		font-size: 14px;
	}

	.main-header-wrapp .header-video {
		position: absolute;
		left: 50%;
		height: 260px;
		top: 220px;
		bottom: 20px;
		width: 100%;
		transform: translateX(-50%);
	}
}

@media screen and (max-width:767px) {

	.main-header-wrapp .header-content .header-content-actions .btn,
	.main-header-wrapp .header-content .header-content-actions a {
		width: 140px;
		height: 32px;
	}

	.main-header-wrapp .header-video {
		transform: unset;
		width: unset;
		left: 25px;
		right: 25px;
		height: 260px;
		top: unset;
		bottom: 20px;
	}
}

@media screen and (max-width:376px) {
	.main-header-wrapp .header-content {
		padding: 25px;
	}
}

/*----------------------------------------------------------------------
about-wrapp
----------------------------------------------------------------------*/
.about-wrapp {}

.about-wrapp .about-content {
	display: flex;
	gap: 120px
}

.about-wrapp .about-content .content-inner {
	display: flex;
	flex-direction: column;
	flex: 1;
	gap: 45px;
}

.about-wrapp .about-content .about-image {
	width: 100%;
	margin-bottom: 45px;
}

.about-wrapp .about-content .content-inner .inner-item {
	position: relative;
	padding: 50px 25px 25px 25px;
	border-radius: 10px;
	border: 1px solid var(--color-primary);
	width: 100%;
}

.about-wrapp .about-content .content-inner .inner-item .title {
	position: absolute;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	border-radius: 10px;
	height: 50px;
	left: 30px;
	right: 30px;
	top: -25px;
	border-radius: 10px;
	background-color: var(--color-secondary);
	color: #fff;
	font-size: 16px;
}

.about-wrapp .about-content .content-inner .inner-item .description {
	text-align: center;
	font-size: 16px;
	color: rgba(27, 31, 38, 0.72);
}

@media screen and (max-width:768px) {

	.about-wrapp {
		padding-bottom: 45px;
	}

	.about-wrapp .about-content {
		display: block;
		text-align: center;
	}

	.about-wrapp .about-content .about-image {
		width: 80%;
	}

	.about-wrapp .about-content .owl-stage-outer {
		overflow: visible;
	}

	.about-wrapp .about-content .content-inner {
		margin-bottom: 45px;
		align-items: center
	}

	.about-wrapp .about-content .content-inner .inner-item {
		height: 170px;
	}

	
}

/*----------------------------------------------------------------------
userBusinesses-wrapp
----------------------------------------------------------------------*/
.userBusinesses-wrapp {
	margin-top: 64px;
}

.userBusinesses-wrapp .userBusinesses-inner {
	display: flex;
	justify-content: center;
}

.userBusinesses-wrapp .userBusinesses-inner .userBusinesses-item {
	display: flex;
	justify-content: center;
	flex: auto;
	gap: 15px;
}

.userBusinesses-wrapp .userBusinesses-inner .userBusinesses-item .item-content {
	display: inline-flex;
	flex-direction: column;
	justify-content: center;
}

.userBusinesses-wrapp .userBusinesses-inner .userBusinesses-item .item-content span:first-child {
	font-weight: 500;
	font-size: 14px;
	color: rgba(114, 118, 119, 1);
}

.userBusinesses-wrapp .userBusinesses-inner .userBusinesses-item .item-content span:last-child {
	font-weight: 500;
	font-size: 16px;
}

@media screen and (max-width:768px) {
	.userBusinesses-wrapp .userBusinesses-inner {
		overflow-x: auto;
		justify-content: flex-start;
		padding-bottom: 15px;
	}

	.userBusinesses-wrapp .userBusinesses-inner .userBusinesses-item {
		width: 33.333%;
		min-width: 33.333%;
		flex: unset;
	}
}

/*----------------------------------------------------------------------
cooperationSteps
----------------------------------------------------------------------*/
.cooperationSteps-wrapp {}

.cooperationSteps-wrapp .cooperationSteps-inner {
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.cooperationSteps-wrapp .cooperationSteps-inner .inner-item {
	position: relative;
	display: flex;
	flex-direction: row-reverse;
	justify-content: space-between;
	align-items: center;
	gap: 15px;
	padding: 25px;
	margin-top: -10px;
	border-radius: 0;
}

.cooperationSteps-wrapp .cooperationSteps-inner .inner-item::before {
	content: '';
	position: absolute;
	top: 0;
	left: 200px;
	right: 200px;
	height: 10px;
	background-color: var(--color-secondary);
}

.cooperationSteps-wrapp .cooperationSteps-inner .inner-item:first-child::before {
	display: none;
}

.cooperationSteps-wrapp .cooperationSteps-inner .inner-item:nth-child(odd)::after {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	width: 200px;
	background-color: #fff;
	z-index: 0;
	border-radius: 200px 0 0 200px;
	border: 10px solid var(--color-secondary);
	border-right: none;
}

.cooperationSteps-wrapp .cooperationSteps-inner .inner-item:nth-child(even)::after {
	content: '';
	position: absolute;
	right: 0;
	top: 0;
	bottom: 0;
	width: 200px;
	background-color: #fff;
	z-index: 0;
	border-radius: 0 200px 200px 0;
	border: 10px solid var(--color-secondary);
	border-left: none;
}

.cooperationSteps-wrapp .cooperationSteps-inner .inner-item:nth-child(odd) {
	flex-direction: row;
}

.cooperationSteps-wrapp .cooperationSteps-inner .inner-item .item-content {
	display: flex;
	flex-direction: column;
	width: 50%;
	gap: 10px;
	z-index: 1;
}

.cooperationSteps-wrapp .cooperationSteps-inner .inner-item .item-shape {
	position: absolute;
	bottom: 9px;
	left:50%;
	transform: translateX(-50%);
	height: 53px;
	width: 156px;
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
	background-image: url('../images/cooperationSteps/shape.svg');
	z-index: 1;
}

.cooperationSteps-wrapp .cooperationSteps-inner .inner-item .item-shape.shape-top {
	top: 9px;
	bottom: unset;
	transform: translateX(-50%) rotate(180deg);
}

.cooperationSteps-wrapp .cooperationSteps-inner .inner-item .item-shape.shape-left {
	left: 25%;
}

.cooperationSteps-wrapp .cooperationSteps-inner .inner-item .item-shape.shape-right {
	left: unset;
	right: 25%;
}

.cooperationSteps-wrapp .cooperationSteps-inner .inner-item .item-content .caption {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	width: fit-content;
	padding: 5px 13px;
	border-radius: 25px;
	border: 3px solid var(--color-primary);
}

.cooperationSteps-wrapp .cooperationSteps-inner .inner-item .item-content .caption .caption-label {
	font-size: 24px;
	font-weight: 500;
	margin-left: 1px;
	color: rgba(27, 31, 38, 0.8);
}

.cooperationSteps-wrapp .cooperationSteps-inner .inner-item .item-content .caption .caption-title {
	font-size: 26px;
	font-weight: 700;
}

.cooperationSteps-wrapp .cooperationSteps-inner .inner-item .item-content .description {
	color: rgba(27, 31, 38, 0.8);
	font-size: 20px;
	font-weight: 600;
	text-align: justify;
}

.cooperationSteps-wrapp .cooperationSteps-inner .inner-item .item-image {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 193px;
	height: 193px;
	padding: 25px;
	border-radius: 50%;
	background-color: #fff;
	box-shadow: 0px 16px 16px 0px rgba(0, 0, 0, 0.25), -4px -4px 4px 0px rgba(255, 255, 255, 1), -8px 0px 8px 0px rgba(0, 0, 0, 0.25);
	z-index: 1;
}

.cooperationSteps-wrapp .cooperationSteps-inner .inner-item .item-image img {
	width: 64px;
	height: 64px;
	object-fit: contain;
}

@media screen and (max-width:768px) {
	.cooperationSteps-wrapp .cooperationSteps-inner .inner-item {
		margin-top: -6px;
		padding: 18px 18px;
	}

	.cooperationSteps-wrapp .cooperationSteps-inner .inner-item::before {
		height: 6px;
	}

	.cooperationSteps-wrapp .cooperationSteps-inner .inner-item::after {
		content: '';
		border-width: 6px !important;
	}

	.cooperationSteps-wrapp .cooperationSteps-inner .inner-item .item-content {
		width: unset;
		flex: 1;
	}

	.cooperationSteps-wrapp .cooperationSteps-inner .inner-item .item-content .caption {
		border-width: 1px;
	}

	.cooperationSteps-wrapp .cooperationSteps-inner .inner-item .item-content .caption .caption-label {
		font-size: 16px;
	}

	.cooperationSteps-wrapp .cooperationSteps-inner .inner-item .item-content .caption .caption-title {
		font-size: 16px;
	}

	.cooperationSteps-wrapp .cooperationSteps-inner .inner-item .item-content .description {
		font-size: 14px;
	}

	.cooperationSteps-wrapp .cooperationSteps-inner .inner-item .item-image {
		width: 90px;
		height: 90px;
	}

	.cooperationSteps-wrapp .cooperationSteps-inner .inner-item .item-image img {
		width: 36px;
		height: 36px;
	}

	.cooperationSteps-wrapp .cooperationSteps-inner .inner-item .item-shape {
		display: none;
	}
}

@media screen and (max-width:374px) {
	.cooperationSteps-wrapp .cooperationSteps-inner .inner-item::after {
		width: 150px !important;
	}
}

/*----------------------------------------------------------------------
tariffs-wrapp
----------------------------------------------------------------------*/
.tariffs-wrapp {
	background-color: rgba(249, 245, 238, 1);
	padding-top: 36px;
	padding-bottom: 64px;
}

.tariffs-wrapp .tariffs-items {
	display: flex;
	justify-content: center;
	gap: 20px;
	margin-bottom: 96px;
}

.tariffs-wrapp .tariffs-items .tariffs-item {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 15px;
	flex: 1;
	max-width: 400px;
	padding: 30px;
	border-radius: 30px;
	background-color: #fff;
}

.tariffs-wrapp .tariffs-items .tariffs-item .active {
	box-shadow: 4px 4px 8px 0px rgba(0, 0, 0, 0.25), -4px -4px 6px 0px rgba(0, 0, 0, 0.25);
}

.tariffs-wrapp .tariffs-items .tariffs-item::after {
	content: '';
	position: absolute;
	height: 6px;
	width: 70%;
	left: 50%;
	transform: translateX(-50%);
	bottom: 0;
	background-color: var(--color-secondary);
	border-radius: 10px;
}

.tariffs-wrapp .tariffs-items .tariffs-item .item-image {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 32px;
}

.tariffs-wrapp .tariffs-items .tariffs-item .item-image::before {
	content: '';
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	width: 130px;
	height: 130px;
	border-radius: 50%;
	background-color: var(--color-primary);
	z-index: 0;
}

.tariffs-wrapp .tariffs-items .tariffs-item .item-image::after {
	content: '';
	position: absolute;
	left: calc(50% - 30px);
	top: calc(50% - 10px);
	transform: translate(-50%, -50%) rotate(18deg);
	width: 100px;
	height: 150px;
	background-color: #ffffff;
	z-index: 1;
}

.tariffs-wrapp .tariffs-items .tariffs-item .item-image .image {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 120px;
	height: 120px;
	border-radius: 50%;
	background-color: #fff;
	box-shadow: -4px 4px 8px 0px rgba(203, 203, 203, 0.25), 4px -4px 4px 0px rgba(255, 255, 255, 0.25);
	z-index: 2;
}

.tariffs-wrapp .tariffs-items .tariffs-item .item-image .image img {
	width: 60px;
	height: 60px;
	object-fit: contain;
}

.tariffs-wrapp .tariffs-items .tariffs-item .item-title {
	width: 100%;
	padding-bottom: 20px;
	font-weight: 700;
	font-size: 20px;
	text-align: center;
	color: var(--color-secondary);
	border-bottom: 1px solid rgba(27, 31, 38, 0.52);
}

.tariffs-wrapp .tariffs-items .tariffs-item .price-wrapp {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 5px;
}

.tariffs-wrapp .tariffs-items .tariffs-item .item-price {
	font-weight: 700;
	font-size: 22px;
	text-align: center;
	margin-bottom: 25px;
}

.tariffs-wrapp .tariffs-items .tariffs-item .item-price-old {
	font-weight: 700;
	font-size: 18px;
	text-align: center;
	text-decoration: line-through;
	margin-bottom: 5px;	
	color: rgba(0, 0, 0, 0.55);
}

.tariffs-wrapp .tariffs-items .tariffs-item .item-action.btn {
	width: 280px;
	height: 40px;
	border: 1px solid rgba(27, 31, 38, 0.54);
	border-radius: 10px;
	background-color: #fff;
	color: rgba(27, 31, 38, 0.54);
	font-size: 14px;
	font-weight: 800;
}

.tariffs-wrapp .tariffs-items .tariffs-item .item-action.btn:hover {
	background-color: var(--color-secondary);
	color: #fff;
}

.tariffs-wrapp .tariffs-content {
	display: flex;
	flex-direction: column;
	gap: 36px;
	list-style: none;
}

.tariffs-wrapp .tariffs-content .tariffs-content-item {
	position: relative;
	font-weight: 600;
	font-size: 22px;
	color: rgba(27, 31, 38, 0.8);
}

.tariffs-wrapp .tariffs-content .tariffs-content-item::before {
	content: '';
	display: inline-block;
	width: 13px;
	height: 13px;
	margin-left: 15px;
	background-color: var(--color-secondary);
	border-radius: 50%;
}

@media screen and (max-width:768px) {
	.tariffs-wrapp {
		padding-bottom: 36px;
	}

	.tariffs-wrapp .tariffs-items {
		flex-direction: column;
	}

	.tariffs-wrapp .tariffs-items .tariffs-item {
		max-width: unset;
		width: 100%;
		border: 1px solid rgba(0, 0, 0, 0.05);
	}

	.tariffs-wrapp .tariffs-items .tariffs-item .item-title {
		font-size: 16px;
	}

	.tariffs-wrapp .tariffs-items .tariffs-item .item-price {
		font-size: 16px;
	}

	.tariffs-wrapp .tariffs-content .tariffs-content-item {
		font-size: 16px;
	}

	
}

/*----------------------------------------------------------------------
questions-wrapp
----------------------------------------------------------------------*/
.questions-wrapp {}

.questions-wrapp .accordion {
	padding: 30px;
}

.questions-wrapp .accordion .accordion-item {
	border: none;
	margin-bottom: 25px;
	box-shadow: 2px 2px 4px 0px rgba(0, 0, 0, 0.25), -2px -2px 4px 0px rgba(0, 0, 0, 0.25);
	border-radius: 16px;
}

.questions-wrapp .accordion .accordion-item:last-child {
	border: none;
}

.questions-wrapp .accordion .accordion-item .accordion-header {
	background-color: rgba(242, 243, 245, 1);
	border-radius: 16px;
}

.questions-wrapp .accordion .accordion-item .accordion-header .accordion-button {
	display: flex;
	align-items: center;
	height: 92px;
	border: none;
	font-weight: 800;
	font-size: 22px;
	border-radius: 16px;
	border-right: 8px solid var(--color-secondary);
}

.questions-wrapp .accordion .accordion-item .accordion-header .accordion-button::after {
	background-image: url('../images/question/plus-circle.svg');
	background-size: 40px 40px;
	width: 40px;
	height: 40px;
}

.questions-wrapp .accordion .accordion-item .accordion-header .accordion-button:not(.collapsed) {
	border-radius: 16px;
}

.questions-wrapp .accordion .accordion-body {
	font-weight: 600;
	font-size: 20px;
	padding: 15px;
	background-color: rgba(242, 243, 245, 1);
	border-radius: 0 0 16px 16px;
}

@media screen and (max-width:767px) {
	.questions-wrapp .accordion {
		border-color: var(--color-secondaryAlpha);
		border-radius: 25px;
	}

	.questions-wrapp .accordion .accordion-item .accordion-header .accordion-button {
		font-size: 16px;
	}

	.questions-wrapp .accordion .accordion-item .accordion-header .accordion-button::after {
		background-image: url('../images/question/plus-circle.svg');
		background-size: 24px 24px;
		width: 24px;
		height: 24px;
	}	

	.questions-wrapp .accordion .accordion-body {
		font-size: 16px;
		padding: 10px;
	}	
}