/*
* Prefixed by https://autoprefixer.github.io
* PostCSS: v8.4.14,
* Autoprefixer: v10.4.7
* Browsers: last 4 version
*/

/* ==========================================================================
   FONTS, COLORS & UTILITY CLASSES
   ========================================================================== */
body {
	font-family: "Open Sans", sans-serif;
}

.fixed-top {
	z-index: 9999;
}

.second-color {
	color: #747474;
}
.additional-background-color {
	background-color: #1c1c1c;
}

/* Custom Spacing */
.pt-6 {
	padding-top: 5rem !important;
}

.pb-6 {
	padding-bottom: 5rem !important;
}

.pt-8 {
	padding-top: 8rem !important;
}

.pb-8 {
	padding-bottom: 8rem !important;
}
.pt-10 {
	padding-top: 10rem !important;
}

.pb-10 {
	padding-bottom: 10rem !important;
}

.pt-12 {
	padding-top: 15rem !important;
}

.py-8 {
	padding-top: 10rem !important;
	padding-bottom: 10rem !important;
}
.py-9 {
	padding-top: 13rem !important;
	padding-bottom: 13rem !important;
}
.px-8 {
	padding-left: 8rem !important;
	padding-right: 8rem !important;
}
.px-6 {
	padding-left: 6rem !important;
	padding-right: 6rem !important;
}
.pl-8 {
	padding-left: 8rem !important;
}

.pr-8 {
	padding-right: 8rem !important;
}

/* Custom Sizing */
.h-80 {
	height: 80%;
}
.w-60 {
	width: 60%;
}
.w-80 {
	width: 80%;
}
.w-125 {
	width: 125%;
}

/* Custom Z-Indexes */
.z-4 {
	z-index: 4;
}

/* ==========================================================================
   GENERAL & COMPONENTS
   ========================================================================== */
body {
	background-color: #000000;
}

a {
	text-decoration: none;
}

.breadcrumbs {
	color: #747474;
}

.breadcrumbs a {
	color: #747474;
}

.breadcrumbs a:hover {
	color: white;
}

main.textpage {
	padding: 150px 0;
	color: white;
}

/* Navbar */
.navbar-solid {
	background: black;
	-webkit-transition: background 0.3s ease;
	-o-transition: background 0.3s ease;
	transition: background 0.3s ease;
}

.navbar-solid.offcanvas_active {
	background: transparent !important;
	-webkit-transition: background 0.3s ease;
	-o-transition: background 0.3s ease;
	transition: background 0.3s ease;
}

.navbar-solid.offcanvas_active .container a img {
	opacity: 0;
}

.navbar_holder {
	padding: 1rem 0;
	width: 100%;
}

