@font-face {
	font-family: 'NotoSansJP-Regular';
	src: url('/fonts/NotoSansJP-Light.ttf') format('truetype');
	font-weight: normal;
	font-style: normal;
}

* {
	margin: 0px;
	padding: 0px;
	font-family: "Arial", sans-serif;
	word-break: keep-all;
	box-sizing: border-box;
}

.ja * {
	font-family: "NotoSansJP-Regular", sans-serif;
	word-break: break-all;
	font-weight: lighter;
	box-sizing: border-box;
}

a {
	color: inherit;
	text-decoration: none;
	-ms-user-select: auto;
	-moz-user-select: auto;
	-khtml-user-select: auto;
	-webkit-user-select: auto;
	user-select: auto;
}

.display_none {
	display: none !important;
}

.mobile_menu_btn {
	display: none;
}

.dev_header {
	position: sticky;
	top: 0px;
	z-index: 100;
	width: 100%;
	height: 60px;
	padding: 0px 80px;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	border-bottom: 1px solid #D1D1D1;
	background: var(--white-color);
	transition: all 0.3s ease;
}

.dev_header_logo_wrapper {
	width: fit-content;
	height: auto;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	gap: 4px;
}

.dev_header_logo {
	display: block;
	height: 12px;
	cursor: pointer;
}

.dev_header_text {
	color: var(--bright-blue-color);
	font-size: 18px;
	font-weight: 500;
	line-height: normal;
}

.dev_header_sign_text {
	color: var(--bright-blue-color);
	font-size: 14px;
	font-weight: 600;
	line-height: normal;
}

.dev_header_sign_text.open_common_account_layer {
	cursor: pointer;
}

.manual_home_btn {
	width: fit-content;
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: flex-start;
	gap: 8px;
	padding: 4px;
}

.dev_header_icon {
	width: 22px;
	height: 16px;
	display: block;
	background-image: url('/images/innorix_exabyter/new_manual/book_blue.svg');
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
}

.dev_header_function_wrapper {
	width: fit-content;
	height: auto;
	display: flex;
	flex-direction: row;
	justify-content: flex-end;
	align-items: center;
	gap: 24px;
}

.dev_header_function_lang {
	position: relative;
	display: flex;
	justify-content: flex-end;
	align-items: center;
	gap: 8px;
	cursor: pointer;
}

.dev_header_function_lang>p {
	color: #777;
	font-size: 14px;
	font-weight: 500;
	line-height: normal;
}

.dev_header_function_lang_icon {
	width: 18px;
	height: 18px;
	display: block;
	background-image: url('/images/innorix_exabyter/new_manual/lang.svg');
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
}

.dev_header_function_lang_arrow_icon {
	width: 8px;
	height: 8px;
	display: block;
	background-image: url('/images/innorix_exabyter/new_manual/arrow_lang.svg');
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
}

.list_for_lang {
	position: absolute;
	top: 20px;
	right: 0px;
	background-color: var(--white-color);
	border: 1px solid #d1d1d1;
	border-radius: 5px;
	width: fit-content;
	display: none;
}

.list_for_lang>p {
	color: #777;
	font-size: 14px;
	font-weight: 500;
	line-height: normal;
	padding: 10px;
}

.view_mode_switch {
	display: flex;
	width: 40px;
	height: 22px;
	align-items: center;
	border-radius: 22px;
	border: 1px solid var(--bright-blue-color);
	background-color: #7DABF8;
	cursor: pointer;
}

.view_mode_switch>div {
	position: relative;
	width: 20px;
	max-width: 20px;
	min-width: 20px;
	height: 20px;
	max-height: 20px;
	min-height: 20px;
	transition: all 0.3s ease;
}

.view_mode_switch>div>div {
	position: absolute;
	top: 0px;
	left: 0px;
	width: 20px;
	height: 20px;
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center;
	transition: all 0.3s ease;
}

.view_mode_switch>div>div.light_mode_active {
	background-image: url('/images/innorix_exabyter/new_manual/light_mode.svg');
}

.view_mode_switch>div>div.dark_mode_active {
	background-image: url('/images/innorix_exabyter/new_manual/dark_mode.svg');
	opacity: 0;
}

.view_mode_switch.active {
	display: flex;
	width: 40px;
	height: 22px;
	align-items: center;
	border-radius: 22px;
	border: 1px solid var(--bright-blue-color);
	background-color: #303F84;
}

