/* font */
@font-face {
	font-family: "Paperlogy";
	src: url("/assets/font/paperlogy/Paperlogy-3Light.ttf") format("truetype");
	font-weight: 300;
	font-style: normal;
}

@font-face {
	font-family: "Paperlogy";
	src: url("/assets/font/paperlogy/Paperlogy-4Regular.ttf") format("truetype");
	font-weight: 400;
	font-style: normal;
}

@font-face {
	font-family: "Paperlogy";
	src: url("/assets/font/paperlogy/Paperlogy-5Medium.ttf") format("truetype");
	font-weight: 500;
	font-style: normal;
}

@font-face {
	font-family: "Paperlogy";
	src: url("/assets/font/paperlogy/Paperlogy-6SemiBold.ttf")
		format("truetype");
	font-weight: 600;
	font-style: normal;
}

@font-face {
	font-family: "Paperlogy";
	src: url("/assets/font/paperlogy/Paperlogy-7Bold.ttf") format("truetype");
	font-weight: 700;
	font-style: normal;
}

@font-face {
	font-family: "Paperlogy";
	src: url("/assets/font/paperlogy/Paperlogy-8ExtraBold.ttf")
		format("truetype");
	font-weight: 800;
	font-style: normal;
}

@font-face {
	font-family: "Paperlogy";
	src: url("/assets/font/paperlogy/Paperlogy-9Black.ttf") format("truetype");
	font-weight: 900;
	font-style: normal;
}

* {
	padding: 0;
	margin: 0;
	box-sizing: border-box; /* important for layout control */
}

p,
h1,
h2,
h3,
h4,
h5,
h6,
a {
	padding: 0;
	margin: 0;
}

body {
	background-color: #fff;
	color: #262626;
	font-family: "Paperlogy", sans-serif;
}

.container {
	max-width: 1440px !important;
	padding: 0 80px !important;
	margin: 0 auto !important;
}

a {
	text-decoration: none;
	color: inherit;
}
button {
	border: none;
	outline: none;
}

li {
	list-style-type: none;
}

ul,
ol {
	margin: 0;
	padding: 0;
}
button {
	outline: none;
	background-color: transparent;
	border: none;
}

a.logo {
	color: #262626;
	font-size: 24px;
	font-style: normal;
	font-weight: 600;
	line-height: 140%;
	letter-spacing: -0.288px;
}

.text-white {
	color: #fff;
}

.text-center {
	text-align: center;
}

.section_heading {
	color: #262626;
	text-align: center;
	font-size: 48px;
	font-style: normal;
	font-weight: 500;
	line-height: 115%;
	letter-spacing: -0.96px;
}

.description_text {
	color: #515151;
	font-size: 24px;
	font-style: normal;
	font-weight: 400;
	line-height: 160%;
	letter-spacing: -0.288px;
}

.small_heading {
	color: #262626;
	font-size: 24px;
	font-style: normal;
	font-weight: 600;
	line-height: 140%;
	letter-spacing: -0.288px;
}

.paragraph_text {
	color: #6e6e6e;
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: 160%;
	letter-spacing: -0.192px;
}

.dark-btn {
	border-radius: 9999px;
	background: #262626;
	box-shadow: 0px -6px 12px 0px rgba(255, 255, 255, 0.1) inset,
		0px 0.5px 0.5px 0px rgba(69, 144, 178, 0.25) inset,
		0px 0px 0px 1px #81d5fb;
	color: #fff;
	text-align: center;
	text-shadow: 0.5px 0.5px 1px rgba(69, 144, 178, 0.1);
	font-size: 16px;
	font-style: normal;
	font-weight: 500;
	line-height: 160%;
	letter-spacing: -0.192px;
	padding: 12px 24px;
}

section {
	padding-top: 140px;
}

/* header start */
header {
	padding: 24px 0;
	box-shadow: 0px 4px 8px 0px rgba(196, 196, 196, 0.08);
	position: sticky;
	top: 0;
	background-color: white;
	z-index: 10;
}

header .nav_link {
	color: #262626;
	font-size: 16px;
	font-style: normal;
	font-weight: 500;
	line-height: 160%;
	letter-spacing: -0.192px;
	transition: all 0.3s ease-in-out;
}

header nav .nav_link:hover {
	color: #e53935;
}

header .navbar_contents {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

header nav ul {
	display: flex;
	align-items: center;
	gap: 40px;
}

header .mobile_menu_btn {
	padding: 0;
	margin: 0;
	background-color: transparent;
	width: 28px;
	height: 28px;
	border: none;
	margin-left: 10px;
	display: none;
}
header .mobile_menu_btn img {
	width: 28px;
	height: 28px;
}
.mobile_menu_contents ul {
	width: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 16px;
}

/* header end */

/* footer start  */
footer {
	border-radius: 40px 40px 0px 0px;
	background: #1f2023;
	margin-top: 220px;
	padding: 100px 0px;
}
footer a.logo {
	color: #fff;
	font-size: 20px;
	font-style: normal;
	font-weight: 500;
	line-height: 150.673%;
	margin-bottom: 20px;
	display: inline-block;
}
footer p {
	color: #fff;
	font-size: 14px;
	font-style: normal;
	font-weight: 400;
	line-height: 150.673%; /* 21.094px */
}
footer p.copyright_text {
	color: rgba(255, 255, 255, 0.8);
	font-size: 12px;
	font-style: normal;
	font-weight: 400;
	line-height: 150.673%;
	margin-top: 20px;
}
/* footer end  */

/* ----------------- RESPONSIVE ----------------- */
@media all and (max-width: 1280px) {
	.container {
		padding: 0 40px !important;
	}
	.section-heading {
		font-size: 48px;
		letter-spacing: -0.144px;
	}
	.small_heading,
	.description_text {
		font-size: 20px;
		letter-spacing: -0.144px;
	}
	.section_heading {
		font-size: 36px;
	}
	section {
		padding-top: 100px;
	}
	footer {
		border-radius: 40px 40px 0px 0px;
		background: #1f2023;
		margin-top: 150px;
		padding: 60px 0px;
	}
}

@media all and (max-width: 1023px) {
	header {
		padding: 16px 0;
	}
	header nav ul {
		gap: 25px;
		display: none;
	}
	.dark-btn {
		padding: 8px 20px;
	}
	a.logo {
		font-size: 20px;
	}
	header .mobile_menu_btn {
		display: block;
	}
}

@media all and (max-width: 767px) {
	section {
		padding-top: 60px;
	}
	.section_heading {
		font-size: 32px;
		letter-spacing: -0.92px;
	}
	header {
		padding: 16px 0;
	}
}

@media all and (max-width: 574px) {
	.container {
		padding: 0 16px !important;
	}
	.section-heading {
		font-size: 32px;
	}
	.small-heading,
	.description-text {
		font-size: 18px;
		letter-spacing: -0.072px;
	}
	.paragraph-text {
		font-size: 14px;
		letter-spacing: -0.096px;
	}
	a.logo {
		font-size: 18px;
		letter-spacing: -2px;
	}
	.dark-btn {
		font-size: 14px;
		padding: 6px 12px;
		letter-spacing: -0.096px;
	}

	.section_heading {
		font-size: 24px;
		letter-spacing: -0.92px;
	}
	.description_text {
		font-size: 16px;
		letter-spacing: -0.188px;
	}
	footer {
		margin-top: 100px;
		padding: 40px 0px;
	}
	footer a.logo {
		font-size: 18px;
		margin-bottom: 12px;
	}
	footer p {
		font-size: 12px;
	}
	footer p copyright_text {
		font-size: 10px;
		margin-top: 12px;
	}
}

/* ==== Modal CSS ==== */
.modal-content {
	padding: 40px;
	padding-top: 60px;
}
.modal-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0;
	padding-bottom: 24px;
	border-bottom: 1px solid rgba(0, 0, 0, 0.5);
	margin-bottom: 32px;
}
.modal-header h5 {
	color: #262626;
	leading-trim: both;
	text-edge: cap;
	font-size: 22px;
	font-style: normal;
	font-weight: 600;
	line-height: 129%;
	text-transform: capitalize;
}
.modal-body {
	padding: 0;
}

