/** Import Bootstrap functions */
/** Bootstrap navbar fix (https://git.io/fADqW) */
:root {
	--primary-dark: #ffc300;
	--secondary-dark: #17883e;
	--bs-black: #000;
	--bs-white: #fff;
	--gray-100: #f5f5f5;
	--gray-200: #e9ecef;
	--gray-300: #ddd;
	--gray-400: #c4c4c4;
	--gray-500: #adb5bd;
	--gray-600: #707070;
	--gray-650: #7b7b7b;
	--gray-700: #434343;
	--gray-800: #343a40;
	--gray-900: #242424;
	--bs-primary: #fdda0d;
	--bs-secondary: #25aa53;
	--bs-dark: var(--bs-black);
	--bs-body-bg: var(--bs-white);
	--bs-body-color: var(--bs-black);
	--bs-body-font-size: 1.6rem;
	--bs-body-line-height: 1.375;
	--bs-body-font-family: Source Sans Pro, Arial, Helvetica, sans-serif;
	--bs-link-color: var(--bs-secondary);
	--bs-link-hover-color: var(--secondary-dark);
	--bs-text-muted: #7b7b7b;
	--bs-font-weight-bold: 600;
	--h1-font-size: 4.6rem;
	--h2-font-size: 3rem;
	--h3-font-size: 3.6rem;
	--h4-font-size: 2rem;
	--h5-font-size: 2.2rem;
	--h6-font-size: 1.7rem;
	--h1-font-size-sm: 3.6rem;
	--h2-font-size-sm: 2.6rem;
	--h3-font-size-sm: var(--h3-font-size);
	--h4-font-size-sm: var(--h4-font-size);
	--h5-font-size-sm: var(--h5-font-size);
	--h6-font-size-sm: var(--h6-font-size);
	--headings-font-weight: 600;
	--btn-font-size: 1.7rem;
	--btn-line-height: 1.412;
	--btn-font-weight: 600;
	--btn-padding-y: 0.7rem;
	--btn-padding-x: 1.7rem;
	--btn-font-size-sm: 1rem;
	--btn-padding-y-sm: 0.4rem;
	--btn-padding-x-sm: 0.6rem;
	--btn-font-size-lg: 1.6rem;
	--btn-padding-y-lg: 1.1rem;
	--btn-padding-x-lg: 1rem;
	--input-border-color: var(--gray-650);
	--input-color: var(--bs-black);
	--input-placeholder-color: var(--gray-650);
	--input-bg: var(--bs-white);
	--input-box-shadow: none;
	--input-height: 4rem;
	--input-font-size: 1.6rem;
	--input-font-weight: 400;
	--input-padding-y: 0.4rem;
	--input-padding-x: 1.4rem;
	--header-bg-color: var(--bs-white);
	--header-color: var(--bs-black);
	--header-drop-bg-color: var(--bs-black);
	--header-drop-bg-color-mobile: var(--bs-white);
	--header-drop-color: var(--bs-white);
	--header-drop-color-mobile: var(--bs-black);
	--header-drop-hover-color: var(--bs-primary);
	--extra-menu-bg-color: var(--bs-black);
	--extra-menu-color: var(--bs-white);
	--menu-bg-color-mobile: var(--bs-black);
	--menu-color-mobile: var(--bs-white);
	--footer-bg-color: var(--bs-black);
	--footer-color: var(--bs-white);
	--footer-secondary-bg-color: var(--gray-900);
	--footer-secondary-color: var(--gray-650);
	--backdrop-bg: var(--bs-black);
	--backdrop-opacity: 0.4;
	--modal-border-width: 0;
	--modal-border-color: var(--bs-white);
	--modal-bg: var(--bs-white);
	--gray-light: #7b7b7b;
	--gray-002: #212121;
}