.view_mode_switch.active>div {
	transform: translateX(18px);
}

.view_mode_switch.active>div>div.light_mode_active {
	background-image: url('/images/innorix_exabyter/new_manual/light_mode.svg');
	opacity: 0;
}

.view_mode_switch.active>div>div.dark_mode_active {
	background-image: url('/images/innorix_exabyter/new_manual/dark_mode.svg');
	opacity: 1;
}

.dev_section {
	width: 100%;
	height: auto;
	padding-top: 50px;
	padding-bottom: 50px;
	background-color: var(--white-color);
	transition: all 0.3s ease;
}

.dev_section.first_section {
	width: 100%;
	height: auto;
	padding-top: 140px;
	background-color: var(--white-color);
}

.dev_section.last_section {
	width: 100%;
	height: auto;
}

.container {
	margin: 0px auto;
	width: 1136px;
	height: auto;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: flex-start;
}

.title_1 {
	display: flex;
	height: 50px;
	flex-direction: column;
	justify-content: center;
}

.title_1>p {
	color: var(--black-color);
	font-size: 35px;
	font-weight: 700;
	line-height: normal;
}

.title_2 {
	display: flex;
	height: 28px;
	flex-direction: column;
	justify-content: center;
}

.title_2>p {
	color: var(--black-color);
	font-size: 21px;
	font-weight: 600;
	line-height: normal;
}

.text_1 {
	padding-top: 16px;
}

.text_1>p {
	display: flex;
	height: 28px;
	flex-direction: column;
	justify-content: center;
	color: #777;
	font-size: 24px;
	font-weight: 400;
	line-height: 27px;
}

.text_2 {
	padding-top: 12px;
}

.text_2>p {
	display: flex;
	height: 28px;
	flex-direction: column;
	justify-content: center;
	color: var(--black-color);
	font-size: 16px;
	font-weight: 400;
	line-height: normal;
}

.text_3 {
	padding-top: 16px;
}

.text_3>p {
	display: flex;
	height: 28px;
	flex-direction: column;
	justify-content: center;
	color: var(--black-color);
	font-size: 16px;
	font-weight: 400;
	line-height: normal;
}

.btn_wrapper {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: flex-start;
	padding-top: 40px;
	gap: 24px;
	display: none;
}

.btn_wrapper>a {
	position: relative;
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: flex-start;
	padding: 4px 0px;
	color: var(--bright-blue-color);
	font-size: 16px;
	font-weight: 400;
	line-height: normal;
}

.btn_wrapper>a::after {
	content: '';
	position: absolute;
	bottom: -5px;
	left: 50%;
	width: 0%;
	border-bottom: 1px solid var(--bright-blue-color);
	transform: translateX(-50%);
	transition: all 0.3s ease;
}

.btn_wrapper>a:hover::after {
	width: 100%;
}

.btn_wrapper>a.no_hover:hover::after {
	width: 0%;
}

.card_wrapper {
	width: 100%;
	padding-top: 36px;
	display: flex;
	flex-direction: row;
	align-items: stretch;
	justify-content: flex-start;
	flex-wrap: wrap;
	gap: 20px;
}

.card_content {
	width: 360px;
	min-height: 135px;
	display: flex;
	padding: 18px;
	flex-direction: column;
	align-items: flex-start;
	justify-content: flex-start;
	gap: 8px;
	border-radius: 5px;
	border: 1px solid #D1D1D1;
	background-color: var(--white-color);
	transition: all 0.3s ease;
	cursor: pointer;
}

.card_content>img {
	height: 20px;
	display: block;
}

.card_content_title {
	color: var(--bright-blue-color);
	font-size: 16px;
	font-weight: 600;
	line-height: normal;
}

.card_content_text {
	color: var(--light-black-color);
	font-size: 15px;
	font-weight: 400;
	line-height: 20px;
}

.card_content_link {
	color: var(--bright-blue-color);
	font-size: 14px;
	font-weight: 600;
	line-height: normal;
}

.card_content:hover {
	box-shadow: 2px 10px 10px 0px rgba(0, 0, 0, 0.15);
}



.line_content {
	width: 100%;
	padding: 50px 0px 16px;
}

.line_content>div {
	width: 100%;
	border-bottom: 1px solid #D1D1D1;
}

.line_content_footer {
	width: 100%;
	padding: 30px 0px;
}