.modal-body .button {
	color: #fff;
	font-size: 16px;
	font-style: normal;
	font-weight: 500;
	line-height: 126%;
	border-radius: 51.262px;
	background: #f2553c;
	padding: 15.534px;
	margin-top: 20px;
}

/* my page  */
#my-page-body .my-page-step-content {
	display: none;
}
#my-page-body .my-page-step-content.active {
	display: block;
}
.form-wrapper {
	display: flex;
	flex-direction: column;
	gap: 20px;
}
@media screen and (max-width: 639px) {
	.form-wrapper {
		gap: 16px;
	}
}
#my-page-body .input_item {
	display: flex;
	flex-direction: column;
	gap: 12px;
}
#my-page-body .input_item label {
	color: #262626;
	leading-trim: both;
	text-edge: cap;
	font-size: 16px;
	font-style: normal;
	font-weight: 500;
	line-height: 132%;
	text-transform: capitalize;
}
#my-page-body .input_item input {
	color: rgb(0, 0, 0);
	leading-trim: both;
	text-edge: cap;
	font-size: 14px;
	font-style: normal;
	font-weight: 500;
	line-height: 129%;
	text-transform: capitalize;
	padding: 15px 10px;
	width: 100%;
	border-radius: 8px;
	border: 1px solid #515151;
	background: #fff;
	outline: none;
}
#my-page-body .input_item input:placeholder-shown {
	color: rgba(0, 0, 0, 0.5);
}
#my-page-body .custom-date {
	color: rgba(0, 0, 0, 0.5) !important;
}

/* When user selects a date, color will be black */
#my-page-body .custom-date.has-value {
	color: black !important;
}
#my-page-body .my-page-2 {
	display: flex;
	flex-direction: column;
	gap: 20px;
}
#my-page-body p {
	color: #24252a;
	font-size: 20px;
	font-style: normal;
	font-weight: 500;
	line-height: 130%;
	letter-spacing: -0.2px;
	text-transform: capitalize;
}
#my-page-body ul {
	display: flex;
	flex-direction: column;
	gap: 40px;
	border-left: 2px dashed #24252a;
	padding-top: 5px;
}
#my-page-body ul li {
	color: #929292;
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: 120%; /* 19.2px */
	letter-spacing: -0.16px;
	text-transform: capitalize;
	margin-left: -8px;
	display: flex;
	align-items: center;
	gap: 28px;
}
#my-page-body ul li.success {
	color: #24252a;
}
#my-page-body ul li .circle {
	width: 15px;
	min-width: 15px;
	aspect-ratio: 1/1;
	border-radius: 100%;
	background-color: #929292;
}
#my-page-body ul li.success .circle {
	background-color: #262626;
}

/* apply now  */
#apply-now-body .apply-now-step-content {
	display: none;
}
#apply-now-body .apply-now-step-content.active {
	display: block;
}
#apply-now-body .step-progress-bar {
	border-radius: 20px;
	background: rgba(217, 217, 217, 0.4);
	width: 100%;
	height: 11px;
	overflow: hidden;
}
#apply-now-body .progress-bar-active {
	border-radius: 20px;
	height: 100%;
	background-color: #cac4fe;
}
#apply-now-body .progress-texts {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 8px;
	margin-top: 12px;
	margin-bottom: 32px;
}
#apply-now-body .progress-texts span {
	color: #515151;
	font-size: 12px;
	font-style: normal;
	font-weight: 400;
	line-height: 160%;
	letter-spacing: -0.144px;
	text-align: center;
}
#apply-now-body h2 {
	color: #262626;
	leading-trim: both;
	text-edge: cap;
	font-size: 20px;
	font-style: normal;
	font-weight: 600;
	line-height: 129%;
	text-transform: capitalize;
	margin-bottom: 24px;
}
#apply-now-body .content-wrapper {
	display: flex;
	flex-direction: column;
	gap: 30px;
}
#apply-now-body label {
	color: #262626;
	leading-trim: both;
	text-edge: cap;
	font-size: 16px;
	font-style: normal;
	font-weight: 500;
	line-height: 132%;
	text-transform: capitalize;
}
#apply-now-body .grid-contents {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 8px;
	margin-top: 12px;
}
#apply-now-body .grid-contents .visa-type-tab-btn,
#apply-now-body .grid-contents .number-of-applicants-tab-btn {
	border-radius: 8px;
	border: 1px solid #515151;
	background: #fff;
	color: rgba(0, 0, 0, 0.5);
	leading-trim: both;
	text-edge: cap;
	font-size: 14px;
	font-style: normal;
	font-weight: 500;
	line-height: 129%; /* 18.06px */
	text-transform: capitalize;
	padding: 10px;
	transition: all 0.3s ease-in-out;
	height: 54px;
}
#apply-now-body .grid-contents .visa-type-tab-btn.active,
#apply-now-body .grid-contents .number-of-applicants-tab-btn.active {
	color: #262626;
	border: 1.5px solid #515151;
	background: rgba(202, 196, 254, 0.2);
}