.navbar_holder img {
	-webkit-transition: -webkit-transform 0.3s ease;
	transition: -webkit-transform 0.3s ease;
	-o-transition: transform 0.3s ease;
	transition: transform 0.3s ease;
	transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

.navbar_holder.with-bg {
	padding: 1rem 0;
}

.navbar_content {
	width: 100%;
}

.navbar_content .btn {
	margin: 18px 0 0 0;
	padding: 0;
}

.navbar_holder.with-bg .navbar_content .btn {
	margin: 12px 0 0 0;
}

/* hamburger */
.offcanvas-trigger {
	padding: 0.25rem 0.5rem;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	position: relative;
	z-index: 2147483647 !important; /* force button above everything */
	pointer-events: auto; /* ensure it's clickable */
	will-change: transform, opacity, clip-path;
}
.hamburger {
	display: inline-block;
	width: 22px;
	height: 18px;
	position: relative;
	z-index: 2147483648 !important; /* ensure lines stay visible above offcanvas */
	pointer-events: auto;
}
.hamburger-line {
	position: absolute;
	left: 0;
	right: 0;
	height: 2px;
	background: #fff;
	transition: transform 0.35s ease, opacity 0.2s ease, top 0.35s ease;
}

.hamburger-line:nth-child(1) {
	top: 0;
}

.hamburger-line:nth-child(2) {
	top: 8px;
}

.hamburger-line:nth-child(3) {
	top: 16px;
}

/* Open state -> cross */
.offcanvas-trigger.is-open .hamburger-line:nth-child(1) {
	transform: translateY(8px) rotate(45deg);
}
.offcanvas-trigger.is-open .hamburger-line:nth-child(2) {
	opacity: 0;
	transform: scaleX(0);
}
.offcanvas-trigger.is-open .hamburger-line:nth-child(3) {
	transform: translateY(-8px) rotate(-45deg);
}

/* When body has this class, disable Bootstrap's offcanvas transitions so our animation is the only one visible */
.offcanvas-disable-bs .offcanvas,
.offcanvas-disable-bs .offcanvas-backdrop {
	transition: none !important;
	animation: none !important;
}

/* Buttons */
.btn-outline-secondary-color {
	border-color: #747474;
	color: white;
}
.btn-outline-secondary-color:hover {
	border-color: white;
	background-color: white;
	color: black;
}

/* Custom List */
.custom-bullet-list li {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	margin-bottom: 1rem;
}
.custom-bullet-list li::before {
	content: "";
	-ms-flex-negative: 0;
	flex-shrink: 0;
	width: 12px;
	height: 12px;
	background-color: #747474;
	border-radius: 50%;
	margin-right: 1rem;
	margin-top: 0.5rem;
}

/* Form */
textarea {
	resize: none;
}

/* Footer */
footer {
	background-color: #101010;
}

footer a:hover {
	text-decoration: underline;
}

/* Modal */

.modal {
	z-index: 99999;
}

.modal-content {
	border-radius: 0;
}

.modal_form_contact_holder input,
.modal_form_contact_holder textarea {
	border-color: black;
}

.modal_form_contact_holder textarea {
	padding: 10px 16px !important;
}

.modal_form_contact_holder .form-check {
	display: flex;
	flex-direction: row;
	align-items: center;
	height: 100%;
}

.modal_form_contact_holder .form-check-input {
	border-radius: 0;
	margin: 0 15px 0 0;
}

.modal_form_contact_holder .form-check-input:checked[type="checkbox"] {
	background-color: black;
	border-color: #000000;
}

.modal_form_contact_holder .form-check-label {
	font-size: 0.95rem;
	line-height: 1rem;
	color: black;
}

/* ==========================================================================
   OFFCANVAS & COLLAPSE ANIMATIONS
   ========================================================================== */

/* Offcanvas Menu */
.offcanvas-fullscreen-top {
	top: 0;
	left: 0;
	width: 100vw;
	height: 764px;
	border: 0;
	background-color: #161616;
	background-image: url("/assets/template/img/menu-background_ver2.webp");
	background-position: center bottom;
	background-repeat: no-repeat;
}

.offcanvas-nav ul li {
	margin: 0 0 52px 0;
}

.offcanvas-nav ul li a {
	font-size: 3rem;
	line-height: 3rem;
	font-weight: bold;
	color: #ffffff;
	text-decoration: none;
	text-transform: uppercase;
	position: relative;
	-webkit-transition: color 0.3s;
	-o-transition: color 0.3s;
	transition: color 0.3s;
}
.offcanvas-nav ul li a:hover {
	color: #a0a0a0;
}
.offcanvas-nav ul li a::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 1px;
	background-color: #ffffff;
	-webkit-transform: scaleX(0);
	-ms-transform: scaleX(0);
	transform: scaleX(0);
	-webkit-transform-origin: center;
	-ms-transform-origin: center;
	transform-origin: center;
	-webkit-transition: -webkit-transform 0.4s cubic-bezier(0.19, 1, 0.22, 1);
	transition: -webkit-transform 0.4s cubic-bezier(0.19, 1, 0.22, 1);
	-o-transition: transform 0.4s cubic-bezier(0.19, 1, 0.22, 1);
	transition: transform 0.4s cubic-bezier(0.19, 1, 0.22, 1);
	transition: transform 0.4s cubic-bezier(0.19, 1, 0.22, 1), -webkit-transform 0.4s cubic-bezier(0.19, 1, 0.22, 1);
}
.offcanvas-nav ul li a:hover::after,
.offcanvas-nav ul li a.active::after {
	-webkit-transform: scaleX(1);
	-ms-transform: scaleX(1);
	transform: scaleX(1);
}

