/****** OVERRIDE CSS STYLES ******/
:root {
	--menu-width: 35vw;
	--header-height: 105px;
	--content-scale: 0.8;
}

body {
	margin: 0;
	font-family: "IBM Plex Sans", sans-serif;
	overflow-x: hidden;
	background-color: #313131;
}

/* General Styles */
body h1 {
	font-family: "Playfair Display", serif;
	font-size: 30px;
	line-height: 36px;
	font-weight: 500;
}
body h2 {
	font-size: 30px;
	line-height: 49.5px;
	font-weight: 300;
}
body h3 {
	font-family: "Playfair Display", serif;
	font-size: 20px;
	line-height: 28px;
	font-weight: 500;
}
body h4 {
	font-size: 22px;
	line-height: 30px;
	font-weight: 500;
}
body h5 {
	font-size: 20px;
	line-height: 1em;
	font-weight: 300;
}

a,
a:hover,
a:focus,
a:active,
a:visited,
a:link {
	color: currentColor;
	text-decoration: none;
}

/* Header Styles */
header {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: var(--header-height);
	z-index: 2000;
	background: transparent;
	display: flex;
	align-items: center;
	transition: background-color 0.3s ease, box-shadow 0.3s ease, height 0.3s ease;
}
header.scrolled {
	position: fixed;
	background-color: #f6f4f3;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
	height: 75px;
}
header img.logo {
	height: 50px;
	transition: filter 0.3s ease, height 0.3s ease;
}
header.scrolled img.logo {
	height: 40px;
}
.page-special header {
	background: #f6f4f3;
}

/* Footer Styles */
footer a,
footer a:hover,
footer a:focus,
footer a:active,
footer a:visited,
footer a:link {
	text-decoration: none;
}

/******* NEWS ********/

/* Extra Styles */
.font-playfair {
	font-family: "Playfair Display", serif;
}
.font-ibm {
	font-family: "IBM Plex Sans", sans-serif;
}
.bg-color-cream {
	background-color: #d8d1c9;
}
.bg-color-gray {
	background-color: #313131;
}
.bg-color-yellow {
	background-color: #fbd48b;
}
.bg-color-blue-light {
	background-color: #d3e7f1;
}
.text-gray {
	color: #444;
}
.text-pinky {
	color: #7795a7;
}
.p-50px {
	padding-top: 50px;
	padding-bottom: 50px;
}
.p-100px {
	padding-top: 100px;
	padding-bottom: 100px;
}
.fs-30px {
	font-size: 30px;
}

.btn-white {
	display: inline-block;
	font-size: 12px;
	text-decoration: none;
	background-color: transparent;
	color: white;
	padding: 10px 12px 10px 20px;
	border: 2px solid rgba(255, 255, 255, 0.75);
	border-radius: 4px;
	transition: opacity 1.45s cubic-bezier(0.25, 1, 0.33, 1), transform 0.45s cubic-bezier(0.25, 1, 0.33, 1), border-color 0.45s cubic-bezier(0.25, 1, 0.33, 1), background-color 0.45s cubic-bezier(0.25, 1, 0.33, 1), box-shadow 0.45s cubic-bezier(0.25, 1, 0.33, 1);
}
.btn-white:hover {
	background-color: #313131;
	border: 2px solid #313131;
	box-shadow: 0 20px 38px rgba(0, 0, 0, 0.16) !important;
	transform: translateY(-2px);
}

.btn-gray {
	display: inline-block;
	font-size: 12px;
	text-decoration: none;
	background-color: transparent;
	color: white;
	padding: 10px 12px 10px 20px;
	border: 2px solid rgba(51, 51, 51, 0.75);
	border-radius: 4px;
	transition: opacity 1.45s cubic-bezier(0.25, 1, 0.33, 1), transform 0.45s cubic-bezier(0.25, 1, 0.33, 1), border-color 0.45s cubic-bezier(0.25, 1, 0.33, 1), background-color 0.45s cubic-bezier(0.25, 1, 0.33, 1), box-shadow 0.45s cubic-bezier(0.25, 1, 0.33, 1);
}
.btn-gray:hover {
	color: #fff;
	background-color: #313131;
	border: 2px solid #313131;
	box-shadow: 0 20px 38px rgba(0, 0, 0, 0.16) !important;
	transform: translateY(-2px);
}