#apply-now-body .grid-contents select {
	border-radius: 8px;
	border: 1.5px solid #515151;
	background: rgba(202, 196, 254, 0.2);
	color: #262626;
	leading-trim: both;
	text-edge: cap;
	font-size: 14px;
	font-style: normal;
	font-weight: 500;
	line-height: 129%; /* 18.06px */
	text-transform: capitalize;
	padding: 10px;
	transition: all 0.3s ease-in-out;
	height: 54px;
	text-align: center;
	outline: none;
	appearance: none; /* Standard */
	-webkit-appearance: none; /* Safari */
	-moz-appearance: none; /* Firefox */
	cursor: pointer;

	width: 100%;
}
#apply-now-body .select-wrapper {
	position: relative;
}
#apply-now-body .select-wrapper img {
	position: absolute;
	right: 10px;
	top: 22%;
}
#apply-now-body h3 {
	color: #262626;
	leading-trim: both;
	text-edge: cap;
	font-size: 22px;
	font-style: normal;
	font-weight: 500;
	line-height: 132%;
	text-transform: capitalize;
}
#apply-now-body .apply-step-2 li,
#apply-now-body .apply-step-2 span {
	color: #000;
	leading-trim: both;
	text-edge: cap;
	font-size: 14px;
	font-style: normal;
	font-weight: 400;
	line-height: 129%;
	text-transform: capitalize;
}
#apply-now-body .apply-step-2 p {
	color: #262626;
	text-align: center;
	leading-trim: both;
	text-edge: cap;
	font-size: 16px;
	font-style: normal;
	font-weight: 500;
	line-height: 132%; /* 21.12px */
	text-transform: capitalize;
}
#apply-now-body .apply-step-2 h6 {
	color: rgba(0, 0, 0, 0.5);
	text-align: center;
	leading-trim: both;
	text-edge: cap;
	font-size: 16px;
	font-style: normal;
	font-weight: 500;
	line-height: 129%; /* 20.64px */
	text-transform: capitalize;
	margin-top: 32px;
}
#apply-now-body .apply-step-2 ul {
	width: fit-content;
	margin: 10px auto;
}
#apply-now-body .apply-step-2 ul li {
	list-style-type: disc;
}
#apply-now-body .apply-step-2 .content-wrapper img.passport {
	max-width: 370px !important;
	margin: 0 auto;
	display: block;
}

#apply-now-body .apply-step-2 .custom-checkbox {
	position: relative;
	padding-left: 25px;
	cursor: pointer;
	user-select: none;
	font-size: 16px;
	display: flex;
	align-items: center;
	gap: 11px;
}

/* Hide the default checkbox */
#apply-now-body .apply-step-2 .custom-checkbox input {
	position: absolute;
	opacity: 0;
	cursor: pointer;
}

/* Create custom box */
#apply-now-body .apply-step-2 .custom-checkbox .checkmark {
	position: absolute;
	top: 0;
	left: 0;
	height: 18px;
	width: 18px;
	background-color: #eee;
	border: 2px solid #ccc;
	border-radius: 4px; /* remove for square */
	transition: background-color 0.2s, border-color 0.2s;
}

/* On hover */
#apply-now-body .apply-step-2 .custom-checkbox:hover .checkmark {
	background-color: #ddd;
}

/* When checked */
#apply-now-body .apply-step-2 .custom-checkbox input:checked ~ .checkmark {
	background-color: #333;
	border-color: #333;
}

/* Add checkmark symbol */
#apply-now-body .apply-step-2 .custom-checkbox .checkmark::after {
	content: "";
	position: absolute;
	display: none;
}

#apply-now-body
	.apply-step-2
	.custom-checkbox
	input:checked
	~ .checkmark::after {
	display: block;
}

/* Checkmark drawing */
#apply-now-body .apply-step-2 .custom-checkbox .checkmark::after {
	left: 5px;
	top: 1px;
	width: 5px;
	height: 10px;
	border: solid white;
	border-width: 0 2px 2px 0;
	transform: rotate(45deg);
}
#apply-now-body .apply-step-2 .checkbox_wrapper {
	padding: 18px 10px;
	border-radius: 8px;
	border: 1px solid #515151;
	background: #fff;
	display: flex;
	align-items: center;
	gap: 0px;
	justify-content: space-between;
	margin-top: 12px;
}
#apply-now-body .apply-step-2 .checkbox_wrapper span {
	color: #262626;
	leading-trim: both;
	text-edge: cap;
	font-size: 14px;
	font-style: normal;
	font-weight: 500;
	line-height: 129%; /* 18.06px */
	text-transform: capitalize;
}
#apply-now-body .btn_group {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 8px;
	margin-top: 20px;
}
#apply-now-body .btn_group button {
	color: #333;
	text-align: center;
	font-family: Paperlogy;
	font-size: 18px;
	font-style: normal;
	font-weight: 500;
	line-height: 26px; /* 144.444% */
	border-radius: 66px;
	border: 1px solid #333;
	padding: 14px;
}
#apply-now-body .btn_group button.next-btn {
	color: white;
	border-radius: 51.262px;
	background: #f2553c;
	border-color: transparent;
}
#apply-now-body .apply-step-3 .select_content_wrapper {
	border-radius: 100px;
	border: 1px solid #515151;
	background: #515151;
	padding: 10px;
	width: fit-content;
}
#apply-now-body .apply-step-3 .select_btn {
	color: #fff;
	leading-trim: both;
	text-edge: cap;
	font-size: 12px;
	font-style: normal;
	font-weight: 500;
	line-height: 129%;
	text-transform: capitalize;
	border-radius: 100px;
	border: 1px solid transparent;
	background: transparent;
	width: fit-content;
	outline: none;
}
#apply-now-body .apply-step-3 option {
	color: black;
	leading-trim: both;
	text-edge: cap;
	font-size: 12px;
	font-style: normal;
	font-weight: 500;
	line-height: 129%;
	text-transform: capitalize;
	padding: 5px 10px;
}
#apply-now-body .apply-step-3 .contents_wrapper {
	display: flex;
	flex-direction: column;
	gap: 24px;
}

#apply-now-body .apply-step-3 .file-uploader {
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	border: 2px dashed #ccc;
	border-radius: 6px;
	padding: 14px;
	width: 100%;
	color: #666;
	cursor: pointer;
	transition: border-color 0.3s, background-color 0.3s;
}

#apply-now-body .apply-step-3 .file-uploader:hover {
	border-color: #999;
	background-color: #f9f9f9;
}

#apply-now-body .apply-step-3 .file-uploader.dragover {
	border-color: #007bff;
	background-color: #f0f8ff;
}

#apply-now-body .apply-step-3 .file-input {
	display: none;
}

#apply-now-body .apply-step-3 .upload-text {
	font-size: 14px;
	line-height: 1.5;
	word-break: break-all;
	color: rgba(0, 0, 0, 0.5);
	leading-trim: both;
	text-edge: cap;
	font-style: normal;
	font-weight: 400;
	line-height: 129%; /* 15.48px */
	text-transform: capitalize;
}
#apply-now-body .apply-step-3 .upload-text span {
	font-size: 12px;
}
#apply-now-body .apply-step-3 h5 {
	color: #262626;
	leading-trim: both;
	text-edge: cap;
	font-size: 16px;
	font-style: normal;
	font-weight: 500;
	line-height: 132%;
	text-transform: capitalize;
	margin-bottom: 8px;
}

#apply-now-body .apply-step-3 p {
	color: #262626;
	text-align: center;
	leading-trim: both;
	text-edge: cap;
	font-size: 14px;
	font-style: normal;
	font-weight: 400;
	line-height: 132%; /* 18.48px */
	text-transform: capitalize;
}
#apply-now-body .apply-step-3 .input_field {
	border-radius: 4px;
	border: 1px solid #515151;
	background: #fff;
	padding: 14px 10px;
	outline: none;
	color: black;
	leading-trim: both;
	text-edge: cap;
	font-size: 12px;
	font-style: normal;
	font-weight: 400;
	line-height: 129%;
	text-transform: capitalize;
	width: 100%;
}
#apply-now-body .apply-step-3 .grid_input {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 24px 12px;
}
#apply-now-body .apply-step-3 h4 {
	color: #262626;
	leading-trim: both;
	text-edge: cap;
	font-size: 18px;
	font-style: normal;
	font-weight: 500;
	line-height: 132%; /* 23.76px */
	text-transform: capitalize;
	padding-bottom: 10px;
	border-bottom: 1px solid rgba(0, 0, 0, 0.3);
}