.offcanvas-fullscreen-holder {
	text-align: right;
	margin: 160px 0 0 0;
}

/* Service Details Collapse */
.service-offcanvas {
	-webkit-transform: translateY(100%);
	-ms-transform: translateY(100%);
	transform: translateY(100%);
	-webkit-transition: opacity 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
	transition: opacity 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
	-o-transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
	transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
	transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
	opacity: 0;
}
.service-offcanvas.show {
	-webkit-transform: translateY(0);
	-ms-transform: translateY(0);
	transform: translateY(0);
	opacity: 1;
}
.service-offcanvas.hiding {
	-webkit-transform: translateY(100%);
	-ms-transform: translateY(100%);
	transform: translateY(100%);
	opacity: 0;
} /* Custom class for hide animation */

/* ==========================================================================
   PAGE SECTIONS
   ========================================================================== */

/* Hero Section */
.hero-image {
	visibility: hidden;
	opacity: 0;
}
.hero-header {
	visibility: hidden;
	opacity: 0;
}
.navbar {
	visibility: hidden;
	opacity: 0;
}

/* Medical Section */
.medical-section {
	min-height: 100vh;
}

/* Founder Section */
.founder-section {
	min-height: 100vh;
}

/* Quote Section */
.quote-section {
	background-image: url("/assets/template/img/quote-background.webp");
	background-position: center left 70%;
	background-repeat: no-repeat;
	background-size: contain;
	min-height: 450px;
}

/* Medical Section */
.medical-object {
	margin-top: -9rem;
}

/* Service Section */
.services {
	min-height: 38rem;
}
.services .container {
	margin-bottom: -18rem;
}

.services ul li {
	margin: 0 0 20px 0;
}

/* Map Section */
.map-section {
	margin-top: -1px;
}
.marker {
	width: 2.2rem;
	height: 2.2rem;
	padding: 0.48rem;
	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;
	background-color: white;
	border-radius: 100%;
}
.marker-popup {
	margin-left: 0.5rem;
	margin-top: -4.5rem;
	padding: 0.5rem 1.1rem 0.4rem 1.1rem;
	text-align: center;
}

/* direction */

.direction-card img {
	filter: grayscale(1);
}

.direction-card img:hover {
	filter: grayscale(0);
}

/* Full Cycle Section */
.step {
	background-image: url("/assets/template/img/step-background.webp");
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
	height: 13rem;
	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;
	-webkit-transition: -webkit-transform 0.4s ease-out;
	transition: -webkit-transform 0.4s ease-out;
	-o-transition: transform 0.4s ease-out;
	transition: transform 0.4s ease-out;
	transition: transform 0.4s ease-out, -webkit-transform 0.4s ease-out;
	visibility: hidden;
	opacity: 0;
}

/* Projects Section (GSAP controlled) */
.projects-section {
	position: relative;
}

.projects-header-static {
	z-index: 10;
	color: white;
}