.bg-hero {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	z-index: 0;
}

.bg-home-1 {
	background-image: url("../img/home_01.png");
}

.bg-home-2 {
	background-image: url("../img/home_02.png");
}

.bg-home-3 {
	background-image: url("../img/home_03.png");
}

.bg-caravan {
	background-image: url("../img/caravan_01.jpg");
}

/* Hamburger Button */
.hamburger-btn {
	position: relative;
	width: 30px;
	height: 22px;
	padding: 0;
	border: none;
	background: none;
	overflow: hidden;
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}
.lines-button {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.lines {
	position: relative;
	display: block;
	width: 100%;
	height: 2px;
	background: #fff;
	transition: transform 0.55s cubic-bezier(0.3, 1, 0.3, 1);
}
.lines::before,
.lines::after {
	content: "";
	position: absolute;
	left: 0;
	height: 2px;
	background: #fff;
	transition: transform 0.55s cubic-bezier(0.3, 1, 0.3, 1);
}
.page-special .lines {
	background: #888888;
}
.page-special .lines::before,
.page-special .lines::after {
	background: #888888;
}
.lines::before {
	top: -10px;
	width: 100%;
}
.lines {
	top: 10px;
}
.lines::after {
	top: 10px;
	width: 70%;
	transform: translateY(10px);
}
.main .lines::before {
	transform: translateX(0);
	transition-delay: 0s;
}
.main .lines {
	transform: translateX(0);
	transition-delay: 0.15s;
}
.main .lines::after {
	transform: translateX(0);
	transition-delay: 0.3s;
}
.hover-effect .lines::before {
	transform: translateX(-40px);
	left: 50px;
	transition-delay: 0s;
}
.hover-effect .lines {
	transform: translateX(-40px);
	transition-delay: 0.15s;
}
.hover-effect .lines::after {
	transform: translateX(-40px);
	left: 40px;
	transition-delay: 0.3s;
}
.hamburger-btn:hover .main .lines::before {
	transform: translateX(20px);
}
.hamburger-btn:hover .main .lines {
	transform: translateX(50px);
}
.hamburger-btn:hover .main .lines::after {
	transform: translateX(-10px);
}
.hamburger-btn:hover .hover-effect .lines::before {
	transform: translateX(-50px);
}
.hamburger-btn:hover .hover-effect .lines {
	transform: translateX(0);
}
.hamburger-btn:hover .hover-effect .lines::after {
	transform: translateX(-40px);
}

header.scrolled .hamburger-btn .lines,
header.scrolled .hamburger-btn .lines::before,
header.scrolled .hamburger-btn .lines::after {
	background: #888888;
}

/* Menu Drawer */
#menuDrawer {
	position: fixed;
	top: 0;
	right: 0;
	width: var(--menu-width);
	height: 100vh;
	background-color: #313131;
	z-index: 1050;
	padding: 90px 20px 90px 90px;
	display: flex;
	justify-content: center;
	align-items: center;
	transition: right 0.5s ease;
	transform: translateX(10%);
	transition: transform 0.5s ease;
}
#menuDrawer.open {
	transform: translateX(0%);
}
#menuToggle {
	background: none;
	border: none;
	font-size: 1.5rem;
	cursor: pointer;
}
#menuDrawer ul {
	list-style: none;
	padding: 0;
	margin: 0;
	width: 100%;
}
#menuDrawer li {
	margin: 0.275rem;
}
#menuDrawer a {
	font-size: 2rem;
	text-decoration: none;
	color: #fff;
	display: inline-block;
	font-weight: 500;
	position: relative;
	transition: color 0.3s;
}
#menuDrawer a::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 2px;
	background-color: currentColor;
	transform: scaleX(0);
	transform-origin: left center;
	transition: transform 0.3s ease;
}
#menuDrawer a:hover::after {
	transform: scaleX(1);
}
#menuDrawer a.active::after {
    height: 2px;
	background-color: currentColor;
	transform: scaleX(1);
}