#apply-now-body .apply-step-3 .custom-select-wrapper {
	position: relative;
	width: 100%;
}

#apply-now-body .apply-step-3 .custom-select {
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	width: 100%;
	padding: 14px 10px;
	font-size: 12px;
	color: #000;
	cursor: pointer;
	transition: border-color 0.3s;
	border-radius: 4px;
	border: 1px solid #515151;
	background: #fff;
}

#apply-now-body .apply-step-3 .custom-select:focus {
	outline: none;
	border-color: #000;
}

#apply-now-body .apply-step-3 .custom-select-icon {
	position: absolute;
	right: 12px;
	top: 50%;
	transform: translateY(-50%);
	pointer-events: none; /* so clicks go to the select */
}

.custom-date-wrapper {
	position: relative;
	width: 100%;
}

.custom-date-input {
	width: 100%;
	padding: 14px 10px;
	font-size: 16px;
	border: 1px solid #333;
	border-radius: 6px;
	background-color: #fff;
	color: #000;
	cursor: pointer;
	transition: border-color 0.3s;
	leading-trim: both;

	text-edge: cap;
	font-size: 12px;
	font-style: normal;
	font-weight: 400;
	line-height: 129%; /* 15.48px */
	text-transform: capitalize;
}

/* Remove native date icon in Chrome/Safari */
.custom-date-input::-webkit-calendar-picker-indicator {
	opacity: 0;
	cursor: pointer;
	position: absolute;
	width: 100%;
	height: 100%;
}

/* Remove native date icon in Firefox */
.custom-date-input::-moz-focus-inner {
	border: 0;
}

/* Optional focus style */
.custom-date-input:focus {
	border-color: #000;
	outline: none;
}

.custom-date-icon {
	position: absolute;
	right: 12px;
	top: 50%;
	transform: translateY(-50%);
	pointer-events: none; /* allows click to pass through */
}
#apply-now-body .apply-step-4 .box {
	padding: 14px 10px;
	border-radius: 4px;
	border: 1px solid #515151;
	display: flex;
	flex-direction: column;
	gap: 10px;
}
#apply-now-body .apply-step-4 .box ul {
	display: flex;
	flex-direction: column;
	gap: 10px;
}
#apply-now-body .apply-step-4 .box button {
	color: rgba(0, 0, 0, 0.5);
	leading-trim: both;
	text-edge: cap;
	font-size: 12px;
	font-style: normal;
	font-weight: 400;
	line-height: 129%;
	border: none;
	outline: none;
	display: block;
	width: fit-content;
	margin-left: auto;
}
#apply-now-body .apply-step-4 .box1 li {
	color: #333;
	leading-trim: both;
	text-edge: cap;
	font-size: 12px;
	font-style: normal;
	font-weight: 400;
	line-height: 129%; /* 15.48px */
}
#apply-now-body .apply-step-4 .box2 li,
#apply-now-body .apply-step-4 p {
	color: #333;
	leading-trim: both;
	text-edge: cap;
	font-size: 14px;
	font-style: normal;
	font-weight: 500;
	line-height: 129%;
	text-transform: capitalize;
}
#apply-now-body .apply-step-4 .box2 {
	margin-top: 12px;
}
#apply-now-body .apply-step-4 h3 {
	color: #262626;
	leading-trim: both;
	text-edge: cap;
	font-size: 16px;
	font-style: normal;
	font-weight: 500;
	line-height: 129%; /* 20.64px */
	text-transform: capitalize;
}
#apply-now-body .apply-step-4 h2 {
	color: #262626;
	leading-trim: both;
	text-edge: cap;
	font-size: 22px;
	font-style: normal;
	font-weight: 500;
	line-height: 132%; /* 29.04px */
	text-transform: capitalize;
	margin: 0;
	padding-bottom: 20px;
	border-bottom: 1px solid rgba(0, 0, 0, 0.502);
}
#apply-now-body .apply-step-4 .content-wrapper {
	gap: 20px;
}
#apply-now-body .apply-step-4 {
}
#apply-now-body .apply-step-4 .simple-info-table {
	width: 100%;
	max-width: 270px;
	border-collapse: collapse;
	font-size: 14px;
	color: #333;
}

#apply-now-body .apply-step-4 .simple-info-table td {
	border: 1px solid #515151;
	padding: 14px 10px;
	text-align: left;
	color: #333;
	leading-trim: both;
	text-edge: cap;
	font-size: 12px;
	font-style: normal;
	font-weight: 400;
	line-height: 129%;
	text-transform: capitalize;
}
#apply-now-body .complete-online-application .contents {
	padding: 20px 0;
	display: flex;
	flex-direction: column;
	align-items: center;
}
#apply-now-body .complete-online-application .contents h4 {
	color: #262626;
	text-align: center;
	leading-trim: both;
	text-edge: cap;
	font-size: 20px;
	font-style: normal;
	font-weight: 600;
	line-height: 129%; /* 25.8px */
	margin: 16px 0;
}
#apply-now-body .complete-online-application .contents p {
	color: #333;
	text-align: center;
	leading-trim: both;
	text-edge: cap;
	font-size: 14px;
	font-style: normal;
	font-weight: 400;
	line-height: 129%;
}
#apply-now-body .complete-online-application .contents h5 {
	color: #333;
	leading-trim: both;
	text-edge: cap;
	font-size: 16px;
	font-style: normal;
	font-weight: 500;
	line-height: 129%; /* 20.64px */
	text-align: center;
	margin-bottom: 12px;
}
#apply-now-body .complete-online-application .contents .box {
	border-radius: 4px;
	border: 1px solid #515151;
	background: rgba(149, 222, 255, 0.4);
	padding: 16px 10px;
	width: 100%;
	max-width: 310px;
	margin-top: 36px;
}
#apply-now-body .complete-online-application .contents .box p {
	color: rgba(0, 0, 0, 0.6);
	text-align: center;
	leading-trim: both;
	text-edge: cap;
	font-size: 12px;
	font-style: normal;
	font-weight: 400;
	line-height: 129%; /* 15.48px */
	margin-bottom: 24px;
}
#apply-now-body .complete-online-application .contents .box ul {
	display: flex;
	flex-direction: column;
	gap: 40px;
	width: 100%;
	border-left: 2px dashed #24252a;
	padding-top: 8px;
	margin-left: 8px;
}
#apply-now-body .complete-online-application .contents ul li {
	color: #929292;
	font-size: 14px;
	font-style: normal;
	font-weight: 400;
	line-height: 120%; /* 16.8px */
	letter-spacing: -0.14px;
	text-transform: capitalize;
	display: flex;
	align-items: center;
	gap: 40px;
	margin-left: -8px;
}
#apply-now-body .complete-online-application .contents ul li .circle {
	width: 15px;
	height: 15px;
	background-color: #929292;
	border-radius: 100%;
}
#apply-now-body .complete-online-application .contents ul li.success .circle {
	background-color: #24252a;
}

