section.contact-us {
	text-align: center;
	margin: 0;
	padding: 2rem 0 0 0;
}

section.contact-us .title{
	max-width:760px;
	margin:0 auto;
}

section.contact-us .contact-wrapper {
	display: flex;
	justify-content: center;
	margin: 30px 0;
	padding: 1.5em 0;
	gap: 0;
}

section.contact-us .contact-wrapper div {
	width: 240px;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

section.contact-us .contact-wrapper a {
	display: block;
	padding: 1em;
	transition: all 0.3s;
	border: none;
	color:var(--font-color);
	font-weight:600;
}

section.contact-us .contact-wrapper div.method:not(:last-of-type) {
	border-right: 1px solid var(--brand-orange);
}

section.contact-us h3 {
	color: var(--gold-color);
	margin: 1rem 0 0 0;
}

section.contact-us .contact-wrapper a:hover{
	color:var(--brand-orange);
}

section.contact-us .contact-wrapper a i {
	font-size: 20px;
	width: 40px;
	height: 40px;
	line-height: 40px;
	display: inline-block;
	margin: 0.5em 0;
	transition: all 0.3s;
	background: var(--gold-gradient);
	color: var(--black-color);
	border-radius:2px;
	font-family: 'Font Awesome 5 Pro';
	 font-style: normal;
}

section.contact-us .contact-wrapper a:hover i{
}

section.contact-us a.map-link{
	display: flex;
	align-items: center;
	width: fit-content;
	margin: .5rem auto;
	font-weight: 500;
	gap: .125rem;
}



@media screen and (max-width:470px){
	section.contact-us .contact-wrapper {

	}
	
	section.contact-us .contact-wrapper a{
		font-size: 0.875rem;
		padding: 0.5rem;
	}
	
	section.contact-us .contact-wrapper a i{
	
	}
}

@media screen and (min-width:1024px){ 
	section.contact-us .contact-wrapper a i{
		line-height: 50px;
		height: 50px;
		width: 50px;
	}
}

.modal {
	display: none;
	position: fixed;
	inset: 0;
	z-index: 9999;
	background: rgba(80, 75, 66, 0.48);
	backdrop-filter: blur(15px);
	-webkit-backdrop-filter: blur(15px);
	overflow-y: auto;
}

.modal .btn-close {
	
	background: var(--gold-gradient);
	border-radius: 50%;
	padding: 0.5rem;
	height: 2rem;
	width: 2rem;
	border: none;
	display: flex;
	justify-content: center;
	align-items: center;
	position: absolute;
	right: 0.5rem;
	top: 0.75rem;
}

#enquiryModal .modal-body {
	padding: 2rem;
}

#enquiryModal h5 {
	font-size: 1.25rem;
	font-weight: 500;
}

#enquiryModal legend {
	display: none;
}

#enquiryModal .btn {
	background-color: none;
	color: var(--black-color);
	display: inline-block;
	background: var(--gold-gradient);
	transition: all 0.3s;
	border-radius: 0.25rem;
	border: none;
	font-family: var(--paragraph-font);
	cursor: pointer;
	box-shadow:0 0 4px 1px var(--gold-color-lighter) inset;
	font-size:1rem;
	background-size:calc(100% + 50px);
	margin: 0.5rem 0 0 0;
}

#enquiryModal .btn:hover {
	background-position:-50px center;
}

#enquiryModal label {
	font-weight: 400;
	font-size: 1rem;
	margin: 0 0 0.25rem 0;
}

#enquiryModal .mb-3 {
	margin: 0 0 1.125rem 0;
}

#enquiryModal  .modal-header {
  border-bottom: 1px solid var(--gold-color);
}

.modal .btn-close:after {
	content:'\f00d';
	font-family: 'Font Awesome 5 Pro';
	font-size: 1.25 rem;
	color: var(--black-color);

}

.modal.show {
	display: flex!important;
	justify-content: center;
	align-items: center;
}

.modal-dialog {
	max-width: 1200px;
	margin: 50px auto;
}

#enquiryModal .modal-content {
	background-color: var(--black-color-lighter);
	border-radius: 8px;
	max-height: 500px;
	overflow: auto;
	scrollbar-width: none;
	-ms-overflow-style: none;
}

#enquiryModal .modal-content::-webkit-scrollbar {
	display: none; 
}

body.modal-open {
	overflow: hidden;
}