html, body {
	width: 100%;
	height: 100%;
	-webkit-overflow-scrolling: touch;
	background-color: transparent;
}

.main-container {
	width: 100%;
	padding: 0 5%;
	max-width: 1440px;
	margin: auto;
	position: relative;
}

.pc_layout {
	display: none;
}

.mb_layout {
	display: block;
}

.non-select {
	user-select: none;
	-moz-user-select: none;
	-webkit-user-drag: none;
	-webkit-user-select: none;
	-ms-user-select: none;
}

.flex-left {
	display: -webkit-flex;
	display: flex;
	-webkit-align-items: center;
	align-items: center;
	-webkit-justify-content: flex-start;
	justify-content: flex-start;
}

.flex-right {
	display: -webkit-flex;
	display: flex;
	-webkit-align-items: center;
	align-items: center;
	-webkit-justify-content: flex-end;
	justify-content: flex-end;
}

@media all and (min-width:992px) {

	.main-container {
		padding: 0 30px;
	}

	.pc_layout {
		display: block;
	}

	.mb_layout {
		display: none;
	}
}

/*--------------------------------------------------*/
/* banner container									*/
/*--------------------------------------------------*/

.banner-container {
	width: 100%;
	padding: 50px 0px 100px 0px;
	position: relative;
	color: #FFFFFF;
	background-color: #0B1D51;
	overflow: hidden;
}

.banner-container::before,
.banner-container::after {
	content: '';
	position: absolute;
	width: 200px;
	height: 200px;
	background: rgba(255, 255, 255, 0.06);
	transform: rotate(45deg);
}

.banner-container::before {
	top: -60px;
	left: -30px;
}

.banner-container::after {
	bottom: -60px;
	right: -30px;
}

.banner-diamond-1 {
	position: absolute;
	width: 160px;
	height: 160px;
	background: rgba(255, 255, 255, 0.04);
	transform: rotate(45deg);
	top: -40px;
	left: 60px;
}

.banner-diamond-2 {
	position: absolute;
	width: 140px;
	height: 140px;
	background: rgba(255, 255, 255, 0.08);
	transform: rotate(45deg);
	top: 20px;
	left: -20px;
}

.banner-diamond-3 {
	position: absolute;
	width: 160px;
	height: 160px;
	background: rgba(255, 255, 255, 0.04);
	transform: rotate(45deg);
	bottom: -40px;
	right: 60px;
}

.banner-diamond-4 {
	position: absolute;
	width: 140px;
	height: 140px;
	background: rgba(255, 255, 255, 0.08);
	transform: rotate(45deg);
	bottom: 20px;
	right: -20px;
}

.banner-container .main-container {
	max-width: 1275px;
}

.banner-container h1 {
	font-size: 28px;
	font-weight: bold;
	line-height: 1.3;
	margin: 0;
	text-align: center;
	position: relative;
	z-index: 1;
}

@media all and (min-width:992px) {

	.banner-container {
		padding: 139px 0px 169px 0px;
	}

	.banner-container::before,
	.banner-container::after {
		width: 300px;
		height: 300px;
	}

	.banner-container::before {
		top: -100px;
		left: -50px;
	}

	.banner-container::after {
		bottom: -100px;
		right: -50px;
	}

	.banner-diamond-1 {
		width: 240px;
		height: 240px;
		top: -70px;
		left: 80px;
	}

	.banner-diamond-2 {
		width: 200px;
		height: 200px;
		top: 10px;
		left: -30px;
	}

	.banner-diamond-3 {
		width: 240px;
		height: 240px;
		bottom: -70px;
		right: 80px;
	}

	.banner-diamond-4 {
		width: 200px;
		height: 200px;
		bottom: 10px;
		right: -30px;
	}

	.banner-container h1 {
		font-size: 52px;
	}
}

/*--------------------------------------------------*/
/* form section										*/
/*--------------------------------------------------*/

.form-section {
	background-color: #EEF1F6;
	padding: 40px 0 60px 0;
	position: relative;
}

