@import url('./_config.css');
@import url('./cookies.css?20221121');

h1, h2, h3, h4, h5, h6 {
	font-weight: var(--titleWeight);
	text-transform: uppercase;
}
b, strong {font-weight: var(--boldWeight)}

.container {
	max-width: 96%;
	width: var(--containerWidth);
}

.btn {
	padding: 1.3em 2em;
	font-size: 0.9375rem;
	text-transform: uppercase;
	font-weight: bold;
	background-color: transparent;
	overflow: hidden;
	position: relative;
	isolation: isolate;
}

.btn::before {
	content: '';
	display: block;
	position: absolute;
	inset: 0;
	z-index: -2;
	background-color: black;
}

.btn::after {
	content: '';
	display: block;
	position: absolute;
	inset: 0;
	z-index: -2;
	background-color: hsl(0 0% 30%);
	transform: translateX(-102%);
	transition: transform .8s var(--ease);
}

.btn:hover::after {
	transform: translateX(0);
}

.btn:active {
	transform: scale(.98);
}





body {
	overflow-x: hidden;
}


.speed-500 {animation-duration: 500ms}
.speed-750 {animation-duration: 750ms}
.speed-1000 {animation-duration: 1000ms}
.speed-1250 {animation-duration: 1250ms}
.speed-1500 {animation-duration: 1500ms}

.delay-50 {animation-delay: 50ms}
.delay-100 {animation-delay: 100ms}
.delay-150 {animation-delay: 150ms}
.delay-200 {animation-delay: 200ms}
.delay-250 {animation-delay: 250ms}
.delay-300 {animation-delay: 300ms}
.delay-350 {animation-delay: 350ms}
.delay-400 {animation-delay: 400ms}
.delay-450 {animation-delay: 450ms}
.delay-500 {animation-delay: 500ms}
.delay-550 {animation-delay: 550ms}
.delay-600 {animation-delay: 600ms}

[class*="--ready"] {will-change: scroll-position;}


/*
			N A V B A R
*/

.navbar {
	position: fixed;
	top: 0;
	width: 100%;
	z-index: 999;
	transition: all .2s;
}

.affix {
	background-color: white;
	box-shadow: 0 0 30px hsl(0 0% 0% / .1);
}

.navbar-logo {
	margin: 45px 0;
	width: 260px;
	color: var(--secondary);
	text-transform: uppercase;
	font-weight: bold;
	font-size: 2.7625rem;
	text-align: right;
	text-decoration: none;
	line-height: 1;
	transition: all .2s;
}

.navbar-logo span {
	overflow: hidden;
	width: 0;
	display: block;
}

.navbar-logo span:first-child {
	animation: release .6s ease-in-out 1 forwards;
}

.navbar-logo span:last-child {
	animation: release 1.2s ease-in-out 1 forwards;
}


.affix .navbar-logo {
	margin: 10px 0;
	color: black;
	font-size: 1.5rem;
}




/*
			N A V B A R   N A V
*/

.navbar-nav {
	margin: 0 var(--navMargin) 0 0;
	padding: 0;
	list-style: none;
	align-items: center;
}

.navbar-nav li {
	list-style: none;
	display: block;
	position: relative;
	margin: 0;
	padding: 0;
}

.navbar-nav > li:not(:first-child) {
	padding-left: var(--navMargin);
}

.navbar-nav a {
	will-change: auto;
}

.navbar-nav > li > a {
	color: hsl(0 0% 100%);
	font-size:1.1875rem;
	text-transform: uppercase;
	font-weight: 500;
	display: inline-flex;
	text-decoration: none;
	padding: 5px 0;
	transition: all .2s;
	outline: none;
	position: relative;
	overflow: hidden;
}

.affix .navbar-nav > li > a {color: hsl(0 0% 0%);}

.nav-dropdown > a::after {
	filter: invert(1);
}


.navbar-nav a::before {
	content: '';
	display: block;
	position: absolute;
	bottom: 0;
	left: -105%;
	width: 100%;
	height: 2px;
	will-change: transform;
	background-color: white;
	transition: all .2s var(--ease);
}