.line_content_footer>div {
	width: 100%;
	border-bottom: 1px solid #D1D1D1;
}



.fourth_flex_box {
	width: 100%;
	height: auto;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: flex-start;
	gap: 16px;
	padding-top: 36px;
}

.fourth_flex_box_inner_first {
	width: 100%;
	height: auto;
	display: flex;
	flex-direction: row;
	align-items: stretch;
	justify-content: flex-start;
	flex-wrap: wrap;
}

.fourth_flex_box_inner_first_content {
	position: relative;
	width: 50%;
	height: auto;
	padding: 18px;
	display: flex;
	flex-direction: row;
	align-items: flex-start;
	justify-content: flex-start;
	border: 1px solid #EEE;
	background-color: var(--white-color);
	gap: 16px;
	margin-left: -1px;
	margin-top: -1px;
	cursor: pointer;
	transition: background-color 0.3s ease;
}

.fourth_flex_box_inner_first_content:nth-child(1) {
	border-top-left-radius: 16px;
}

.fourth_flex_box_inner_first_content:nth-child(2) {
	border-top-right-radius: 16px;
}

.fourth_flex_box_inner_first_content:nth-last-child(1) {
	border-bottom-right-radius: 16px;
}

.fourth_flex_box_inner_first_content:nth-last-child(2) {
	border-bottom-left-radius: 16px;
}

.fourth_flex_box_inner_first_content:hover {
	border: 1px solid #5865F2;
	z-index: 1;
}

.fourth_flex_box_inner_first_content>.image_wrapper {
	width: 80px;
	height: 80px;
	min-width: 80px;
	min-height: 80px;
	padding: 10px;
	border-radius: 12px;
	background-color: #F1F3F4;
}

.fourth_flex_box_inner_first_content>.image_wrapper img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	display: block;
}

.fourth_flex_box_inner_first_content>.content_text_wrapper {
	width: 100%;
	height: auto;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: flex-start;
	gap: 10px;
}

.fourth_flex_box_inner_first_content>.content_text_wrapper>.type_title_wrapper {
	display: flex;
	flex-direction: row;
	align-items: center;
	align-items: flex-start;
	gap: 12px;
}

.fourth_flex_box_inner_first_content>.content_text_wrapper>.type_title_wrapper>.type_title {
	display: flex;
	padding: 4px 12px;
	align-items: center;
	height: 27px;
	gap: 10px;
	border-radius: 5px;
	background-color: #E8E8E8;
	color: var(--black-color);
	font-size: 13px;
	font-weight: 400;
	line-height: normal;
}

.fourth_flex_box_inner_first_content>.content_text_wrapper>.content_title {
	color: var(--black-color);
	font-size: 16px;
	font-weight: 400;
	line-height: normal;
}

.fourth_flex_box_inner_first_content>.content_text_wrapper>.content_text {
	color: var(--light-black-color);
	font-size: 14px;
	font-weight: 400;
	line-height: normal;
}

.fourth_flex_box_inner_first_content_flex {
	width: 100%;
	height: auto;
	display: none;
	flex-direction: row;
	align-items: center;
	justify-content: flex-end;
	margin-top: auto;
	gap: 10px;
}

.fourth_flex_box_inner_first_content_flex>div {
	display: flex;
	width: 80px;
	height: 24px;
	padding: 2px 4px;
	justify-content: center;
	align-items: center;
	gap: 10px;
	border-radius: 4px;
	border: 1px solid #EEE;
	background-color: var(--white-color);
	color: #1A73EA;
	font-size: 12px;
	font-weight: 400;
	cursor: pointer;
}

.user_guide_title {
	width: 100%;
	color: #2A2F45;
	font-size: 32px;
	font-weight: 700;
	display: flex;
	flex-direction: row;
	align-items: flex-end;
	justify-content: flex-start;
}

.user_guide_title>a {
	height: 22px;
	color: var(--bright-blue-color);
	font-size: 18px;
	font-weight: 400;
	line-height: normal;
	margin-left: auto;
}

.dev_footer {
	display: flex;
	width: 100%;
	padding: 0px 30px 50px;
	flex-direction: column;
	align-items: center;
	background-color: var(--white-color);
}

.footer_wrapper {
	width: 100%;
	display: flex;
	flex-direction: row;
	align-items: stretch;
	justify-content: flex-start;
}