.form-section .main-container {
	max-width: 660px;
}

/* contact info card */
.contact-card {
	background: #FFFFFF;
	border-radius: 12px;
	padding: 30px 20px;
	box-shadow: 0px 0px 15px #31497F29;
	margin-top: -100px;
	position: relative;
	z-index: 2;
}

.form-row {
	display: flex;
	flex-direction: column;
	gap: 0;
}

.form-divider {
	margin-top: 30px;
	margin-bottom: 30px;
	border: 1px solid #E8E8E8;
}	

.form-group {
	margin-bottom: 20px;
	display: flex;
	flex-direction: column;
}

.form-group:last-child {
	margin-bottom: 0px;
}

.form-group.inline {
	flex-direction: row;
	align-items: center;
}

.form-group label {
	font-size: 16px;
	color: #2B2B2B;
	margin-bottom: 6px;
	white-space: nowrap;
	min-width: 120px;
}

.form-group.inline label {
	margin-bottom: 0;
	margin-right: 12px;
}

.form-group .iti {
	width: 100%;
}

.form-group .iti__selected-flag {
	background-color: #F0F0F0;
	border-radius: 4px 0 0 4px;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group select,
.form-group textarea {
	width: 100%;
	padding: 10px 12px;
	font-size: 14px;
	border: 1px solid #B7B7B7;
	border-radius: 4px;
	outline: none;
	color: #2B2B2B;
	background-color: #FFFFFF;
	transition: border-color 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
	border-color: #0B1D51;
}

.form-group input::placeholder {
	color: #707070;
}

.form-group .input-pair {
	display: flex;
	gap: 8px;
}

.form-group .input-pair input {
	flex: 1;
}

.form-group select:invalid {
	color: #707070;
}

.form-group select option {
	color: #2B2B2B;
}

.form-group select {
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23666' d='M1.41 0L6 4.58 10.59 0 12 1.41l-6 6-6-6z'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 12px center;
	padding-right: 32px;
	cursor: pointer;
}

.form-group textarea {
	resize: vertical;
	min-height: 120px;
}

@media all and (min-width:992px) {
	
	.contact-card {
		padding: 60px 14.3333%;
		margin-top: -145px;
	}

	.form-group {
		margin-bottom: 28px;
		flex-direction: row;
		align-items: center;
	}

	.form-group label {
		font-size: 17px;
		margin-bottom: 0;
		margin-right: 16px;
		min-width: 100px;
		text-align: left;
	}

	.form-group .input-pair,
	.form-group input[type="text"],
	.form-group input[type="email"],
	.form-group input[type="tel"],
	.form-group select {
		max-width: 360px;
	}
}

/*--------------------------------------------------*/
/* services checkbox section						*/
/*--------------------------------------------------*/

.services-section {
	margin-top: 34px;
}

.services-section .section-title {
	font-size: 16px;
	font-weight: bold;
	color: #2B2B2B;
	margin-bottom: 18px;
}

.services-columns {
	display: flex;
	flex-direction: column;
	gap: 30px;
}

.services-column h3 {
	font-size: 16px;
	font-weight: bold;
	color: #5474CC;
	margin: 0 0 19px 0;
}

.checkbox-group {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.inp-checkbox {
	display: none;
}

.checkbox {
	margin: auto 0;
	cursor: pointer;
	display: flex;
	align-items: center;
	font-size: 16px;
	color: #2B2B2B;
	margin-bottom: 0;
}

.checkbox span {
	display: inline-block;
	vertical-align: middle;
	transform: translate3d(0, 0, 0);
}

.checkbox span:first-child {
	position: relative;
	width: 18px;
	height: 18px;
	border-radius: 3px;
	transform: scale(1);
	vertical-align: middle;
	border: 2px solid #00000061;
	transition: all .2s ease;
	margin-right: 8px;
	flex-shrink: 0;
}

.checkbox span:first-child svg {
	position: absolute;
	top: 2px;
	left: 1px;
	fill: none;
	stroke: #FFFFFF;
	stroke-width: 2;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-dasharray: 16px;
	stroke-dashoffset: 16px;
	transition: all .3s ease;
	transition-delay: .1s;
	transform: translate3d(0, 0, 0);
}

.checkbox span:first-child::before {
	content: "";
	width: 100%;
	height: 100%;
	background: #022585;
	display: block;
	transform: scale(0);
	opacity: 1;
	border-radius: 50%;
}

.checkbox:hover span:first-child {
	border-color: #022585;
}

.inp-checkbox:checked + .checkbox span:first-child {
	background: #022585;
	border-color: #022585;
	animation: wave .4s ease;
}

.inp-checkbox:checked + .checkbox span:first-child svg {
	stroke-dashoffset: 0;
}

.inp-checkbox:checked + .checkbox span:first-child::before {
	transform: scale(3.5);
	opacity: 0;
	transition: all .6s ease;
}

@keyframes wave {
	50% {
		transform: scale(0.9);
	}
}

@media all and (min-width:992px) {

	
	.services-section {
		margin-top: 60px;
	}

	.services-section .section-title {
		font-size: 17px;
		margin-bottom: 30px;
	}

	.services-columns {
		flex-direction: row;
		gap: 38px;
	}

	.services-column h3 {
		margin: 0 0 23px 0;
	}

	.services-column {
		flex: 1;
	}
	
	.checkbox-group {
		gap: 20px;
	}
}

/*--------------------------------------------------*/
/* dropdown fields section							*/
/*--------------------------------------------------*/

.dropdown-section {
	margin-top: 40px;
}

.dropdown-field {
	display: flex;
	flex-direction: column;
	gap: 12px;
	padding: 28px 0;
	border-top: 1px solid #C5CFE2;
	overflow: hidden;
	max-height: 200px;
	opacity: 1;
	transition: max-height 0.3s ease, opacity 0.3s ease, padding 0.3s ease;
}

.dropdown-field:last-child {
	border-top: none;
	padding: 0 0 32px 0;
	align-items: self-start;
}

.dropdown-field.collapsed {
	max-height: 0;
	opacity: 0;
	padding: 0;
	border-top-color: transparent;
}

.dropdown-field label {
	font-size: 16px;
	font-weight: bold;
	color: #2B2B2B;
	white-space: nowrap;
	margin-bottom: 0;
}

.dropdown-field select:invalid {
	color: #707070;
}

.dropdown-field select option {
	color: #2B2B2B;
}

.dropdown-field select,
.dropdown-field #inputDate {
	width: 100%;
	max-width: 100%;
	padding: 10px 12px;
	font-size: 14px;
	border: 1px solid #B7B7B7;
	border-radius: 4px;
	outline: none;
	color: #2B2B2B;
	background-color: #FFFFFF;
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23666' d='M1.41 0L6 4.58 10.59 0 12 1.41l-6 6-6-6z'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 12px center;
	padding-right: 32px;
	cursor: pointer;
	transition: border-color 0.2s;
}

.date-input-wrapper {
	position: relative;
	width: 100%;
}

.date-input-wrapper #inputDate {
	width: 100%;
}