#closeMenuBtn {
	position: fixed;
	top: 50%;
	right: calc(var(--menu-width) - 13px);
	z-index: 1100;
	background: none;
	border: none;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0;
	box-sizing: border-box;
	opacity: 0;
	transform: translateY(-50%) scale(0);
	pointer-events: none;
	transition: transform 0.2s ease, opacity 0.3s ease;
}
#closeMenuBtn::before {
	content: "";
	position: absolute;
	width: 50px;
	height: 50px;
	background-color: #d3e7f1;
	border-radius: 50%;
	z-index: -1; /* detrás de la X */
	transition: transform 0.2s ease;
}
#closeMenuBtn.show {
	opacity: 1;
	transform: translateY(-50%) scale(1);
	pointer-events: auto;
}
#closeMenuBtn.show:hover::before {
	transform: scale(1.1);
}
.close-wrap {
	position: relative;
	width: 24px;
	height: 24px;
}
.close-line1,
.close-line2 {
	position: absolute;
	width: 2px;
	height: 24px;
	background-color: #131313;
	border-radius: 5px;
	transform-origin: top center;
}
.close-line1 {
	transform: translate(-50%, -50%) rotate(45deg) scale(0);
	top: 45%;
	left: 0;
}
.close-line2 {
	transform: translate(-50%, -50%) rotate(-45deg) scale(0);
	top: 45%;
	right: 0;
}

#closeMenuBtn.show .close-line1 {
	animation: drawLine1 0.4s forwards cubic-bezier(0.52, 0.01, 0.16, 1);
	animation-delay: 0.15s;
}
#closeMenuBtn.show .close-line2 {
	animation: drawLine2 0.4s forwards cubic-bezier(0.52, 0.01, 0.16, 1);
	animation-delay: 0.29s;
}

#mainContent {
	position: relative;
	z-index: 1100;
	transition: transform 0.5s ease;
	transform-origin: center center;
	background-color: #d8d1c9;
	min-height: 100vh;
}
#mainContent.clickable {
	cursor: pointer;
}

.main-frozen {
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	overflow: hidden;
}

/* Page Transition */
.page-transition {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: white;
	z-index: 9999;
	transform: translateX(0);
	transition: transform 0.5s ease-in-out;
}
/* Discover: goes to the left */
.page-transition.hide {
	transform: translateX(-100%);
}
/* Cover: comes from the right */
.page-transition.from-right {
	transform: translateX(100%);
}
/* Cover: comes from the right and stays */
.page-transition.cover {
	transform: translateX(0);
}


/* Mobile Close Button - Bio */
.mobile-close {
    display: inline-block;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    border: 2px solid #313131;
    position: relative;
    box-sizing: border-box;
    vertical-align: middle;
    background: transparent;
    cursor: pointer;
}
.mobile-close::before,
.mobile-close::after{
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 15px;
    height: 2px;
    background: #313131;
    transform-origin: center;
}
.mobile-close::before{
    transform: translate(-50%, -50%) rotate(45deg);
}
.mobile-close::after{
    transform: translate(-50%, -50%) rotate(-45deg);
}




/* Custom Cursor */
#customCursor {
	position: fixed;
	top: 0;
	left: 0;
	width: 90px;
	height: 90px;
	border: 2px solid currentColor;
	border-radius: 50%;
	pointer-events: none;
	transform: translate(-50%, -50%);
	display: none;
	align-items: center;
	justify-content: center;
	background: transparent;
	z-index: 9999;
	/* Mix color blend with background */
	mix-blend-mode: difference;
	color: white;
}
#customCursor svg line {
	stroke: currentColor;
	stroke-width: 2;
	stroke-linecap: round;
}


