@charset "UTF-8";

/*@import url(font_iranYekan.css);*/
@import url(font_ravi.css);
@import url(font_kalameh.css);

:root {
	--color-primary: #FE7F22;
	--color-primaryAlpha: rgb(254 126 34 / 50%);
	--color-secondary: #0148A0;
	--color-secondaryAlpha: rgba(1, 72, 160, 0.4);
	--color-light: #E8E8E8;
	--color-text: #000;
	--color-textLight: #666;
	--color-textAlpha: rgba(0, 0, 0, 0.5);
	--color-price: #66b600;
	--color-priceOld: #777777;
	--color-discount: #c50000;
	--color-border: #b5b7b9;
	--color-borderLight: #dde1e9;
	--color-img: #f4f4f4;
}

@media screen and (min-width:768px) {
	::-webkit-scrollbar {
		width: 4px;
		height: 2px;
	}

	::-webkit-scrollbar-track {
		background: #ddd;
		border-radius: 10px;
	}

	::-webkit-scrollbar-thumb {
		background: #666;
		border-radius: 10px;
		width: 12px;
	}

	::-webkit-scrollbar-thumb:hover {
		background: #444;
	}
}

* {
	font-family: 'ravi';
}

html {
	font-size: 14px;
	direction: rtl;
}

@media screen and (max-width:767px) {
	html {
		font-size: 13px;
	}
}

html,
body,
form,
fieldset,
table,
tr,
td,
img,
div {
	font-family: 'ravi' !important;
}

html,
body {
	overflow-x: hidden;
	color: var(--color-text);
	background-color: #fff;
}

body {
	line-height: normal;
}

a {
	color: var(--color-primary);
	text-decoration: none;
}

/*----------------------------------------------------------------------
btn
----------------------------------------------------------------------*/
.btn {
	box-shadow: 0 3px 3px rgba(0, 0, 0, 0.3);
	border-radius: 10px;
	border: none;
}

.btn:hover {
	opacity: 0.8;
}

.btn.btn-flat {
	border: none;
	box-shadow: none;
}

.btn.btn-flex {
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.btn.btn-flex b,
.btn.btn-flex span {
	padding: 0 3px;
	margin: 0;
}

.btn.btn-flex b {
	font-size: 1.5rem;
	font-weight: 600;
}

.btn.btn-flex i {
	padding: 0 10px;
	margin: 0;
}

.btn.btn-flex .alpha {
	color: var(--color-primaryAlpha);
}


.btn.btn-app-download {
	background-color: var(--color-primary);
	color: #fff;
	border-radius: 15px 15px 0 0;
}

.btn.btn-primary {
	background-color: var(--color-primary);
	color: #fff;
}

.btn.btn-primary.btn-outline {
	border: 1px solid var(--color-primary);
	color: var(--color-primary);
	background-color: transparent;
}

.btn.btn-primary.btn-outline:hover {
	background-color: var(--color-primary);
	color: #fff !important;
}

.btn.btn-secondary {
	background-color: var(--color-secondary);
	color: #fff;
}

.btn.btn-secondary.btn-outline {
	border: 1px solid var(--color-secondary);
	color: var(--color-secondary);
	background-color: transparent;
}

.btn.btn-secondary.btn-outline:hover {
	background-color: var(--color-secondary);
	color: #fff !important;
}

.btn.btn-primary.btn-outline:hover .alpha,
.btn.btn-secondary.btn-outline:hover .alpha {
	color: #fff;
}

.btn.btn-play {
	background-color: transparent;
	padding: 0;
	margin: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	text-shadow: 0 0 3px rgba(0, 0, 0, 0.4);
}

.btn.btn-play::before {
	content: "\f04b";
}

.btn.btn-gradient {
	background: linear-gradient(40deg, rgba(2, 27, 59, 1) 0%, rgba(1, 71, 159, 1) 28%, rgba(2, 27, 59, 1) 36%, rgba(2, 27, 59, 1) 52%, rgba(2, 27, 59, 1) 67%, rgba(1, 71, 159, 1) 80%, rgba(2, 27, 59, 1) 100%);
	color: #fff;
	border: none;
	border-radius: 5px;
}

.btn-info-light {
	border-radius: 4px;
	border: 2px solid var(--color-secondary);
	background: #FFFFFF8F;
	color: var(--color-secondary);
	min-width: 80px;
}

/*----------------------------------------------------------------------
input-search
----------------------------------------------------------------------*/
.input-search {
	position: relative;
	height: 32px;
	padding-right: 32px;
	border: 1px solid var(--color-border);
	background-color: #fff;
	border-radius: 25px;
	overflow: hidden;
}

.input-search button {
	position: absolute;
	width: 32px;
	height: 24px;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background-color: transparent;
	border: none;
	padding: 0;
	margin: 0;
}

.input-search input {
	width: 100%;
	height: 100%;
	border: none;
	outline: none;
	box-shadow: none;
}

/*----------------------------------------------------------------------
container
----------------------------------------------------------------------*/
.container {
	width: 100%;
	max-width: 100%;
	padding: 0 100px;
}

.container-i {
	width: 100%;
	max-width: 100%;
	padding: 0 100px !important;
}

.container-right {
	width: 100%;
	max-width: 100%;
	padding: 0 100px 0 0;
}

.container-left {
	width: 100%;
	max-width: 100%;
	padding: 0 0 0 100px;
}

.container2 {
	width: 100%;
	max-width: 100%;
	padding: 0 50px;
}

@media screen and (max-width:1140px) {
	.container {
		padding: 0 50px;
	}

	.container-i {
		padding: 0 50px !important;
	}
}

@media screen and (max-width:1023px) {

	.container,
	.container-left,
	.container-right,
	.container2 {
		padding: 0 15px;
	}

	.container-i {
		padding: 0 15px !important;
	}

}

/*----------------------------------------------------------------------
section
----------------------------------------------------------------------*/
.section-group {
	display: flex;
	justify-content: space-between;
	margin-bottom: 120px;
}

.section-group section {
	width: 48%;
	margin-bottom: 0;
}

section {
	margin-bottom: 120px;
}

.page section {
	margin-bottom: 36px;
}

section .header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	padding: 20px 0;
	margin-bottom: 20px;
}

section .header.normal {
	position: relative;
	flex-direction: column;
	align-items: start;
	padding-right: 36px;
	margin-bottom: 20px;
}

section .header.normal.flex-row {
	flex-direction: row;
	align-items: center;
}

section .header.normal::before {
	content: '';
	position: absolute;
	width: 16px;
	height: 52px;
	right: 0;
	background-color: #FF7B1A;
	border-radius: 10px 0 10px 10px;
}

section .header.normal .title {
	padding: 0;
	color: #000;
	font-weight: 900;
	font-size: 26px;
}

section .header.normal .title::before,
section .header.normal .title::after {
	display: none;
}

section .header.header-center {
	justify-content: center;
}

section .header.header-bordered {
	border-bottom: 1px solid var(--color-borderLight);
	margin-bottom: 20px;
}

section .header .title {
	display: flex;
	align-items: center;
	font-size: 26px;
	font-weight: 500;
	margin: 0 0 15px 0;
	display: inline-block;
	position: relative;
	padding: 0 50px;
	color: rgba(27, 31, 38, 0.9);
}

section .header .title::before,
section .header .title::after {
	content: "";
	display: inline-block;
	width: 120px;
	height: 32px;
	background-position: center;
	background-size: contain;
	background-repeat: no-repeat;
	vertical-align: middle;
}

section .header .title::before {
	background-image: url("../images/header-title-right.svg");
	margin-left: 12px;
}

section .header .title::after {
	background-image: url("../images/header-title-left.svg");
	margin-right: 12px;
}

section .header .description {
	width: 100%;
	color: rgba(0, 0, 0, 0.55);
	font-size: 22px;
}

section .header.header-center .description {
	text-align: center;
}

@media screen and (max-width:1023px) {
	section .header {
		padding: 10px 0;
		margin-bottom: 10px;
	}

	.section-group {
		flex-direction: column;
		margin-bottom: 0;
	}

	.section-group section {
		width: 100%;
	}

	section {
		margin-bottom: 72px !important;
	}

	section .header .title {
		padding: 0;
		font-size: 1.5rem;
		flex-wrap: nowrap;
		display: flex;
		justify-content: space-between;
		text-align: center;
	}

	section .header .description {
		font-size: 14px;
	}

	section .header.normal {
		margin-bottom: 10px;
	}

	section .header.normal .title {
		text-align: unset;
		font-size: 18px;
	}

	section .header .title::before {
		margin-left: 6px;
		width: 90px;
		height: 24px;
	}

	section .header .title::after {
		margin-right: 6px;
		width: 90px;
		height: 24px;
	}

}