.affix .navbar-nav a::before {background-color: black;}


.navbar-nav a:focus::before,
.navbar-nav a:hover::before,
.navbar-nav .nav-active::before {
	left: 0;
}

.navbar-nav .nav-active {
	color: white;
}

.navbar-nav ul {
	position: absolute;
	display: none;
	top: 100%;
	left: var(--navMargin);
	margin: 0;
	padding: 10px;
	min-width: 250px;
	background-color: white;
	box-shadow: 0 10px 30px hsla(0, 0%, 0%, .2);
}

.navbar-nav ul a {
	padding: 10px 15px;
	display: flex;
	font-size: 0.875rem;
	color: var(--textColor);
	justify-content: space-between;
	text-decoration: none;
	overflow: hidden;
	line-height: 1.3;
	transition: all .3s var(--ease);
}

.navbar-nav ul a::after {
	transform: rotate(-90deg);
}

.navbar-nav ul a::before {
	content: '>';
	font-family: monospace;
	font-weight: bold;
	font-size: 1rem;
	width: auto;
	height: auto;
	display: block;
	transform: translateX(0) !important;
	visibility: visible;
	background: none;
	position: absolute;
	top: 8px;
	left: 0;
	opacity: 0;
	color: var(--primary);
}

.navbar-nav ul a:hover::before {
	transform: translateX(10px) !important;
	opacity: 1;
}
.navbar-nav ul a:hover {
	padding-left: 25px;
	padding-right: 5px;
}

.navbar-nav ul .active > a,
.navbar-nav ul a.active {
	color: var(--primary);
}

.navbar-nav > li > .open,
.navbar-nav .nav-dropdown:hover > ul {
	display: block;
	animation: showDropdown .3s 1 forwards;
}

.navbar-nav .open .open,
.navbar-nav ul .nav-dropdown:hover > ul {
	display: block;
	animation: showNextDropdown .3s 1 forwards;
}

.navbar-nav ul ul {
	top: 0; left: 100%;
}


/* mobile menu */

.mobile-menu-toggler {
	width: 32px;
	height: 24px;
	padding: 0;
	border: 0;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: flex-end;
	position: relative;
	background: none;
	transition: all var(--fastSpeed) var(--easeOutBack);
	outline: none;
}

.mobile-menu-toggler div {
	display: block;
	height: 2px;
	width: 32px;
	background-color: white;
	transition: all var(--fastSpeed) var(--easeOutBack);
	transform-origin: right;
}

.mobile-menu-toggler div:last-child {
	width: 70%;
}

.mobile-menu-toggler.active-toggler div:first-of-type {
	transform: rotate(-45deg);
}

.mobile-menu-toggler.active-toggler div:last-child {
	transform: rotate(45deg);
	width: 100%;
}

.mobile-menu-toggler.active-toggler div:nth-of-type(2) {
	display: none;
}

.mobile-nav {
	transition: transform var(--fastSpeed) var(--easeOutQuart);
	transform: translateX(-100%);
	display: block;
	position: fixed;
	top: 0;
	left: 0;
	height: 100vh;
	max-width: 80vw;
	width: 300px;
	/* background-color: hsla(0, 0%, 0%, 0.8);
	backdrop-filter: blur(10px); */
	background-color: var(--primary);
	margin: 0;
	padding: 0;
	z-index: 99999;
	overflow-y: auto;
}

.mobile-nav.show {
	transform: translateX(0);
}

.mobile-nav ul,
.mobile-nav li {
	list-style: none;
	margin: 0;
	padding: 0;
}

.mobile-nav ul {
	background-color: hsla(0, 0%, 0%, .3);
}

.mobile-nav a {
	display: block;
	font-size: 1rem;
	text-decoration: none;
	font-weight: 700;
	color: white;
	box-sizing: border-box;
	padding: 10px 15px;
	border-bottom: 1px solid hsla(0, 0%, 100%, .2);
}

.mobile-nav ul a {
	font-size: 0.875rem;
	font-weight: normal;
	padding-left: 30px;
}

.mobile-nav ul ul a {
	padding-left: 45px;
}