/* Button To Top */
#to-top {
	position: fixed;
	bottom: 20px;
	right: 20px;
	width: 35px;
	height: 35px;
	background-color: rgba(0, 0, 0, 0.25);
	border-radius: 50%;
	cursor: pointer;
	z-index: 9994;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
	transform: translateY(200%);
	transition: opacity 0.3s ease, transform 0.3s ease;
}
#to-top.show {
	opacity: 1;
	transform: translateY(0);
}
#to-top:hover {
	background-color: #313131;
}
#to-top .hover-fill {
	content: "";
	position: absolute;
	width: 100%;
	height: 100%;
	background-color: #313131;
	border-radius: 50%;
	transform: scale(0);
	transition: transform 0.4s ease;
	z-index: 0;
}
#to-top:hover .hover-fill {
	transform: scale(2);
}
#to-top i {
	position: absolute;
	font-size: 14px;
	color: #fff;
	z-index: 1;
	opacity: 1;
	transform: translateY(0);
	transition: transform 0.4s ease, opacity 0.4s ease;
}
#to-top .icon-out {
	opacity: 1;
	transform: translateY(0);
}
#to-top .icon-in {
	opacity: 0;
	transform: translateY(100%);
}
#to-top:hover .icon-out {
	opacity: 0;
	transform: translateY(-200%);
}

#to-top:hover .icon-in {
	opacity: 1;
	transform: translateY(0);
}

/* Social Media Share */
.social-share {
	position: fixed;
	bottom: 34px;
	right: 34px;
	z-index: 9998;
}
.share-button {
	width: 50px;
	height: 50px;
	background-color: #313131;
	color: white;
	border: none;
	border-radius: 50%;
	cursor: pointer;
	transition: transform 0.45s cubic-bezier(0.15, 0.2, 0.1, 1), opacity 0.25s cubic-bezier(0.15, 0.2, 0.1, 1);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 20px;
}
.share-button:hover {
	transform: scale(1.23);
	animation: flash-opacity 0.45s forwards;
	box-shadow: 0 7px 15px rgba(0, 0, 0, 0.2);
}
.social-share:hover .share-button {
	transform: scale(1.23);
}
@keyframes flash-opacity {
	0% {
		opacity: 0.5;
	}
	50% {
		opacity: 0.85;
	}
	100% {
		opacity: 1;
	}
}
.social-icons {
	position: absolute;
	bottom: 50px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	flex-direction: column-reverse;
	align-items: center;
	padding-bottom: 10px;
}
.social-icons .icon {
	width: 36px;
	height: 36px;
	background-color: #313131;
	color: white;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 10px;
	transform: scale(0) translateY(100px);
	opacity: 0;
	transition: transform 0.3s ease, opacity 0.3s ease;
	box-shadow: 0 7px 15px rgba(0, 0, 0, 0.2);
	transform-origin: bottom center;
}
.social-share:hover .social-icons .icon:nth-child(1) {
	transition-delay: 0.05s;
}
.social-share:hover .social-icons .icon:nth-child(2) {
	transition-delay: 0.1s;
}
.social-share:hover .social-icons .icon:nth-child(3) {
	transition-delay: 0.15s;
}
.social-share:hover .social-icons .icon:nth-child(4) {
	transition-delay: 0.2s;
}
.social-share:hover .social-icons .icon {
	transform: scale(1);
	opacity: 1;
}
.social-share:hover .social-icons .icon:hover {
	opacity: 0.85;
}
.social-icons .icon i {
	font-size: 18px;
}