.date-clear-btn {
	display: none;
	position: absolute;
	right: 14px;
	top: 50%;
	transform: translateY(-50%);
	font-size: 18px;
	cursor: pointer;
	line-height: 1;
}

.date-clear-btn:hover {
	color: #333;
}

.dropdown-field #inputDate {
	position: relative;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='4' width='18' height='18' rx='2' ry='2'/%3E%3Cline x1='16' y1='2' x2='16' y2='6'/%3E%3Cline x1='8' y1='2' x2='8' y2='6'/%3E%3Cline x1='3' y1='10' x2='21' y2='10'/%3E%3C/svg%3E");
	background-position: left 12px center;
	padding-left: 36px;
	padding-right: 30px;
}

.dropdown-field select:focus,
.dropdown-field #inputDate:focus {
	border-color: #0B1D51;
}

.schedule-text {
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.schedule-tip {
	font-size: 16px;
	font-weight: Bold;
	color: #5474CC;
	text-decoration: none;
	margin: 0;
}

.schedule-desc {
	font-size: 13px;
	color: #707070;
	margin: 0;
}

@media all and (min-width:992px) {

	.dropdown-field {
		flex-direction: row;
		align-items: center;
		justify-content: space-between;
		gap: 20px;
		padding: 32px 0;
	}

	.dropdown-field label {
		font-size: 17px;
		min-width: 290px;
	}
	
	.dropdown-field select,
	.dropdown-field #inputDate {
		max-width: 280px;
	}

	.dropdown-field .date-input-wrapper {
		max-width: 280px;
	}

	.schedule-text {
		gap: 8px;
	}

}