.mobile-nav a:hover,
.mobile-nav a.active {
	color: var(--primary);
	background-color: #fff;
}

.langs span {
	color: white;
	font-size:1.1875rem;
	font-weight: 200;
	opacity: .48;
}

.langs a {
	font-size:1.1875rem;
	text-transform: uppercase;
	font-weight: 500;
	color: white;
	text-decoration: none;
	transition: all .2s;
	opacity: .48;
}

.affix .langs a, .affix .langs span {filter: invert(1);}

.langs a:hover {opacity: .8;}

.langs .active {
	opacity: 1;
}




/*
			H E A D E R
*/

header {
	opacity: 0;
	animation: fadein 1s 1 forwards;
}

header .rolex iframe {
	display: block;
	border: 0;
	width: 230px;
	height: 110px;
	overflow: hidden;
}


.slide-content {
	max-width: 33%;
	transform: translateX(-100px);
	opacity: 0;
}

.slide-content p {
	text-transform: uppercase;
	color: white;
	font-weight: bold;
	font-size: 3.125rem;
	line-height: 1.1;
}

.slide-content p em, .bg-black .card-title em {
	font-style: normal;
	color: transparent;
	-webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: white;
}

h1 em, h2 em, h3 em, h4 em, h5 em, h6 em, .milestones span em {
	font-style: normal;
	color: transparent;
	-webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: black;
}

header {
	height: 100vh;
	overflow: hidden;
}

header .swiper-container {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

header .swiper-slide-active img.w-full {
	animation: zoomout 5s ease 1 forwards;
}

header .swiper-slide .slide-37402 {
	object-position: top;
}

header .swiper-slide-active .slide-content {
	animation: slideFromLeft 1s ease .5s 1 forwards;
}

header .parallax-open {bottom: -40px;}






/*
			M A I N   S E C T I O N S
*/

main {
	background-color: white;
	position: relative;
	z-index: 20;
}

.section-title {
	display: flex;
	justify-content: center;
	overflow: hidden;
}

.section-title h2 {
	text-transform: uppercase;
	font-weight: bold;
	color: black;
	font-size: clamp(1rem, 17.5rem, 15vw);

	transform: translateX(10vw);
	transition: transform 3s var(--ease);
}

.section-title.in-view h2 {
	transform: translateX(0);
}


#icon .container > .md\:row:first-child p {
	margin-top: 0;
	padding-left: calc(100% * 2/12);
	padding-right: calc(100% * 5.5/12);
}

.milestones, .milestones ul {
	margin: 0;
	padding: 0;
	width: 100%;
}

.milestones li {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin: 0;
	padding: 1.5rem 0;
	border-bottom: 1px solid #000;
}

.milestones li:first-child {border-top: 1px solid #000;}

.milestones span {
	text-transform: uppercase;
	font-size: 3.375rem;
	font-weight: 500;
	text-align: right;
	max-width: 65%;
	line-height: 1.2;
}

#featured-in a {
	display: block;
	width: 100%;
	transition: all var(--normalSpeed) var(--ease);
}

#featured-in a img {
	display: block;
	width: 100%;
}

#featured-in a:hover {
	transform: translateY(-3px);
	box-shadow: 0 15px 30px -10px hsl(0 0% 0% / .15);
}

.bg-black {
	background-color: black;
	color: white;
}

.bg-black .section-title {filter: invert(1);}

#tennis h2 {
	margin-bottom: var(--sectionPadding);
}

#tennis .sm\:w-6-12:last-child {
	padding-top: 290px;
}

.card-title {
	margin-top: 1rem;
	margin-bottom: 0;
}

.card + .card {margin-top: 30px;}

blockquote {
	margin: 0;
	padding: 50px 50px 0 0;
	font-size: var(--h4);
	text-align: center;
	text-transform: uppercase;
	font-weight: 500;
	line-height: 1.2;
	background-image: url(/assets/img/quote-icon.svg);
	background-repeat: no-repeat;
	background-position: right top;
}

.pr-col {
	padding-right: calc(100% * 3/12);
}