.projects-header-static p {
	color: white;
}
.projects-header-static p strong {
	color: #747474;
}
.projects-gallery-wrapper {
	position: relative;
	height: 70vh;
	overflow: hidden;
	padding-left: 3rem;
}
.projects-details-gallery-wrapper {
	position: relative;
	min-height: 90vh;
	overflow: hidden;
	padding-left: 3rem;
}
.projects-gallery-vertical {
	position: relative;
	height: 100%;
}
.scroll-indicator-track {
	position: relative;
	width: 1px;
	height: 70%;
	top: 15%;
	background-color: #747474;
	margin: 0 auto;
}
.scroll-indicator-thumb {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 20%;
	background-color: #ffffff;
}
.project-column {
	top: 0;
	left: 0;
	width: 33%;
	padding-left: inherit;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
}
.project-details-column {
	top: 0;
	left: 0;
	width: 50%;
	padding-left: inherit;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
}
.project-item {
	top: 0;
	left: 0;
	width: 100%;
	padding-left: inherit;
	margin-bottom: 2rem;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
.project-item:first-child {
	opacity: 1;
	visibility: visible;
}
.project-item a {
	cursor: pointer;
}
.project-item img {
	width: 100%;
	height: 20rem;
	-o-object-fit: cover;
	object-fit: cover;
	-webkit-filter: grayscale(1);
	filter: grayscale(1);
}
.project-item img:hover {
	-webkit-filter: grayscale(0);
	filter: grayscale(0);
}

.project-item-no-photo {
	width: 304px;
	height: 416px;
	background: #707070;
	color: #000000;
	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;
	font-size: 2rem;
}
.project-item .project-info {
	padding-top: 1rem;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
	font-size: 0.8rem;
	text-transform: uppercase;
	-webkit-box-flex: 1;
	-ms-flex-positive: 1;
	flex-grow: 1;
}
.project-item .meta {
	text-align: right;
	color: rgba(255, 255, 255, 0.6);
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-ms-flex-negative: 0;
	flex-shrink: 0;
	margin-left: 1rem;
}

.project-item-2 {
	top: 0;
	left: 0;
	margin-bottom: 2rem;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
.project-item-2:first-child {
	opacity: 1;
	visibility: visible;
}
.project-item-2 img {
	width: 100%;
	height: 26rem;
	-o-object-fit: cover;
	object-fit: cover;
	-webkit-filter: grayscale(1);
	filter: grayscale(1);
}
.project-item-2 img:hover {
	-webkit-filter: grayscale(0);
	filter: grayscale(0);
}
.project-item-2 .project-info {
	padding-top: 1rem;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
	font-size: 0.8rem;
	text-transform: uppercase;
	-webkit-box-flex: 1;
	-ms-flex-positive: 1;
	flex-grow: 1;
}
.project-item-2 .meta {
	text-align: right;
	color: rgba(255, 255, 255, 0.6);
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-ms-flex-negative: 0;
	flex-shrink: 0;
	margin-left: 1rem;
}

/* Contact Section */
.contact-section {
	background-image: url("/assets/template/img/contact-background.webp");
	background-position: center center;
	background-repeat: no-repeat;
	background-size: 130%;
}

.form_contact_holder textarea {
	padding: 10px 16px !important;
}

.form_contact_holder .form-check {
	display: flex;
	flex-direction: row;
	align-items: center;
	height: 100%;
}

.form_contact_holder .form-check-input {
	border-radius: 0;
	margin: 0 15px 0 0;
}

.form_contact_holder .form-check-input:checked[type="checkbox"] {
	filter: invert(1);
	background-color: black;
	border-color: #000000;
}

.form_contact_holder .form-check-label {
	font-size: 0.95rem;
	line-height: 1rem;
	color: white;
}

/* Statistic Section */
#statistic {
	background-image: url("/assets/template/img/statistic-background.webp");
	background-position: bottom right -10rem;
	background-repeat: no-repeat;
	background-size: 135%;
}

.statistic-container {
	margin-left: 15rem;
}

/* Awards */

.awards-section .award img {
	filter: grayscale(1);
}

.awards-section .award img:hover {
	filter: grayscale(0);
}

/* Design Object Section */
.design-object-section {
	min-height: 125vh;
	background-image: url("/assets/template/img/design-object-background.webp");
	background-position: bottom left;
	background-repeat: no-repeat;
	background-size: 80%;
}
.design-object-spacer {
	height: 10vh;
	width: 100%;
}

/* Team Section */
.image-wrap-today-background {
	position: absolute;
	margin-left: -30%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	z-index: 1;
}

.today-height {
	height: 60vh;
}
.image-wrap-today-front {
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	z-index: 2;
}

.image-today-front {
	height: 70vh;
}

/* Contact page */

.contact-details p {
	color: white;
}

.contact-details p a {
	color: white;
}

.contact-info-block p a {
	color: white;
}

.contact-info-block p a:hover {
	text-decoration: underline;
}

.map-container iframe {
	-webkit-filter: grayscale(100%) brightness(90%);
	filter: grayscale(100%) brightness(90%);
}
.map-container img {
	width: 100%;
}

/* POS Section */
.pos-section {
	min-height: 100vh;
}

/* project */

.project-types-section .project-type-card img {
	filter: grayscale(1);
}

.project-types-section .project-type-card img:hover {
	filter: grayscale(0);
}

/* Document Section */
.documentation-section {
	min-height: 100vh;
}

/* Responsive adjustments */
@media (max-width: 1399.8px) {
	.service-offcanvas {
		-webkit-transform: translateY(100%);
		-ms-transform: translateY(100%);
		transform: translateY(100%);
		-webkit-transition: opacity 0.3s ease-in-out, -webkit-transform 0.3s ease-out;
		transition: opacity 0.3s ease-in-out, -webkit-transform 0.3s ease-out;
		-o-transition: transform 0.3s ease-out, opacity 0.3s ease-in-out;
		transition: transform 0.3s ease-out, opacity 0.3s ease-in-out;
		transition: transform 0.3s ease-out, opacity 0.3s ease-in-out, -webkit-transform 0.3s ease-out;
		opacity: 0;
	}
	.service-offcanvas.show {
		-webkit-transform: translateY(0);
		-ms-transform: translateY(0);
		transform: translateY(0);
		opacity: 1;
	}
	.service-offcanvas.hiding {
		-webkit-transform: translateY(100%);
		-ms-transform: translateY(100%);
		transform: translateY(100%);
		opacity: 0;
	} /* Custom class for hide animation */
	.services {
		min-height: 41rem;
	}
	.services .container {
		margin-bottom: -18rem;
	}
}

@media (max-width: 1199.8px) {
	.offcanvas-fullscreen-top {
		height: 100%;
		background-position: center;
		background-size: contain;
	}

	.offcanvas-fullscreen-holder {
		text-align: center;
	}

	.offcanvas-nav ul li {
		margin: 0 0 30px 0;
	}

	.offcanvas-nav ul li a {
		font-size: 2rem;
	}

	.service-offcanvas {
		-webkit-transform: translateY(100%);
		-ms-transform: translateY(100%);
		transform: translateY(100%);
		-webkit-transition: opacity 0.3s ease-in-out, -webkit-transform 0.3s ease-out;
		transition: opacity 0.3s ease-in-out, -webkit-transform 0.3s ease-out;
		-o-transition: transform 0.3s ease-out, opacity 0.3s ease-in-out;
		transition: transform 0.3s ease-out, opacity 0.3s ease-in-out;
		transition: transform 0.3s ease-out, opacity 0.3s ease-in-out, -webkit-transform 0.3s ease-out;
		opacity: 0;
	}
	.service-offcanvas.show {
		-webkit-transform: translateY(0);
		-ms-transform: translateY(0);
		transform: translateY(0);
		opacity: 1;
	}
	.service-offcanvas.hiding {
		-webkit-transform: translateY(100%);
		-ms-transform: translateY(100%);
		transform: translateY(100%);
		opacity: 0;
	} /* Custom class for hide animation */
	.services {
		min-height: 44rem;
	}
	.services .container {
		margin-bottom: -19rem;
	}
}

@media (max-width: 991.98px) {
	p {
		font-size: calc(0.95rem + 0.9vw) !important;
	}
	li {
		font-size: calc(0.95rem + 0.9vw) !important;
	}
	.fs-5 {
		font-size: calc(1.125rem + 0.9vw) !important;
	}
	.fs-4 {
		font-size: calc(1.075rem + 0.9vw) !important;
	}
	h2 {
		font-size: calc(1.125rem + 0.9vw);
	}
	.meta {
		font-size: calc(0.95rem + 0.9vw) !important;
	}
	input {
		font-size: calc(1rem + 0.9vw) !important;
	}
	textarea {
		font-size: calc(1rem + 0.9vw) !important;
	}

	.pt-6 {
		padding-top: 1.5rem !important;
	}
	.py-8 {
		padding-top: 6rem !important;
		padding-bottom: 6rem !important;
	}
	.btn-outline-secondary-color {
		border-width: 2px;
		width: 100%;
		font-size: calc(1rem + 0.9vw) !important;
		padding-top: 0.7rem !important;
		padding-bottom: 0.7rem !important;
	}

	.hero-image {
		min-height: 100vh !important;
		width: auto !important;
		min-width: 100vw !important;
		-webkit-filter: brightness(28%);
		filter: brightness(28%);
	}
	.hero-section .mt-5 {
		margin-top: 1.5rem !important;
	}
	.hero-section .second-color {
		color: #ffffff !important;
	}

	.quote-section {
		background-image: url("/assets/template/img/quote-background.webp");
		background-position: bottom center;
		background-repeat: no-repeat;
		background-size: 50rem;
		min-height: 650px;
	}
	.quote-section h5 {
		font-size: calc(1.125rem + 2vw) !important;
	}

	#about-us a {
		-webkit-box-pack: center !important;
		-ms-flex-pack: center !important;
		justify-content: center !important;
	}
	#about-us .w-100 {
		width: 60% !important;
	}

	.projects-gallery-wrapper {
		height: auto;
		overflow: visible;
		border-left: none;
		padding-left: 0;
		margin-top: 2rem;
	}
	.project-item {
		position: static;
		opacity: 1;
		visibility: visible;
		margin-bottom: 2rem;
	}

	.service-offcanvas {
		-webkit-transform: translateY(100%);
		-ms-transform: translateY(100%);
		transform: translateY(100%);
		-webkit-transition: opacity 0.3s ease-in-out, -webkit-transform 0.3s ease-out;
		transition: opacity 0.3s ease-in-out, -webkit-transform 0.3s ease-out;
		-o-transition: transform 0.3s ease-out, opacity 0.3s ease-in-out;
		transition: transform 0.3s ease-out, opacity 0.3s ease-in-out;
		transition: transform 0.3s ease-out, opacity 0.3s ease-in-out, -webkit-transform 0.3s ease-out;
		opacity: 0;
	}
	.service-offcanvas.show {
		-webkit-transform: translateY(0);
		-ms-transform: translateY(0);
		transform: translateY(0);
		opacity: 1;
	}
	.service-offcanvas.hiding {
		-webkit-transform: translateY(100%);
		-ms-transform: translateY(100%);
		transform: translateY(100%);
		opacity: 0;
	} /* Custom class for hide animation */
	.services {
		min-height: 48rem;
	}
	.services .container {
		margin-bottom: -23rem;
	}
	.step {
		background-image: url("/assets/template/img/step-background-mobile.webp");
	}

	.founder {
		width: 130%;
		left: -17%;
	}
	.founder-background {
		width: 130%;
		left: -17%;
	}

	#statistic {
		background-image: url("/assets/template/img/statistic-background.webp");
		background-position: bottom left 80%;
		background-repeat: no-repeat;
		background-size: 160%;
	}

	.statistic-container {
		margin-left: 0;
	}

	.mobile-today-wrapper {
		margin-left: 25%;
	}

	.design-object-section {
		min-height: 125vh;
		background-image: none;
	}

	.map-container {
		height: 30rem;
	}
	.map-container img {
		height: 100%;
		width: auto;
	}
}