/*----------------------------------------------------------------------
page-header
----------------------------------------------------------------------*/
.owlTheme .owl-nav {
	position: absolute;
	left: 50%;
	bottom: -2px;
	transform: translateX(-50%);
	width: 64px;
}

.owlTheme .custom-nav {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	background-color: transparent;
	border: 1px solid #f2861a;
	border-radius: 50%;
	color: #f2861a;
	font-size: 1.5rem;
	cursor: pointer;
	transition: background-color 0.3s, color 0.3s;
}

.owlTheme .custom-nav:hover {
	background-color: #f2861a;
	color: #ffffff;
}

.owlTheme .custom-nav i {
	font-weight: 700;
}

.owlTheme .prev-nav {
	position: absolute;
	left: -50px;
	top: 50%;
	transform: translateY(-50%);
}

.owlTheme .next-nav {
	position: absolute !important;
	right: -50px;
	top: 50%;
	transform: translateY(-50%);
}

.owlTheme.owlTheme-2 .owl-nav {
	position: absolute;
	left: 100PX;
	top: -42px;
	bottom: unset;
	transform: translateX(-50%);
	width: 64px;
}

.owlTheme.owlTheme-2 .prev-nav,
.owlTheme.owlTheme-2 .next-nav {
	border-radius: 8px;
}

.owlTheme .owl-dots {
	display: flex !important;
	justify-content: center;
	margin-top: 20px;
}

.owlTheme.owlTheme-2 .owl-dots {
	display: flex !important;
	justify-content: center;
	position: absolute;
	left: calc(100px - 22px);
	top: -40px;
	margin-top: 0;
}

.owlTheme .owl-dot {
	width: 13px;
	height: 13px;
	background-color: var(--color-primary) !important;
	border-radius: 50%;
	margin: 0 5px;
	opacity: 0.5;
	transition: opacity 0.3s;
}

.owlTheme .owl-dot.active {
	opacity: 1;
}

@media screen and (max-width:1023px) {
	.owlTheme .custom-nav {
		width: 24px;
		height: 24px;
	}

	.owlTheme.owlTheme-2 .owl-nav {
		top: unset;
		bottom: -34px;
		left: 50%;
	}

	.owlTheme.owlTheme-2 .owl-dots {
		left: 50%;
		top: unset;
		bottom: -30px;
		transform: translateX(-50%);
	}

	.owlTheme .custom-nav i {
		font-size: 14px;
	}
	
	.owlTheme .owl-dot {
		width: 10px;
		height: 10px;
		margin: 0 3px;
	}	
}

/*----------------------------------------------------------------------
page-header
----------------------------------------------------------------------*/
.page-header {
	width: 100%;
	text-align: center;
	box-shadow: 0px 3px 3px 1px rgba(0, 0, 0, 0.3);
}

.page-header.device {
	display: none;
}

.page-header .page-header-container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
	padding: 15px 56px;
	background: #fff;
	margin-bottom: 10px;
}

.page-header .page-header-container.header-top {
	margin-bottom: 0;
	box-shadow: none;
	border: none;
	padding-top: 10px;
	padding-bottom: 10px;
	    border-bottom: 1px solid var(--color-borderLight);
}

.page-header .page-header-inner {
	display: flex;
	align-items: center;
	height: 100%;
	min-height: 36px;
}

.page-header .page-header-inner .logo {
	height: 100%;
	margin-left: 15px;
}

.page-header .page-header-inner .logo img {
	height: 100%;
}

.page-header .page-header-inner .nav {
	display: inline-flex;
	align-items: center;
	height: 100%;
	list-style: none;
}

.page-header .page-header-inner .nav li a {
	color: var(--color-textAlpha);
	font-weight: bold;
	padding: 0 10px;
}

.page-header .page-header-inner .nav li a:hover {
	color: var(--color-primary);
}

.page-header .page-header-inner li.active a {
	color: var(--color-primary);
}

.page-header .page-header-inner li.active a::before {
	content: '\25CF';
	margin-left: 5px;
}

.page-header .page-header-inner.actions {
	display: inline-flex;
	align-items: center;
}

.page-header .page-header-inner.actions .btn {
	margin: 0 15px;
}

.page-header .page-header-inner.actions .btn span {
	white-space: nowrap;
}

.page-header .page-header-inner.actions a {
	margin: 0 5px;
}

.page-header .page-header-inner.actions a img {
	width: 42px;
}

.page-header .page-header-inner.actions.separator a:not(.btn) {
	border-right: 1px solid var(--color-border);
	padding: 0 15px;
	margin: 0;
}

.page-header .page-header-inner.actions.separator a:first-child {
	border: none;
}

.page-header .page-header-inner.actions.separator a img {
	width: 32px;
	height: 32px;
	object-fit: contain;
}

.page-header .page-header-container .btn-menu {
	display: none;
	width: 24px;
	height: 24px;
	background-size: contain;
	background-repeat: no-repeat;
	background-image: url("../images/menu.svg");
	cursor: pointer;
}

@media screen and (max-width:1023px) {
	.page-header {
		display: none;
	}

	.page-header.device {
		display: block;
	}

	.page-header .page-header-container {
		height: 56px;
		padding: 10px 10px;
		box-shadow: 0px 2px 2px 0px #00000040;
		margin-bottom: 10px;
	}

	.page-header .page-header-container nav {
		display: none;
	}

	.page-header .page-header-container .btn-heart {
		display: none;
	}

	.page-header .page-header-container .btn-app-download {
		border-radius: 10px;
	}

	.page-header .page-header-container .btn-menu {
		display: block;
	}

	.page-header .page-header-inner.actions .btn {
		margin: 0 3px;
	}
}

@media screen and (max-width:424px) {
	.page-header .page-header-container .btn-app-download {
		/* display: none; */
	}
}

/*----------------------------------------------------------------------
hero-wrapp for home page
----------------------------------------------------------------------*/
.hero-wrapp {
	position: relative;
	height: 720px;
}

.hero-wrapp .hero-items {
	position: relative;
	height: 100%;
}

.hero-wrapp .hero-items.owl-carousel .owl-stage-outer {
	height: 100%;
}

.hero-wrapp .hero-items.owl-carousel .owl-stage {
	height: 100%;
}

.hero-wrapp .hero-items.owl-carousel .owl-item {
	height: 100%;
}

.hero-wrapp .hero-items.owl-carousel .owl-dots {
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: #ffffff;
	width: 75px;
	height: 24px;
	margin-left: auto;
	margin-right: auto;
	margin-top: -24px;
	z-index: 2;
	position: relative;
	border-radius: 100px 100px 0 0;
}

.hero-wrapp .hero-items.owl-carousel .owl-dots .owl-dot {
	width: 10px;
	height: 10px;
	background-color: var(--color-secondary) !important;
	border-radius: 50%;
	margin: 3px;
}

.hero-wrapp .hero-items.owl-carousel .owl-dots .owl-dot.active {
	box-shadow: 0 0 1px 2px #fff, 0 0 1px 3px var(--color-secondary);
}

.hero-wrapp .hero-item {
	position: relative;
	display: flex;
	height: 100%;
	background: linear-gradient(-45deg, var(--color-secondary), rgba(0, 26, 58, 1));
	border-radius: 0 0 50px 50px;
}

.hero-wrapp .hero-content {
	width: 40%;
	height: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	color: #fff;
	padding: 25px 25px;
}

.hero-wrapp .hero-content .hero-content-title {
	text-align: center;
	padding-bottom: 15px;
	margin-bottom: 56px;
	font-size: 3rem;
	font-weight: 700;
	padding: 0 42px;
}

.hero-wrapp .hero-content .hero-content-description {
	font-size: 1.3rem;
	text-align: center;
	padding: 0 42px;
	margin-bottom: 56px;
	opacity: 0.8;
}

.hero-wrapp .hero-content .hero-content-actions {
	display: flex;
	align-items: center;
	margin-bottom: 56px;
}

.hero-wrapp .hero-content .hero-content-actions .btn,
.hero-wrapp .hero-content .hero-content-actions a {
	display: flex;
	align-items: center;
	word-wrap: normal;
	margin-top: 5px;
	font-size: 1.5rem;
	border-radius: 25px;
	height: 52px;
	margin: 0 5px;
}

.hero-wrapp .hero-content .hero-content-info {
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
}

.hero-wrapp .hero-content .hero-content-info .info-item {
	display: inline-flex;
	flex-direction: column;
	align-items: center;
	width: 140px;
	padding: 0 25px;
	border-right: 4px solid rgba(255, 255, 255, 0.5);
}

.hero-wrapp .hero-content .hero-content-info .info-item:first-child {
	border: none;
}