p.bordered {
	border-left: 9px solid white;
	padding: 60px 0 60px 50px;
}



.partners-slider a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 111px;
}

.partners-slider a img {
	max-width: 100%;
	max-height: 111px;
	object-fit: contain;
	object-position: center;
}

#projects {
	background-image: linear-gradient(to left, var(--bgLight), white);
}

.project + .project {margin-top: var(--sectionPadding);}

.project h4 {
	position: relative;
	margin-top: 0;
	padding-top: 2.5rem;
}

.project h4::after {
	content: '';
	display: block;
	width: 100px;
	height: 9px;
	background-color: black;
	position: absolute;
	top: 0;
	left: 0;
}

.project p img {display: block; margin-top: 1.5rem;}

.project p .btn {margin-top: 1rem;}



footer a:has(>img) {display: block;}

footer a img {
	transition: transform .3s ease;
	display: block;
}

footer a:hover img {
	transform: scale(1.05);
}




/*
			F O O T E R
*/


footer {
	position: relative;
	z-index: 20;
	background-color: white;
	background-image: url(/assets/img/sign-grey.svg);
	background-repeat: no-repeat;
	background-position: center;
	background-size: auto 100%;
}

footer a {
	text-decoration: none;
	color: black;
	transition: all .2s;
}

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

.copy {
	display: flex;
	align-items: center;
}

.copy img {
	max-height: 32px;
	margin-left: 10px;
}

.l410 img {
	display: block;
	height: 40px;
}





/*
			K E Y F R A M E S
*/

@keyframes showDropdown {
	0% {opacity: 0; transform: translateY(-10px);}
	100% {opacity: 1; transform: translateY(0);}
}

@keyframes showNextDropdown {
	0% {opacity: 0; transform: translateX(-10px);}
	100% {opacity: 1; transform: translateX(0);}
}

@keyframes zoomout {
	0% {transform: scale(1.1);}
	100% {transform: scale(1);}
}

@keyframes slideFromLeft {
	0% {transform: translateX(-100px); opacity: 0;}
	100% {transform: translateX(0); opacity: 1;}
}

@keyframes release {
	0% {width: 0;}
	100% {width: 100%;}
}

@keyframes fadein {
	0% {opacity: 0;}
	100% {opacity: 1;}
}








/*

			M  E  D  I  A
			Q U E R I E S

*/




@media screen and (max-height: 850px) and (min-width: 1024px) {
	.slide-content p {font-size: clamp(12px, 3.125rem, 4vh)}
	.slide-content a img {max-height: 10vh}
}


@media screen and (max-width: 1590px) {
	p.bordered + .flex {gap: 1rem;}
	p.bordered + .flex > div {
		width: calc(25% - 1rem);
	}
	p.bordered + .flex > div img {max-width: 100%;}

	blockquote {
		font-size: clamp(1rem, var(--h4), 2vw);
	}
}



@media screen and (max-width: 1360px) {
	header img.absolute {
		max-width: 60vw;
	}

	#icon .container > .md\:row:first-child p {
		padding-left: calc(100% * 1/12);
		padding-right: calc(100% * 3.5/12);
	}

	.milestones span {
		font-size: clamp(1.125rem, 3.375rem, 3vw);
	}
}


@media screen and (max-width: 1299px) {
	:root {
		--navMargin: 30px !important;
	}

	#icon .container > .md\:row:first-child p {
		padding-left: 60px;
		padding-bottom: 60px;
		padding-right: calc(100% * 3/12);
	}
}


@media screen and (max-width: 1199px) {
	:root {
		--navMargin: 	25px 	!important;
		--h1: 			5rem 	!important;
		--h2: 			3.75rem !important;
		--h3: 			2.8rem 	!important;
		--h4: 			2rem 	!important;
		--h5: 			1.4rem 	!important;
		--h6: 			1.1rem 	!important;
		--leadSize: 	1.2rem 	!important;
	}

	.navbar-logo {
		font-size: 2rem;
		width: 190px;
	}

	.affix .navbar-logo {width: 142px;}

	.navbar-nav > li > a, .langs a, .langs span {font-size: 1.1rem;}

	.slide-content {padding-top: 15vh;}

	.milestones span {max-width: 55%;}

	.affix .mobile-menu-toggler {filter: invert(1);}

}