.footer_link_wrapper {
	padding-top: 8px;
}

.footer_link_wrapper>a {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: flex-start;
	height: 20px;
	color: var(--bright-blue-color);
	font-size: 14px;
	font-weight: 600;
	line-height: 27px;
	cursor: pointer;
}

.footer_link_wrapper>a>div {
	width: 20px;
	height: 20px;
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: flex-start;
}

.footer_link_wrapper>a>div>img {
	display: block;
}

.footer_logo_wrapper {
	width: 150px;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	align-items: flex-end;
	margin-left: auto;
}

.footer_logo_wrapper>img {
	width: 100%;
}

.nav_wrapper {
	position: sticky;
	top: 0px;
	width: 280px;
	min-width: 280px;
	height: calc(100vh - 60px);
	padding-top: 20px;
	padding-bottom: 20px;
	display: none;
	flex-direction: column;
	align-items: flex-start;
	justify-content: flex-start;
	overflow-y: auto;
	gap: 12px;
	border-right: 1px solid #D1D1D1;
	transition: all 0.3s ease;
}

.nav_wrapper .line_element {
	width: 100%;
	padding: 10px 16px 10px 0px;
}

.nav_wrapper .line_element>div {
	width: 100%;
	border-bottom: 1px solid #D1D1D1;
}

.nav_wrapper>.search_wrapper {
	width: 100%;
	padding-right: 16px;
}

.nav_wrapper>.search_wrapper>.common_input_wrapper {
	width: 100%;
	height: 36px;
}

.nav_wrapper>.search_wrapper>.common_input_wrapper input {
	padding: 10px;
	font-size: 12px;
}

.nav_wrapper_set {
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: flex-start;
	gap: 12px;
}

.list_wrapper {
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: flex-start;
	gap: 12px;
	padding-right: 16px;
}

.list_wrapper .list_title_1 {
	color: var(--black-color);
	font-size: 14px;
	font-weight: 400;
	line-height: 20px;
	cursor: default;
}

.list_wrapper a>p {
	color: var(--light-black-color);
	font-size: 14px;
	font-weight: 400;
	line-height: 20px;
}

.list_wrapper .list_title_1.active {
	color: var(--black-color);
	font-size: 14px;
	font-weight: 600;
	line-height: 20px;
}

.list_wrapper a.active>p {
	color: var(--bright-blue-color);
	font-size: 14px;
	font-weight: 600;
	line-height: 20px;
}




.unactive {
	background: var(--white-color)f !important;
	border: 1px solid #d1d1d1 !important;
	cursor: default !important;
	pointer-events: none;
	color: black !important;
}

.unactive .image_wrapper img {
	opacity: 0.5 !important;
}




.html_body[data-mode='dark'] .unactive {
	background: #2A2F45 !important;
	border: 1px solid #3C4257 !important;
	cursor: default !important;
}

.html_body[data-mode='dark'] .unactive .image_wrapper img {
	opacity: 0.5 !important;
}

.html_body[data-mode='dark'] .unactive .type_title {
	color: #545971 !important;
}

.html_body[data-mode='dark'] .unactive .content_title {
	color: #545971 !important;
}

.html_body[data-mode='dark'] .unactive .content_text {
	color: #545971 !important;
}

.html_body[data-mode='dark'] .unactive:hover {
	background: #2A2F45 !important;
	color: #545971 !important;
}

.html_body[data-mode='dark'] .dev_header {
	border-bottom: 1px solid #3C4257;
	background: #1A1F36;
}

.html_body[data-mode='dark'] .dev_header_function_lang>p {
	color: var(--white-color);
}

.html_body[data-mode='dark'] .dev_header_function_lang_arrow_icon {
	background-image: url('/images/innorix_exabyter/new_manual/arrow_lang_dark_mode.svg');
}

.html_body[data-mode='dark'] .list_for_lang {
	background-color: #1A1F36;
	border: 1px solid #3C4257;
}

.html_body[data-mode='dark'] .list_for_lang>p {
	color: var(--white-color);
}

.html_body[data-mode='dark'] .blueBtn:hover {
	background-color: #1A1F36;
}

.html_body[data-mode='dark'] .common_layer_have_value_alert .blueBtn:hover {
	background-color: var(--white-color);
}

.html_body[data-mode='dark'] .common_layer .blueBtn:hover {
	background-color: var(--white-color);
}