.hero-wrapp .hero-content .hero-content-info .info-item .number {
	font-size: 2rem;
	font-weight: 700;
	margin-bottom: 10px;
	text-align: center;
	direction: ltr;
}

.hero-wrapp .hero-content .hero-content-info .info-item .title {
	text-align: center;
	opacity: 0.8;
}

.hero-wrapp .hero-image {
	width: 60%;
	padding-top: 76px;
	text-align: center;
}

.hero-wrapp .hero-image img {
	height: 100%;
	object-fit: contain;
}

.hero-wrapp .hero-image-absolute {
	position: absolute;
	height: 80px;
	left: 60%;
	bottom: 160px;
	transform: translateX(-60%);
	object-fit: contain;
}

.hero-wrapp .hero-users {
	position: absolute;
	width: 230px;
	height: 120px;
	right: 56px;
	bottom: -24px;
	background-color: #D9D9D9;
	box-shadow: 0 4px 4px rgba(0, 0, 0, 0.5);
	border-radius: 50px 50px 50px 0;
	z-index: 2;
}

.hero-wrapp .hero-users .images {
	display: flex;
	justify-content: center;
	padding-top: 10px;
}

.hero-wrapp .hero-users .images img {
	border-radius: 50%;
	width: 64px;
	height: 64px;
	max-width: 64px;
	max-height: 64px;
	min-width: 64px;
	min-height: 64px;
	margin-left: -24px;
	border: 2px solid #fff;
	object-fit: cover;
}

.hero-wrapp .hero-users .images img:last-child {
	margin-left: 0;
}

.hero-wrapp .hero-users .title {
	text-align: center;
	margin-top: 5px;
	color: #444;
	font-size: 1.1rem;
}

.hero-wrapp .hero-users .title b {
	display: inline-block;
	color: #000;
	font-size: 1.2rem;
	margin-left: 5px;
	direction: ltr;
}