#apply-now-body .complete-online-application .contents ul li.success {
	color: #24252a;
}

#apply-now-body .download-and-check-issued-visa p {
	color: #24252a;
	font-size: 20px;
	font-style: normal;
	font-weight: 500;
	line-height: 130%; /* 26px */
	letter-spacing: -0.2px;
	text-transform: capitalize;
}
#apply-now-body .download-and-check-issued-visa .contents {
	border: 1px solid rgba(155, 155, 155, 0.15);
	margin-top: 20px;
}
#apply-now-body .download-and-check-issued-visa .download-visa-box {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 16px;
	border-bottom: 1px solid rgba(155, 155, 155, 0.15);
	background: #fafafa;
}
#apply-now-body .download-and-check-issued-visa .download-visa-box p {
	color: #6e6e6e;
	font-size: 16px;
	font-style: normal;
	font-weight: 500;
	line-height: 160%; /* 25.6px */
	letter-spacing: -0.192px;
}
#apply-now-body .download-and-check-issued-visa .download-visa-box button {
	border-radius: 51.262px;
	background: #f2553c;
	padding: 15.534px 30px;
	color: #fff;
	text-align: center;
	font-size: 16px;
	font-style: normal;
	font-weight: 500;
	line-height: 20.194px;
}
#apply-now-body .download-and-check-issued-visa ul li {
	list-style: disc;
}
#apply-now-body .download-and-check-issued-visa ul {
	padding-left: 16px;
}
#apply-now-body .download-and-check-issued-visa .hr-line {
	border-top: 1px solid rgba(155, 155, 155, 0.15);
	width: 100%;
	height: 1px;
}
#apply-now-body .download-and-check-issued-visa ul li,
#apply-now-body .download-and-check-issued-visa span {
	color: #6e6e6e;
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: 160%; /* 25.6px */
	letter-spacing: -0.192px;
}

#apply-now-body .download-and-check-issued-visa .box_wrapper {
	padding: 16px;
	display: flex;
	flex-direction: column;
	gap: 16px;
}
#apply-now-body .download-and-check-issued-visa .box_item .badge {
	color: #262626;
	text-align: center;
	font-size: 14px;
	font-style: normal;
	font-weight: 500;
	line-height: 160%; /* 22.4px */
	letter-spacing: -0.168px;
	padding: 12px;
	border-radius: 9999px;
	border: 1px solid rgba(155, 155, 155, 0.15);
	background: #fafafa;
	display: flex;
	align-items: center;
	gap: 8px;
	width: fit-content;
	margin-bottom: 8px;
}
#apply-now-body .download-and-check-issued-visa .box_item .badge .circle {
	width: 12px;
	height: 12px;
	border-radius: 100%;
}
#apply-now-body .download-and-check-issued-visa .button {
	border-radius: 0px !important;
}

.modal-dialog:has(.download-and-check-issued-visa.active) {
	max-width: 600px;
}

/* Responsive  */

@media all and (max-width: 639px) {
	.modal-content {
		padding: 20px;
		padding-top: 20px;
	}
	.modal-header {
		padding-bottom: 16px;
		margin-bottom: 24px;
	}
	.modal-header h5 {
		font-size: 18px;
	}
	#my-page-body .input_item label {
		font-size: 14px;
	}
	#my-page-body .input_item input {
		padding: 15px 10px;
	}

	#my-page-body .my-page-2 {
		gap: 20px;
	}
	#my-page-body p {
		font-size: 16px;
	}
	#my-page-body ul {
		gap: 20px;
		padding-top: 5px;
	}
	#my-page-body ul li {
		font-size: 12px;
		margin-left: -8px;
		display: flex;
		align-items: center;
		gap: 28px;
	}
	#my-page-body ul li.success {
		color: #24252a;
	}

	#apply-now-body .progress-texts span {
		font-size: 10px;
	}

	#apply-now-body h3 {
		font-size: 18px;
	}
	#apply-now-body h2 {
		font-size: 18px;
		margin-bottom: 12px;
	}
	#apply-now-body .content-wrapper {
		gap: 16px;
	}
	#apply-now-body label {
		font-size: 14px;
	}

	#apply-now-body .grid-contents .visa-type-tab-btn,
	#apply-now-body .grid-contents .number-of-applicants-tab-btn,
	#apply-now-body .grid-contents select {
		font-size: 12px;
		height: 44px;
		padding: 5px;
	}
	#apply-now-body .apply-step-2 li,
	#apply-now-body .apply-step-2 span {
		font-size: 12px;
	}
	#apply-now-body .apply-step-2 p,
	#apply-now-body .apply-step-2 h6 {
		font-size: 14px;
	}
	#apply-now-body .apply-step-2 .content-wrapper img.passport {
		max-width: 100% !important;
	}
	#apply-now-body .apply-step-2 .checkbox_wrapper {
		padding: 10px 10px;
		gap: 4px;
		margin-top: 12px;
	}
	#apply-now-body .btn_group button {
		font-size: 16px;
		padding: 10px;
	}

	#apply-now-body .apply-step-3 h5 {
		font-size: 14px;
	}
	#apply-now-body .apply-step-3 h4 {
		font-size: 14px;
	}
	#apply-now-body .apply-step-3 .custom-select,
	#apply-now-body .apply-step-3 .input_field {
		padding: 12px 6px;
		font-size: 14px;
	}

	#apply-now-body .contents_wrapper {
		gap: 16px;
	}

	#apply-now-body .complete-online-application .contents h4 {
		font-size: 16px;
		margin: 12px 0;
	}
	#apply-now-body .complete-online-application .contents p {
		font-size: 12px;
	}
	#apply-now-body .complete-online-application .contents h5 {
		font-size: 14px;
	}
	#apply-now-body .complete-online-application .contents .box {
		margin-top: 26px;
	}
	#apply-now-body .complete-online-application .contents .box p {
		font-size: 12px;
		margin-bottom: 24px;
	}
	#apply-now-body .complete-online-application .contents .box ul {
		gap: 20px;
	}
	#apply-now-body .complete-online-application .contents ul li {
		font-size: 12px;
		gap: 20px;
	}
	#apply-now-body .download-and-check-issued-visa p {
		font-size: 16px;
	}
	#apply-now-body .download-and-check-issued-visa .download-visa-box {
		flex-wrap: wrap;
		align-items: center;
		justify-content: center;
		gap: 10px;
	}

	#apply-now-body .download-and-check-issued-visa ul li,
	#apply-now-body .download-and-check-issued-visa span {
		font-size: 14px;
	}
}

@media all and (max-width: 425px) {
	#apply-now-body .apply-step-3 .grid_input {
		display: grid;
		grid-template-columns: repeat(1, 1fr);
		gap: 24px 12px;
	}
	#apply-now-body .select_content_wrapper {
		padding: 5px 10px !important;
	}
	#apply-now-body .btn_group {
		grid-template-columns: repeat(1, 1fr);
		gap: 12px;
	}
}

/* ==== Home CSS ==== */
/* hero start */
#hero {
	background: linear-gradient(180deg, #e53935 23.5%, #ff7043 114.83%);
	padding-top: 160px;
	overflow: hidden;
}