@media (max-width: 767.98px) {
	main {
		padding: 40px 0;
	}

	.navbar_content .btn {
		margin: 10px 0 0 0;
	}

	.navbar_holder.with-bg .navbar_content .btn {
		margin: 10px 0 0 0;
	}

	.service-offcanvas {
		-webkit-transform: translateY(100%);
		-ms-transform: translateY(100%);
		transform: translateY(100%);
		-webkit-transition: opacity 0.3s ease-in-out, -webkit-transform 0.3s ease-out;
		transition: opacity 0.3s ease-in-out, -webkit-transform 0.3s ease-out;
		-o-transition: transform 0.3s ease-out, opacity 0.3s ease-in-out;
		transition: transform 0.3s ease-out, opacity 0.3s ease-in-out;
		transition: transform 0.3s ease-out, opacity 0.3s ease-in-out, -webkit-transform 0.3s ease-out;
		opacity: 0;
	}
	.service-offcanvas.show {
		-webkit-transform: translateY(0);
		-ms-transform: translateY(0);
		transform: translateY(0);
		opacity: 1;
	}
	.service-offcanvas.hiding {
		-webkit-transform: translateY(100%);
		-ms-transform: translateY(100%);
		transform: translateY(100%);
		opacity: 0;
	} /* Custom class for hide animation */
	.services {
		min-height: 55rem;
	}
	.services .container {
		margin-bottom: -23rem;
	}
	.hero-section .display-4 {
		font-size: calc(0.9rem + 2.5vw);
	}

	.hero-section .display-5 {
		font-size: calc(0.9rem + 2.5vw);
	}

	.hero-section h2 {
		font-size: calc(0.75rem + 2.5vw);
	}

	.statistic-section h1 {
		font-size: calc(2.125rem + 2.5vw) !important;
	}

	.quote-section {
		background-image: url("/assets/template/img/quote-background.webp");
		background-position: bottom left -3rem;
		background-repeat: no-repeat;
		background-size: 50rem;
		min-height: 650px;
	}

	#about-us .w-100 {
		width: 80% !important;
	}

	.mobile-today-wrapper {
		margin-left: 15%;
	}

	.map-container {
		height: 27rem;
	}
	.map-container img {
		height: 80%;
		width: auto;
	}
}