@media screen and (max-width:1023px) {
	.hero-wrapp {
		flex-direction: column;
		display: flex;
		align-items: center;
		height: 580px;
	}

	.hero-wrapp .hero-item {
		background: linear-gradient(180deg, var(--color-secondary), rgba(0, 26, 58, 1));
	}

	.hero-wrapp .hero-image {
		display: none;
	}

	.hero-wrapp .hero-content {
		justify-content: unset;
		width: 100%;
		left: 0;
		right: 0;
		top: 0;
		bottom: unset;
		padding: 30px 40px;
	}

	.hero-wrapp .hero-content .hero-content-actions .btn,
	.hero-wrapp .hero-content .hero-content-actions a {
		font-size: 1.1rem;
		height: 42px;
	}

	.hero-wrapp .hero-content .hero-content-info {
		display: none;
	}

	.hero-wrapp .hero-users {
		right: unset;
		top: unset;
		bottom: 76px;
		left: 50%;
		transform: translateX(-50%);
	}

	.hero-wrapp .hero-content .hero-content-title {
		position: relative;
		font-size: 2rem;
		margin: 0 0 20px 0;
		padding: 0 0 20px 0;
	}

	.hero-wrapp .hero-content .hero-content-title::after {
		content: '';
		position: absolute;
		bottom: 0;
		left: 36px;
		right: 36px;
		height: 1px;
		background: linear-gradient(to right, transparent, #fff, transparent);
	}

	.hero-wrapp .hero-content .hero-content-description {
		padding: 0;
	}

	.hero-wrapp .hero-content .hero-content-actions {
		flex-direction: row;
	}

	.hero-wrapp .hero-content .hero-content-actions .btn:first-child {
		margin-left: 5px;
	}

}

@media screen and (max-width:376px) {
	.hero-wrapp .hero-content {
		padding: 15px;
	}
}

/*----------------------------------------------------------------------
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:1023px) {
	.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;
	}
}

/*----------------------------------------------------------------------
features
----------------------------------------------------------------------*/
.features-wrapp {}

.features {
	position: relative;
}

.features.owl-carousel .owl-stage-outer {
	padding: 20px 0 0 0;
}

.features .features-item {
	position: relative;
	background-color: rgba(230, 237, 246, 1);
	border-radius: 50px;
	padding: 30px;
	height: 240px;
	position: relative;
	text-align: center;
	margin: 10px;
	box-shadow: 0px 4px 4px 0px #00000040;
}

.features .features-item::after {
	content: "";
	position: absolute;
	bottom: -8px;
	left: 40px;
	right: 40px;
	height: 8px;
	background-color: var(--color-secondary);
	border-radius: 0 0 10px 10px;
	z-index: 1;
}

.features .features-item .features-item-icon {
	position: absolute;
	top: -30px;
	left: -10px;
	width: 82px;
	height: 82px;
	background-color: var(--color-secondary);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.features .features-item .features-item-icon img {
	width: 30px;
	height: 30px;
}

.features .features-item .features-item-title {
	font-size: 20px;
	font-weight: bold;
	color: #333;
	margin-top: 20px;
}

.features .features-item .feature-item-description {
	font-size: 1.1rem;
	color: #666;
	margin-top: 10px;
	line-height: 1.6;
}

.features .features-item .feature-item-actions {
	position: absolute;
	bottom: 20px;
	left: 0;
	width: 100%;
	text-align: center;
}

@media screen and (max-width:1023px) {
	.features .features-item::after {
		/* display: none; */
	}
}

@media screen and (max-width:321px) {
	.features .features-item {
		width: 230px;
		padding: 15px;
	}
}

/* ---------------------------------------------------------------------
statistics-wrapp
----------------------------------------------------------------------*/
.statistics-wrapp {
	display: none;
	position: relative;
	margin-top: 112px;
}

.statistics-wrapp .statistics-items {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 56px;
}

.statistics-wrapp .statistics-items .statistics-item {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	width: 180px;
	min-height: 96px;
	border-radius: 16px;
	background-color: rgba(255, 255, 255, 1);
	box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
}

.statistics-wrapp .statistics-items .statistics-item .statistics-item-number {
	font-weight: 900;
	font-size: 20px;
	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);
}

.statistics-wrapp .statistics-image-absolute {
	position: absolute;
	top: 50%;
	left: 0;
	right: 0;
	transform: translateY(-50%);
	z-index: 0;
}


.statistics-wrapp .statistics-shadow {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 1px;
	box-shadow: 0 0 120px 24px var(--color-secondaryAlpha);
	z-index: 0;
}

@media screen and (max-width:1023px) {
	.statistics-wrapp {
		display: block;
	}	
}

/*----------------------------------------------------------------------
ourSuccesses
----------------------------------------------------------------------*/
.ourSuccesses-wrapp {}

.ourSuccesses-wrapp .ourSuccesses-inner {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 186px;
}

.ourSuccesses-wrapp .ourSuccesses-inner .background {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 56px;
	right: 56px;
	border-radius: 100px;
	background-color: var(--color-secondary);
	z-index: 2;
}

.ourSuccesses-wrapp .ourSuccesses-inner .ourSuccesses-items {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	height: 100%;
	z-index: 3;
}

.ourSuccesses-wrapp .ourSuccesses-inner .ourSuccesses-items .item {
	display: flex;
	align-items: center;
	padding: 15px 25px;
	background-color: #fff;
	border: 1px solid var(--color-border);
	border-radius: 50px;
	width: 22%;
}

.ourSuccesses-wrapp .ourSuccesses-inner .ourSuccesses-items .item img {
	width: 96px;
	height: 96px;
	border-radius: 10px;
	margin-left: 15px;
	object-fit: contain;
}

.ourSuccesses-wrapp .ourSuccesses-inner .ourSuccesses-items .item .item-content {
	display: inline-flex;
	flex-direction: column;
	height: 100%;
}

.ourSuccesses-wrapp .ourSuccesses-inner .ourSuccesses-items .item .item-content .item-content-title {
	color: #000;
	font-size: 1.3;
	font-weight: bold;
	padding: 5px 0;
}

.ourSuccesses-wrapp .ourSuccesses-inner .ourSuccesses-items .item .item-content .item-content-description {
	color: #666;
	padding: 5px 0;
}

.ourSuccesses-wrapp .ourSuccesses-inner .img-shape1 {
	position: absolute;
	width: 196px;
	height: 196px;
	left: 0;
	top: -100px;
	z-index: 1;
}

.ourSuccesses-wrapp .ourSuccesses-inner .img-shape2 {
	position: absolute;
	height: 46px;
	right: 64px;
	bottom: -50px;
	z-index: 1;
}

@media screen and (max-width:1023px) {
	.ourSuccesses-wrapp {
		margin-bottom: 120px !important;
	}

	.ourSuccesses-wrapp .ourSuccesses-inner {
		height: 136px;
	}

	.ourSuccesses-wrapp .ourSuccesses-inner .background {
		left: 0;
		right: 0;
	}

	.ourSuccesses-wrapp .ourSuccesses-inner .ourSuccesses-items .item {
		width: unset;
		padding: 10px 20px;
	}

	.ourSuccesses-wrapp .ourSuccesses-inner .ourSuccesses-items .item img {
		width: 76px;
		height: 76px;
	}

	.ourSuccesses-wrapp .ourSuccesses-inner .img-shape1 {
		position: absolute;
		width: 120px;
		height: 120px;
		left: 0;
		top: -100px;
		z-index: 1;
	}

	.ourSuccesses-wrapp .ourSuccesses-inner .img-shape2 {
		height: 32px;
	}
}

/*----------------------------------------------------------------------
about-wrapp
----------------------------------------------------------------------*/
.about-wrapp {
	display: flex;
}

.about-wrapp .about-content {
	display: flex;
	flex-direction: column;
	justify-content: space-around;
	width: 50%;
	padding-left: 96px;
}

.about-wrapp .about-content .about-content-title {
	font-size: 1.5rem;
	font-weight: 800;
	margin-bottom: 15px;
}

.about-wrapp .about-content .about-content-title span:first-child {}

.about-wrapp .about-content .about-content-title span:last-child {
	color: var(--color-primary);
}

.about-wrapp .about-content p {
	color: var(--color-textAlpha);
	line-height: 32px;
	font-weight: 500;
	font-size: 1.1rem;
}

.about-wrapp .about-content .about-content-footer {
	display: flex;
	justify-content: space-between;
	margin-top: 25px;
}

.about-wrapp .about-content .about-content-footer .footer-call {
	display: inline-flex;
	align-items: center;
}

.about-wrapp .about-content .about-content-footer .footer-call img {
	width: 36px;
	height: 36px;
	margin-left: 5px;
	object-fit: contain;
}

.about-wrapp .about-content .about-content-footer .footer-call .footer-call-content {
	display: inline-flex;
	flex-direction: column;
	font-size: 0.8rem;
	color: var(--color-text);
}

.about-wrapp .about-content .about-content-footer .footer-call .footer-call-content a {
	color: var(--color-text);
}

.about-wrapp .about-video {
	position: relative;
	width: 50%;
	padding: 24px 24px 0 0;
	display: flex;
	justify-content: center;
	align-items: center;
}

.about-wrapp .about-video::before {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	width: 50%;
	height: 70%;
	border-radius: 20px;
	background-color: var(--color-secondary);
}

.about-wrapp .about-video video {
	width: 100%;
	height: 100%;
	background-color: #eee;
	z-index: 2;
}

.about-wrapp .about-video .video-play {
	position: absolute;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 64px;
	height: 64px;
	border-radius: 50%;
	background-color: var(--color-secondary);
	color: #fff;
	cursor: pointer;
	z-index: 3;
}

.about-wrapp .about-video .video-play::before {
	content: "\f04b";
	font-family: "Font Awesome 6 Pro";
	font-weight: 600;
	font-size: 2rem;
}

@media screen and (max-width:1023px) {
	.about-wrapp {
		flex-direction: column;
	}

	.about-wrapp .about-content {
		width: 100%;
		padding-left: 0;
		margin-bottom: 56px;
	}

	.about-wrapp .about-video {
		width: 100%;
		padding: 18px 18px 0 0;
	}
}

/*----------------------------------------------------------------------
benefits-old
----------------------------------------------------------------------*/
.benefits-old {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 20px;
	border-radius: 12px;
	border: 2px solid #bbb;
}

.benefits-old .benefits-image {
	width: 50%;
}

.benefits-old .benefits-image img {
	width: 100%;
}

.benefits-old .benefits-contents {
	width: 50%;
}

.benefits-old .benefits-items {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	width: 100%;
}

.benefits-old .benefits-items .benefits-item {
	display: inline-flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	flex: 1 1 48%;
	margin: 1%;
	padding: 25px;
	border: 3px solid var(--color-secondary);
	border-radius: 33px;
}

.benefits-old .benefits-items .benefits-item .benefits-item-icon {
	display: none;
	width: 60px;
	height: 60px;
	margin-bottom: 10px;
	object-fit: contain;
}

.benefits-old .benefits-items .benefits-item .benefits-item-title {
	font-weight: bold;
	margin-bottom: 5px;
	font-size: 1.1rem;
}

.benefits-old .benefits-items .benefits-item .benefits-item-description {
	font-size: 0.9;
	color: #1B1F26CC;
	text-align: center;
}

@media screen and (max-width:1023px) {
	.benefits-old {
		padding-bottom: 56px;
	}

	.benefits-old .benefits-image {
		width: 50%;
	}

	.benefits-old .benefits-items {
		width: 100%;
		gap: 5px;
	}

	.benefits-old .benefits-items .benefits-item {
		justify-content: space-between;
		flex: 1 1 100%;
		gap: 5px;
		height: 240px;
		margin: 0;
		padding: 10px;
		overflow: hidden;
	}

	.benefits-old .benefits-items .benefits-item .benefits-item-title {
		font-size: 22px;
		font-weight: 500;
	}

	.benefits-items .benefits-item .benefits-item-description {
		font-size: 20px;
		font-weight: 400;
	}

	.benefits-old .benefits-items .benefits-item .benefits-item-icon {
		display: block;
	}
}

@media screen and (max-width:767px) {
	.benefits-old .benefits-image {
		display: none;
	}

	.benefits-old .benefits-contents {
		width: 100%;
	}	

	.benefits-old .benefits-items {
		width: 100%;
	}
}

/*----------------------------------------------------------------------
benefits
----------------------------------------------------------------------*/
.benefits {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 20px;
	border-radius: 12px;
}

.benefits .benefits-contents {
	width: 100%;
}

.benefits-items {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: 30px;
	width: 100%;
	counter-reset: benefits-counter;
}

.benefits-items .benefits-item {
	position: relative;
	display: inline-flex;
	flex-direction: column;
	justify-content: center;
	flex: 1;
	padding: 0px 100px 0px 0px;
	border-radius: 33px;
}

.benefits-items .benefits-item::before {
    counter-increment: benefits-counter;
    content: counter(benefits-counter);
    
    /* Style number */
    position: absolute;
    top: 50%;
    right: 0;
    width: 100px;
	transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: center;	
    color: var(--color-secondary);
    font-size: 5rem;
    font-weight: bold;
    text-shadow: 3px 3px 5px rgba(0,0,0,0.3);
    z-index: 10;
}

.benefits-items .benefits-item .benefits-item-icon {
	display: none;
	width: 60px;
	height: 60px;
	margin-bottom: 10px;
	object-fit: contain;
}

.benefits-items .benefits-item .benefits-item-title {
	font-weight: bold;
	margin-bottom: 5px;
	font-size: 1.2rem;
}

.benefits-items .benefits-item .benefits-item-description {
	font-size: 1.1rem;
	color: #1B1F26CC;
}


@media screen and (max-width:1023px) {
	.benefits {
		padding: 5px;
	}

	.benefits .benefits-image {
		width: 50%;
	}

	.benefits .benefits-items {
		width: 100%;
		gap: 5px;
	}

	.benefits-items .benefits-item {
		overflow: hidden;
		padding-right: 70px;
	}

	.benefits-items .benefits-item::before {
		width: 60px;
		font-size: 4rem;
	}

	.benefits-items .benefits-item .benefits-item-title {
		font-size: 22px;
		font-weight: 500;
	}

	.benefits-items .benefits-item .benefits-item-description {
		font-size: 20px;
		font-weight: 400;
	}

	.benefits-items .benefits-item .benefits-item-icon {
		display: block;
	}
}

@media screen and (max-width:767px) {
	.benefits .benefits-image {
		display: none;
	}

	.benefits .benefits-contents {
		width: 100%;
	}	

	.benefits .benefits-items {
		width: 100%;
	}
}

@media screen and (max-width:374px) {
	.benefits-items .benefits-item {
		overflow: hidden;
		padding-right: 0px;
	}

	.benefits-items .benefits-item::before {
		display: none;
	}	

	.benefits {
		padding: 0px;
	}	
}


/*----------------------------------------------------------------------
subscription
----------------------------------------------------------------------*/
.subscription-wrapp .subscription-items {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 40px 40px;
	background: linear-gradient(270deg, #01469b, #011f46)
}

.subscription-wrapp .subscription-item {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 70%;
	height: 96px;
	padding: 10px;
	margin-bottom: 10px;
	margin-right: 10px;
	border-radius: 0 20px 0 20px;
	background-color: #fff;
}

.subscription-wrapp .subscription-item::before {
	content: '';
	position: absolute;
	right: -8px;
	top: 20px;
	bottom: 5px;
	width: 8px;
	background-color: var(--color-primary);
	border-radius: 0 10px 0 0;
}

.subscription-wrapp .subscription-item .subscription-item-info {
	display: inline-flex;
	flex-direction: column;
	justify-content: space-between;
}

.subscription-wrapp .subscription-item .subscription-item-info .item-discount-info {
	border-radius: 20px;
	padding: 5px;
	background-color: var(--color-primary);
	color: #fff;
	margin-bottom: 10px;
}

.subscription-wrapp .subscription-item .subscription-item-info .item-discount-info span:first-child {
	margin-left: 3px;
}

.subscription-wrapp .subscription-item .subscription-item-info .item-title {
	color: #000;
	font-weight: bold;
}

.subscription-wrapp .subscription-item .subscription-item-prices {
	display: inline-flex;
	flex-direction: column;
	justify-content: space-between;
}

.subscription-wrapp .subscription-item .subscription-item-prices .item-prices {
	display: inline-flex;
	align-items: center;
	margin-bottom: 10px;
}

.subscription-wrapp .subscription-item .subscription-item-prices .item-prices .item-price {
	padding: 4px;
	border: 2px solid var(--color-secondary);
	border-radius: 10px;
	margin-right: 5px;
	color: var(--color-secondary);
}

.subscription-wrapp .subscription-item .subscription-item-prices .item-prices .item-priceOld {
	color: #000;
	text-decoration: line-through;
}

.subscription-wrapp .subscription-item .subscription-item-prices .btn {
	justify-content: end;
}

@media screen and (max-width:1023px) {
	.subscription-wrapp .subscription-items {
		padding: 25px;
	}

	.subscription-wrapp .subscription-item {
		width: 90%;
	}
}

@media screen and (max-width:767px) {
	.subscription-wrapp .subscription-item {
		margin-right: 0;
	}

	.subscription-wrapp .subscription-item::before {
		display: none;
	}

	.subscription-wrapp .subscription-items {
		padding: 25px;
	}

	.subscription-wrapp .subscription-item {
		width: 100%;
	}
}

@media screen and (max-width:374px) {
	.subscription-wrapp .subscription-item {
		flex-direction: column;
		align-items: revert;
	}

	.subscription-wrapp .subscription-item .subscription-item-info {
		width: 60%;
	}

	.subscription-wrapp .subscription-item .subscription-item-prices {
		width: 100%;
		flex-direction: row;
		justify-content: space-between;
	}
}

/*----------------------------------------------------------------------
Comments-wrapp
----------------------------------------------------------------------*/
.comments-wrapp {
	margin-bottom: calc(56px + 48px);
}

.comments-wrapp .comments-items {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: 50px;
}

.comments-wrapp .comments-items .comments-item {
	position: relative;
	display: inline-flex;
	flex-direction: column;
	align-items: center;
	justify-content: space-around;
	height: 220px;
	width: 33.333%;
	padding: 10px;
	padding-bottom: 48px;
	border: 2px solid var(--color-secondaryAlpha);
	background-color: #fff;
}

.comments-wrapp .comments-items .comments-item.focuse {
	border-color: var(--color-secondary);
	transform: scale(1.2);
	z-index: 1;
}

.comments-wrapp .comments-items .comments-item .item-content {
	text-align: justify;
	margin-bottom: 5px;
}

.comments-wrapp .comments-items .comments-item .item-stars {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 5px;
}

.comments-wrapp .comments-items .comments-item .item-stars img {
	width: 24px;
	height: 24px;
	padding: 0 3px;
}

.comments-wrapp .comments-items .comments-item .item-userName {
	font-size: 0.8rem;
	color: #666;
	text-align: center;
}

.comments-wrapp .comments-items .comments-item .item-userAvatar {
	position: absolute;
	width: 96px;
	height: 96px;
	left: 50%;
	transform: translateX(-50%);
	bottom: -48px;
	border-radius: 50%;
	z-index: 1;
	overflow: hidden;
}

.comments-wrapp .comments-items .comments-item .item-userAvatar img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

@media screen and (max-width:767px) {
	.comments-wrapp {
		margin-bottom: 50px;
	}

	.comments-wrapp .comments-items {
		justify-content: unset;
		overflow-x: auto;
		margin-top: 10px;
		gap: 15px;
	}

	.comments-wrapp .comments-items .comments-item {
		height: unset;
		min-width: 60%;
		max-width: 60%;
		padding: 10px;
		padding-top: 122px;
		border: 1px solid rgba(0, 0, 0, 0.07) !important;
		border-radius: 10px;
	}

	.comments-wrapp .comments-items .comments-item.focuse {
		transform: unset;
		border-color: var(--color-secondaryAlpha);
	}

	.comments-wrapp .comments-items .comments-item .item-userAvatar {
		top: 15px;
	}
}

/*----------------------------------------------------------------------
consultation-wrapp
----------------------------------------------------------------------*/
.consultation-wrapp {}

.consultation-wrapp .consultation-content {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 20px;
	height: 264px;
	background: rgb(2, 27, 59);
	background: linear-gradient(40deg, rgba(2, 27, 59, 1) 10%, rgba(1, 71, 159, 1) 28%, rgba(2, 27, 59, 1) 36%, rgba(2, 27, 59, 1) 52%, rgba(2, 27, 59, 1) 67%, rgba(1, 71, 159, 1) 80%, rgba(2, 27, 59, 1) 90%);
}

.consultation-wrapp .consultation-content .consultation-content-title {
	font-weight: bold;
	font-size: 2rem;
	color: #fff;
	margin-bottom: 25px;
}

.consultation-wrapp .consultation-content .consultation-content-tel a {
	font-size: 1.8rem;
	color: #fff;
}

@media screen and (max-width:1023px) {
	.consultation-wrapp .consultation-content {
		height: 140px;
	}

	.consultation-wrapp .consultation-content .consultation-content-title {
		font-size: 18px;
	}

	.consultation-wrapp .consultation-content .consultation-content-tel a {
		font-size: 16px;
	}
}

/*----------------------------------------------------------------------
environment-wrapp
----------------------------------------------------------------------*/
.environment-wrapp {}

.environment-wrapp .environment-description {
	color: #aaa;
	font-size: 1.3rem;
	text-align: center;
	margin-bottom: 36px;
}

.environment-wrapp .environment-inner {
	display: flex;
	flex-direction: column;
}

.environment-wrapp .environment-tabs {
	display: flex;
	border: 1px solid rgba(217, 217, 217, 1);
	border-radius: 10px;
	padding: 15px 0;
	margin-bottom: 120px;
}

.environment-wrapp .environment-tabs .environment-tabs-item {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	flex: auto;
	border-left: 2px solid rgb(217, 217, 217);
	cursor: pointer;
}

.environment-wrapp .environment-tabs .environment-tabs-item.active::before {
	position: absolute;
	content: '';
	width: 100%;
	height: 3px;
	background-color: var(--color-secondary);
	bottom: -15px;
	left: 0;

}

.environment-wrapp .environment-tabs .environment-tabs-item a {
	display: inline-flex;
	flex-direction: column;
	text-align: center;
}

.environment-wrapp .environment-tabs .environment-tabs-item:last-child {
	border: none;
}

.environment-wrapp .environment-tabs .environment-tabs-item .item-img {
	height: 32px;
	margin-bottom: 20px;
}

.environment-wrapp .environment-tabs .environment-tabs-item .item-title {
	color: #aaa;
}

.environment-wrapp .environment-contents {
	position: relative;
}

.environment-wrapp .environment-contents .environment-contents-item {
	display: none;
	justify-content: space-between;
	gap: 20px;
}

.environment-wrapp .environment-contents .environment-contents-item.active {
	display: flex;
}

.environment-wrapp .environment-contents .environment-contents-item .item-content {
	display: flex;
	flex-direction: column;
	width: 40%;
}

.environment-wrapp .environment-contents .environment-contents-item .item-content .title {
	font-size: 26px;
	font-weight: 800;
	margin-bottom: 30px;
	color: var(--color-secondary);
}

.environment-wrapp .environment-contents .environment-contents-item .item-content .featureList {
	list-style: none;
	display: flex;
	flex-direction: column;
	padding: 0 0 20px 0;
	margin: 0 0 20px 0;
	border-bottom: 1px solid rgba(175, 176, 186, 1);
}

.environment-wrapp .environment-contents .environment-contents-item .item-content .featureList li {
	display: flex;
	align-items: center;
	margin-bottom: 10px;
	font-size: 18px;
	font-weight: 600;
	color: rgba(27, 31, 38, 0.72);
}

.environment-wrapp .environment-contents .environment-contents-item .item-content .featureList li span {
	font-size: 18px;
	font-weight: 600;
	color: rgba(27, 31, 38, 0.72);
}

.environment-wrapp .environment-contents .environment-contents-item .item-content .featureList li .icon {
	width: 36px;
	height: 36px;
	object-fit: contain;
	margin-left: 10px;
}

.environment-wrapp .environment-contents .environment-contents-item .item-content .description {
	font-size: 18px;
	color: rgba(27, 31, 38, 0.72);
}

.environment-wrapp .environment-contents .environment-contents-item .item-view {
	display: flex;
	flex-direction: column;
	justify-self: center;
	align-items: center;
	width: 60%;
}

.environment-wrapp .environment-contents .environment-contents-item .item-view .environment-frame {
	position: relative;
	width: 660px;
	height: 400px;
	margin: 0 auto 25px auto;
}

.environment-wrapp .environment-contents .environment-contents-item .item-view .environment-frame .environment-frame-mobile {
	position: relative;
	width: 100%;
	height: 100%;
	background: #000;
	border-radius: 40px;
	padding: 25px;
	display: flex;
	justify-content: center;
	align-items: center;
}

.environment-wrapp .environment-contents .environment-contents-item .item-view .environment-frame .environment-frame-mobile::before {
	content: '';
	border: 2px solid #b19c99;
	position: absolute;
	left: 0px;
	right: 0px;
	top: 0px;
	bottom: 0px;
	border-radius: 40px;
	box-shadow: 0px 0px 30px 5px rgba(0, 0, 0, 0.8);
}

.environment-wrapp .environment-contents .environment-contents-item .item-view .environment-frame .environment-frame-mobile::after {
	content: "";
	position: absolute;
	left: 14px;
	transform: translateX(-50%);
	width: 18px;
	height: 18px;
	border-radius: 50%;
	background: radial-gradient(circle, #00dbff7a 1%, rgb(0 8 90 / 40%) 20%);
	border: 1px solid rgb(255 89 0 / 16%);
}

.environment-wrapp .environment-contents .environment-contents-item .item-view .environment-frame .environment-frame-shape {
	display: none;
	position: absolute;
	width: 300px;
	height: 300px;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	background-size: contain;
	background-repeat: no-repeat;
	background-image: url("../images/environment/shape-circle.svg");
}

.environment-wrapp .environment-contents .environment-contents-item .item-view .environment-frame .environment-frame-mobile .environment-frame-screen {
	width: 100%;
	height: 100%;
	background: black;
	border-radius: 12px;
	overflow: hidden;
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
}

.environment-wrapp .environment-contents .environment-contents-item .item-view .environment-frame .environment-frame-mobile .environment-frame-screen .environment-frame-item {
	width: 100%;
	height: 100%;
}

.environment-wrapp .environment-contents .environment-contents-item .item-view .environment-frame .environment-frame-mobile .environment-frame-screen .environment-frame-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.environment-wrapp .environment-action {
	text-align: right;
	margin-top: 56px;
}

@media screen and (max-width:1024px) {
	.environment-wrapp .environment-contents .environment-contents-item .item-view .environment-frame {
		width: 560px;
	}
}

@media screen and (max-width:1023px) {
	.environment-wrapp .environment-inner {
		flex-direction: column;
	}

	.environment-wrapp .environment-tabs {
		overflow-x: auto;
		margin-bottom: 25px;
	}

	.environment-wrapp .environment-tabs .environment-tabs-item {
		min-width: 30%;
		padding: 0 5px;
		border-left: 1px dashed rgba(0, 0, 0, 0.07);
	}

	.environment-wrapp .environment-contents .environment-contents-item {
		flex-direction: column;
	}

	.environment-wrapp .environment-contents .environment-contents-item .item-content {
		width: 100%;
	}

	.environment-wrapp .environment-contents .environment-contents-item .item-content .title {
		margin-bottom: 15px;
		font-size: 18px;
	}

	.environment-wrapp .environment-contents .environment-contents-item .item-content .description {
		font-size: 14px;
	}

	.environment-wrapp .environment-contents .environment-contents-item .item-content .featureList li span {
		font-size: 14px;
	}

	.environment-wrapp .environment-contents .environment-contents-item .item-content .featureList li .icon {
		width: 25px;
		height: 25px;
	}

	.environment-wrapp .environment-contents .environment-contents-item .item-view {
		width: 100%;
	}

	.environment-wrapp .environment-action {
		text-align: center;
		margin-top: 10px;
	}

}

@media screen and (max-width:767px) {

	.environment-wrapp .environment-contents .environment-contents-item .item-view .environment-frame {
		width: 200px;
		margin: 0 auto 25px auto;
	}

	.environment-wrapp .environment-contents .environment-contents-item .item-view .environment-frame .environment-frame-mobile {
		border: none;
		background-image: url(../images/environment/frame_mobile.png);
		padding: 10px;
		border-radius: 20px;
		background-size: 100% 100%;
		background-color: transparent;
	}

	.environment-wrapp .environment-contents .environment-contents-item .item-view .environment-frame .environment-frame-mobile::before,
	.environment-wrapp .environment-contents .environment-contents-item .item-view .environment-frame .environment-frame-mobile::after {
		display: none;
	}

	.environment-wrapp .environment-contents .environment-contents-item .item-view .environment-frame .environment-frame-mobile .environment-frame-screen {
		position: absolute;
		width: unset;
		height: unset;
		top: 8px;
		bottom: 7px;
		left: 7px;
		right: 10px;
	}

	.environment-wrapp .environment-contents .environment-contents-item .item-view .environment-frame .environment-frame-shape {
		display: block;
	}

	.environment-wrapp .environment-contents .environment-contents-item .item-view .environment-frame .environment-frame-mobile .owl-carousel .owl-stage-outer {
		height: 100%;
	}

	.environment-wrapp .environment-contents .environment-contents-item .item-view .environment-frame .environment-frame-mobile .owl-carousel .owl-stage {
		height: 100%;
	}

	.environment-wrapp .environment-contents .environment-contents-item .item-view .environment-frame .environment-frame-mobile .owl-carousel .owl-item {
		height: 100%;
	}
}

@media screen and (max-width:376px) {
	.environment-wrapp .environment-inner {
		flex-direction: column !important;
	}

	.environment-wrapp .environment-tabs {
		flex-wrap: wrap;
		flex-direction: row !important;
		width: 100% !important;
	}

	.environment-wrapp .environment-tabs .environment-tabs-item {
		align-items: center;
		justify-content: center;
		flex: auto;
		border: none;
		background-color: #eee;
		border-radius: 5px;
		margin: 5px;
		padding: 5px;
	}

	.environment-wrapp .environment-tabs .environment-tabs-item a {
		flex-direction: column;
		align-items: center;
	}

	.environment-wrapp .environment-tabs .environment-tabs-item a .item-img {
		margin: 0 0 5px 0;
	}

	.environment-wrapp .environment-tabs .environment-tabs-item a .item-title {
		color: #333;
	}

	.environment-wrapp .environment-frame {
		margin: 0 auto 25px auto;
	}
}

/*----------------------------------------------------------------------
questions-wrapp
----------------------------------------------------------------------*/
.questions-wrapp {}

.questions-wrapp .accordion {
	padding: 30px;
	border: 2px dashed var(--color-secondary);
}

.questions-wrapp .accordion .accordion-item {
	border: none;
	border-bottom: 2px solid #eee;
}

.questions-wrapp .accordion .accordion-item:last-child {
	border: none;
}

.questions-wrapp .accordion .accordion-item .accordion-header .accordion-button {
	display: flex;
	align-items: center;
	border: none;
}

.questions-wrapp .accordion .accordion-item .accordion-header .accordion-button::before {
	content: '';
	display: inline-block;
	width: 32px;
	height: 32px;
	margin-left: 15px;
	background-size: contain;
	background-repeat: no-repeat;
	background-image: url("../images/question.svg");
}

@media screen and (max-width:767px) {
	.questions-wrapp .accordion {
		border-color: var(--color-secondaryAlpha);
		border-radius: 25px;
	}
}

/*----------------------------------------------------------------------
consultationRequest-wrapp
----------------------------------------------------------------------*/
.consultationRequest-wrapp {
	position: relative;
	display: flex;
	justify-content: end;
	min-height: 290px;
	background: linear-gradient(270.1deg, #D9D9D9 0.09%, rgba(1, 72, 160, 0.8) 98.12%);
	background-color: #fff;
	padding: 50px;
}

.consultationRequest-wrapp .consultationRequest-image {
	position: absolute;
	top: -65px;
	bottom: 0px;
	right: 0px;
}

.consultationRequest-wrapp .consultationRequest-image img {
	height: 100%;
}

.consultationRequest-wrapp .consultationRequest-shape {
	position: absolute;
	width: 200px;
	height: 200px;
	left: -100px;
	top: 0;
}

.consultationRequest-wrapp .consultationRequest-shape2 {
	position: absolute;
	height: 100%;
	left: 30%;
	top: 0;
}

.consultationRequest-wrapp .consultationRequest-shape3,
.consultationRequest-wrapp .consultationRequest-shape4 {
	display: none;
}

.consultationRequest-wrapp .consultationRequest-shape img,
.consultationRequest-wrapp .consultationRequest-shape2 img,
.consultationRequest-wrapp .consultationRequest-shape3 img,
.consultationRequest-wrapp .consultationRequest-shape4 img {
	width: 100%;
	height: 100%;
}

.consultationRequest-wrapp .consultationRequest-form {
	display: flex;
	justify-content: space-between;
	width: 70%;
}

.consultationRequest-wrapp .consultationRequest-form .form-title {
	font-weight: bold;
	font-size: 1.2rem;
}

.consultationRequest-wrapp .consultationRequest-form form {
	display: flex;
	flex-direction: column;
	width: 280px;
}

.consultationRequest-wrapp .consultationRequest-form form input {
	height: 56px;
	border-radius: 8px;
	border: none;
	outline: none;
	box-shadow: none;
	margin-bottom: 10px;
	text-indent: 5px;
}

.consultationRequest-wrapp .consultationRequest-form form .btn-light {
	border-radius: 4px;
	border: none;
	background-color: #fff;
	box-shadow: 0px 4px 4px 0px #00000040;

}

.consultationRequest-wrapp .consultationRequest-form form .btn-light img {
	height: 18px;
}

.consultationRequest-wrapp .consultationRequest-form form .action {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

@media screen and (max-width:767px) {
	.consultationRequest-wrapp {
		background: none;
		padding: 10px;
	}

	.consultationRequest-wrapp .consultationRequest-form {
		flex-direction: column;
		border-radius: 25px;
		box-shadow: 0px 0px 3px 1px #0148A080;
		background-color: rgba(176, 198, 226, 1);
		width: 80%;
		margin-left: auto;
		margin-right: auto;
		padding: 5px;
		justify-content: center;
		align-items: center;
		z-index: 1;
	}

	.consultationRequest-wrapp .consultationRequest-form .form-title {
		margin-bottom: 15px;
		color: #000;
	}

	.consultationRequest-wrapp .consultationRequest-form form input {
		border: 1px solid var(--color-secondary);
		margin-top: 10px;
		height: 39px;
	}

	.consultationRequest-wrapp .consultationRequest-form form .action {
		margin-top: 15px;
	}

	.consultationRequest-wrapp .consultationRequest-image {
		display: none;
	}

	.consultationRequest-wrapp .consultationRequest-shape,
	.consultationRequest-wrapp .consultationRequest-shape2 {
		display: none;
	}

	.consultationRequest-wrapp .consultationRequest-shape3 {
		display: block;
		position: absolute;
		top: 5px;
		left: 15px;
		z-index: 0;
	}

	.consultationRequest-wrapp .consultationRequest-shape4 {
		display: block;
		position: absolute;
		bottom: 5px;
		right: 15px;
		z-index: 0;
	}
}

/*----------------------------------------------------------------------
articles
----------------------------------------------------------------------*/
.articles-wrapp {}

.articles-wrapp .articles-inner {
	position: relative;
	display: flex;
	justify-content: space-between;
	padding: 25px;
	height: 500px;
	width: 100%;
}

.articles-wrapp .articles-inner::before {
	content: '';
	position: absolute;
	left: 15px;
	right: 15px;
	top: 0;
	height: 100%;
	border-radius: 15px;
	background-color: var(--color-secondary);
	transform: rotate(1.5deg);
	z-index: 1;
}

.articles-wrapp .articles-inner::after {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: #fff;
	border: 1px solid var(--color-secondary);
	box-shadow: 0 0 5px rgba(0, 0, 0, 0.6);
	z-index: 2;
}

.articles-wrapp .articles-inner .item {
	width: 23%;
	height: 100%;
	z-index: 3;
}

.articles-wrapp .articles-inner .item img {
	width: 100%;
	height: 70%;
	object-fit: cover;
	border-radius: 20px;
	box-shadow: 0 0 2px rgba(0, 0, 0, 0.3);
}

.articles-wrapp .articles-inner .item .item-content {
	position: relative;
	background-color: #fff;
	border-radius: 16px;
	padding: 25px;
	width: 85%;
	height: 180px;
	margin: -90px auto 0 auto;
	box-shadow: 0 4px 5px var(--color-secondaryAlpha);
	z-index: 1;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.articles-wrapp .articles-inner .item .item-content .content-title {
	text-align: center;
	color: var(--color-secondary);
	line-height: 32px;
	font-size: 1.2rem;
}

.articles-wrapp .articles-inner .item .item-content .content-footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 24px;
}

@media screen and (max-width:1023px) {
	.articles-wrapp .articles-inner {
		flex-wrap: wrap;
		background-color: #fff;
		border: 1px solid var(--color-secondary);
		box-shadow: 0 0 5px rgba(0, 0, 0, 0.6);
		height: auto;
	}

	.articles-wrapp .articles-inner .item {
		width: 48%;
		margin-bottom: 32px;
	}

	.articles-wrapp .articles-inner::before {
		display: none;
	}

	.articles-wrapp .articles-inner::after {
		display: none;
	}
}

@media screen and (max-width:767px) {
	.articles-wrapp .articles-inner .item {
		width: 100%;
	}
}

/*----------------------------------------------------------------------
specialItems-wrapp
----------------------------------------------------------------------*/
.specialItems-wrapp {}

.specialItems-wrapp .specialItems-inner {
	display: flex;
	column-gap: 15px;
	margin-top: 64px;
}

.specialItems-wrapp .specialItem {
	width: 25%;
	padding: 15px;
	position: relative;
}

.specialItems-wrapp .specialItems-inner .specialItem {
	width: unset;
}

.specialItems-wrapp .specialItem::before {
	content: '';
	position: absolute;
	top: 10px;
	left: 10px;
	width: calc(80%);
	height: calc(80%);
	border-radius: 60px 0 0 0;
	background-color: var(--color-secondary);
	z-index: 0;
	transform: rotate(3deg);
	opacity: 0.8;
	clip-path: polygon(0 0, 100% 0, 100% 100%, 16px 100%);
}

.specialItems-wrapp .specialItem::after {
	content: '';
	position: absolute;
	bottom: 13px;
	right: 12px;
	width: calc(80%);
	height: calc(80%);
	border-radius: 0 0 60px 0;
	background-color: var(--color-secondary);
	z-index: 1;
	transform: rotate(-2deg);
	opacity: 0.8;
	clip-path: polygon(0 0, 100% 0, 100% 100%, 0 calc(100% - 7px));
}

.specialItems-wrapp .specialItem .item-inner {
	display: flex;
	flex-direction: column;
	align-items: center;
	row-gap: 15px;
	width: 100%;
	height: 500px;
	padding: 20px;
	border-radius: 60px 0 60px 0;
	background-color: rgba(230, 237, 246, 1);
	position: relative;
	z-index: 2;
}

.specialItems-wrapp .specialItem .item-image {
	width: 100%;
	height: 40%;
	margin-bottom: 15px;
}

.specialItems-wrapp .specialItem .item-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: top;
	border-radius: 60px 0 60px 0;
}

.specialItems-wrapp .specialItem .item-content {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	row-gap: 15px;
}

.specialItems-wrapp .specialItem .item-content .item-content-title {
	position: relative;
	width: 100%;
	font-size: 18px;
	font-weight: 600;
	border-bottom: 2px solid rgba(217, 217, 217, 1);
	padding-bottom: 15px;
	text-align: center;
}

.specialItems-wrapp .specialItem .item-content .item-content-title::after {
	content: '';
	position: absolute;
	bottom: -2px;
	left: 42px;
	right: 42px;
	height: 2px;
	background-color: var(--color-primary);
}

.specialItems-wrapp .specialItem .item-content .item-content-text {
	width: 100%;
	font-size: 16px;
	font-weight: 500;
	text-align: justify;
	color: rgba(27, 31, 38, 0.9);
}

.specialItems-wrapp .specialItem .item-content-footer {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	column-gap: 15px;
	width: 100%;
}

.specialItems-wrapp .specialItem .item-content-footer a {
	border-radius: 8px;
	background-color: rgba(1, 72, 160, 1);
	text-align: center;
	color: #fff;
	font-size: 16px;
	height: 26px;
	line-height: 26px;
	padding: 0 10px;
}

@media screen and (max-width:1023px) {
	.specialItems-wrapp .specialItems-inner {
		margin-top: 25px;
	}	
}

/*----------------------------------------------------------------------
note-box
----------------------------------------------------------------------*/
.note-box .note-box-inner {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 145px;
	padding: 25px 142px 47px 25px;
	background-color: rgba(230, 237, 246, 1);
	border-radius: 26px 0 0 0;
}

.note-box .note-box-inner::before {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 32px;
	z-index: 1;
	background-image: url(../images/noteBox/wave.svg);
}

.note-box .note-box-inner .text {
	font-size: 22px;
	font-weight: 500;
	color: rgba(27, 31, 38, 0.9);
}

.note-box .note-box-inner .icon {
	position: absolute;
	top: -56px;
	right: -36px;
	width: 169px;
	height: 169px;
	object-fit: contain;
}

@media screen and (max-width:1023px) {
	.note-box {
		padding: 0 !important;
	}

	.note-box .note-box-inner {
		padding: 15px 15px 47px 15px;
		border-radius: 0;
	}

	.note-box .note-box-inner .text {
		font-size: 16px;
	}

	.note-box .note-box-inner .icon {
		display: none;
	}
}

/*----------------------------------------------------------------------
userBusinesses-wrapp
----------------------------------------------------------------------*/
.userBusinesses-wrapp {
	margin-top: 64px;
}

.userBusinesses-wrapp .userBusinesses-inner {
	display: flex;
	column-gap: 15px;
	row-gap: 15px;
	padding: 15px;
	border-radius: 10px;
	border: 3px solid var(--color-secondary);
	background-color: rgba(230, 237, 246, 0.7);
	margin-bottom: 25px;
}

.userBusinesses-wrapp .userBusinesses-inner.owl-carousel {
	gap: 0;
}

.userBusinesses-wrapp .userBusinesses-inner .userBusinesses-item {
	display: inline-flex;
	flex-direction: column;
	flex: 1;
	align-items: center;
	justify-content: center;
	min-width: 194px;
	height: 155px;
	border-radius: 10px;
	background-color: #fff;
}

.userBusinesses-wrapp .userBusinesses-inner.owl-carousel .userBusinesses-item {
	flex: unset;
	width: 100%;
	min-width: unset;
}

.userBusinesses-wrapp .userBusinesses-inner .userBusinesses-item .icon {
	width: 60px;
	height: 60px;
	object-fit: contain;
	margin-bottom: 15px;
}

.userBusinesses-wrapp .userBusinesses-inner .userBusinesses-item .title {
	font-size: 26px;
	font-weight: 500;
	text-align: center;
}

@media screen and (max-width:1023px) {
	.userBusinesses-wrapp {
		padding: 0 !important;
	}

	.userBusinesses-wrapp .userBusinesses-inner {
		border-radius: 0;
		border-left: none;
		border-right: none;
		border-width: 2px;
		margin-bottom: 10px;
	}

	.userBusinesses-wrapp .userBusinesses-inner.owl-carousel .userBusinesses-item {
		height: 82px;
	}

	.userBusinesses-wrapp .userBusinesses-inner .userBusinesses-item .title {
		font-size: 14px;
	}

	.userBusinesses-wrapp .userBusinesses-inner .userBusinesses-item .icon {
		width: 32px;
		height: 32px;
		margin-bottom: 5px;
	}
}

/*----------------------------------------------------------------------
page-breadcrumbs
----------------------------------------------------------------------*/
.page-breadcrumbs {
	display: flex;
	align-items: center;
	height: 56px;
	background-color: var(--color-secondary);
	color: #fff;
	padding: 0 56px;
	margin-top: 24px;
	margin-bottom: 92px;
}

.page-breadcrumbs .item {
	color: #fff;
	margin-left: 10px;
}

.page-breadcrumbs .item::after {
	content: '\f104';
	font-family: 'Font Awesome 6 Pro';
	padding-right: 10px;
}

.page-breadcrumbs .item:last-child::after {
	display: none;
}

@media screen and (max-width:1023px) {
	.page-breadcrumbs {
		padding: 0 24px;
	}
}

/*----------------------------------------------------------------------
footer
----------------------------------------------------------------------*/
footer {
	background-color: #fff;
}

footer .footer-inner {
	display: flex;
	flex-wrap: wrap;
	padding: 25px 0;
}

footer .footer-inner .item {
	display: inline-flex;
	flex-direction: column;
	align-items: center;
	flex: 1;
	margin-left: 0;
	margin-bottom: 25px;
}

footer .footer-inner .item:last-child {
	margin-left: 0;
}

footer .footer-inner .item.item-links a {
	padding: 10px 0;
	color: #666;
	font-size: 1rem;
}

footer .footer-inner .item.item-links a span:first-child {
	margin-left: 15px;
}

footer .footer-inner .item .list {
	display: inline-flex;
	flex-direction: column;
	align-items: center;
	width: 100%;
	padding-top: 15px;
	border-top: 2px solid #ddd;
	margin-top: -2px;
}

footer .footer-inner .item .list.open {
	display: block;
}

footer .footer-inner .item .toggle-icon {
	font-size: 20px;
	line-height: 1;
	display: none;
}

footer .footer-inner .item .title {
	align-self: stretch;
	font-size: 1.25rem;
	font-style: normal;
	font-weight: 400;
	margin: 0 0 0 0;
	padding: 5px 0;
	height: 42px;
	border-bottom: 2px solid var(--color-secondary);
	width: 50%;
	z-index: 1;
}

footer .footer-inner .item .title.center {
	text-align: center;
	margin: 0 auto 0 auto;
}

footer .footer-inner .item .title .logo {
	height: 100%;
}

footer .footer-inner .item.item-content {
	align-items: end;
	padding-left: 0;
}

footer .footer-inner .item.item-content .links {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	padding: 10px 0;
}

footer .footer-inner .item.item-content .description {
	font-size: 1rem;
	font-style: normal;
	font-weight: 400;
	line-height: 200%;
	/* 2rem */
	letter-spacing: -0.03rem;
	width: 100%;
	border-top: 2px solid #ddd;
	padding-top: 15px;
	margin-top: -2px;
}

footer .footer-inner .item.item-content .links img {
	width: 32px;
	margin-left: 10px;
}

footer .footer-bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 92px;
	padding: 0 36px;
	background-color: var(--color-secondary);
}

footer .footer-bottom-title {
	font-size: 26px;
	font-weight: 800;
	color: #fff;
}

footer .footer-bottom-title span:last-child {
	color: var(--color-primary);
}

footer .footer-bottom-items {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

footer .footer-bottom-items a {
	display: inline-flex;
	width: 182px;
	height: 62px;
	align-items: center;
	justify-content: space-between;
	background-color: #D9D9D9;
	border-radius: 10px;
	padding: 15px;
	margin-right: 15px;
}

footer .footer-bottom-items a .title ,
footer .footer-bottom-items a .title span {
	font-size: 14px;
	color: #000;
}

footer .footer-bottom-items a .title .bold {
	font-weight: 700;
}

footer .footer-bottom-items a .icon {
	font-size: 2.2rem;
	margin-right: 10px;
}

footer .footer-bottom-items a img.icon {
	width: 32px;
	height: 32px;
	object-fit: contain;
}

@media screen and (max-width:1023px) {
	footer .footer-bottom {
		display: none;
	}

	footer .footer-inner {
		flex-direction: column-reverse;
	}

	footer .footer-inner .item.item-content {
		width: 100%;
		flex: unset;
		margin: 20px 0 20px 0;
		padding: 0;
	}

	footer .footer-inner .item.item-content .title {
		width: 100%;
		text-align: center;
		border: none;
	}

	footer .footer-inner .item.item-content .description {
		padding-bottom: 15px;
		margin-bottom: 15px;
		border: none;
		border-bottom: 1px solid #ddd;
		text-align: center;
	}	

	footer .footer-inner .item.item-links {
		position: relative;
		align-items: center;
	}

	footer .footer-inner .item.item-links .title {
		text-align: center;
		display: inline-flex;
		align-items: center;
		justify-content: space-between;
	}

	footer .footer-inner .item.item-links::after {
		content: '';
		position: absolute;
		bottom: 0;
		left: 0;
		width: 100%;
		height: 2px;
		background-color: #ddd;
	}	

	footer .footer-bottom {
		display: none;
	}

	footer .footer-inner .item .list {
		display: none;
		padding: 10px 0 25px 0;
	}

	footer .footer-inner .item .list.open {
		display: flex;
	}

	footer .footer-inner .item .toggle-icon {
		display: inline-block;
	}
}