#hero h1 {
	color: #fff;
	text-align: center;
	font-size: 64px;
	font-style: normal;
	font-weight: 500;
	line-height: 115%; /* 73.6px */
	letter-spacing: -1.92px;
	margin-bottom: 16px;
}
#hero p {
	color: #fff;
	text-align: center;
	font-size: 22px;
	font-style: normal;
	font-weight: 500;
	line-height: 160%;
	letter-spacing: -0.264px;
	margin: 0;
	margin-bottom: 48px;
}

#hero .apply-now-btn {
	color: #333;
	text-align: center;
	text-shadow: 0.5px 0.5px 1px rgba(69, 144, 178, 0.1);
	font-size: 16px;
	font-style: normal;
	font-weight: 500;
	line-height: 160%; /* 25.6px */
	letter-spacing: -0.192px;
	padding: 12px 32px;
	border-radius: 9999px;
	background: #ffb300;
	display: flex;
	width: fit-content;
	margin: 0 auto;
	align-items: center;
	gap: 8px;
}
#hero .swiper_wrapper {
	max-width: 389px;
	width: 100%;
	margin: 0 auto;
	margin-top: 23px;
	position: relative;
}
#hero .swiper_wrapper .blur_bg {
	background: linear-gradient(
		180deg,
		rgba(255, 255, 255, 0) 0%,
		rgba(255, 255, 255, 0.5) 100%
	);
	backdrop-filter: blur(2px);
	height: 50%;
	width: 100%;
	position: absolute;
	bottom: 0;
	left: 0;
}
#hero .swiper {
	width: 100%;
	overflow: hidden;
}

#hero .swiper-slide {
	color: #000;
	border-radius: 7.78px;
	background: #fff;
	margin-bottom: -62%;
}
#hero .swiper-slide h5 {
	color: #262626;
	leading-trim: both;
	text-edge: cap;
	font-size: 17.087px;
	font-style: normal;
	font-weight: 600;
	line-height: 129%; /* 22.043px */
	text-transform: capitalize;
}
#hero .swiper-slide p {
	width: 100%;
	color: #24252a;
	font-size: 15.534px;
	font-style: normal;
	font-weight: 500;
	line-height: 130%; /* 20.194px */
	letter-spacing: -0.155px;
	text-transform: capitalize;
	margin: 0;
	padding: 0;
	text-align: left;
	padding-bottom: 18px;
}
#hero .swiper-slide .top-bar {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding-bottom: 18px;
	border-bottom: 1px solid rgba(0, 0, 0, 0.5);
	margin-bottom: 24px;
}

#hero .swiper-button-next,
#hero .swiper-button-prev {
	display: none;
}

#hero .swiper-pagination-bullet {
	display: none;
}

#hero .swiper-slide ul {
	display: flex;
	flex-direction: column;
	gap: 30px;
	border-left: 2px dashed #24252a;
	margin-bottom: 30px;
	padding-top: 8px;
}
#hero .swiper-slide ul li {
	color: #929292;
	font-size: 12.427px;
	font-style: normal;
	font-weight: 400;
	line-height: 120%;
	letter-spacing: -0.124px;
	text-transform: capitalize;
	display: flex;
	align-items: center;
	gap: 20px;
	margin-left: -8px;
}
#hero .swiper-slide ul li.success {
	color: #24252a;
}
#hero .swiper-slide ul li .circle {
	width: 15px;
	height: 15px;
	min-height: 15px;
	min-width: 15px;
	border-radius: 100%;
	background-color: #929292;
}
#hero .swiper-slide ul li.success .circle {
	background-color: #24252a;
}
#hero .swiper-slide .again-btn {
	border-radius: 51.262px;
	background: #f2553c;
	color: #fff;
	text-align: center;
	font-family: Paperlogy;
	font-size: 14px;
	font-style: normal;
	font-weight: 500;
	line-height: 20.194px;
	width: 100%;
	padding: 15px;
}
#hero .swiper-slide ul {
}
/* hero end */

/* why choos us start */

#service h1 {
	padding-bottom: 24px;
}
#service .card_contents_wrapper {
	padding-top: 48px;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 10px 0;
}
#service .card_contents_wrapper .card_item {
	padding: 24px;
	border-right: 1px solid rgba(155, 155, 155, 0.24);
}
#service .card_contents_wrapper .card_item:last-child {
	border-right: 1px solid transparent;
}
#service .card_contents_wrapper .card_item .icon_wrapper {
	border-radius: 12px;
	background: #e53935;
	box-shadow: 0px -6px 12px 0px rgba(255, 255, 255, 0.1) inset;
	width: 72px;
	height: 72px;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 16px;
}
#service .card_contents_wrapper .card_item .icon_wrapper img {
	width: 100%;
	height: 100%;
}
#service .card_item p {
	color: #6e6e6e;
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: 160%;
	letter-spacing: -0.192px;
	max-width: 265px;
}
#service h2 {
	color: #262626;
	font-size: 24px;
	font-style: normal;
	font-weight: 600;
	line-height: 140%;
	letter-spacing: -0.288px;
	margin-top: 24px;
	margin-bottom: 8px;
}

/* why choos us end */

/* pricing start*/

#pricing h1 {
	margin-bottom: 12px;
}
#pricing .tab {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 12px;
	margin-top: 64px;
	margin-bottom: 40px;
}
#pricing .tab button {
	display: flex;
	align-items: center;
	gap: 8px;
	color: #515151;
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: 160%;
	letter-spacing: -0.192px;
	border-radius: 9999px;
	border: 1px solid #515151;
	padding: 8px 16px;
}
#pricing .tab button.active {
	color: white;
	border-radius: 9999px;
	background: #515151;
}
#pricing .tab button.single svg path {
	stroke: #515151;
}
#pricing .tab button.active.single svg path {
	stroke: #fff;
}
#pricing .tab button.multiple svg path {
	fill: #515151;
}
#pricing .tab button.active.multiple svg path {
	fill: #fff;
}
#pricing .grid_contents {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
	margin-bottom: 80px;
}
#pricing .grid_contents .card_item {
	padding: 20px 25px;
	border-radius: 24px;
	border: 1px solid rgba(155, 155, 155, 0.15);
	background: #fff;
	transition: all 0.3s ease-in-out;
}
#pricing .grid_contents .card_item:hover {
	background-color: #e53935;
}
#pricing .card_item button {
	border-radius: 9999px;
	border: 1px solid rgba(155, 155, 155, 0.15);
	background: rgba(255, 255, 255, 0.15);
	backdrop-filter: blur(24px);
	padding: 6px 20px;
	color: #262626;
	font-size: 20px;
	font-style: normal;
	font-weight: 400;
	line-height: 160%; /* 32px */
	letter-spacing: -0.24px;
	transition: all 0.3s ease-in-out;
}
#pricing h3 {
	color: #1b1b1b;
	font-size: 32px;
	font-style: normal;
	font-weight: 500;
	line-height: 110%;
	letter-spacing: -0.96px;
	margin-top: 30px;
	margin-bottom: 12px;
	transition: all 0.3s ease-in-out;
}
#pricing .grid_contents p {
	color: #515151;
	font-size: 18px;
	font-style: normal;
	font-weight: 400;
	line-height: 160%;
	letter-spacing: -0.216px;
	transition: all 0.3s ease-in-out;
}