.html_body[data-mode='dark'] .nav_wrapper {
	border-right: 1px solid #3C4257;
}

.html_body[data-mode='dark'] .nav_wrapper .line_element>div {
	border-bottom: 1px solid #3C4257;
}

.html_body[data-mode='dark'] .nav_wrapper>.search_wrapper>.common_input_wrapper input {
	border: 1px solid #3C4257;
	background-color: transparent;
}

.html_body[data-mode='dark'] .nav_wrapper>.search_wrapper>.common_input_wrapper input::placeholder {
	color: #999;
}

.html_body[data-mode='dark'] .list_wrapper .list_title_1 {
	color: var(--white-color);
}

.html_body[data-mode='dark'] .list_wrapper a>p {
	color: #D1D1D1;
}

.html_body[data-mode='dark'] .list_wrapper .list_title_1.active {
	color: var(--white-color);
}

.html_body[data-mode='dark'] .list_wrapper a.active>p {
	color: var(--bright-blue-color);
}

.html_body[data-mode='dark'] .fotp_wrapper_title {
	color: var(--white-color);
}

.html_body[data-mode='dark'] .fotp_wrapper>a {
	color: #D1D1D1;
}

.html_body[data-mode='dark'] .line_content>div {
	border-bottom: 1px solid #3C4257;
}

.html_body[data-mode='dark'] .line_content_footer>div {
	border-bottom: 1px solid #3C4257;
}

.html_body[data-mode='dark'] .dev_section {
	background-color: #1A1F36;
}

.html_body[data-mode='dark'] .lang_select_wrapper>.lang_select_content {
	border: 1px solid #3C4257;
	color: #A3ACB9;
}

.html_body[data-mode='dark'] .lang_select_wrapper>.lang_select_content.active {
	border: 2px solid var(--bright-blue-color);
	color: var(--bright-blue-color);
}

.html_body[data-mode='dark'] .title_1>p {
	color: var(--white-color);
}

.html_body[data-mode='dark'] .title_2>p {
	color: var(--white-color);
}

.html_body[data-mode='dark'] .title_3>p {
	color: var(--white-color);
}

.html_body[data-mode='dark'] .text_1>p {
	color: #D1D1D1;
}

.html_body[data-mode='dark'] .text_2 {
	padding-top: 12px;
}

.html_body[data-mode='dark'] .text_2>p {
	color: var(--white-color);
}

.html_body[data-mode='dark'] .text_3>p {
	color: var(--white-color);
}

.html_body[data-mode='dark'] .card_content {
	border: 1px solid #3C4257;
	background-color: #1A1F36;
}

.html_body[data-mode='dark'] .card_content_text {
	color: #D1D1D1;
}

.html_body[data-mode='dark'] .card_content:hover {
	box-shadow: 2px 10px 10px 0px rgba(0, 0, 0, 0.15);
}

.html_body[data-mode='dark'] .dev_footer {
	background-color: #1A1F36;
}

.html_body[data-mode='dark'] .fourth_flex_box_inner_first_content {
	border: 1px solid #3C4257;
	background-color: #1A1F36;
}

.html_body[data-mode='dark'] .fourth_flex_box_inner_first_content:hover {
	border: 1px solid #5865F2;
	z-index: 1;
}

.html_body[data-mode='dark'] .fourth_flex_box_inner_first_content>.image_wrapper {
	background-color: #23283E;
}

.html_body[data-mode='dark'] .fourth_flex_box_inner_first_content>.content_text_wrapper>.type_title_wrapper>.type_title {
	border: 1px solid #34394D;
	background-color: #23283E;
	color: #D1D1D1;
}

.html_body[data-mode='dark'] .fourth_flex_box_inner_first_content>.content_text_wrapper>.content_title {
	color: var(--white-color);
}

.html_body[data-mode='dark'] .fourth_flex_box_inner_first_content>.content_text_wrapper>.content_text {
	color: #D1D1D1;
}

.html_body[data-mode='dark'] .mobile_menu_btn>span {
	width: 100%;
	border-top: 1px solid var(--white-color);
	transform-origin: 0px 0px;
}

.html_body[data-mode='dark'] .nav_wrapper {
	background-color: #1A1F36;
}