@media (max-width: 576px) {
	.py-8 {
		padding-top: 3rem !important;
		padding-bottom: 3rem !important;
	}

	.pt-8 {
		padding-top: 3rem !important;
	}

	.step {
		height: 35vw;
	}

	.hero-2-section h2,
	.direction-section h2,
	.map-section h2,
	.projects-section h2,
	.medical-section h2,
	.founder-section h2,
	.awards-section h2,
	.contact-section h2 {
		text-align: center;
	}

	.map-section h3,
	.map-section p {
		text-align: center;
	}

	.medical-section h3 {
		text-align: center;
	}

	.medical-section h2 {
		margin: 30px 0 0 0;
	}
}

@media (max-width: 310.8px) {
	.service-offcanvas {
		-webkit-transform: translateY(100%);
		-ms-transform: translateY(100%);
		transform: translateY(100%);
		-webkit-transition: opacity 0.3s ease-in-out, -webkit-transform 0.3s ease-out;
		transition: opacity 0.3s ease-in-out, -webkit-transform 0.3s ease-out;
		-o-transition: transform 0.3s ease-out, opacity 0.3s ease-in-out;
		transition: transform 0.3s ease-out, opacity 0.3s ease-in-out;
		transition: transform 0.3s ease-out, opacity 0.3s ease-in-out, -webkit-transform 0.3s ease-out;
		opacity: 0;
	}
	.service-offcanvas.show {
		-webkit-transform: translateY(0);
		-ms-transform: translateY(0);
		transform: translateY(0);
		opacity: 1;
	}
	.service-offcanvas.hiding {
		-webkit-transform: translateY(100%);
		-ms-transform: translateY(100%);
		transform: translateY(100%);
		opacity: 0;
	} /* Custom class for hide animation */
	.services {
		min-height: 62rem;
	}
	.services .container {
		margin-bottom: -26rem;
	}
}