#pricing .grid_contents .card_item:hover button {
	color: white;
}
#pricing .grid_contents .card_item:hover h3 {
	color: white;
}
#pricing .grid_contents .card_item:hover p {
	color: white;
}
#pricing button.dark-btn {
	display: block;
	width: fit-content;
	margin: 0 auto;
}
/* pricing end */

/* application_process start  */
#application_process p.description_text {
	margin-top: 12px;
}
#application_process .grid_contents {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 10px;

	background-image: url(/assets/img/application-process-bg.png);
	background-repeat: no-repeat;
	background-position: center;
	max-width: 1440px;
	margin: 0 auto;
	padding: 0 80px;
	padding-top: 48px;
	padding-bottom: 128px;
}
#application_process .card_item {
	padding: 20px 16.9px;
	border-radius: 8px;
	border: 1px solid rgba(0, 0, 0, 0.15);
	background: #f9f9f9;
}
#application_process h2 {
	color: rgba(27, 27, 27, 0.6);
	font-size: 18px;
	font-style: normal;
	font-weight: 500;
	line-height: 120%;
	letter-spacing: -0.72px;
	margin-bottom: 18px;
}
#application_process h3 {
	color: #1b1b1b;
	text-align: center;
	font-size: 20px;
	font-style: normal;
	font-weight: 500;
	line-height: 120%;
	letter-spacing: -1.2px;
	padding: 10px 0;
}
#application_process p {
	color: #6d6d6d;
	text-align: center;
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: 150%;
	letter-spacing: -0.48px;
}
#application_process img.card_img {
	width: 100%;
	height: 128px;
}

/* application_process end  */

/* faq start  */
#faq h1 {
	margin-bottom: 12px;
}

#faq .faq_container {
	max-width: 880px;
	margin: 0 auto;
	padding: 80px 0;
}
#faq .accordion {
	--bs-accordion-active-bg: none;
	--bs-accordion-btn-focus-box-shadow: none;
}
#faq .accordion-item button {
	background-color: transparent;
	border: none;
	outline: none;
	padding: 0 !important;
	color: #262626;
	font-size: 22px;
	font-style: normal;
	font-weight: 500;
	line-height: 140%; /* 30.8px */
	letter-spacing: -0.264px;
}
#faq .accordion-item {
	border: none;
	outline: none;
	border-radius: 24px;
	border: 1px solid rgba(155, 155, 155, 0.15);
	background: #fff;
	margin-bottom: 24px;
	padding: 0 !important;
}
/* #faq .accordion-body {
	padding: 16px 0;
} */
#faq .accordion-button:not(.collapsed) {
	box-shadow: none;
}

#faq .more_btn {
	border-radius: 9999px;
	background: #ffb300;
	padding: 12px 32px;
	color: #333;
	text-align: center;
	text-shadow: 0.5px 0.5px 1px rgba(69, 144, 178, 0.1);
	font-size: 16px;
	font-style: normal;
	font-weight: 500;
	line-height: 160%;
	letter-spacing: -0.192px;
	display: flex;
	align-items: center;
	gap: 8px;
	justify-content: center;
	width: fit-content;
	margin: 0 auto;
	border: none;
	outline: none;
}
/* faq end */

/* testimonial start */
#testimonial span {
	color: rgba(38, 38, 38, 0.5);
	text-align: center;
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
	letter-spacing: 4px;
	text-transform: uppercase;
	display: block;
	width: fit-content;
	margin: 0 auto;
}
#testimonial h1 {
	margin: 12px 0;
}
#testimonial .testimonial-container {
	display: flex;
	flex-wrap: wrap;
	gap: 50px;
	justify-content: center;
	position: relative;
	margin: 0 auto;
	align-items: flex-end;
	margin-top: 50px;
	margin-bottom: 107px;
}

#testimonial .testimonial {
	border-radius: 16px;
	width: 100%;
	max-width: 361px;
	position: relative;
	padding: 32px;
}
#testimonial .testimonial .icon {
	position: absolute;
	bottom: 0;
	left: -20px;
}

#testimonial .stars {
	display: flex;
	align-items: center;
	gap: 5px;
}
#testimonial .testimonial p {
	color: #1a1a1a;
	font-size: 16px;
	font-style: normal;
	font-weight: 500;
	line-height: 23.4px;
	padding: 16px 0;
}
#testimonial .testimonial h6 {
	color: #1a1a1a;
	font-size: 16px;
	font-style: normal;
	font-weight: 500;
	line-height: 23.4px;
}
#testimonial .testimonial .bubble {
	width: 98px;
	aspect-ratio: 1/1;
	background: #d9d9d9;
	border-radius: 100%;
	position: absolute;
	right: 32px;
	top: -49px;
}
#testimonial .testimonial .odd_bubble {
	width: 98px;
	height: 98px;
	aspect-ratio: 1 / 1;
	background: #d9d9d9;
	border-radius: 50%;
	position: absolute;
	right: 32px;
	bottom: -49px !important;
}
#testimonial .testimonial .bubble img,
#testimonial .testimonial .odd_bubble img {
	width: 100%;
	border-radius: 50%;
	object-fit: cover;
	aspect-ratio: 1;
}
#testimonial .testimonial.testimonial_item2 {
	margin-bottom: 70px;
}

/* kakao_talk */
#kakao_talk {
	border-radius: 100%;
	background: #fee102;
	box-shadow: 4px 6px 10px 0px rgba(0, 0, 0, 0.2);
	width: 200px;
	height: 200px;
	aspect-ratio: 1/1;
	position: fixed;
	right: 60px;
	bottom: 60px;
	padding: 30px;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 8px;
	z-index: 2;
}
#kakao_talk img {
	width: 60px;
	aspect-ratio: 1/1;
}
#kakao_talk p {
	color: #000;
	font-size: 14px;
	font-style: normal;
	font-weight: 500;
	line-height: 115%;
	letter-spacing: -0.42px;
	max-width: 140px;
	text-align: center;
}
#kakao_talk button {
	color: #fee102;
	text-align: center;
	font-size: 14px;
	font-style: normal;
	font-weight: 400;
	line-height: 115%; /* 16.1px */
	letter-spacing: -0.42px;
	border-radius: 12px;
	background: #000;
	padding: 8px;
	white-space: nowrap;
}

@media (max-width: 768px) {
	.testimonial {
		max-width: 100%;
	}
}
/* testimonial end */