@media screen and (max-width: 1023px) {

	[class*="md:w"]:not([class*="sm:w"]) {
		padding-left: 0;
		padding-right: 0;
	}

	.md\:row:not(.sm\:row) {
		margin-left: 0;
		margin-right: 0;
	}

	.navbar-logo {margin: 25px 0;}

	header img.absolute {
		max-width: 80vw;
	}

	.slide-content {
		max-width: 45%;
	}
	.slide-content p {
		font-size: 1.5rem;
	}

	.slide-content a img {height: 7vw; min-height: 40px;}

	#icon .container > .md\:row:first-child p {
		padding-left: 0;
		padding-bottom: 60px;
		padding-right: 0;
	}

	#icon .simpleParallax {margin-bottom: 30px;}

	#icon .md\:w-5-12 {margin-bottom: 60px;}

	.milestones span {
		max-width: 60%;
		text-align: left;
	}

	blockquote {
		margin: 0;
		padding: 10vw;
		text-align: right;
		background-position: right center;
	}

	.partners-gallery .w-full .mb-30 {
		width: 100%;
		display: flex;
		justify-content: center;
	}

	.project .w-full {
		text-align: center;
		display: flex;
		flex-direction: column;
		align-items: center;
		margin-bottom: 30px;
	}

	.project h4::after {
		left: calc(50% - 50px);
	}

	footer {
		text-align: center;
	}

	footer .items-end {
		align-items: center;
		text-align: center;
		margin-top: 30px;
	}

	footer .items-end .justify-end {justify-content: center; margin-bottom: 1.5rem;}

}




@media screen and (max-width: 760px) {
	.slide-content {
		padding-top: 0;
	}

	header,
	header .container,
	header .swiper-slide-active img.w-full {
		min-height: 444px;
	}
}


@media screen and (max-width: 639px) {
	:root {
		--h1: 			4rem 	!important;
		--h2: 			3.35rem !important;
		--h3: 			2.3rem 	!important;
		--h4: 			1.7rem 	!important;
		--h5: 			1.2rem 	!important;
		--h6: 			1rem 	!important;
		--leadSize: 	1.1rem 	!important;
	}


	header img.absolute {
		max-width: 97vw;
	}

	.card {margin-top: 50px !important;}

	#tennis .sm\:w-6-12:last-child {
		padding-top: 0;
	}
}



@media screen and (max-width: 599px) {
	header img.absolute {
		max-width: 127vw;
	}

	.milestones li {
		flex-direction: column;
		align-items: center;
	}

	.milestones li span {
		margin-bottom: 1rem;
		text-align: center;
		display: block;
		max-width: 96%;

	}

	.pr-col {
		padding-right: 0;
	}

	p.bordered {
		border-left: 0;
		padding: 0;
	}

	blockquote {
		padding: 10vw 5vw;
		text-align: left;
	}

	#tennis h2 {
		margin-bottom: calc(var(--sectionPadding) / 2);
	}
}


@media screen and (max-width: 440px) {

	:root {
		--h1: 			3.3rem 	!important;
		--h2: 			2.6rem !important;
		--h3: 			2.1rem 	!important;
		--h4: 			1.5rem 	!important;
		--h5: 			1.1rem 	!important;
		--h6: 			1rem 	!important;
		--leadSize: 	1.1rem 	!important;
	}

	.navbar-logo {
		margin: 15px 0;
	}

	.navbar-logo {
		font-size: 1.5rem;
		width: 144px;
	}

	.langs span {margin-left: 5px; margin-right: 5px;}

	.langs.mr-30.ml-30 {margin-right: 15px; margin-left: 0;}

	.slide-content {max-width: 70%;}


	.slide-content p {
		display: inline;
		position: relative;
		background-color: hsl(0 0% 0% / .8);
		backdrop-filter: blur(3px);
	}

	.slide-content p a {
		margin-top: 1.5rem;
		display: block;
	}
}