/* Main Container */
.main-container {
	position: relative;
	width: 100%;
	height: 100vh;
	overflow: hidden;
}
.main-container video {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.video-gradient {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: #000000;
	background: linear-gradient(90deg, #000000 0%, #000000 100%);
	opacity: 0.5;
	pointer-events: none;
}
.video-overlay {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	text-align: center;
	color: white;
}
.video-overlay .title {
	font-size: 3rem;
}
.fa-angle-double-down {
	font-size: 1.5rem;
	animation: bounce 1.5s infinite;
}
.main-shifted {
	transform: translateX(calc(-1 * var(--menu-width) + ((100vw * (1 - var(--content-scale))) / 2))) scale(var(--content-scale));
	transform-origin: center center;
}

/* Team Member Page */
.page-team-member {
	cursor: none;
}
.page-team-member {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: transparent;
	z-index: 9998;
	transform: translateX(100%); /* Start off-screen to the right */
	transition: transform 0.5s ease-in-out;
	overflow-y: auto;
}
.page-team-member.cover {
	transform: translateX(0);
}
.page-team-member.from-right {
	transform: translateX(100%);
}
.page-team-member .team-bio,
.page-team-member .team-img {
	transform: translateX(200%);
	transition: all 0.8s cubic-bezier(0.2, 1, 0.2, 1) 0.4s;
}
.page-team-member.cover .team-bio {
	transform: translateX(0);
	transition-delay: 0.2s;
}
.page-team-member.cover .team-img {
	transform: translateX(0);
	transition-delay: 0.1s;
}
.page-team-member .team-bio {
	font-size: 16px;
	line-height: 26px;
	background-color: #f2f2f2;
	color: #555;
	padding: 5% 10%;
	z-index: 999;
}
.page-team-member .team-img {
	background-size: cover;
	background-position: top center;
	height: 100%;
	z-index: 998;
}
.page-team-member .team-title,
.page-team-member .team-name,
.page-team-member .team-desc,
.page-team-member .team-link {
	opacity: 0;
	transform: translateY(30px);
	transition: opacity 0.6s ease, transform 0.6s ease;
}

.page-team-member.cover .team-title {
	opacity: 1;
	transform: translateY(0);
	transition-delay: 0.6s;
}
.page-team-member.cover .team-name {
	opacity: 1;
	transform: translateY(0);
	transition-delay: 0.7s;
}
.page-team-member.cover .team-desc {
	opacity: 1;
	transform: translateY(0);
	transition-delay: 0.8s;
}
.page-team-member.cover .team-link {
	opacity: 1;
	transform: translateY(0);
	transition-delay: 0.9s;
}

.team-member {
	cursor: pointer;
}
.team-img {
	display: inline-block;
	transform: scale(1);
	transition: transform 0.4s ease-in-out;
	overflow: hidden;
}
.team-img img {
	transition: transform 0.4s ease-in-out;
	width: 100%;
	height: auto;
	display: block;
}
.team-member:hover .team-img {
	transform: scale(0.95);
}
.team-member:hover .team-img img {
	transform: scale(1.15);
}
.team-member:hover .link-arrow .arrow-animate .segment-1 {
	stroke-dashoffset: 100;
	animation: drawSegment 0.8s ease forwards 0s;
}
.team-member:hover .link-arrow .arrow-animate .segment-2 {
	stroke-dashoffset: 100;
	animation: drawSegment 0.8s ease forwards 0.2s;
}
.team-member:hover .link-arrow .arrow-animate .segment-3 {
	stroke-dashoffset: 100;
	animation: drawSegment 0.8s ease forwards 0.3s;
}
.link-arrow {
	display: inline-block;
	overflow: hidden;
}
.arrow-animate {
	width: 30px;
	height: 15px;
	transform-origin: left center;
	transition: transform 0.3s ease;
}
.arrow-animate polyline {
	fill: none;
	stroke: #444;
	stroke-width: 1;
	stroke-linecap: butt;
	stroke-linejoin: miter;
	stroke-dasharray: 100;
	stroke-dashoffset: 0;
}
.link-arrow:hover .arrow-animate .segment-1 {
	stroke-dashoffset: 100;
	animation: drawSegment 0.8s ease forwards 0s;
}
.link-arrow:hover .arrow-animate .segment-2 {
	stroke-dashoffset: 100;
	animation: drawSegment 0.8s ease forwards 0.2s;
}
.link-arrow:hover .arrow-animate .segment-3 {
	stroke-dashoffset: 100;
	animation: drawSegment 0.8s ease forwards 0.3s;
}
@keyframes drawSegment {
	to {
		stroke-dashoffset: 0;
	}
}
.link-arrow.shrunk .arrow-animate {
	transform: scaleX(0.9);
	transition: transform 0.4s ease;
}

/* Work Items */
.work-container {
	/*--bs-gutter-x: 1.5rem;
	--bs-gutter-y: 0;
	display: flex;
	flex-wrap: wrap;*/
	margin-top: calc(-1 * var(--bs-gutter-y));
	margin-right: calc(-.5 * var(--bs-gutter-x));
	margin-left: calc(-.5 * var(--bs-gutter-x));
}
.work-item {
	position: relative;
}
.work-img {
	position: relative;
	overflow: hidden;
}
.work-img img {
	width: 100%;
	transition: transform 0.38s cubic-bezier(0.05, 0.2, 0.1, 1);
}
.work-img .overlay {
	position: absolute;
	inset: 0;
	background-color: rgba(40, 43, 48, 0.45);
	transition: all 0.35s cubic-bezier(0.15, 0.75, 0.5, 1);
	z-index: 1;
}
.work-title {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 2;
}
.work-img:hover img {
	transform: scale(1.12);
}
.work-img:hover .overlay {
	opacity: 0;
}
.video-container {
	aspect-ratio: 16 / 9;
	width: 100%;
	max-width: 100%;
}
.video-container iframe {
	width: 100%;
	height: 100%;
	border: 0;
}

/* Brand Items */
.brand-item img {
	max-width: 150px;
}
.brand-item {
	transition: transform 0.65s cubic-bezier(0.05, 0.2, 0.1, 1);
}
.brand-item:hover {
	transform: scale(1.1);
}

/* Award Items */
.award-item img {
	max-width: 300px;
}

/* Contact Card */
.contact-img {
	display: inline-block;
	transform: scale(1);
	transition: transform 0.4s ease-in-out;
	overflow: hidden;
}
.contact-img img {
	transition: transform 0.4s ease-in-out;
	width: 100%;
	height: auto;
	display: block;
}
.contact-card:hover .contact-img {
	transform: scale(0.95);
}
.contact-card:hover .contact-img img {
	transform: scale(1.15);
}
.contact-info {
	line-height: 26px;
}

/* Animations */
.animate__zoomBg {
	animation: zoomBg 1s ease-out forwards;
}
@keyframes zoomBg {
	0% {
		transform: scale(1.2);
	}
	100% {
		transform: scale(1);
	}
}

@keyframes drawLine1 {
	from {
		top: 45%;
		left: 0;
		transform: translate(-50%, -50%) rotate(-45deg) scale(0);
	}
	to {
		top: calc(50% + 4px);
		left: 3px;
		transform: translate(-50%, -50%) rotate(-45deg) scaleY(1);
	}
}
@keyframes drawLine2 {
	from {
		top: 45%;
		right: 0;
		transform: translate(-50%, -50%) rotate(45deg) scaleY(0);
	}
	to {
		top: calc(50% + 4px);
		right: 3px;
		transform: translate(-50%, -50%) rotate(45deg) scaleY(1);
	}
}
@keyframes bounce {
	0%,
	20%,
	50%,
	80%,
	100% {
		transform: translateY(0);
	}
	40% {
		transform: translateY(-10px);
	}
	60% {
		transform: translateY(-5px);
	}
}

@keyframes zoomFadeBounceIn {
	0% {
		opacity: 0;
		transform: scale(0.8);
	}
	60% {
		opacity: 1;
		transform: scale(1.05);
	}
	100% {
		opacity: 1;
		transform: scale(1);
	}
}
.animate__zoomFadeBounceIn {
	animation: zoomFadeBounceIn 1s ease forwards;
	animation-delay: var(--wow-delay, 0s);
	opacity: 0;
}

@keyframes fadeInRightBounceIn {
	0% {
		opacity: 0;
		transform: translateX(+200px);
	}
	100% {
		opacity: 1;
		transform: translateX(0px);
	}
}
.animate__fadeInRightBounceIn {
	animation: fadeInRightBounceIn 1s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
	animation-delay: var(--wow-delay, 0s);
	opacity: 0;
}

@keyframes fadeInLeftBounceIn {
	0% {
		opacity: 0;
		transform: translateX(-200px);
	}
	100% {
		opacity: 1;
		transform: translateX(0px);
	}
}
.animate__fadeInLeftBounceIn {
	animation: fadeInLeftBounceIn 1s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
	animation-delay: var(--wow-delay, 0s);
	opacity: 0;
}

@keyframes fadeInDownCustom {
	from {
		opacity: 0;
		transform: translate3d(0, -100px, 0);
	}
	to {
		opacity: 1;
		transform: translate3d(0, 0, 0);
	}
}
.animate__fadeInDownCustom {
	animation-name: fadeInDownCustom;
}

@keyframes fadeInLeftCustom {
	from {
		opacity: 0;
		transform: translate3d(-100px, 0, 0);
	}
	to {
		opacity: 1;
		transform: translate3d(0, 0, 0);
	}
}
.animate__fadeInLeftCustom {
	animation-name: fadeInLeftCustom;
}

.scroll-shift {
	transition: transform 0.1s linear;
	will-change: transform;
}

@media (max-width: 1399.98px) {
    body h1 {
    	font-size: 22.5px;
    	line-height: 27px;
	}
	body h2 {
		font-size: 25.5px;
		line-height: 41.65px;
	}
    body h3 {
        font-size: 17px;
        line-height: 23.8px;
    }
    #menuDrawer {
        padding: 90px 20px 90px 60px;
    }
    .bg-caravan {
	    background-position: -100px center;
    }
}
@media (max-width: 1199.98px) {
    :root {
    	--menu-width: 50vw;
	}
    #menuDrawer {
        padding: 90px 90px 90px 150px;
    }
    #closeMenuBtn::before {
        width: 40px;
        height: 40px;
        background-color: rgba(0,0,0,.2);
    }
    .close-line1, .close-line2 {
        height: 18px;
        background-color: #ffffff;
    }
    .close-wrap {
        width: 20px;
        height: 20px;
    }
    #closeMenuBtn.show {
        position: absolute;
        top: 50px;
        right: 40px;
        /*transform: translateY(-50%) scale(1);
        pointer-events: auto;*/
    }
	body h2 {
		font-size: 24px;
		line-height: 39.2px;
	}
    .bg-caravan {
	    background-position: left center;
    }
    .page-team-member {
        cursor: default;
    }
}
@media (max-width: 991.98px) {
	:root {
    	--menu-width: 60vw;
		--header-height: 75px;
	}

    #menuDrawer {
        padding: 90px 40px 90px 60px
    }
    .main-shifted {
        transform: translateX(calc(-1 * var(--menu-width) + ((100vw * (1 - var(--content-scale))) / 2))) scale(var(--content-scale));
        transform-origin: center center;
    }

	header.scrolled {
		height: 65px;
	}
	header img.logo {
		height: 30px;
	}
	header.scrolled img.logo {
		height: 25px;
	}
    .hamburger-btn {
        width: 22px;
        height: 17px;
    }
	.lines::before {
		top: -7px;
	}
	.lines {
		top: 7px;
	}
	.lines::after {
		top: 7px;
		transform: translateY(7px);
	}
}
@media (max-width: 767.98px) {
    :root {
    	--menu-width: 70vw;
	}
    body h1 {
        font-size: 19.5px;
        line-height: 22.4px;
    }
    body h3 {
        font-size: 16px;
        line-height: 22.4px;
    }
    body h5 {
        font-size: 20px;
        line-height: 30px;
        margin-bottom: 0px;
    }
    #menuDrawer {
        padding: 90px 40px 90px 60px;
    }
    .page-team-member .team-desc {
        font-size: 14px;
        line-height: 22px;
    }
    .work-container {
        /*--bs-gutter-x: 1.5rem;
        --bs-gutter-y: 0;
        display: flex;
        flex-wrap: wrap;*/
        /*margin-top: calc(-1 * var(--bs-gutter-y));
        margin-right: calc(-.5 * var(--bs-gutter-x));
        margin-left: calc(-.5 * var(--bs-gutter-x));*/
        margin: 0px;
    }
}
@media (max-width: 575.98px) {
    :root {
    	--menu-width: 80vw;
	}
    #menuDrawer {
        padding: 60px 20px 60px 20px;
    }
    #menuDrawer a {
        font-size: 1.75rem;
    }
}