/* ----------------- RESPONSIVE ----------------- */
@media all and (max-width: 1280px) {
	#service .card_contents_wrapper {
		padding-top: 28px;
		grid-template-columns: repeat(2, 1fr);
	}
	#service .card_contents_wrapper .card_item:nth-child(even) {
		border-right: none;
	}
	#pricing .grid_contents {
		grid-template-columns: repeat(2, 1fr);
	}
	#application_process .grid_contents {
		grid-template-columns: repeat(2, 1fr);
		padding: 0 40px;
		padding-top: 48px;
		padding-bottom: 80px;
	}
	#faq .faq_container {
		padding: 40px 0;
	}

	#testimonial .testimonial .bubble {
		width: 78px;
		aspect-ratio: 1/1;
		background: #d9d9d9;
		border-radius: 100%;
		position: absolute;
		right: 32px;
		top: -49px;
	}
	#testimonial .testimonial .odd_bubble {
		width: 78px;
		height: 78px;
		bottom: 0px !important;
		top: -39px !important;
	}
	#testimonial .testimonial.testimonial_item2 {
		margin-bottom: 0px;
	}
	#testimonial .testimonial-container {
		gap: 80px;
		padding: 0 20px;
	}
	#hero {
		padding-top: 100px;
	}
	#hero h1 {
		font-size: 48px;
	}
}

@media all and (max-width: 1023px) {
	#hero p {
		font-size: 18px;
		letter-spacing: -0.164px;
	}
	#service .card_contents_wrapper .card_item .icon_wrapper {
		width: 48px;
		height: 48px;
		padding: 12px;
	}

	#service .card_item p {
		font-size: 14px;
	}
	#service h2 {
		font-size: 18px;
		margin-top: 24px;
		margin-bottom: 8px;
	}
	#pricing .card_item button {
		font-size: 16px;
		padding: 6px 16px;
	}
	#pricing h3 {
		font-size: 24px;
		margin-top: 20px;
		margin-bottom: 12px;
	}
	#pricing .grid_contents p {
		font-size: 16px;
	}
	#pricing .grid_contents {
		margin-bottom: 60px;
	}
	#pricing .tab {
		margin-top: 40px;
		margin-bottom: 30px;
	}
	#application_process h2 {
		font-size: 16px;
		margin-bottom: 10px;
	}
	#application_process h3 {
		font-size: 18px;
	}
	#application_process p {
		font-size: 14px;
	}
	#testimonial .testimonial-container {
		margin-top: 20px;
		margin-bottom: 60px;
	}

	#kakao_talk {
		width: 180px;
		height: 180px;
		right: 30px;
		bottom: 30px;
		padding: 30px;
		gap: 8px;
	}
	#kakao_talk img {
		width: 40px;
	}
	#kakao_talk p {
		font-size: 12px;
		max-width: 140px;
	}
	#kakao_talk button {
		font-size: 12px;
		padding: 8px;
	}
}

@media all and (max-width: 767px) {
	#hero {
		padding-top: 60px;
	}
	#hero h1 {
		font-size: 32px;
	}
	#hero p {
		margin-bottom: 24px;
		font-size: 14px;
	}
}
@media all and (max-width: 639px) {
	#service .card_contents_wrapper {
		padding-top: 28px;
		grid-template-columns: repeat(1, 1fr);
	}
	#service .card_contents_wrapper .card_item {
		border-right: none;
		border-bottom: 1px solid rgba(0, 0, 0, 0.24);
	}
	#service .card_contents_wrapper .card_item:last-child {
		border-right: none;
		border-bottom: none;
	}
	#hero p {
		font-size: 16px;
		letter-spacing: -0.164px;
	}
	#pricing .grid_contents {
		grid-template-columns: repeat(1, 1fr);
	}
	#application_process .grid_contents {
		grid-template-columns: repeat(1, 1fr);
		padding: 0 16px;
		padding-top: 24px;
		padding-bottom: 40px;
	}

	#faq .accordion-item button {
		font-size: 18px;
	}
	#faq .accordion-item {
		border-radius: 16px;
		margin-bottom: 16px;
		padding: 16px;
	}
	#faq .accordion-body {
		padding: 8px 0;
	}
	#testimonial .testimonial {
		padding: 20px;
	}
}

@media all and (max-width: 425px) {
	#hero .swiper-slide h5 {
		font-size: 15px;
	}
	#hero .swiper-slide p {
		font-size: 14px;
	}
	#hero .swiper-slide ul li {
		font-size: 12.427px;
		gap: 10px;
	}
	#kakao_talk {
		width: 120px;
		height: 120px;
		right: 20px;
		bottom: 20px;
		padding: 10px;
		gap: 4px;
	}
	#kakao_talk img {
		width: 30px;
	}
	#kakao_talk p {
		font-size: 10px;
		max-width: 80px;
	}
	#kakao_talk button {
		font-size: 10px;
		padding: 4px;
		border-radius: 4px;
	}
}

#hero .hero-content-wrapper {
	background-image: url("/assets/icons/map.svg");
	background-repeat: no-repeat;
	background-position: 0 -25px;
}

/* ==== Faqs CSS ==== */

#faq {
	background-color: #f5f4fe;
	padding: 100px 0 120px 0;
}
#faq h1 {
	margin-bottom: 12px;
}

#faq .faq_container {
	max-width: 880px;
	margin: 0 auto;
	padding-top: 80px;
}
#faq .accordion {
	--bs-accordion-active-bg: none;
	--bs-accordion-btn-focus-box-shadow: none;
}
#faq .accordion-item button {
	background-color: transparent;
	border: none;
	outline: none;
	padding: 24px !important;
	color: #262626;
	font-size: 22px;
	font-style: normal;
	font-weight: 500;
	line-height: 140%; /* 30.8px */
	letter-spacing: -0.264px;
	display: flex;
	align-items: center;
	gap: 12px;
}
#faq .accordion-item {
	border: none;
	outline: none;
	border-radius: 24px;
	border: 1px solid rgba(155, 155, 155, 0.15);
	background: #fff;
	margin-bottom: 24px;
	padding: 0;
}
#faq .accordion-body {
	color: #515151;
	font-size: 18px;
	font-style: normal;
	font-weight: 400;
	line-height: 160%;
	letter-spacing: -0.216px;
}
#faq .accordion-body {
	padding: 0 24px 24px;
}
#faq .accordion-button:not(.collapsed) {
	box-shadow: none;
}

#faq .more_btn {
	border-radius: 9999px;
	background: #ffb300;
	padding: 12px 32px;
	color: #333;
	text-align: center;
	text-shadow: 0.5px 0.5px 1px rgba(69, 144, 178, 0.1);
	font-size: 16px;
	font-style: normal;
	font-weight: 500;
	line-height: 160%;
	letter-spacing: -0.192px;
	display: flex;
	align-items: center;
	gap: 8px;
	justify-content: center;
	width: fit-content;
	margin: 0 auto;
	border: none;
	outline: none;
}
/* faq end */

/* reponsive  */

@media all and (max-width: 1023px) {
	#faq {
		background-color: #f5f4fe;
		padding: 50px 0 60px 0;
	}
	#faq .faq_container {
		padding-top: 40px;
	}
}
@media all and (max-width: 767px) {
	#faq .accordion-item button {
		font-size: 18px;
	}
}
@media all and (max-width: 639px) {
	#faq .accordion-item button {
		font-size: 16px;
	}
	#faq .accordion-body {
		font-size: 14px;
	}
	#faq .accordion-item {
		padding: 16px;
		margin-bottom: 16px;
	}
}
.list-order {
	padding-left: 20px;
}
.list-order li {
	list-style-type: decimal;
}
button:not(:disabled) {
	cursor: pointer !important;
}
