#contactFormSec {
	width: 100%;
	display: block;
	padding-top: 128px;
	padding-bottom: 128px;
	background: #2662A3 url(../../images//menu-bg.svg) center center no-repeat
}

#contactFormSec .contactFormBox {
	width: 100%;
	display: flex;
	align-items: flex-start;
	justify-content: center;
	gap: 158px;
	padding: 0 157px;
}

#contactFormSec .contactFormBox .h2 {
	display: inline-block;
	margin: 0 0 32px 0;
	font-size: 2.375rem;
	color: #52D7FA;
	font-weight: 300;
	line-height: 2.75rem;
}

#contactFormSec .contactFormBox .h2 strong {
	color: #fff;
	font-weight: 700;
	font-style: italic;
}

#contactFormSec .contactFormBox p {
	display: block;
	width: 100%;
	margin: 0 0 16px 0;
	font-size: 1rem;
	color: #C6DAF1;
	font-weight: 400;
	line-height: 1.5rem;
}

#contactFormSec .contactFormBox p:last-child {
	margin-bottom: 0;
}


.contactDetail {
	float: left;
	width: 50%;
	max-width: 600px;
}

.contact_form {
	float: left;
	width: 50%;
	max-width: 537px;
	background-color: #fff;
	padding: 48px;
	border-radius: 8px
}

.contact_form .formRow {
	display: flex;
	gap: 16px;
	margin-bottom: 16px;
}

.contact_form .form-group {
	width: 33%;
}

.contact_form .form-group.half {
	width: 50%;
}

.contact_form .form-group.full {
	width: 100%;
}

.contact_form .phoneField {
	display: flex;
	gap: 8px;
}

.contact_form .form-group:last-child {
	margin-bottom: 0;
}

.contact_form .form-group label {
	float: left;
	width: 100%;
	margin-right: 0;
	margin-bottom: 2px;
	font-size: 1rem;
	font-weight: 400;
	color: #BDBCB8;
	line-height: 1.5rem;
}

.contact_form .grecoMenu {
	width: 50%;
	max-width: 212px;
	position: relative;
	z-index: 2;
}