@media (max-width: 600px) {
	.step {
		height: 35vw;
	}
	.today-height {
		height: 50vh;
	}

	.offcanvas-nav ul li a {
		font-size: 2rem;
		line-height: 2rem;
	}
}

@media (max-width: 470px) {
	.mobile-today-wrapper {
		margin-left: 10%;
	}
}

@media (max-width: 420px) {
	.mobile-today-wrapper {
		margin-left: 5%;
	}
}

@media (max-width: 380px) {
	.mobile-today-wrapper {
		margin-left: 0%;
	}
}

@media (max-width: 360px) {
	.today-height {
		height: 45vh;
	}
}

/* ==========================================================================
   MOBILE SWIPER STYLES
   ========================================================================== */

.map-slider-mobile {
	width: 100%;
	overflow: visible; /* Р•СЃР»Рё СЌР»РµРјРµРЅС‚РѕРІ РјРµРЅСЊС€Рµ 4 Р»СѓС‡С€Рµ hidden */
}

.swiper-slide {
	width: 100%;
	height: 100%;
	opacity: 0.5;
	-webkit-transition: opacity 0.4s ease;
	-o-transition: opacity 0.4s ease;
	transition: opacity 0.4s ease;
}

.swiper-slide-active {
	opacity: 1;
}

.map-card-mobile {
	position: relative;
	height: 500px;
	overflow: hidden;
	color: white;

	background-size: cover;
	background-position: center;

	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;
	text-align: center;
}