/* person-box */
.person-box {
	position: relative;
	z-index: 0;
	background: var(--bs-white);
	margin-bottom: 1rem;
	padding: 2.8rem 3.8rem 3.5rem;
	text-align: center;
}
@media (max-width: 991.98px) {
	.person-box {
		width: 27.5rem;
		max-width: 100%;
		margin-left: auto;
		margin-right: auto;
		padding-left: 2.2rem;
		padding-right: 2.2rem;
	}
}
.person-box::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	z-index: -1;
	height: 17.4rem;
	background: var(--bs-black);
}
.person-box p {
	margin-bottom: 0;
}
.person-box h3, .person-box .h3 {
	position: relative;
	margin-left: -3.8rem;
	margin-right: -3.8rem;
	margin-bottom: 0;
	padding-left: 3.8rem;
	padding-right: 3.8rem;
	padding-bottom: 1.8rem;
	background: var(--bs-black);
	color: var(--bs-white);
	text-transform: none;
	font-weight: 600;
	font-size: 2.2rem;
	line-height: 1.091;
}
@media (max-width: 991.98px) {
	.person-box h3, .person-box .h3 {
		margin-left: -2.2rem;
		margin-right: -2.2rem;
	}
}
.person-box h3::before, .person-box .h3::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: -8rem;
	z-index: -1;
	background: var(--bs-black);
}
.person-box h4, .person-box .h4 {
	text-transform: none;
	font-weight: 600;
	font-size: inherit;
	line-height: inherit;
	margin-bottom: 0;
}
.person-box .photo-box {
	position: relative;
	width: 16rem;
	max-width: 100%;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 1.6rem;
	border-radius: 50%;
	overflow: hidden;
}
.person-box .photo-box::before {
	content: "";
	display: block;
	padding-bottom: 100%;
}
.person-box .photo-box img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	   object-fit: cover;
}
.person-box select {
	-webkit-appearance: none;
	   -moz-appearance: none;
	        appearance: none;
	position: relative;
	z-index: 1;
	display: block;
	width: 100%;
	height: 4rem;
	border-radius: 0;
	padding-left: 0.9rem;
	padding-right: 3rem;
	border: 0.1rem solid;
	background: transparent;
	color: var(--gray-650);
	font-size: var(--bs-body-font-size);
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
	margin-top: 2.4rem;
}
.person-box select::-ms-expand {
	display: none;
}
.person-box select.filled, .person-box select:focus {
	color: var(--input-color);
}
.person-box select.filled + label::after, .person-box select:focus + label::after {
	color: var(--input-color);
}
.person-box select + label {
	font: 0/0 a;
	color: transparent;
	text-shadow: none;
	background-color: transparent;
	border: 0;
	position: relative;
	z-index: 0;
	display: block;
	height: 4rem;
	margin: -4rem 0 0;
}
.person-box select + label::after {
	content: "";
	position: absolute;
	top: 0;
	right: 1.6rem;
	bottom: 0.3rem;
	margin-top: auto;
	margin-bottom: auto;
	width: 0.9rem;
	height: 0.9rem;
	color: var(--gray-650);
	border-style: solid;
	border-width: 0 0.1rem 0.1rem 0;
	-webkit-transform: rotate(45deg);
	        transform: rotate(45deg);
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
}
.person-box .contact-btns {
	position: relative;
	list-style: none;
	margin: 1.9rem 0;
	padding: 0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
}
.person-box .contact-btns > li {
	margin: 0.2rem;
}
.person-box .contact-btns > li::before {
	display: none;
}
.person-box .contact-btns a {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	width: 4rem;
	height: 4rem;
	background: var(--bs-primary);
	color: var(--bs-black);
	text-align: center;
	font-size: 1.6rem;
	line-height: 1;
}
.person-box .contact-btns a.dark-style {
	background-color: var(--bs-secondary);
	color: var(--bs-white);
}
.person-box .contact-btns a .tooltip-item {
	position: absolute;
	z-index: -1;
	top: 100%;
	left: 50%;
	margin-top: 1.3rem;
	color: var(--bs-black);
	white-space: nowrap;
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
	opacity: 0;
	pointer-events: none;
	-webkit-transform: translateX(-50%);
	        transform: translateX(-50%);
}
.person-box .contact-btns a:hover {
	text-decoration: none;
	background-color: var(--primary-dark);
	color: var(--bs-black);
}
.person-box .contact-btns a:hover.dark-style {
	background-color: var(--secondary-dark);
	color: var(--bs-white);
}
.person-box .contact-btns a:hover .tooltip-item {
	opacity: 1;
}
.person-box .contact-btns.type2 {
	position: absolute;
	top: 10.5rem;
	right: 0;
	z-index: 3;
	margin-top: 0;
	margin-bottom: 0;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
}
.person-box .contact-btns.type2 > li {
	margin: 0.3rem 0;
}
.person-box .contact-btns.type2 a {
	position: relative;
}
.person-box .contact-btns.type2 .tooltip-item {
	top: 50%;
	left: auto;
	right: 100%;
	margin: 0 1rem 0 0;
	padding: 0.3rem 0.8rem;
	-webkit-transform: none;
	        transform: none;
	background-color: var(--bs-gray-600);
	color: var(--bs-white);
	font-size: 1.4rem;
	line-height: 1.4;
}
.person-box .contact-btns.type2 .tooltip-item::before {
	content: "";
	position: absolute;
	z-index: 20;
	top: 0;
	left: 100%;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 0.5rem 0.5rem 0 0;
	border-color: var(--bs-gray-600) transparent transparent;
}
.person-box.type2 {
	padding-top: 2.2rem;
}
.person-box.type2::before {
	height: 10.2rem;
}
/*# sourceMappingURL=person-box.css.map */