.contact_form .grecoMenu>a {
	display: block;
	width: 100%;
	padding: 7px 15px;
	padding-right: 38px;
	background-color: transparent;
	border: 1px solid #E7E7E7;
	border-radius: 4px;
	font-size: 1rem;
	color: #6D6D6D;
	font-weight: 400;
	line-height: 1.5rem;
	transition: .25s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.contact_form .grecoMenu>a.disabled {
	border: 1px solid #E7E7E7;
	background-color: #F6F6F6;

}

.contact_form .grecoMenu>a::after {
	content: "";
	width: 24px;
	height: 24px;
	background-color: #2662A3;
	background-image: url("../../images//white-arrow.svg");
	background-position: center;
	background-repeat: no-repeat;
	border-radius: 4px;
	position: absolute;
	top: 8px;
	right: 8px;
	transition: .25s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.contact_form .grecoMenu>a.disabled::after {
	background-color: #D1D1D1;
}

.contact_form .grecoMenu>a:not(a.disabled):hover::after {
	background-color: #204F86;
	background-image: url(../../images//white-arrow.svg);
}

.contact_form .grecoMenu a.open+ul {
	transform: translateY(0em);
	opacity: 1;
	visibility: visible;
}

.contact_form .grecoMenu ul {
	width: 100%;
	min-width: 100px;
	list-style-type: none;
	margin: 10px 0 0 0;
	padding: 8px 8px;
	background-color: #ffffff;
	box-shadow: 0 0 15px 0 rgb(41 51 88 / 10%);
	border-radius: 5px;
	position: absolute;
	top: 100%;
	right: 0;
	transform: translateY(0.5em);
	opacity: 0;
	visibility: hidden;
	transition: .25s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.contact_form .grecoMenu ul li {
	display: block;
	font-size: 1rem;
	color: #6D6D6D;
	font-weight: 400;
	line-height: 1.5rem;
	text-transform: uppercase;
}

.contact_form .grecoMenu ul li a {
	display: block;
	padding: 4px 8px;
	background-color: transparent;
	border-radius: 4px;
	color: #6D6D6D;
	font-weight: 400;
	text-decoration: none;
	transition: .25s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.contact_form .grecoMenu ul li a:hover {
	background-color: #E5EDF9;
	color: #204F86;
}

.contact_form .grecoMenu ul li.current>a {
	pointer-events: none;
	background-color: transparent;
	color: #204F86;
	font-weight: 700;
}

.contact_form .contactPhoneCode {
	position: relative;
	z-index: 2;
}

.contact_form .contactPhoneCode>a {
	display: block;
	width: 100%;
	padding: 7px 15px;
	padding-right: 38px;
	background-color: #fff;
	border: 1px solid #E7E7E7;
	border-radius: 4px;
	font-size: 1rem;
	color: #6D6D6D;
	font-weight: 400;
	line-height: 1.5rem;
	transition: .25s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.contact_form .contactPhoneCode>a::after {
	content: "";
	width: 24px;
	height: 24px;
	background-color: #2662A3;
	background-image: url("../../images//white-arrow.svg");
	background-position: center;
	background-repeat: no-repeat;
	border-radius: 4px;
	position: absolute;
	top: 8px;
	right: 8px;
	transition: .25s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.contact_form .contactPhoneCode>a:hover::after {
	background-color: #204F86;
	background-image: url(../../images//white-arrow.svg);
}

.contact_form .contactPhoneCode a.open+ul {
	transform: translateY(0em);
	opacity: 1;
	visibility: visible;
}



.contact_form .form-group .form-control {
	display: block;
	width: 100%;
	height: 40px;
	padding: 6px 15px;
	border: 1px solid #E7E7E7;
	background-color: transparent;
	border-radius: 4px;
	font-size: 1rem;
	line-height: 1.5rem;
	color: #6D6D6D;
	font-weight: 400;
}

.contact_form .form-group .form-control::placeholder {
	font-size: 1rem;
	color: #6D6D6D;
	font-style: italic;
}

.contact_form .form-group .form-control:focus {
	outline: 0;
	box-shadow: none;
}

.contact_form .form-group textarea.form-control {
	height: 120px;
	resize: none;
}

.contact_form .form-group .submitBtn {
	position: relative;
	width: auto;
	height: 35px;
	padding: 8px 20px;
	border: 1px solid #000000;
	background-color: transparent;
	border-radius: 50px;
	font-size: 1rem;
	color: #000000;
	font-weight: 700;
	text-decoration: none;
	letter-spacing: 0;
	left: 0;
	transition: all .25s ease-out;
}

.contact_form .form-group .submitBtn:hover {
	background-color: #000000;
	color: #ffffff;
}

.contact_form .form-group .send_btn {
	position: relative;
	width: auto;
	height: 40px;
	padding: 6px 24px;
	border: 1px solid #B0B0B0;
	background-color: transparent;
	border-radius: 4px;
	font-size: 0.75rem;
	color: #6D6D6D;
	font-weight: 500;
	text-decoration: none;
	letter-spacing: 1.5px;
	left: 0;
	transition: all .25s ease-out;
}

.contact_form .form-group .send_btn:hover {
	background-color: #2662A3;
	border: 1px solid #2662A3;
	color: #ffffff;
}


.formCheck {
	position: relative;
	display: inline-block;
	width: 100%;
	margin-bottom: 30px;
	padding-left: 27px;
}

.formCheck label a {
	color: #6D6D6D;
	text-decoration: underline;
	transition: all .25s ease-out;
}

.formCheck label a:hover {
	color: #000000;
	text-decoration: none;
}

.formCheck input[type='checkbox'] {
	height: 0;
	width: 0;
}

.formCheck input[type='checkbox']+label {
	display: inline-block;
	color: #6D6D6D;
	line-height: 20px;
	transition: color 250ms cubic-bezier(.4, .0, .23, 1);
}

.formCheck input[type='checkbox']+label>ins {
	position: absolute;
	display: block;
	width: 99% !important;
	bottom: 5px;
	left: 30px;
	height: 0;
	width: 100%;
	overflow: hidden;
	text-decoration: none;
	transition: height 300ms cubic-bezier(.4, .0, .23, 1);
}

.formCheck input[type='checkbox']+label>ins>i {
	position: absolute;
	bottom: 0;
	font-style: normal;
	color: #4FC3F7;
}

.formCheck input[type='checkbox']+label>span {
	position: absolute;
	top: 2px;
	left: 0;
	display: inline-block;
	width: 18px;
	height: 18px;
	background: transparent;
	border: 1px solid #E7E7E7;
	border-radius: 4px;
	cursor: pointer;
	transition: all 250ms cubic-bezier(.4, .0, .23, 1);
}

.formCheck input[type='checkbox']+label:hover,
.formCheck input[type='checkbox']:focus+label {
	color: #000;
}

.formCheck input[type='checkbox']+label:hover>span,
.formCheck input[type='checkbox']:focus+label>span {
	background: rgba(255, 255, 255, .1);
}

.formCheck input[type='checkbox']:checked+label>ins {
	height: 100%;
}

.formCheck input[type='checkbox']:checked+label>span {
	border: 9px solid #2662a3;
	animation: shrink-bounce 200ms cubic-bezier(.4, .0, .23, 1);
}

.formCheck input[type='checkbox']:checked+label>span:before {
	content: "";
	position: absolute;
	top: -5px;
	left: -7px;
	border-right: 3px solid transparent;
	border-bottom: 3px solid transparent;
	transform: rotate(45deg);
	transform-origin: 0% 100%;
	animation: checkbox-check 125ms 250ms cubic-bezier(.4, .0, .23, 1) forwards;
}



/* #Additional - Large Screens beyond 1600px
================================================== */
@media only screen and (min-width: 1367px) and (max-width: 1600px) {

	#contactFormSec .contactFormBox {
		gap: 50px;
		padding: 0 50px;
	}

}

/* #Additional - Large Screens beyond 1366px
================================================== */
@media only screen and (min-width: 1180px) and (max-width: 1366px) {

	#contactFormSec .contactFormBox {
		gap: 50px;
		padding: 0 50px;
	}

	.contact_form {
		padding: 25px;
	}

	.contact_form .grecoMenu {
		max-width: 222px;
	}
}

/* #iPad Pro - Large Screens beyond 1024px
================================================== */
@media only screen and (min-width: 959px) and (max-width: 1180px) {

	#contactFormSec {
		padding-top: 90px;
		padding-bottom: 90px;
	}

	#contactFormSec .contactFormBox {
		justify-content: flex-start;
		gap: 50px;
		padding: 0 0px;
	}

	.contactDetail {
		width: 100%;
		max-width: 100%;
	}

	#contactFormSec .contactFormBox .h2 {
		font-size: 2.1875rem;
		line-height: 2.5rem;
	}

	.contact_form {
		width: 100%;
		max-width: 100%;
		padding: 30px;
	}

	.contact_form .grecoMenu {
		width: 50%;
		max-width: 340px;
	}

	.contact_form .form-group.half {
		width: 100%;
	}

}

/* #Tablet (Portrait)
================================================== */
/* Note: Design for a width of 768px */
@media only screen and (min-width: 768px) and (max-width: 959px) {

	#contactFormSec {
		padding-top: 85px;
		padding-bottom: 85px;
	}

	#contactFormSec .contactFormBox {
		justify-content: flex-start;
		gap: 50px;
		padding: 0 0px;
		flex-direction: column;
	}

	.contactDetail {
		width: 100%;
		max-width: 100%;
	}

	#contactFormSec .contactFormBox .h2 {
		font-size: 2.1875rem;
		line-height: 2.5rem;
	}

	.contact_form {
		width: 100%;
		max-width: 100%;
		padding: 30px;
	}

	.contact_form .grecoMenu {
		width: 50%;
		max-width: 340px;
	}

	.contact_form .form-group.half {
		width: 100%;
	}

}



/*  #Mobile (Portrait)
================================================== */
/* Note: Design for a width of 320px */
@media only screen and (max-width: 767px) {

	#contactFormSec {
		padding-top: 64px;
		padding-bottom: 64px;
	}

	#contactFormSec .contactFormBox {
		justify-content: flex-start;
		gap: 50px;
		padding: 0 0px;
		flex-direction: column;
	}

	.contactDetail {
		width: 100%;
		max-width: 100%;
	}

	#contactFormSec .contactFormBox .h2 {
		font-size: 2.1875rem;
		line-height: 2.5rem;
	}

	.contact_form {
		width: 100%;
		max-width: 100%;
		padding: 20px;
	}

	.contact_form .formRow {
		flex-direction: column;
	}

	.contact_form .grecoMenu {
		width: 100%;
		max-width: 100%;
	}

	.contact_form .form-group.half {
		width: 100%;
	}

	.contact_form .contactPhoneCode {
		width: 100%;
	}

	.contact_form .phoneField {
		flex-direction: column;
		gap: 16px;
	}


}