.map-card-mobile::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
}

.map-card-mobile .card-content {
	position: relative;
	z-index: 2;
	padding: 20px;
}

.map-swiper-scrollbar {
	position: relative !important;
	margin-top: 2rem;
	bottom: 0px !important;
	height: 1px !important;
	width: 80% !important;
	margin-left: 10%;
	background: #747474;
	cursor: -webkit-grab;
	cursor: grab;
}

.swiper-scrollbar-drag {
	background: #ffffff;
	height: 100%;
	border-radius: 2px;
}

.gallery-swiper-scrollbar {
	position: relative !important;
	margin-top: 2rem;
	bottom: 0px !important;
	height: 1px !important;
	width: 80% !important;
	margin-left: 10%;
	background: #747474;
	cursor: -webkit-grab;
	cursor: grab;
}

.gallery-slider-mobile {
	width: 100%;
	overflow: visible; /* Р•СЃР»Рё СЌР»РµРјРµРЅС‚РѕРІ РјРµРЅСЊС€Рµ 4 Р»СѓС‡С€Рµ hidden (Р»РёР±Рѕ РїСЂРѕРґСѓР±Р»РёСЂРѕРІР°С‚СЊ СЃР»Р°Р№РґС‹) */
}

.project-item-mobile img {
	width: 100%;
	height: 500px;
	-o-object-fit: cover;
	object-fit: cover;
}
.project-item-mobile .project-info {
	padding-top: 1rem;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
	font-size: 0.8rem;
	text-transform: uppercase;
	-webkit-box-flex: 1;
	-ms-flex-positive: 1;
	flex-grow: 1;
}
.project-item-mobile .meta {
	text-align: right;
	color: rgba(255, 255, 255, 0.6);
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-ms-flex-negative: 0;
	flex-shrink: 0;
	margin-left: 1rem;
}

.award-card-mobile {
	position: relative;
	height: 550px;
	overflow: hidden;
	color: white;

	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;

	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;
	text-align: center;
}

.award-card-mobile::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
}

.award-swiper-scrollbar {
	position: relative !important;
	margin-top: 2rem;
	bottom: 0px !important;
	height: 1px !important;
	width: 80% !important;
	margin-left: 10%;
	background: #747474;
	cursor: -webkit-grab;
	cursor: grab;
}