/*--------------------------------------------------*/
/* additional info section							*/
/*--------------------------------------------------*/

.additional-section {
	margin-top: 8px;
}

.additional-section label {
	display: block;
	font-size: 16px;
	font-weight: bold;
	color: #2B2B2B;
	margin-bottom: 14px;
}

.additional-section textarea {
	width: 100%;
	max-width: 600px;
	min-height: 140px;
	padding: 12px;
	font-size: 16px;
	border: 1px solid #B7B7B7;
	border-radius: 4px;
	outline: none;
	color: #2B2B2B;
	resize: none;
	transition: border-color 0.2s;
}

.additional-section textarea:focus {
	border-color: #0B1D51;
}

.additional-section .form-tip {
	font-size: 14px;
	margin-top: 14px;
}

/*--------------------------------------------------*/
/* submit button									*/
/*--------------------------------------------------*/

.submit-section {
	margin-top: 40px;
	text-align: center;
}

.submit-btn {
	display: inline-block;
	padding: 16px 60px;
	background-color: #022585;
	color: #FFFFFF;
	font-size: 17px;
	font-weight: bold;
	border: none;
	border-radius: 7px;
	cursor: pointer;
	transition: background-color 0.3s;
}

.submit-btn:hover {
	background-color: #0B40D1;
}

.submit-btn:active {
	background-color: #000E3A;
}

/*--------------------------------------------------*/
/* validation										*/
/*--------------------------------------------------*/

.form-group .input-wrapper {
	flex: 1;
}

.form-group.has-error input,
.form-group.has-error select {
	border-color: #E53935;
}

.error-msg {
	display: none;
	font-size: 12px;
	color: #E53935;
	margin-top: 4px;
}

.form-group.has-error .error-msg,
.services-section.has-error > .error-msg {
	display: block;
}

.services-section.has-error .section-title {
	color: #E53935;
}

/*--------------------------------------------------*/
/* success page										*/
/*--------------------------------------------------*/

.success-section {
	background-color: #EEF1F6;
	padding: 40px 0 80px 0;
}

.success-card {
	max-width: 600px;
	margin: 0 auto;
	text-align: center;
	padding: 60px 30px;
}

.success-icon {
	margin-bottom: 30px;
}

.success-title {
	font-size: 26px;
	font-weight: bold;
	color: #2B2B2B;
	margin: 0 0 16px 0;
}

.success-desc {
	font-size: 16px;
	line-height: 25px;
	color: #2B2B2B;
	margin: 0 0 48px 0;
}

.success-btn {
	display: inline-block;
	padding: 16px 22px;
	background-color: #022585;
	color: #FFFFFF;
	font-size: 17px;
	font-weight: bold;
	border: none;
	border-radius: 7px;
	cursor: pointer;
	text-decoration: none;
	transition: background-color 0.3s;
}

.success-btn:hover {
	color: #FFFFFF;
	background-color: #0B40D1;
	text-decoration: none;
}

.success-btn:active {
	color: #FFFFFF;
	background-color: #000E3A;
	text-decoration: none;
}