@media (max-width: 1136px) {
	section {
		padding-left: 30px;
		padding-right: 30px
	}

	.dev_header {
		padding: 10px 30px;
		flex-direction: row;
		justify-content: flex-start;
		align-items: center;
		height: fit-content;
		gap: 10px;
	}

	.dev_header_function_wrapper {
		width: fit-content;
		margin-left: auto;
	}

	.dev_header_function_lang {
		display: none !important;
	}

	.view_mode_switch {
		display: none !important;
	}

	.dev_header_function_wrapper a {
		display: none !important;
	}

	.dev_section {
		padding-top: 32px;
		padding-bottom: 40px;
		background-color: var(--white-color);
	}

	.dev_section.first_section {
		padding-top: 140px;
		padding-bottom: 50px;
		background-color: var(--white-color);
	}

	.dev_section.last_section {
		padding-top: 32px;
		padding-bottom: 32px;
	}

	.mobile_menu_btn {
		width: 23px;
		height: 20px;
		min-width: 23px;
		min-height: 20px;
		padding: 4px;
		display: flex;
		flex-direction: column;
		align-items: flex-start;
		justify-content: space-between;
		cursor: pointer;
		overflow: hidden;
	}

	.mobile_menu_btn>span {
		width: 100%;
		border-top: 1px solid var(--black-color);;
		transform-origin: 0px 0px;
		transition: all 0.3s ease;
	}

	.mobile_menu_btn.active>span:nth-child(1) {
		width: calc(100% + 2px);
		transform: rotate(45deg);
		transform: translate(0px, 0px) rotate(43deg);
	}

	.mobile_menu_btn.active>span:nth-child(2) {
		margin-left: -100%;
		opacity: 0;
	}

	.mobile_menu_btn.active>span:nth-child(3) {
		width: calc(100% + 2px);
		transform: translate(0px, 1px) rotate(-45deg);
	}

	.nav_wrapper .line_element:nth-child(2) {
		display: none;
	}

	.nav_wrapper {
		position: fixed;
		top: 51px;
		left: -100vw;
		z-index: 10;
		width: 100vw;
		min-width: 280px;
		height: calc(100vh - 51px);
		padding-top: 20px;
		display: flex;
		flex-direction: column;
		align-items: flex-start;
		justify-content: flex-start;
		overflow-y: auto;
		gap: 12px;
		border-right: 1px solid #D1D1D1;
		background-color: var(--white-color);
		padding-left: 15px;
	}

	.nav_wrapper.active {
		left: 0px;
	}

	.search_wrapper {
		display: none !important;
	}

	.container {
		width: 100%;
		margin: 0px auto;
		padding: 0px 15px;
	}

	.btn_wrapper {
		flex-direction: column;
		gap: 10px;
		justify-content: flex-start;
		align-items: flex-start;
	}

	.text_1>p {
		height: auto;
	}

	.text_2>p {
		height: auto;
	}

	.text_3>p {
		height: auto;
	}

	.card_content {
		width: 100%;
	}

	.first_content_wrapper {
		flex-wrap: wrap;
		gap: 40px;
		justify-content: center;
	}

	.single_logo_wrapper {
		width: 100%;
		flex-wrap: wrap;
		gap: 20px 5px;
	}

	.download_content_inner_wrapper {
		flex-wrap: wrap;
		gap: 10px 40px;
	}

	.third_flex_box_inner_first>a {
		width: 100%;
	}

	.third_flex_box_inner_first_content {
		width: 100%;
	}

	.animate_section {
		height: 730px;
	}

	.user_guide_animation_area {
		position: absolute;
		bottom: 0px;
		left: 50%;
		transform: translateX(-50%) scale(0.8);
	}

	.fourth_flex_box_inner_first_content {
		width: 100%;
	}

	.fourth_flex_box_inner_first_content:nth-child(1) {
		border-top-left-radius: 16px;
		border-top-right-radius: 16px;
	}

	.fourth_flex_box_inner_first_content:nth-child(2) {
		border-top-right-radius: 0px;
	}

	.fourth_flex_box_inner_first_content:nth-last-child(1) {
		border-bottom-left-radius: 16px;
		border-bottom-right-radius: 16px;
	}

	.fourth_flex_box_inner_first_content:nth-last-child(2) {
		border-bottom-left-radius: 0px;
	}
}

@media (max-width: 799px) {
	.dev_section {
		padding-left: 20px;
		padding-right: 20px;
	}

	.container {
		padding: 0px;
	}
}