:root {
  --clk-white: #FFF;
  --clk-outline: #DEDEDE;
  --clk-font: "Manrope", "Helvetica",Arial,sans-serif;
  --clk-midnight-black:#0B0C10;
  --clk-prestigious-blue: #202B37;
  --clk-porcelain-white: #F5F3F1;
  --clk-golden-dust: #A18667;
  --clk-gray: #5C5C5C;
  --clk-transparent-midnight-black: rgba(11, 12, 16, 0.7);
  --clk-disabled-gray: #929292;
  --clk-primary-gap: 24px;



  --clk-grid-columns: 12;
  --clk-grid-padding-width: 8%;
  --clk-grid-column-gap: 8px;

  --clk-cta-font-size: 14px;
  --clk-cta-details-font-size: 13px;

  --clk-rolex-green: #127749;
  --clk-tudor-red: #BE0100;
}

.clk-splash-screen{
	position: fixed;
	bottom: -150%;
	left: 0;
	width: 100%;
	height: 100vh;
	background: #000;
	color: white;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 99999999;
	transition: bottom 0.3s ease-out;
}

#clk-rlx-splashscreen{
	background: linear-gradient(234deg, #127749 0%, #0A3E27 100%), var(--clk-rolex-green, #127749);
}

#clk-tdr-splashscreen{
	background: var(--clk-tudor-red, #BE0100);
}

.no-scroll {
    overflow: hidden;
    touch-action: none; /* Opțional pentru a preveni gesturile touch */
}

.clk-grid{
	display: grid;
	grid-template-columns: repeat(var(--clk-grid-columns), minmax(0, 1fr));
	column-gap: var(--clk-grid-column-gap);
	width: 100%;
	padding: 0px var(--clk-grid-padding-width);
}

.clk-text-inner-container p,
.clk-content-body.p,
.clk-grid p{
	margin-bottom: 0px;
}

.clk-page-content.white{
	background-color: var(--clk-white);
}

.clk-page-content.rlx-section{
	/* background: linear-gradient(234deg, #127749 0%, #0A3E27 100%), var(--clk-rolex-green, #127749); */
  background: var(--clk-golden-dust, #A18667);
}

.clk-content-h2{
	color: var(--clk-prestigious-blue, #202B37);
	font-family: var(--clk-font);
	font-size: 40px;
	font-style: normal;
	font-weight: 500;
	line-height: 46px;
}

.clk-content-h3{
	color: var(--clk-prestigious-blue, #202B37);
	font-family: var(--clk-font);
	font-size: 35px;
	font-style: normal;
	font-weight: 500;
	line-height: normal;
}

.clk-content-h4{
  color: var(--clk-prestigious-blue, #202B37);
	font-family: var(--clk-font);
	font-size: 26px;
	font-style: normal;
	font-weight: 500;
	line-height: normal;
}

.clk-content-body{
	color: var(--clk-midnight-black, #0B0C10);
	font-family: var(--clk-font);
	font-size: 17px;
	font-style: normal;
	font-weight: 500;
	line-height: normal;
}

.clk-content-body.transparent{
	color: var(--clk-transparent-midnight-black, rgba(11, 12, 16, 0.7));
}

.clk-content-body.bold{
	font-weight: 500;
}

.clk-hero-detail{
	color: var(--clk-white, #FFF);
	font-family: var(--clk-font);
	font-size: 14px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
  margin-bottom: 24px;
}

.clk-content-detail{
	color: var(--clk-midnight-black, #0B0C10);
	font-family: var(--clk-font);
	font-size: 14px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
}

.clk-row-gap-24{
	row-gap: 24px;
}

.clk-row-gap-16{
	row-gap: 16px;
}

.clk-row-gap-8{
	row-gap: 8px;
}

.clk-ml-auto{
	margin-left: auto;
}

.clk-mr-auto{
	margin-right: auto;
}

.clk-mt-auto{
	margin-top: auto;
}

.clk-mb-auto{
	margin-bottom: auto;
}

.clk-col12{
	grid-column: span 12;
}

.clk-col9{
	grid-column: span 9;
}

.clk-col8{
	grid-column: span 8;
}

.clk-col7{
	grid-column: span 7;
}

.clk-col6{
	grid-column: span 6;
}

.clk-col5{
	grid-column: span 5;
}

.clk-col4{
	grid-column: span 4;
}

.clk-col3{
	grid-column: span 3;
}

.clk-col1{
	grid-column: span 1;
}

.clk-margin-top-5vh{
	margin-top: min(5vh, 60px);
}

.clk-margin-bottom-5vh{
	margin-top: min(5vh, 60px);
}

.clk-padding-top-5vh{
	padding-top: min(5vh, 60px);
}

.clk-padding-bottom-5vh{
	padding-bottom: min(5vh, 60px);
}

.clk-padding-both-5vh{
	padding-top: min(5vh, 60px);
	padding-bottom: min(5vh, 60px);
}

.clk-padding-top-10vh{
	padding-top: min(10vh, 90px);
}

.clk-padding-bottom-10vh{
	padding-bottom: min(10vh, 90px);
}

.clk-padding-both-10vh{
	padding-top: min(10vh, 90px);
	padding-bottom: min(10vh, 90px);
}

.clk-text-container{
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
}

.clk-text-container .clk-cta-button-primary{
	margin-top: 65px;
}

.clk-text-inner-container{
	display: flex;
	flex-direction: column;
}

.clk-pb-24{
	padding-bottom: 24px;
}

.clk-pb-16{
	padding-bottom: 16px;
}

.clk-pb-8{
	padding-bottom: 8px;
}

.clk-pt-24{
	padding-top: 24px;
}

.clk-pt-16{
	padding-top: 16px;
}

.clk-pt-8{
	padding-top: 8px;
}

.transparent{
	background: transparent !important;
}

#hp-hero-section{
	position: relative;
}


#hp-hero-section .hero-overlay .clk-hero-content.ro{
  max-width: 650px;
}


#hp-hero-section video{
	width: 100%;
  height: 100dvh;
	/* height: 100%; */
	object-fit: cover;
	object-position: center;
	margin-bottom: -6px;
	/* max-height: 220vh;
	min-height: 220vh; */
  mix-blend-mode: luminosity;
}

#clk-hero-video-mix{
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100dvh;
  mix-blend-mode: luminosity;
  opacity: 0.2;
}

.hero-overlay{
	height: 100vh;
	width: 100%;
	left: 0;
	top: 0px;
	bottom: 0px;
	position: absolute;
	/* background: linear-gradient(0deg, rgba(0, 0, 0, 0.20) 0%, rgba(0, 0, 0, 0.20) 100%); */
  background: linear-gradient(180deg, rgba(11, 12, 16, 0) 59.2%, #0B0C10 100%);
	padding-top: 118px;
}

.clk-hero-content{
	max-width: 530px;
	width: 100vw;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	align-items: flex-start;
	gap: var(--clk-primary-gap, 24px);
}

.clk-hero-content h2{
	color: var(--clk-white, #FFF);
	font-family: var(--clk-font, "Helvetica",Arial,sans-serif);
	font-size: 40px;
	font-style: normal;
	font-weight: 500;
	line-height: 46px;
}

.clk-cta-button-secondary{
	display: flex;
	padding: 4px 0;
	align-items: center;
	gap: 4px;
	transition: all 0.4s ease-out;
	position: relative;
	overflow: hidden;
}

.clk-cta-button-secondary svg path{
	width: 14px;
	height: 14px;
	fill: var(--clk-white);
}

.transparent .clk-cta-text{
	color: var(--clk-midnight-black, #0B0C10);
}

.clk-cta-text{
	color: var(--clk-white, #FFF);
	font-family: var(--clk-font, "Helvetica",Arial,sans-serif);
	font-size: var(--clk-cta-font-size, 14px);
	font-style: normal;
	font-weight: 400;
	line-height: normal;
}

.clk-cta-text-bold{
	color: var(--clk-white, #FFF);
	font-family: var(--clk-font);
	font-size: var(--clk-cta-font-size, 14px);
	font-style: normal;
	font-weight: 500;
	line-height: normal;
}

.clk-cta-button-primary{
	display: inline-flex;
	padding: 16px;
	align-items: center;
	gap: 4px;
	border-radius: 2px;
	background: var(--clk-prestigious-blue, #202B37);
	transition: all 0.5s ease-out;
	position: relative;
	mask-image: linear-gradient(to right, rgba(11, 12, 16, 1) 100%, rgba(11, 12, 16, 1) 100%);
	transition: all 0.4s ease-out;
}

.clk-cta-button-primary.transparent{
	padding-left: 0px !important;
}

.clk-cta-button-primary svg{
	position: absolute;
	left: -24px;
	top: 50%;
	transform: translateY(-50%);
	display: flex;
	width: 14px;
	height: 14px;
	justify-content: center;
	align-items: center;
	opacity: 0;
	transition: all 0.5s ease-out;
}

/* Primary CTA animation */
.clk-cta-button-primary:hover {
    padding: 16px 16px 16px 26px;
	background: var(--clk-porcelain-white);
}

.clk-cta-button-primary.transparent:hover {
    padding: 4px 4px 4px 22px !important;
}


.clk-cta-button-primary:hover span{
	color: var(--clk-midnight-black, #0B0C10);
	z-index: 1;
}

.clk-cta-button-primary:hover svg {
    left: 8px;
    opacity: 1;
}

.clk-cta-button-primary.transparent:hover svg {
    left: 4px;
}

.clk-cta-button-primary.transparent:not(:hover){
	padding: 4px;
}

.clk-cta-button-primary:not(:hover) svg {
    left: -24px;
    opacity: 0;
}
/* END Primary CTA animation */
.clk-cta-icon-button{
	display: flex;
	width: 40px;
	height: 40px;
	padding: 4px;
	justify-content: center;
	align-items: center;
	gap: 4px;
	border-radius: 100px;
	background: var(--clk-porcelain-white, #F5F3F1);
	transition: all 0.4s ease-out;

	position: relative;
}
.clk-cta-icon-button svg{
	width: 14px;
	height: 14px;
}
.clk-cta-icon-button svg path{
	fill: var(--clk-midnight-black, #0B0C10);
}
.clk-cta-icon-button:hover{
	background: var(--clk-golden-dust, #A18667);
}
.clk-cta-icon-button:hover svg path{
	fill: var(--clk-white, #FFF);
}

/* Tooltip */
.tooltip {
	position: absolute;
	bottom: -25px;
	left: 50%;
	transform: translateX(-50%) translateY(5px);

	display: flex;
	padding: 2px 4px;
	justify-content: center;
	align-items: center;
	border-radius: 2px;
	background: var(--clk-midnight-black, #0B0C10);
	font-family: var(--clk-font);
	font-size: 13px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
	color: var(--clk-white);


	white-space: nowrap;
	opacity: 0;
	visibility: hidden;
	transition: transform 0.2s ease-out, opacity 0.2s ease-out;
}

.clk-cta-icon-button:hover .tooltip {
	opacity: 1;
	visibility: visible;
	transform: translateX(-50%) translateY(-5px); /* Slide up */
}
/* END Tooltip */



.clk-detail-text{
	color: var(--clk-porcelain-white, #F5F3F1);
	font-family: var(--clk-font);
	font-size: var(--clk-cta-details-font-size, 13px);
	font-style: normal;
	font-weight: 400;
	line-height: normal;
}

.hero-slider{
	/* left: 0;
	top: auto;
	bottom: 0px;
	right: auto;
	position: absolute;
	height: calc(100% - 100vh);
	background: linear-gradient(180deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.85) 27.12%); */
  height: 100vh;
  background: var(--clk-midnight-black, #0B0C10);
}

.clk-hero-slider-wrapper{
	grid-column: span 12;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
}

.clk-hero-slider-wrapper h2{
	margin: auto;
	text-align: center;
	color: var(--clk-white, #FFF);
	font-family: var(--clk-font);
	font-size: 40px;
	font-style: normal;
	font-weight: 500;
	line-height: 46px;
}

/* Secondary CTA animation */
.clk-cta-button-secondary span {
    display: block;
    position: relative;
    transition: transform 0.4s ease;
}

.clk-cta-button-secondary::before {
    content: attr(data-text);
    position: absolute;
    left: 0;
    top: calc(100% - 4px);
    width: 100%;
    color: var(--clk-white, #FFF);
    transform: translateY(0);
    transition: transform 0.4s ease;
	opacity: 0;
	font-size: var(--clk-cta-font-size, 14px);
}

.clk-cta-button-secondary::after {
    content: "";
    position: absolute;
    bottom: 2px;
    left: 0;
    height: 1px;
    width: 100%;
    background-color: var(--clk-white, #FFF);
    transition: all 0.4s ease-out;
	opacity: 0;
	font-size: var(--clk-cta-font-size, 14px);
}

.clk-cta-button-secondary.details::before,
.clk-cta-button-secondary.details::after {
	font-size: var(--clk-cta-details-font-size, 13px) !important;
}

.clk-cta-button-secondary:hover span {
    transform: translateY(-130%);
}

.clk-cta-button-secondary:hover::before {
	opacity: 1;
  transform: translateY(-100%);
}

.clk-cta-button-secondary.active::after,
.clk-cta-button-secondary:hover::after {
  opacity: 1;
	bottom: 0;
}

.clk-cta-button-secondary.reversed::before {
	left: auto !important;
	right: 0;
	width: auto !important;
}

.clk-cta-button-secondary.focus::after {
	opacity: 1 !important;
	bottom: 0 !important;
}

/* animation disabled */
.clk-cta-button-secondary.wo-animation::before{
	content: none !important;
	display: none !important;
	transition: none !important;
	transform: none !important;
}

.clk-cta-button-secondary.wo-animation:hover::before {
    transform: none !important;
}

.clk-cta-button-secondary.wo-animation::after {
    content: none !important;
	display: none !important;
}

.clk-cta-button-secondary.wo-animation:hover span{
	transform: none !important;
}
/* END Secondary CTA animation */

#clk-homepage-swiper{
	position: relative;
	z-index: 1;
	overflow: hidden;
	border-radius: 4px;
}

#clk-homepage-swiper .swiper-wrapper{
  gap: 0px;
}

.clk-slide-content-wrapper{
	grid-column: 1 / span 5;
	display: flex;
	flex-direction: column;
	gap: 12px;
	align-items: center;
	justify-content: center;
}

.swiper-slide picture{
	grid-column: span 12;
}

.clk-slide-content{
	position: absolute;
	top: 50%;
	transform: translateY(-50%);

	display: grid;
	grid-template-columns: repeat(var(--clk-grid-columns), minmax(0, 1fr));
	column-gap: var(--clk-grid-column-gap);
	width: 100%;
}

.clk-slide-content-subtitle{
	font-family: var(--clk-font);
	font-size: 14px;
	font-weight: 400;
	line-height: 16px;
	text-align: center;
	color: var(--clk-midnight-black);
}

.clk-slide-content h3{
	font-family: var(--clk-font);
	font-size: 35px;
	font-weight: 500;
	line-height: 40px;
	text-align: center;
	color: var(--clk-midnight-black);
	margin-bottom: 8px;
}

.light-theme .clk-slide-content-subtitle,
.light-theme .clk-slide-content h3{
  color: var(--clk-white);
}

.clk-swiper-button{
	display: flex;
	position: absolute;
	bottom: 16px;
	top: auto;
	justify-content: center;
	align-items: center;
	padding: 4px;

	background: transparent;
	outline: none;
	border: none;
	cursor: pointer;
	border-radius: 2px;

	overflow: hidden;
  transition: background 0.3s ease-out;
	z-index: 2;
}

.light-theme.clk-swiper-button svg path {
  fill: var(--clk-white);
}

.light-theme.clk-swiper-button::before{
  background: var(--clk-disabled-gray);
}

.clk-swiper-button svg{
	width: 14px;
	height: 14px;
	position: relative;
    transition: transform 0.3s ease-out;
}

.clk-swiper-button svg path{
	fill: var(--clk-midnight-black);
}


#clk-swiper-button-prev{
	right: 50px;
}

#clk-swiper-button-next{
	right: 16px;
}

.clk-swiper-controls-container{
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1;
}

.clk-swiper-pagination{
  display: none !important;
}


/* Swiper CTA animation */
.clk-swiper-button::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 100% !important;
    background: var(--clk-porcelain-white);
    transition: width 0.3s ease-out, height 0.3s ease-out;
    z-index: 0;
}

#clk-swiper-button-next:hover svg {
    transform: translateX(3px);
}

#clk-swiper-button-prev::before {
	right: 0;
	left: auto !important;
}

#clk-swiper-button-prev:hover svg {
    transform: translateX(-3px);
}

.clk-swiper-button:hover::before {
    width: 100%;
}

.clk-swiper-button:not(:hover) svg {
    transform: translateX(0);
}

.clk-swiper-button:not(:hover)::before {
    width: 0;
    height: 0;
}

/* END swiper CTA animation */


.clk-image-cta{
	position: relative;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.clk-image-cta::before {
  content: attr(data-text);
  position: absolute;
  left: 0;
  top: 100%;
  width: 100%;
  color: var(--clk-midnight-black, #0B0C10);
  transform: translateY(0);
  transition: transform 0.4s ease;
  opacity: 0;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  font-size: 16px;
}

.clk-image-cta:hover::before {
  opacity: 1;
  transform: translateY(-100%);
}

.clk-image-cta span {
  display: block;
  position: relative;
  transition: transform 0.4s ease-out;
}

.clk-image-cta:hover span {
  transform: translateY(-150%);
  z-index: 0;
}

.clk-image-cta picture{
	z-index: 1;
}

.clk-image-cta img{
	transition: transform 0.3s ease-out;
}

.clk-image-cta:hover img{
	transform: scale(1.08);
}

/* .clk-page-content.rlx-section video{
	max-width: 407px;
	width: 100%;
	aspect-ratio: 1/1.41;
	object-fit: cover;
} */


.clk-page-content.rlx-section{
	padding-bottom: 80px;
}

.clk-page-content.rlx-section h2,
.clk-page-content.rlx-section p{
	color: var(--clk-white);
}

.clk-page-content.rlx-section > img{
	width: 40px;
	height: 40px;
	display: block;
	margin: 0px auto;
}

#homepage-section-2 .clk-col6 .clk-text-container,
.rlx-section .clk-col6 .clk-text-container,
.tudor-section .clk-col6 .clk-text-container{
  max-width: 515px;
}

#clk-hp-POS-info{
	padding-bottom: 40px;
}

#clk-hp-POS-info iframe{
	grid-column: span 12;
  border-radius: 4px;
}

.clk-homepage-contact-card{
	grid-column: span 6;
	display: flex;
	padding-top: 24px;
	flex-direction: column;
	align-items: center;
	flex: 1 0 0;
	text-align: center;
}

.clk-homepage-contact-card h2{
	padding-bottom: 8px;
  font-size: 26px;
}

/* .clk-homepage-contact-card svg{
	margin-bottom: 40px;
} */

.clk-homepage-contact-card:nth-of-type(1) p{
	margin-bottom: 40px;
}

.clk-homepage-contact-card a{
	margin-top: auto;
}

.clk-map-section-overlay{
	position: absolute;
	left: 0;
	top: 0;
	display: flex;
	flex-direction: column;
	bottom: 0;
	padding: 5vh 5vh 5vh var(--clk-grid-padding-width);
  	max-width: 50%;
	width: 100%;
	background:
		linear-gradient(279deg, rgba(245, 243, 241, 0) 47.89%, rgba(245, 243, 241, 1) 67.5%),
		linear-gradient(254deg, rgba(245, 243, 241, 0) 33.83%, rgba(245, 243, 241, 1) 70.97%),
		linear-gradient(to right, rgba(245, 243, 241, 1) 80.91%, rgba(245, 243, 241, 0) 100%);
}

.clk-map-section-overlay .clk-text-inner-container{
	padding-top: 32px;
	padding-bottom: 48px;
  max-width: 575px;
}

.clk-map-section-overlay .h2{
	color: var(--clk-midnight-black, #0B0C10);
}

.clk-map-section-overlay-cta-wrapper{
	display: flex;
	flex-direction: column;
	margin-top: auto;
}

.clk-map-cta{
	border-top: 1px solid var(--clk-outline, #DEDEDE);
	display: flex;
	padding: 24px 8px 0px 0px;
	margin-bottom: 24px;
	align-items: center;
	gap: 8px;
	align-self: stretch;
	transition: all 0.4s ease-in-out;
	position: relative;
	overflow: hidden;
	justify-content: space-between;
}

.clk-map-cta svg{
	transition: all 0.4s ease-in-out;
	position: relative;
	right: 0px;
}

.clk-map-cta::before {
	content: attr(data-text);
	position: absolute;
	left: 0;
	top: calc(100% - 4px);
	width: 100%;
	color: var(--clk-prestigious-blue, #202B37);
	font-family: var(--clk-font);
	font-size: 35px;
	font-style: normal;
	font-weight: 500;
	line-height: normal;
	transform: translateY(0);
	transition: transform 0.4s ease;
	opacity: 0;
}

.clk-map-cta:hover::before {
	opacity: 1;
	transform: translateY(-100%);
}

.clk-map-cta:hover svg {
	right: -8px;
}

.clk-map-cta h3 {
	position: relative;
	transition: transform 0.4s ease;
}

.clk-map-cta:hover h3 {
	transform: translateY(-180%);
}

.clk-map-cta:nth-of-type(1){
	border-top: none !important;
}

.clk-map-cta:nth-of-type(4){
	margin-bottom: 0px !important;
}

.clk-map-cta .clk-cta-text{
	color: var(--clk-prestigious-blue, #202B37);
	font-family: var(--clk-font);
	font-size: 35px;
	font-style: normal;
	font-weight: 500;
	line-height: normal;
}

.clk-page-content.map-section .gm-style-moc{
	display: none !important;
}

.clk-page-content.map-section #googleMap{
	max-height: 768px;
	height: 100vh;
}

.clk-map-section-overlay-hero{
	position: absolute;
	bottom: 48px;
	right: var(--clk-grid-padding-width);
}

.clk-map-overlay-hero{
	display: none;
	width: 407px;
	height: 232px;
	object-fit: cover;
}

.clk-map-section-overlay .clk-content-h2{
	color: var(--clk-midnight-black);
}

#clk-map-section-overlay-hero_default{
  display: block;
}

#clk-map-section-overlay-hero_default-mobile{
	display: none;
	width: 100%;
	height: 100%;
	object-fit: cover;
	margin-top: 5vh;
	margin-bottom: 5vh;
}

#clk-hero-scroll-btn{
	position: absolute;
	right: var(--clk-grid-padding-width);
	bottom: min(10vh,90px);
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	align-items: center;
	cursor: pointer;
	transition: all 0.4s ease-out;
	overflow: hidden;
}

#clk-hero-scroll-btn svg{
	width: 24px;
	height: 24px;
	cursor: pointer;
	transition: all 0.4s ease-out;
}

#clk-hero-scroll-btn.animate svg {
    animation: dropArrow 0.5s ease-out forwards;
}

@keyframes dropArrow {
    0% {
        transform: translateY(0);
        opacity: 1;
    }
    40% {
        transform: translateY(100%);
        opacity: 0;
    }
    41% {
        transform: translateY(-100%);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

.clk-hero-section-offpage-text-container{
	height: 100%;
	display: flex;
  padding-left: var(--clk-grid-padding-width);
  padding-right: var(--clk-grid-padding-width);
  padding-bottom: 80px;
  padding-top: 80px;
  align-items: flex-end;
  justify-content: space-between;
}

.clk-hero-section-offpage-text-inner-container{
  display: flex;
	flex-direction: column;
}

.clk-hero-section-offpage-text-container .clk-hero-detail{
	color: var(--clk-golden-dust, #A18667);
}

.clk-hero-section-offpage-text-container .clk-content-h2{
	margin-bottom: 8px;
	color: var(--clk-prestigious-blue, #202B37);
	max-width: 615px;
}

.clk-hero-section-offpage-text-container .clk-content-h2.full-w{
	max-width: 100%;
}

.clk-hero-section-offpage-text-container .clk-content-body{
	color: var(--clk-midnight-black, #0B0C10);
	max-width: 615px;
}

.clk-hero-section-offpage-text-container .clk-cta-button-primary{
	margin-top: 24px;
}

/* #our-story-page-hero{
	background: linear-gradient(180deg, rgba(0, 0, 0, 0.00) 0%, rgba(0, 0, 0, 0.50) 100%), linear-gradient(0deg, rgba(0, 0, 0, 0.50) 0%, rgba(0, 0, 0, 0.50) 100%), url('/chronolink-assets/our-story/chronolink-our-story-hero.jpg') lightgray 50% / cover no-repeat;
} */

/* #our-philosophy-page-hero{
	background: linear-gradient(180deg, rgba(0, 0, 0, 0.00) 0%, rgba(0, 0, 0, 0.50) 100%), linear-gradient(0deg, rgba(0, 0, 0, 0.50) 0%, rgba(0, 0, 0, 0.50) 100%), url('/chronolink-assets/our-philosophy/chronolink-our-philosophy-hero.jpg') lightgray 50% / cover no-repeat;
}

#our-appointment-policy-page-hero{
	background: linear-gradient(180deg, rgba(0, 0, 0, 0.00) 0%, rgba(0, 0, 0, 0.50) 100%), linear-gradient(0deg, rgba(0, 0, 0, 0.50) 0%, rgba(0, 0, 0, 0.50) 100%), url('/chronolink-assets/our-appointment-policy/chronolink-our-appointment-policy-hero.jpg') lightgray 50% / cover no-repeat;
}

#our-appointment-policy-page-hero .clk-hero-section-offpage-text-container .clk-content-h2{
  max-width: 600px;
}

#sell-your-watch-page-hero{
	background: linear-gradient(180deg, rgba(0, 0, 0, 0.00) 0%, rgba(0, 0, 0, 0.50) 100%), linear-gradient(0deg, rgba(0, 0, 0, 0.50) 0%, rgba(0, 0, 0, 0.50) 100%), url('/chronolink-assets/sell-your-watch/chronolink-sell-your-watch-hero.jpg') lightgray 50% / cover no-repeat;
}

#authorized-rolex-service-page-hero{
	background: linear-gradient(180deg, rgba(0, 0, 0, 0.00) 0%, rgba(0, 0, 0, 0.50) 100%), linear-gradient(0deg, rgba(0, 0, 0, 0.50) 0%, rgba(0, 0, 0, 0.50) 100%), url('/chronolink-assets/authorized-rolex-service/chronolink-authorized-rolex-service-hero.jpg') lightgray 50% / cover no-repeat;
}

#authorized-tudor-service-page-hero{
	background: linear-gradient(180deg, rgba(0, 0, 0, 0.00) 0%, rgba(0, 0, 0, 0.50) 100%), linear-gradient(0deg, rgba(0, 0, 0, 0.50) 0%, rgba(0, 0, 0, 0.50) 100%), url('/chronolink-assets/authorized-tudor-service/chronolink-authorized-tudor-service-hero.png') lightgray 50% / cover no-repeat;
}

#chronolink-certified-pre-owned-page-hero{
	background: linear-gradient(180deg, rgba(0, 0, 0, 0.00) 0%, rgba(0, 0, 0, 0.50) 100%), linear-gradient(0deg, rgba(0, 0, 0, 0.50) 0%, rgba(0, 0, 0, 0.50) 100%), url('/chronolink-assets/chronolink-certified-pre-owned/chronolink-certified-pre-owned-hero.jpeg') lightgray 50% / cover no-repeat;
} */

#our-story-section-4{
	column-gap: 24px;
}
#our-story-section-4 .clk-content-container{
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}
#our-story-section-4 .clk-content-container picture{
	margin-bottom: 40px;
}
#our-story-section-4 .clk-content-container .clk-text-container{
	margin-top: auto;
	margin-bottom: 40px;
	flex-direction: row;
	height: auto;
	gap: 24px;
	justify-content: space-between;
	width: 100%;
}
#our-story-section-4 .clk-content-container .clk-text-container .clk-content-h4{
	max-width: 515px;
  width: 100%;
}
#our-story-section-4 .clk-content-container .clk-text-container .clk-text-inner-container{
	max-width: 300px;
  width: 100%;
}
#our-story-section-4 picture img{
	height: 100%;
	object-fit: cover;
	object-position: 100%;
}
#our-story-section-2 .clk-col6.clk-content-container .clk-text-container{
	justify-content: flex-start;
}
#our-story-section-2 .clk-col6.clk-content-container .clk-text-container .clk-content-h3{
	max-width: 500px;
}
#our-story-section-2 .clk-col6.clk-content-container .clk-text-container .clk-text-inner-container{
	max-width: 600px;
}

#our-story-section-2 .clk-col6{
  grid-column: 4/10;
  margin: 0px auto;
  text-align: center;
}

#our-story-section-2{
	row-gap: 24px;
  background-color: var(--clk-porcelain-white);
}

#our-story-section-1 .clk-text-container{
  justify-content: flex-start;
}
#our-story-section-1 .clk-text-container .clk-cta-button-primary{
  margin-top: 40px;
}
#our-story-section-1 .clk-content-h2{
	max-width: 600px;
	width: 100%;
}
#our-story-section-3 .clk-text-inner-container{
	max-width: 600px;
	width: 100%;
}
#our-story-section-3 video{
	width: 299px;
	height: 100%;
	object-fit: cover;
}








#our-philosophy-section-1{
	column-gap: 24px;
}
#our-philosophy-section-1 .clk-text-container,
#our-philosophy-section-2 .clk-text-container,
#our-philosophy-section-3 .clk-text-container{
	justify-content: flex-start;
}
#our-philosophy-section-1 .clk-content-h2{
	max-width: 600px;
	width: 100%;
}
#our-philosophy-section-1 .clk-text-inner-container{
	max-width: 650px;
	width: 100%;
}
#our-philosophy-section-2 {
  row-gap: 24px;
  background-color: var(--clk-porcelain-white);
}
#our-philosophy-section-2 .clk-text-inner-container{
	max-width: 650px;
	width: 100%;
}
#our-philosophy-section-2 .clk-col6{
  grid-column: 4/10;
  margin: 0px auto;
  text-align: center;
}
#our-philosophy-section-3 .clk-text-container .clk-cta-button-primary{
	margin-top: auto;
}
#our-philosophy-section-3 .clk-text-inner-container{
	max-width: 650px;
	width: 100%;
}
#our-philosophy-section-4{
	column-gap: 24px;
}
#our-philosophy-section-4 .clk-content-container{
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: flex-start;
}
#our-philosophy-section-4 .clk-content-container picture{
	margin-bottom: 40px;
	margin-left: auto;
}
#our-philosophy-section-4 .clk-content-container .clk-text-container{
	margin-bottom: 40px;
	flex-direction: row;
	height: auto;
	gap: 24px;
	justify-content: space-between;
	width: 100%;
}
#our-philosophy-section-4 .clk-content-container .clk-text-container .clk-content-h4{
	max-width: 460px;
  	width: 100%;
}
#our-philosophy-section-4 .clk-content-container .clk-text-container .clk-text-inner-container{
	max-width: 300px;
  	width: 100%;
}
#our-philosophy-section-4 picture img{
	height: 100%;
	object-fit: cover;
	object-position: 100%;
}





#our-appointment-policy-page-hero .clk-hero-section-offpage-text-container .clk-content-h2{
  max-width: 500px;
}

#our-appointment-policy-page-hero .clk-hero-section-offpage-text-container .clk-content-body{
  max-width: 740px;
}

#our-appointment-policy-section-1 {
  row-gap: 24px;
}
#our-appointment-policy-section-1 .clk-text-container{
	justify-content: flex-start;
}
#our-appointment-policy-section-1 .clk-content-h2{
	max-width: 500px;
	width: 100%;
}
#our-appointment-policy-section-1 .clk-text-inner-container{
	max-width: 630px;
	width: 100%;
}
#our-appointment-policy-section-2{
	column-gap: 24px;
}
#our-appointment-policy-section-2 .clk-content-h2,
#our-appointment-policy-section-3 .clk-content-h2,
#our-appointment-policy-section-4 .clk-content-h2{
	max-width: 470px;
	width: 100%;
}
#our-appointment-policy-section-2 .clk-text-inner-container,
#our-appointment-policy-section-3 .clk-text-inner-container,
#our-appointment-policy-section-4 .clk-text-inner-container{
	max-width: 515px;
	width: 100%;
}
#our-appointment-policy-section-2 .clk-content-detail,
#our-appointment-policy-section-3 .clk-content-detail,
#our-appointment-policy-section-4 .clk-content-detail{
	padding-bottom: 65px;
}









#sell-your-watch-section-1 {
  row-gap: 24px;
}
#sell-your-watch-section-1 .clk-text-container{
	justify-content: flex-start;
}
#sell-your-watch-section-1 .clk-content-h3{
	max-width: 500px;
	width: 100%;
}
#sell-your-watch-section-1 .clk-text-inner-container{
	max-width: 515px;
	width: 100%;
  margin-left: auto;
}

#sell-your-watch-section-2{
	column-gap: 24px;
}
#sell-your-watch-section-2 .clk-content-h2,
#sell-your-watch-section-3 .clk-content-h2,
#sell-your-watch-section-4 .clk-content-h2{
	max-width: 550px;
	width: 100%;
}
#sell-your-watch-section-2 .clk-text-inner-container,
#sell-your-watch-section-3 .clk-text-inner-container,
#sell-your-watch-section-4 .clk-text-inner-container{
	max-width: 550px;
	width: 100%;
}
#sell-your-watch-section-2 .clk-content-detail,
#sell-your-watch-section-3 .clk-content-detail,
#sell-your-watch-section-4 .clk-content-detail{
	padding-bottom: 65px;
}









#authorized-rolex-service-section-1 .clk-text-container{
	justify-content: flex-start;
}

#authorized-rolex-service-section-1 .clk-content-h2.ro{
  max-width: 520px;
}

#authorized-rolex-service-section-1 .clk-content-h2{
	max-width: 460px;
	width: 100%;
}
#authorized-rolex-service-section-1 .clk-text-inner-container{
	max-width: 600px;
	width: 100%;
}
#authorized-rolex-service-section-1 .clk-content-container:nth-of-type(2) .clk-text-container{
	align-items: flex-end;
  	display: flex;
}
#authorized-rolex-service-section-1 .clk-content-container:nth-of-type(3){
	max-width: 520px;
	width: 100%;
}
#authorized-rolex-service-section-1 .clk-text-inner-container:nth-of-type(2){
	margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--clk-outline, #DEDEDE);
}
#authorized-rolex-service-section-1 .clk-text-inner-container:nth-of-type(2) .clk-content-detail {
	color: var(--clk-prestigious-blue, #202B37);
}
#authorized-rolex-service-section-1 .clk-content-container:nth-of-type(4){
	max-width: 600px;
	width: 100%;
	margin-left: auto;
}
#authorized-rolex-service-section-separator > div{
  grid-column: span 12;
  height: 1px;
  background: var(--clk-outline, #DEDEDE);
}


#authorized-tudor-services-section,
#authorized-rolex-services-section{
	display: flex;
	align-items: flex-start;
	gap: 24px;
	align-self: stretch;
}
.clk-service-card{
	display: flex;
	padding-top: 24px;
	flex-direction: column;
	align-items: center;
	gap: 40px;
	flex: 1 0 0;
}
.clk-service-card .clk-content-body{
	text-align: center;
}

#authorized-rolex-service-section-2 .clk-content-h2,
#authorized-rolex-service-section-3 .clk-content-h2{
	max-width: 515px;
	width: 100%;
}
#authorized-rolex-service-section-2 .clk-text-inner-container,
#authorized-rolex-service-section-3 .clk-text-inner-container{
	max-width: 515px;
	width: 100%;
}
#authorized-rolex-service-section-2 .clk-content-detail,
#authorized-rolex-service-section-3 .clk-content-detail{
	padding-bottom: 65px;
}
#authorized-rolex-service-section-3 .clk-content-container{
	display: flex;
	justify-content: flex-end;
}


#authorized-rolex-service-page-hero .clk-hero-section-offpage-text-container .clk-content-h2{
  max-width: 660px;
}

#authorized-rolex-service-page-hero .clk-hero-section-offpage-text-container .clk-content-body{
  max-width: 710px;
}


#authorized-tudor-service-page-hero .clk-hero-section-offpage-text-container .clk-content-body{
	 max-width: 500px;
}
#authorized-tudor-service-section-1 .clk-text-container{
	justify-content: flex-start;
}
#authorized-tudor-service-section-1 .clk-content-h3{
	max-width: 500px;
	width: 100%;
}
#authorized-tudor-service-section-1 .clk-text-inner-container{
	max-width: 600px;
	width: 100%;
}
#authorized-tudor-service-section-1 .clk-content-container:nth-of-type(1) .clk-text-inner-container{
	border-top: 1px solid var(--clk-outline,#dedede);
	padding-top: 16px;
	max-width: 520px;
}
#authorized-tudor-service-section-1 .clk-content-container:nth-of-type(2) .clk-text-container{
	align-items: flex-end;
  	display: flex;
}
#authorized-tudor-service-section-1 .mobile{
	display: none;
}
#authorized-tudor-service-section-2 .clk-content-h2,
#authorized-tudor-service-section-3 .clk-content-h2{
	max-width: 550px;
	width: 100%;
}
#authorized-tudor-service-section-2 .clk-text-inner-container,
#authorized-tudor-service-section-3 .clk-text-inner-container{
	max-width: 550px;
	width: 100%;
}
#authorized-tudor-service-section-2 .clk-content-detail,
#authorized-tudor-service-section-3 .clk-content-detail{
	padding-bottom: 65px;
}
#authorized-tudor-service-section-3 .clk-content-container{
	display: flex;
	justify-content: flex-end;
}






#chronolink-certified-pre-owned-page-hero .clk-content-h2{
	max-width: 570px;
}
#chronolink-certified-pre-owned-section-1 {
  row-gap: 24px;
}
#chronolink-certified-pre-owned-section-1 .clk-text-container{
	justify-content: flex-start;
}
#chronolink-certified-pre-owned-section-1 .clk-content-h3{
	max-width: 500px;
	width: 100%;
}
#chronolink-certified-pre-owned-section-1 .clk-text-inner-container{
	max-width: 600px;
	width: 100%;
}
#chronolink-certified-pre-owned-section-1 .clk-content-container:nth-of-type(2) .clk-text-container{
	 align-items: flex-end;
}

#chronolink-certified-pre-owned-section-2{
	column-gap: 24px;
}
#chronolink-certified-pre-owned-section-2 .clk-content-h2,
#chronolink-certified-pre-owned-section-3 .clk-content-h2,
#chronolink-certified-pre-owned-section-4 .clk-content-h2{
	max-width: 485px;
	width: 100%;
}

#chronolink-certified-pre-owned-section-2 .clk-content-h2.ro{
	max-width: 530px;
}
#chronolink-certified-pre-owned-section-3 .clk-content-h2.ro{
	max-width: 570px;
}
#chronolink-certified-pre-owned-section-4 .clk-content-h2.ro{
	max-width: 630px;
}

#chronolink-certified-pre-owned-section-2 .clk-text-inner-container,
#chronolink-certified-pre-owned-section-3 .clk-text-inner-container,
#chronolink-certified-pre-owned-section-4 .clk-text-inner-container{
	max-width: 550px;
	width: 100%;
}
#chronolink-certified-pre-owned-section-2 .clk-content-detail,
#chronolink-certified-pre-owned-section-3 .clk-content-detail,
#chronolink-certified-pre-owned-section-4 .clk-content-detail{
	padding-bottom: 65px;
}



/* #store-hero-chronolink-rolex-boutique-marriott-bucharest,
#store-hero-chronolink-rolex-boutique-marriott-bucuresti{
	background: linear-gradient(180deg, rgba(0, 0, 0, 0.00) 0%, rgba(0, 0, 0, 0.50) 100%), linear-gradient(0deg, rgba(0, 0, 0, 0.50) 0%, rgba(0, 0, 0, 0.50) 100%), url('/chronolink-assets/store-page/chronolink-rolex-boutique-marriott/chronolink-rolex-boutique-marriott-hero.jpg') lightgray 50% / cover no-repeat;
}
#store-hero-chronolink-tudor-boutique-marriott-bucharest,
#store-hero-chronolink-tudor-boutique-marriott-bucuresti{
	background: linear-gradient(180deg, rgba(0, 0, 0, 0.00) 0%, rgba(0, 0, 0, 0.50) 100%), linear-gradient(0deg, rgba(0, 0, 0, 0.50) 0%, rgba(0, 0, 0, 0.50) 100%), url('/chronolink-assets/store-page/chronolink-tudor-boutique-marriott/chronolink-tudor-boutique-marriott-hero.jpg') lightgray 50% / cover no-repeat;
}
#store-hero-chronolink-rolex-boutique-primaverii{
	background: linear-gradient(180deg, rgba(0, 0, 0, 0.00) 0%, rgba(0, 0, 0, 0.50) 100%), linear-gradient(0deg, rgba(0, 0, 0, 0.50) 0%, rgba(0, 0, 0, 0.50) 100%), url('/chronolink-assets/store-page/chronolink-rolex-boutique-primaverii/chronolink-primaverii-hero.jpg') lightgray 50% / cover no-repeat;
}
#store-hero-chronolink-rolex-service-center{
	background: linear-gradient(180deg, rgba(0, 0, 0, 0.00) 0%, rgba(0, 0, 0, 0.50) 100%), linear-gradient(0deg, rgba(0, 0, 0, 0.50) 0%, rgba(0, 0, 0, 0.50) 100%), url('/chronolink-assets/store-page/chronolink-rolex-service-center/chronolink-rolex-service-center-hero.jpg') lightgray 50% / cover no-repeat;
} */


#chronolink-store-page-section-1.chronolink-rolex-boutique-marriott .clk-content-container:nth-of-type(1){
  max-width: 510px;
}
#chronolink-store-page-section-1.chronolink-rolex-boutique-primaverii .clk-content-container:nth-of-type(1){
  max-width: 450px;
}
#chronolink-store-page-section-1.chronolink-tudor-boutique-marriott .clk-content-container:nth-of-type(1){
  max-width: 500px;
}
#chronolink-store-page-section-1.chronolink-rolex-service-center .clk-content-container:nth-of-type(1){
  max-width: 510px;
}


#chronolink-store-page-section-1 .clk-content-container:nth-of-type(2) .clk-text-inner-container{
  align-items: center;
}

#chronolink-store-page-section-1.chronolink-rolex-boutique-marriott .clk-content-container:nth-of-type(2) .clk-content-body{
  max-width: 510px;
}
#chronolink-store-page-section-1.chronolink-rolex-boutique-marriott .clk-content-container:nth-of-type(2) .clk-content-detail{
  max-width: 510px;
}

#chronolink-store-page-section-1.chronolink-rolex-boutique-primaverii .clk-content-container:nth-of-type(2) .clk-content-body{
  max-width: 330px;
}
#chronolink-store-page-section-1.chronolink-rolex-boutique-primaverii .clk-content-container:nth-of-type(2) .clk-content-detail{
  max-width: 470px;
}

#chronolink-store-page-section-1.chronolink-tudor-boutique-marriott .clk-content-container:nth-of-type(2) .clk-content-body{
  max-width: 290px;
}
#chronolink-store-page-section-1.chronolink-tudor-boutique-marriott .clk-content-container:nth-of-type(2) .clk-content-detail{
  max-width: 500px;
}

#chronolink-store-page-section-1.chronolink-rolex-service-center .clk-content-container:nth-of-type(2) .clk-content-body{
  max-width: 510px;
}
#chronolink-store-page-section-1.chronolink-rolex-service-center .clk-content-container:nth-of-type(2) .clk-content-detail{
  max-width: 510px;
}

#chronolink-store-page-section-1 .clk-col6 {
  grid-column: 4/10;
  margin: 0 auto;
  text-align: center;
}

.clk-store-page-gallery{
	display: flex;
	justify-content: center;
	align-items: center;
	align-content: center;
	gap: 120px;
	align-self: stretch;
	flex-wrap: wrap;
	margin-top: -594px;
}

.clk-store-page-contact{
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 8px;
	align-self: stretch;
  padding-bottom: 120px;
}

.clk-store-page-contact .clk-text-container{
	display: flex;
	padding: 40px 0px;
	flex-direction: column;
	align-items: center;
  text-align: center;
	gap: 8px;
	height: auto;
}

.clk-store-page-contact .clk-text-container .clk-content-body{
	max-width: 730px;
	width: 100%;
	text-align: center;
}


.clk-store-page-contact img{
	height: 45px;
}

#clk-store-page-gallery-container{
	grid-column: span 12;
	position: relative;
	display: flex;
	flex-direction: column;
}

.clk-store-page-contact .clk-content-h2{
  max-width: 770px;
  width: 100%;
}

.book-appointment-modal {
  display: flex;
  background: rgba(11,12,16,0.2);
  position: fixed;
  top:0;
  bottom: 0;
  left: 0;
  right: 0;
  justify-content: center;
  align-items: center;
  z-index: 99999999999999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease-out;
}

.book-appointment-modal.active {
  opacity: 1;
  pointer-events: all;
}

.book-appointment-modal .clk-store-page-pos-details{
  position: static !important;
  margin: 0px !important;
  align-self: center;
  transform: translateY(100%);
  transition: transform 0.4s ease-out;
}

.book-appointment-modal.active .clk-store-page-pos-details {
  transform: translateY(0%);
}

.book-appointment-modal p{
  margin-bottom: 0px;
}

.book-appointment-modal-divider{
  height: 1px;
  width: 100%;
  background: rgba(222, 222, 222, 1);
  margin: 8px 0px;
}

.clk-store-page-pos-details{
	display: flex;
	padding: 24px;
	flex-direction: column;
	align-items: center;
	gap: 16px;
	align-self: stretch;

	border-radius: 4px;
	background: var(--clk-white, #FFF);
	box-shadow: 0px 14px 124px 0px rgba(0, 0, 0, 0.25);

	max-width: 400px;
	width: 100%;

	position: sticky;
	top: 30%;
	margin: 100px auto 50px auto;
}

.clk-store-page-pos-details-title{
	display: flex;
	align-items: flex-start;
	gap: 40px;
	align-self: stretch;
	font-size: 16px;
	justify-content: space-between;
}

.clk-store-page-pos-details-status{
	color: var(--clk-golden-dust, #A18667);
	font-family: var(--clk-font);
	font-size: 13px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 4px;
	white-space: nowrap;
}

.clk-store-page-pos-details-address{
	display: flex;
	align-items: flex-start;
	gap: 40px;
	align-self: stretch;
}

.clk-store-page-pos-details-contact{
  display: flex;
  justify-content: space-between;
  align-self: stretch;
  color: var(--clk-midnight-black);
	font-family: var(--clk-font);
	font-size: 14px;
	font-style: normal;
	font-weight: 400;
	line-height: 20px;
}

.clk-store-page-pos-details-hours{
	display: flex;
	padding-top: 16px;
	flex-direction: column;
	align-items: flex-start;
	gap: 8px;
	align-self: stretch;
	border-top: 1px solid var(--clk-outline, #DEDEDE);
}

.clk-store-page-pos-details-hours div{
	display: flex;
	align-items: flex-end;
	gap: 40px;
	align-self: stretch;
	justify-content: space-between;

	color: var(--clk-midnight-black, #0B0C10);
	font-family: var(--clk-font);
	font-size: 14px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
}

.clk-store-page-pos-details-hours div label{
	display: flex;
	align-items: center;
	gap: 4px;
}

.clk-store-page-pos-details-hours div label svg{
	display: none;
}

.clk-store-page-pos-details-hours .current-date{
	color: var(--clk-golden-dust, #A18667);
}

.clk-store-page-pos-details-hours .current-date svg{
	display: block;
}

.clk-store-page-pos-details-ctas{
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 16px;
	align-self: stretch;
}

#clk-store-page-gallery-chronolink-rolex-boutique-marriott img:nth-of-type(1){
	object-fit: cover;
	max-width: calc(65% - 120px);
}
#clk-store-page-gallery-chronolink-rolex-boutique-marriott img:nth-of-type(2){
	max-width: calc(35%);
}
#clk-store-page-gallery-chronolink-rolex-boutique-marriott img:nth-of-type(3){
	max-width: calc(55% - 120px);
}
#clk-store-page-gallery-chronolink-rolex-boutique-marriott img:nth-of-type(4){
	max-width: 25%;
}
#clk-store-page-gallery-chronolink-rolex-boutique-marriott img:nth-of-type(5){
	max-width: calc(45% - 120px);
}
#clk-store-page-gallery-chronolink-rolex-boutique-marriott img:nth-of-type(6){
	max-width: 55%;
}






#clk-store-page-gallery-chronolink-tudor-boutique-marriott img:nth-of-type(1){
	object-fit: cover;
	max-width: calc(42% - 120px);
}
#clk-store-page-gallery-chronolink-tudor-boutique-marriott img:nth-of-type(2){
	max-width: calc(58%);
}
#clk-store-page-gallery-chronolink-tudor-boutique-marriott img:nth-of-type(3){
	max-width: calc(55% - 120px);
}
#clk-store-page-gallery-chronolink-tudor-boutique-marriott img:nth-of-type(4){
	max-width: 25%;
}
#clk-store-page-gallery-chronolink-tudor-boutique-marriott img:nth-of-type(5){
	max-width: calc(52% - 120px);
}
#clk-store-page-gallery-chronolink-tudor-boutique-marriott img:nth-of-type(6){
	max-width: 48%;
}



#clk-store-page-gallery-chronolink-rolex-boutique-primaverii img:nth-of-type(1){
	object-fit: cover;
	max-width: calc(55% - 120px);
}
#clk-store-page-gallery-chronolink-rolex-boutique-primaverii img:nth-of-type(2){
	max-width: calc(37%);
}
#clk-store-page-gallery-chronolink-rolex-boutique-primaverii img:nth-of-type(3){
	max-width: calc(42% - 120px);
}
#clk-store-page-gallery-chronolink-rolex-boutique-primaverii img:nth-of-type(4){
	max-width: 58%;
}
#clk-store-page-gallery-chronolink-rolex-boutique-primaverii img:nth-of-type(5){
	max-width: calc(55% - 120px);
}
#clk-store-page-gallery-chronolink-rolex-boutique-primaverii img:nth-of-type(6){
	max-width: 45%;
}




#clk-store-page-gallery-chronolink-rolex-service-center img:nth-of-type(1){
	object-fit: cover;
	max-width: calc(57% - 120px);
}
#clk-store-page-gallery-chronolink-rolex-service-center img:nth-of-type(2){
	max-width: calc(35%);
}
#clk-store-page-gallery-chronolink-rolex-service-center img:nth-of-type(3){
	max-width: calc(43% - 120px);
}
#clk-store-page-gallery-chronolink-rolex-service-center img:nth-of-type(4){
	max-width: 57%;
}
#clk-store-page-gallery-chronolink-rolex-service-center img:nth-of-type(5){
	max-width: calc(45% - 120px);
}
#clk-store-page-gallery-chronolink-rolex-service-center img:nth-of-type(6){
	max-width: 50%;
}




#clk-contact-section .clk-contact-row{
	display: flex;
	flex-direction: row;
	gap: 24px;
	width: 100%;
}

#clk-contact-section .clk-contact-page-title{
	padding-bottom: 40px;
}

#clk-contact-section .clk-contact-row .form-field{
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 16px;
}


#clk-contact-section .clk-contact-row label.clk-content-detail{
  line-height: 18px;
  display: flex;
  gap: 2px;
}

#clk-contact-section .wpcf7-form{
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 32px;
	flex: 1 0 0;
	align-self: stretch;
	max-width: 80%;
}

#clk-contact-section .wpcf7-form-control{
	outline: none !important;
	border: none;
	border-bottom: 1px solid var(--clk-outline, #DEDEDE);
	padding-bottom: 4px;


	color: var(--clk-midnight-black, #0B0C10);
	font-family: var(--clk-font);
	font-size: 17px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
}

#clk-contact-section .wpcf7-form-control:hover{
	border-bottom: 1px solid var(--clk-midnight-black, #0B0C10);
}

#clk-contact-section .wpcf7-select{
	background: none !important;
}

#clk-contact-section .form-field--title .wpcf7-form-control,
#clk-contact-section .wpcf7-form-control.wpcf7-select option:first-child,
#clk-contact-section .wpcf7-form-control::placeholder{
	color: var(--clk-disabled-gray, #929292);
	font-family: var(--clk-font);
	font-size: 17px;
	font-style: italic;
	font-weight: 400;
	line-height: normal;
}

#clk-contact-section .form-field--title.filled .wpcf7-form-control{
    color: var(--clk-midnight-black, #0B0C10);
	font-family: var(--clk-font);
	font-size: 17px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
}

#clk-contact-section .form-field--fname,
#clk-contact-section .form-field--lname,
#clk-contact-section .form-field--email,
#clk-contact-section .form-field--number,
#clk-contact-section .form-field--message,
.clk-contact-row .wpcf7-form-control-wrap,
.clk-contact-row.clk-contact-message,
.clk-contact-row.clk-contact-message .wpcf7-form-control-wrap,
.clk-contact-row.clk-contact-message textarea{
	width: 100%;
	resize: none;
}

.clk-contact-row .wpcf7-form-control.wpcf7-text{
	width: 100%;
}

.clk-contact-row.clk-contact-mandatory{
	width: 100%;
}
.clk-contact-mandatory .form-field{
	flex-direction: row-reverse!important;
	gap: 4px !important;
	align-self: stretch;
	align-items: center !important;
	width: 100%;
	justify-content: space-between !important;
}
.clk-contact-mandatory .clk-content-detail{
	color: var(--clk-disabled-gray, #929292);
	font-family: var(--clk-font) !important;
	font-size: 13px !important;
	font-style: normal !important;
	font-weight: 400 !important;
	line-height: normal !important;
	white-space: nowrap;
}
.clk-contact-mandatory .wpcf7-form-control-wrap .wpcf7-list-item-label{
	font-size: 13px !important;
}
.clk-contact-acceptance-href{
	color: var(--clk-golden-dust, #A18667) !important;
}
#clk-contact-section .clk-contact-mandatory .wpcf7-form-control{
	border: none !important;
}
#clk-contact-submit-button{
	outline: none !important;
	border: none !important;
  cursor: pointer;
}
#clk-contact-section .wpcf7-not-valid-tip{
	display: block !important;
	font-weight: 400 !important;
  font-size: 13px !important;
	margin-top: 6px !important;
}

#clk-contact-section input[type="checkbox"] + .wpcf7-list-item-label::before{
	width: 16px;
	height: 16px;
	border-radius: 2px;
	border: 1px solid var(--clk-midnight-black, #0B0C10);
	position: relative;
	top: -1px;
	cursor: pointer;
}

#clk-contact-section input[type="checkbox"]:checked + .wpcf7-list-item-label::before{
	background: var(--clk-prestigious-blue, #202B37);
	border-color: var(--clk-prestigious-blue, #202B37);
	border-radius: 2px;
	cursor: pointer;
}

#clk-contact-section input[type="checkbox"]:checked:hover + .wpcf7-list-item-label::before{
	background: var(--clk-golden-dust, #A18667);
	border-color: var(--clk-golden-dust, #A18667);
	border-radius: 2px;
	cursor: pointer;
}

#clk-contact-section input[type="checkbox"]:checked + .wpcf7-list-item-label::after {
  content: '\2713';
  position: absolute;
  left: 4px;
  top: -2px;
  font-size: 12px;
  color: var(--clk-white);
}

#clk-contact-section input[type="checkbox"] + .wpcf7-list-item-label::before{
	margin-right: 4px;
}

#clk-contact-section video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.clk-contact-locations-container{
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 40px;
	align-self: stretch;
}
.clk-contact-location-wrapper{
	display: flex;
	align-items: flex-start;
	gap: 24px;
	align-self: stretch;
	border-top: 1px solid var(--clk-outline, #DEDEDE);
}
.clk-contact-location-inner-wrapper{
	display: flex;
	padding-top: 24px;
	flex-direction: column;
	align-items: flex-start;
	gap: 8px;
	flex: 1 0 0;
}
.clk-contact-location-inner-wrapper .clk-content-body{
	padding-bottom: 16px;
}
.clk-contact-location-inner-wrapper > div{
	display: flex;
	align-items: flex-end;
	gap: 16px;
	align-self: stretch;
}
.clk-contact-location-status{
	display: flex;
	padding-top: 24px;
	justify-content: center;
	align-items: center;
	gap: 4px;

	color: var(--clk-golden-dust, #A18667);
	font-family: var(--clk-font);
	font-size: 13px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
}
.clk-contact-location-status svg{
	width: 4px;
	height: 4px;
}

#clk-contact-section-2 .clk-content-h2{
	display: none;
}

.page-template-25-chrono-contact .form-field.form-field--fname.label-float{
	padding: 0px !important;
}

.clk-faq-container{
	border-top: 1px solid var(--clk-outline, #DEDEDE);
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 24px;
	align-self: stretch;
}

.clk-faq-container-heading{
	display: flex;
	padding-bottom: 24px;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
	gap: 16px;
	align-self: stretch;
}

.clk-faq-item{
	display: flex;
	flex-direction: column;
	width: 100%;
}

.clk-faq-item svg {
	transition: all 0.4s ease-out;
}

.clk-faq-answer {
    height: 0;
    overflow: hidden;
    transition: height 0.4s ease-in-out;
}

.clk-faq-item.active svg {
	transition: all 0.5s ease-out;
    transform: rotate(90deg);
}

.clk-faq-item.active{
	gap: 24px;
}

.clk-faq-question{
	display: flex;
	padding-bottom: 8px;
	align-items: center;
	gap: 8px;
	align-self: stretch;
	border-bottom: 1px solid var(--clk-outline, #DEDEDE);
	justify-content: space-between;
	cursor: pointer;
	position: relative;
	overflow: hidden;
	transition: all 0.4s ease-in-out;
}

.clk-faq-question h3 {
  display: block;
  position: relative;
  transition: transform 0.4s ease;
}
.clk-faq-question:hover h3 {
  transform: translateY(-130%);
}

.clk-faq-question::before {
  content: attr(data-text);
  position: absolute;
  left: 0;
  top: calc(100% - 8px);
  width: 100%;
  transform: translateY(0);
  transition: transform 0.4s ease;
  opacity: 0;
  color: var(--clk-prestigious-blue, #202B37);
  font-family: var(--clk-font);
  font-size: 35px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
.clk-faq-question:hover::before {
  opacity: 1;
  transform: translateY(-100%);
}
.clk-faq-question:hover {
	border-bottom-color: var(--clk-prestigious-blue, #202B37);
}

.clk-legals-section{
	margin-top: 118px;
}

.clk-legals-section .the-content{
	max-width: 100%;
}

.clk-legals-section .clk-content-container{
	grid-column-start: 2;
	grid-column-end: 12;
}

.clk-legals-section .clk-content-h2{
    margin-bottom: 40px;
}

.clk-legals-section *,
.clk-legals-section .the-content  p{
	color: var(--clk-midnight-black);
	font-family: var(--clk-font, "Helvetica", Arial, sans-serif);
}

#homepage-section-5 .clk-grid{
   grid-column-gap: 24px;
}


.clk-legals-section .the-content a.clk-cmplz-show-banner {
  display: inline-flex;
  padding: 16px;
  align-items: center;
  gap: 4px;
  border-radius: 2px;
  background: var(--clk-prestigious-blue, #202B37);
  transition: all 0.5s ease-out;
  position: relative;
  mask-image: linear-gradient(to right, rgba(11, 12, 16, 1) 100%, rgba(11, 12, 16, 1) 100%);
  color: #FFF !important;
  font: var(--clk-font);
  cursor: pointer;
}

.clk-legals-section a.clk-cmplz-show-banner:hover {
  background: var(--clk-porcelain-white);
  color: var(--clk-midnight-black, #0B0C10) !important;
}

@media (max-width: 1600px){

	#our-philosophy-section-4 .clk-col3{
		grid-column: span 4;
	}

	#our-philosophy-section-4 .clk-col9{
		grid-column: span 8;
	}
}

@media (max-width: 1400px){

	#our-appointment-policy-section-2 .clk-content-container,
	#our-appointment-policy-section-3 .clk-content-container,
	#our-appointment-policy-section-4 .clk-content-container,
  #sell-your-watch-section-2 .clk-content-container,
	#sell-your-watch-section-3 .clk-content-container,
	#sell-your-watch-section-4 .clk-content-container,
	#authorized-rolex-service-section-2 .clk-content-container,
	#authorized-rolex-service-section-3 .clk-content-container,
	#authorized-tudor-service-section-2 .clk-content-container,
	#authorized-tudor-service-section-3 .clk-content-container,
	#chronolink-certified-pre-owned-section-2 .clk-content-container,
	#chronolink-certified-pre-owned-section-3 .clk-content-container,
	#chronolink-certified-pre-owned-section-4 .clk-content-container{
		grid-column: span 5 !important;
	}

	#our-appointment-policy-section-2 picture.clk-col6,
	#our-appointment-policy-section-3 picture.clk-col6,
	#our-appointment-policy-section-4 picture.clk-col6,
  #sell-your-watch-section-2 picture.clk-col6,
	#sell-your-watch-section-3 picture.clk-col6,
	#sell-your-watch-section-4 picture.clk-col6,
	#authorized-rolex-service-section-2 picture.clk-col6,
	#authorized-rolex-service-section-3 picture.clk-col6,
	#authorized-tudor-service-section-2 picture.clk-col6,
	#authorized-tudor-service-section-3 picture.clk-col6,
	#chronolink-certified-pre-owned-section-2 picture.clk-col6,
	#chronolink-certified-pre-owned-section-3 picture.clk-col6,
	#chronolink-certified-pre-owned-section-4 picture.clk-col6{
		grid-column: span 7;
		margin: auto 0px auto auto;
	}

	#authorized-rolex-service-section-3 picture.clk-col6,
	#authorized-tudor-service-section-3 picture.clk-col6{
		margin-right: auto;
		margin-left: 0px;
	}
}

@media (max-width: 1230px){

	.clk-legals-section .clk-content-container{
		grid-column-start: 2;
  		grid-column-end: 12;
	}

	.clk-page-content.map-section #googleMap{
		display: none;
	}

	.clk-map-section-overlay{
		position: static;
		max-width: 100%;
	}

	#clk-map-section-overlay-hero_default{
		display: none !important;
	}

	#clk-map-section-overlay-hero_default-mobile{
		display: block !important;
	}

	.clk-map-overlay-hero{
		display: none !important;
	}

	.clk-map-section-overlay .clk-text-inner-container{
		padding: 0px;
		gap: 24px;
    max-width: 100%;
	}

	#authorized-tudor-service-section-1 .desktop .clk-text-inner-container{
		display: none !important;
	}

	#authorized-tudor-service-section-1 .mobile{
		display: block;
		border-top: 1px solid var(--clk-outline,#dedede);
		margin-top: 5vh;
	}

	#authorized-tudor-service-section-1 .mobile .clk-text-inner-container{
		padding-top: 16px;
	}


	#our-appointment-policy-section-1 .clk-col6,
	#our-appointment-policy-section-2 .clk-col6,
	#our-appointment-policy-section-3 .clk-col6,
	#our-appointment-policy-section-4 .clk-col6,
  #sell-your-watch-section-1 .clk-col6,
	#sell-your-watch-section-2 .clk-col6,
	#sell-your-watch-section-3 .clk-col6,
	#sell-your-watch-section-4 .clk-col6,
	#authorized-rolex-service-section-1 .clk-col6,
	#authorized-rolex-service-section-2 .clk-col6,
	#authorized-rolex-service-section-3 .clk-col6,
	#authorized-tudor-service-section-1 .clk-col6,
	#authorized-tudor-service-section-2 .clk-col6,
	#authorized-tudor-service-section-3 .clk-col6,
	#chronolink-certified-pre-owned-section-1 .clk-col6,
	#chronolink-certified-pre-owned-section-2 .clk-col6,
	#chronolink-certified-pre-owned-section-3 .clk-col6,
	#chronolink-certified-pre-owned-section-4 .clk-col6,
	#chronolink-store-page-section-1 .clk-col6,
	#chronolink-store-page-section-1 .clk-col6{
		grid-column: span 12 !important;
	}

  #our-appointment-policy-section-1 .clk-col1,
  #our-appointment-policy-section-1 .clk-col1,
  #authorized-rolex-service-section-1 .clk-col1,
  #authorized-rolex-service-section-1 .clk-col5{
    display: none;
  }

	#our-appointment-policy-section-1 .clk-content-h3,
	#our-appointment-policy-section-1 .clk-text-inner-container,
	#our-appointment-policy-section-2 .clk-content-h2,
	#our-appointment-policy-section-3 .clk-content-h2,
	#our-appointment-policy-section-4 .clk-content-h2,
	#our-appointment-policy-section-2 .clk-text-inner-container,
	#our-appointment-policy-section-3 .clk-text-inner-container,
	#our-appointment-policy-section-4 .clk-text-inner-container,
  #sell-your-watch-section-1 .clk-content-h3,
	#sell-your-watch-section-1 .clk-text-inner-container,
	#sell-your-watch-section-2 .clk-content-h2,
	#sell-your-watch-section-3 .clk-content-h2,
	#sell-your-watch-section-4 .clk-content-h2,
	#sell-your-watch-section-2 .clk-text-inner-container,
	#sell-your-watch-section-3 .clk-text-inner-container,
	#sell-your-watch-section-4 .clk-text-inner-container,
	#authorized-rolex-service-section-1 .clk-content-h3,
	#authorized-rolex-service-section-2 .clk-content-h2,
	#authorized-rolex-service-section-3 .clk-content-h2,
	#authorized-rolex-service-section-1 .clk-text-inner-container,
	#authorized-rolex-service-section-2 .clk-text-inner-container,
	#authorized-rolex-service-section-3 .clk-text-inner-container,
	#authorized-tudor-service-section-1 .clk-content-h3,
	#authorized-tudor-service-section-2 .clk-content-h2,
	#authorized-tudor-service-section-3 .clk-content-h2,
	#authorized-tudor-service-section-1 .clk-text-inner-container,
	#authorized-tudor-service-section-2 .clk-text-inner-container,
	#authorized-tudor-service-section-3 .clk-text-inner-container,
	#chronolink-certified-pre-owned-section-1 .clk-content-h3,
	#chronolink-certified-pre-owned-section-2 .clk-content-h2,
	#chronolink-certified-pre-owned-section-3 .clk-content-h2,
	#chronolink-certified-pre-owned-section-4 .clk-content-h2,
	#chronolink-certified-pre-owned-section-1 .clk-text-inner-container,
	#chronolink-certified-pre-owned-section-2 .clk-text-inner-container,
	#chronolink-certified-pre-owned-section-3 .clk-text-inner-container,
	#chronolink-certified-pre-owned-section-4 .clk-text-inner-container{
		max-width: 100%;
	}


  #authorized-rolex-service-page-hero .clk-hero-section-offpage-text-container {
    flex-direction: column;
    align-items: flex-start;
  }

	#chronolink-store-page-section-1 .clk-content-container:nth-of-type(1),
	#chronolink-store-page-section-1 .clk-content-container:nth-of-type(2){
		max-width: 100%;
		margin: 0px;
	}

	#chronolink-store-page-section-1 .clk-content-container:nth-of-type(1){
		padding-bottom: 24px;
	}

	#our-appointment-policy-section-2 picture.clk-col6,
	#our-appointment-policy-section-3 picture.clk-col6,
	#our-appointment-policy-section-4 picture.clk-col6,
  #sell-your-watch-section-2 picture.clk-col6,
	#sell-your-watch-section-3 picture.clk-col6,
	#sell-your-watch-section-4 picture.clk-col6,
	#authorized-rolex-service-section-2 picture.clk-col6,
	#authorized-rolex-service-section-3 picture.clk-col6,
	#authorized-tudor-service-section-2 picture.clk-col6,
	#authorized-tudor-service-section-3 picture.clk-col6,
	#chronolink-certified-pre-owned-section-2 picture.clk-col6,
	#chronolink-certified-pre-owned-section-3 picture.clk-col6,
	#chronolink-certified-pre-owned-section-4 picture.clk-col6{
		margin: 5vh auto 0px auto !important;
	}

	#authorized-rolex-service-section-3 .clk-col6.clk-content-container,
	#authorized-tudor-service-section-3 .clk-col6.clk-content-container{
		grid-row: 1;
	}

	#authorized-rolex-service-section-3 picture.clk-col6,
	#authorized-tudor-service-section-3 picture.clk-col6{
		grid-row: 2;
	}

	#authorized-rolex-service-section-1 .clk-col6:nth-of-type(1){
		grid-row: 1;
	}

	#authorized-rolex-service-section-1 .clk-col6:nth-of-type(2){
		grid-row: 2;
	}

	#authorized-rolex-service-section-1 .clk-col6:nth-of-type(3){
		grid-row: 4;
		margin-top: 5vh;
		max-width: 100%;
	}

	#authorized-rolex-service-section-1 .clk-col6:nth-of-type(3) .clk-text-container{
		padding-top: 16px;
	}

	#authorized-rolex-service-section-1 .clk-col6:nth-of-type(4){
		grid-row: 3;
		max-width: 100%;
	}
}

@media (max-width: 1023px){


  /* .clk-hero-content h2,
	.clk-hero-slider-wrapper h2,
	.clk-content-h2{
		font-size: 44px !important;
	}

	.clk-faq-question::before,
	.clk-map-cta::before,
	.clk-map-cta .clk-cta-text,
	.clk-slide-content h3,
	.clk-content-h3{
		font-size: 28px !important;
	} */


  .clk-hero-section-offpage-text-container .clk-content-body{
    max-width: 100%;
  }


	#clk-contact-section .clk-contact-mandatory .form-field{
		flex-direction: column !important;
		align-items: flex-start !important;
		gap: 16px !important;
	}

	#clk-contact-section-1 .clk-col8,
	#clk-contact-section-1 .clk-col4{
		grid-column: span 12 !important;
	}

	#clk-contact-section-1 .clk-col4{
		padding-top: min(10vh, 90px);
	}

	#clk-contact-section .clk-contact-row{
		flex-direction: column;
		gap: 48px;
	}

	#clk-contact-section .wpcf7-form{
		max-width: 100%;
		gap: 48px;
	}

	#clk-contact-section .form-field--title .wpcf7-form-control{
		width: 100%;
	}

	#clk-contact-section .wpcf7-textarea{
		max-height: 100px;
	}

	#clk-contact-section-2{
		padding-top: 5vh;
		padding-bottom: 5vh;
	}

	#clk-contact-section video{
		aspect-ratio: 1/1.5;
	}

	.clk-contact-location-wrapper picture{
		order: 1;
	}

	.clk-contact-location-wrapper{
		display: flex;
		padding-bottom: 40px;
		flex-direction: column;
		align-items: flex-start;
		gap: 16px;
		align-self: stretch;
		border: none;
	}

	.clk-contact-location-inner-wrapper{
		order: 3;
		padding: 0px;
	}

	.clk-contact-location-status{
		order: 2;
		padding: 0px;
	}

	#clk-contact-section-2 .clk-content-h2{
		display: block;
		margin-bottom: -24px;
		color: var(--clk-midnight-black, #0B0C10);
	}

	.tudor-section .clk-text-inner-container, .rlx-section .clk-text-inner-container{
		max-width: 100%;
	}

	.clk-page-content.tudor-section div.clk-col6,
	.clk-page-content.rlx-section div.clk-col6{
		margin-right: 0px;
		grid-column: span 12;
		display: flex;
		flex-direction: column;
	}

	.clk-page-content.tudor-section div.clk-col6 .clk-text-container,
	.clk-page-content.rlx-section div.clk-col6 .clk-text-container{
		padding-top: 10vh;
	}

	/* .clk-page-content.rlx-section video{
		grid-column: span 12;
		width: 100%;
		max-width: 100%;
		padding-top: 5vh;
		height: auto;
		max-height: 576px;
	} */

  .clk-page-content.rlx-section .clk-col5,
	.clk-page-content.tudor-section .clk-col5{
		grid-column: span 12;
		padding-top: 5vh;
		margin: 0px auto;
	}

	.clk-homepage-contact-card{
		grid-column: span 12;
	}

  .clk-homepage-contact-card:nth-of-type(1) p{
    margin-bottom: 0px;
  }

  .clk-homepage-contact-card a {
    margin-top: 40px;
  }

	#homepage-section-5 .clk-grid{
		row-gap: 80px;
	}

	#homepage-section-2 .clk-col6{
		grid-column: span 12 !important;
	}

	#homepage-section-2 .clk-col5{
		grid-column: span 12 !important;
		margin: 5vh auto 0px auto;
	}

	#homepage-section-2 .clk-col1{
		grid-column: span 0 !important;
		display: none !important;
	}

	#our-story-section-1 .clk-col6{
    grid-column: span 12;
    order: 1;
  }
	#our-story-section-1 .clk-col5{
    grid-column: span 12;
    order: 2;
    margin: 48px auto 0px auto;
  }

	#our-story-section-2 .clk-col6,
	#our-story-section-3 .clk-col7,
	#our-story-section-3 .clk-col5,
	#our-story-section-4 .clk-col9{
		grid-column: span 12;
	}

  #our-story-section-1 .clk-col1{
    display: none !important;
  }

	#our-story-section-1 picture.clk-col6{
		margin: 5vh auto 0px auto;
		width: 100%;
	}

	#our-story-section-1 picture.clk-col6 img{
		width: 100%;
		object-fit: cover;
	}


  #our-story-section-3 .clk-col5{
    display: none;
  }

	#our-story-section-4{
		position: relative;
	}

	#our-story-section-4 .clk-col3{
		grid-column: span 6;
	}

	#our-story-section-4 .clk-content-container picture{
		position: absolute;
		top: min(10vh,90px);
		right: 8%;
		max-width: calc(42% - 12px);
	}

	#our-story-section-1 .clk-content-h2,
	#our-story-section-2 .clk-col6.clk-content-container .clk-text-container .clk-content-h3,
	#our-story-section-2 .clk-col6.clk-content-container .clk-text-container .clk-text-inner-container,
	#our-story-section-4 .clk-content-container .clk-text-container .clk-content-h4,
	#our-story-section-4 .clk-content-container .clk-text-container .clk-text-inner-container{
		max-width: 100%;
	}

	#our-story-section-4 .clk-content-container .clk-text-container{
		flex-direction: column;
		margin-top: 5vh;
	}


	#our-philosophy-section-1 .clk-col5{
		grid-column: span 12;
    order: 2;
    margin: 48px auto 0px auto;
	}

	#our-philosophy-section-1 .clk-col6{
		grid-column: span 12;
    order: 1;
	}

  #our-philosophy-section-1 .clk-col1{
    display: none !important;
  }


	#our-philosophy-section-1 .clk-content-h2,
	#our-philosophy-section-1 .clk-text-inner-container,
	#our-philosophy-section-2 .clk-text-inner-container{
		max-width: 100%;
	}

  #our-philosophy-section-2 .clk-col6,
  #our-philosophy-section-3 .clk-col7 {
    grid-column: span 12;
  }

  #our-philosophy-section-3 .clk-text-container .clk-cta-button-primary{
    margin-top: 65px;
  }
  #our-philosophy-section-3 .clk-col5{
    display: none;
  }

	#our-philosophy-section-4 .clk-col3{
		grid-column: span 5;
	}

	#our-philosophy-section-4 .clk-col9{
		grid-column: span 7;
	}

	#our-philosophy-section-4 .clk-content-container .clk-text-container{
		flex-direction: column;
	}

  #our-philosophy-section-3 .clk-text-inner-container,
	#our-philosophy-section-4 .clk-content-container .clk-text-container .clk-content-h3,
	#our-philosophy-section-4 .clk-content-container .clk-text-container .clk-text-inner-container{
		max-width: 100%;
	}

	#chronolink-certified-pre-owned-section-1 picture.clk-col12 img{
		max-height: 100%;
	}

  .clk-hero-section-offpage-text-container{
    flex-direction: column;
    align-items: flex-start;
  }


}

@media (max-width: 767px) {

	:root {
		--clk-grid-columns: 6;
		--clk-grid-padding-width: 7%;
		--clk-grid-column-gap: 6px;
	}

	.clk-legals-section .clk-content-container{
		grid-column-start: 1 !important;
		grid-column-end: 7 !important
	}

	.clk-col12{
		grid-column: span 6;
	}

	.clk-hero-content{
		grid-column: span 6;
		max-width: 100% !important;
	}

	/* .clk-hero-section-offpage-text-container .clk-content-h2.full-w,
	.clk-hero-section-offpage-text-container .clk-content-body{
		max-width: 90%;
	} */

	#clk_header .clk_header_logo{
		width: auto !important;
	}

	#clk-contact-section-1 .clk-col8,
	#clk-contact-section-1 .clk-col4{
		grid-column: span 6 !important;
	}

	.clk-page-content.tudor-section div.clk-col6,
	.clk-page-content.rlx-section div.clk-col6{
		grid-column: span 6;
    row-gap: 0px;
	}

  #homepage-section-2 .clk-text-inner-container p:nth-of-type(2){
    max-width: 100%;
  }

  .clk-map-section-overlay{
    padding: 48px var(--clk-grid-padding-width);
  }

	.clk-page-content.rlx-section .clk-col5,
	.clk-page-content.tudor-section .clk-col5{
		grid-column: span 6;
    padding-top: 80px;
	}

	.clk-homepage-contact-card{
		grid-column: span 6;
	}

	#homepage-section-2 .clk-col5{
		grid-column: span 6 !important;
	}

	#homepage-section-2 .clk-col6{
		grid-column: span 6 !important;
    margin-top: 40px !important;
	}

  #homepage-section-2 .clk-padding-both-10vh,
  .rlx-section .clk-padding-both-10vh,
  .tudor-section .clk-padding-both-10vh,
  #homepage-section-5 .clk-padding-both-10vh{
    padding-top: 120px;
    padding-bottom: 120px;
  }

  .clk-page-content.tudor-section div.clk-col6 .clk-text-container,
	.clk-page-content.rlx-section div.clk-col6 .clk-text-container{
		padding-top: 120px;
	}

  #clk-map-section-overlay-hero_default-mobile{
      margin-bottom: 64px !important;
      margin-top: 64px !important;
  }

	#our-story-section-2 picture.clk-col12 img{
		aspect-ratio: 1.09;
		height: 100%;
    object-fit: cover;
    width: 100%;
	}

  #our-story-section-1 .clk-col5,
	#our-story-section-1 .clk-col6,
	#our-story-section-2 .clk-col6,
	#our-story-section-3 .clk-col7,
	#our-story-section-3 .clk-col5,
	#our-story-section-4 .clk-col9{
		grid-column: span 6;
	}

  #our-story-section-3 .clk-col5{
    display: block;
  }

	#our-story-section-4 .clk-col3{
		grid-column: span 3;
	}

	#our-story-section-4 .clk-content-container picture{
		right: 7%;
    max-width: calc(43% - 12px);
    top: 96px !important;
	}

	.clk-slide-content{
		position: static;
		width: 100%;
		background: var(--clk-white);
		transform: none !important;
		display: flex;
		flex-direction: column;
		gap: 24px;
		padding: 48px 16px;
	}

	.clk-hero-slider-wrapper h2{
		padding-bottom: 10vh;
	}

  #our-philosophy-section-1 .clk-col5,
	#our-philosophy-section-1 .clk-col6,
	#our-philosophy-section-2 .clk-col6,
	#our-philosophy-section-4 .clk-col9{
		grid-column: span 6;
	}

  #our-philosophy-section-3 .clk-col5{
    display: block;
  }


	#our-philosophy-section-4{
		position: relative;
	}

	#our-philosophy-section-4 .clk-col3{
		grid-column: span 3;
	}

	#our-philosophy-section-4 .clk-content-container picture{
		position: absolute;
		top: 96px;
		right: 7%;
		max-width: calc(43% - 12px);
	}

	#our-philosophy-section-4 .clk-content-container .clk-text-container{
		flex-direction: column;
		margin-top: 48px;
	}

	#our-philosophy-section-3 .clk-col7{
		grid-column: span 6;
	}

	#our-philosophy-section-3 .clk-col5{
		grid-column: span 6;
		margin-top: 80px;
	}

	#our-philosophy-section-3 .clk-text-container .clk-cta-button-primary{
		margin-top: 65px;
	}

	#our-appointment-policy-section-1 .clk-col6,
	#our-appointment-policy-section-2 .clk-col6,
	#our-appointment-policy-section-3 .clk-col6,
	#our-appointment-policy-section-4 .clk-col6,
  #sell-your-watch-section-1 .clk-col6,
	#sell-your-watch-section-2 .clk-col6,
	#sell-your-watch-section-3 .clk-col6,
	#sell-your-watch-section-4 .clk-col6,
	#authorized-rolex-service-section-1 .clk-col6,
	#authorized-rolex-service-section-2 .clk-col6,
	#authorized-rolex-service-section-3 .clk-col6,
	#authorized-rolex-service-section-4 .clk-col6,
	#authorized-tudor-service-section-1 .clk-col6,
	#authorized-tudor-service-section-2 .clk-col6,
	#authorized-tudor-service-section-3 .clk-col6,
	#authorized-tudor-service-section-4 .clk-col6,
	#chronolink-certified-pre-owned-section-1 .clk-col6,
	#chronolink-certified-pre-owned-section-2 .clk-col6,
	#chronolink-certified-pre-owned-section-3 .clk-col6,
	#chronolink-certified-pre-owned-section-4 .clk-col6{
		grid-column: span 6 !important;
	}

	#clk-store-page-gallery-container{
		grid-column: span 6 !important;
	}

	#clk-store-page-gallery-chronolink-rolex-boutique-marriott img:nth-of-type(1){
		object-fit: cover;
		max-width: calc(100% - 120px);
	}
	#clk-store-page-gallery-chronolink-rolex-boutique-marriott img:nth-of-type(2){
		max-width: 50%;
	}
	#clk-store-page-gallery-chronolink-rolex-boutique-marriott img:nth-of-type(3){
		max-width: 45%;
	}
	#clk-store-page-gallery-chronolink-rolex-boutique-marriott img:nth-of-type(4){
		max-width: 30%;
	}
	#clk-store-page-gallery-chronolink-rolex-boutique-marriott img:nth-of-type(5){
		max-width: calc(70% - 120px);
	}
	#clk-store-page-gallery-chronolink-rolex-boutique-marriott img:nth-of-type(6){
		max-width: 65%;
	}






	#clk-store-page-gallery-chronolink-tudor-boutique-marriott img:nth-of-type(1){
		object-fit: cover;
		max-width: calc(100% - 120px);
	}
	#clk-store-page-gallery-chronolink-tudor-boutique-marriott img:nth-of-type(2){
		max-width: 90%;
	}
	#clk-store-page-gallery-chronolink-tudor-boutique-marriott img:nth-of-type(3){
		max-width: calc(75% - 120px);
	}
	#clk-store-page-gallery-chronolink-tudor-boutique-marriott img:nth-of-type(4){
		max-width: 25%;
	}
	#clk-store-page-gallery-chronolink-tudor-boutique-marriott img:nth-of-type(5){
		max-width: calc(100% - 120px);
	}
	#clk-store-page-gallery-chronolink-tudor-boutique-marriott img:nth-of-type(6){
		max-width: 64%;
	}



	#clk-store-page-gallery-chronolink-rolex-boutique-primaverii img:nth-of-type(1){
		object-fit: cover;
		max-width: calc(100% - 120px);
	}
	#clk-store-page-gallery-chronolink-rolex-boutique-primaverii img:nth-of-type(2){
		max-width: 30%;
	}
	#clk-store-page-gallery-chronolink-rolex-boutique-primaverii img:nth-of-type(3){
		max-width: calc(70% - 120px);
	}
	#clk-store-page-gallery-chronolink-rolex-boutique-primaverii img:nth-of-type(4){
		max-width: 70%;
	}
	#clk-store-page-gallery-chronolink-rolex-boutique-primaverii img:nth-of-type(5){
		max-width: calc(75% - 120px);
	}
	#clk-store-page-gallery-chronolink-rolex-boutique-primaverii img:nth-of-type(6){
		max-width: 25%;
	}



	#clk-store-page-gallery-chronolink-rolex-service-center img:nth-of-type(1){
		object-fit: cover;
		max-width: calc(72% - 120px);
	}
	#clk-store-page-gallery-chronolink-rolex-service-center img:nth-of-type(2){
		max-width: calc(28%);
	}
	#clk-store-page-gallery-chronolink-rolex-service-center img:nth-of-type(3){
		max-width: calc(61%);
	}
	#clk-store-page-gallery-chronolink-rolex-service-center img:nth-of-type(4){
		max-width: 76%;
	}
	#clk-store-page-gallery-chronolink-rolex-service-center img:nth-of-type(5){
		max-width: 51%;
	}
	#clk-store-page-gallery-chronolink-rolex-service-center img:nth-of-type(6){
		max-width: 50%;
	}

	.clk-faq-question::before,
	.clk-faq-question h3{
		font-size: 17px !important;
		font-weight: 400 !important;
	}

  .light-theme .clk-slide-content-subtitle, .light-theme .clk-slide-content h3{
    color: var(--clk-midnight-black) !important;
  }


  #our-story-section-1 picture.clk-col6{
    margin: 48px auto 0px auto !important;
  }
  #our-story-section-3 .clk-col7{
    margin-bottom: 80px !important;
  }

  #our-philosophy-section-4 .clk-col9,
  #our-story-section-4 .clk-col9{
    padding-bottom: 24px;
  }

  #authorized-rolex-service-section-1 .clk-col6:nth-of-type(3),
  #our-story-section-4 .clk-content-container .clk-text-container{
    margin-top: 48px !important;
  }

  #sell-your-watch-section-2,
  #sell-your-watch-section-3,
  #sell-your-watch-section-4,
  #our-appointment-policy-section-2,
  #our-appointment-policy-section-3,
  #our-appointment-policy-section-4{
    padding-top: 120px;
    padding-bottom: 120px;
  }

  #authorized-rolex-service-section-2{
    padding-top: 144px;
    padding-bottom: 48px;
  }

  #authorized-rolex-service-section-3{
    padding-top: 144px;
    padding-bottom: 120px;
  }

  .clk-store-page-map{
    padding-top: 120px;
  }

  .page-template-25-chrono-store-page .clk-padding-both-5vh,
  .page-template-25-chrono-sell-your-watch .clk-padding-both-5vh,
  .page-template-25-chrono-authorized-rolex-service .clk-padding-both-5vh,
  .page-template-25-chrono-our-appointment-policy .clk-padding-both-5vh,
  .page-template-25-chrono-our-philosophy .clk-padding-both-5vh,
  .page-template-25-chrono-our-story .clk-padding-both-5vh{
    padding-top: 48px;
    padding-bottom: 48px;
  }

  .page-template-25-chrono-store-page .clk-padding-top-5vh,
  .page-template-25-chrono-sell-your-watch .clk-padding-top-5vh,
  .page-template-25-chrono-authorized-rolex-service .clk-padding-top-5vh,
  .page-template-25-chrono-our-appointment-policy .clk-padding-top-5vh,
  .page-template-25-chrono-our-philosophy .clk-padding-top-5vh,
  .page-template-25-chrono-our-story .clk-padding-top-5vh{
    padding-top: 48px;
  }

  .page-template-25-chrono-store-page .clk-margin-top-5vh,
  .page-template-25-chrono-sell-your-watch .clk-margin-top-5vh,
  .page-template-25-chrono-authorized-rolex-service .clk-margin-top-5vh,
  .page-template-25-chrono-our-appointment-policy .clk-margin-top-5vh,
  .page-template-25-chrono-our-philosophy .clk-margin-top-5vh,
  .page-template-25-chrono-our-story .clk-margin-top-5vh{
    margin-top: 48px;
  }

  .page-template-25-chrono-store-page .clk-padding-bottom-5vh,
  .page-template-25-chrono-sell-your-watch .clk-padding-bottom-5vh,
  .page-template-25-chrono-authorized-rolex-service .clk-padding-bottom-5vh,
  .page-template-25-chrono-our-appointment-policy .clk-padding-bottom-5vh,
  .page-template-25-chrono-our-philosophy .clk-padding-bottom-5vh,
  .page-template-25-chrono-our-story .clk-padding-bottom-5vh{
    padding-bottom: 48px;
  }

  .page-template-25-chrono-store-page .clk-padding-both-10vh,
  .page-template-25-chrono-sell-your-watch .clk-padding-both-10vh,
  .page-template-25-chrono-authorized-rolex-service .clk-padding-both-10vh,
  .page-template-25-chrono-our-appointment-policy .clk-padding-both-10vh,
  .page-template-25-chrono-our-philosophy .clk-padding-both-10vh,
  .page-template-25-chrono-our-story .clk-padding-both-10vh{
    padding-top: 96px;
    padding-bottom: 96px;
  }

  .page-template-25-chrono-store-page .clk-padding-bottom-10vh,
  .page-template-25-chrono-sell-your-watch .clk-padding-bottom-10vh,
  .page-template-25-chrono-authorized-rolex-service .clk-padding-bottom-10vh,
  .page-template-25-chrono-our-appointment-policy .clk-padding-bottom-10vh,
  .page-template-25-chrono-our-philosophy .clk-padding-bottom-10vh,
  .page-template-25-chrono-our-story .clk-padding-bottom-10vh{
    padding-bottom: 96px;
  }

  .page-template-25-chrono-store-page .clk-padding-top-10vh,
  .page-template-25-chrono-sell-your-watch .clk-padding-top-10vh,
  .page-template-25-chrono-authorized-rolex-service .clk-padding-top-10vh,
  .page-template-25-chrono-our-appointment-policy .clk-padding-top-10vh,
  .page-template-25-chrono-our-philosophy .clk-padding-top-10vh,
  .page-template-25-chrono-our-story .clk-padding-top-10vh{
    padding-top: 96px;
  }

  .book-appointment-modal .clk-store-page-pos-details{
    margin: 0px var(--clk-grid-padding-width) !important;
  }

}

@media (max-width: 640px) {

  #our-story-page-hero{
    background-position-x: 6%;
  }

  #our-philosophy-page-hero{
    background-position-x: 17%;
  }

  #store-hero-chronolink-rolex-boutique-marriott-bucharest{
    background-position-x: 86%;
  }

  #store-hero-chronolink-rolex-boutique-primaverii{
    background-position-x: 80%;
  }

  #store-hero-chronolink-rolex-service-center{
    background-position-x: 82%;
  }

  .clk-store-page-pos-details{
    top: 20%;
  }

  .clk-store-page-contact .clk-content-h2{
    text-align: center;
  }

  .clk-map-cta:hover::before{
    display: none !important;
  }

  .clk-map-cta:hover h3 {
    transform: none !important;
  }
}

@media (max-width: 600px) {

	.hero-overlay{
		height: 100dvh;
    padding-bottom: 48px !important;
    padding-left: 6% !important;
    padding-right: 6% !important;
	}

  #clk-hero-scroll-btn{
    bottom: 48px !important;
  }

	.hero-slider{
		height: calc(100% - 100dvh);
	}

	#authorized-tudor-service-section-1 .clk-col12,
	#authorized-rolex-service-section-1 .clk-col12{
		margin-top: 0px !important;
	}

	#authorized-rolex-services-section,
	#authorized-tudor-services-section{
		padding-top: 5vh !important;
		flex-direction: column;
		align-items: center;
		gap: 40px;
	}

	#authorized-rolex-services-section,
	#authorized-tudor-services-section{
		padding-bottom: 0px !important;
		border-bottom: 0px !important;
	}

	#authorized-rolex-services-section .clk-service-card:nth-of-type(5),
	#authorized-tudor-services-section .clk-service-card:nth-of-type(5){
		border-bottom: 1px solid var(--clk-outline,#dedede);
		width: 100%;
		padding-bottom: 5vh;
	}

	.clk-service-card{
		gap: 24px;
	}

	.clk-service-card .clk-content-body{
		padding-bottom: 16px;
	}

	.clk-store-page-gallery{
		margin-top: -630px;
	}
}

@media (min-width: 1367px) {
  #clk_header_container .clk-cta-button-secondary::before,
  #clk_header_container .clk-cta-text{
    font-size: 16px;
  }
}

@media (min-width: 1231px) {
  #store-chronolink-rolex-boutique-primaverii-section-1 .clk-content-h3{
    max-width: 350px;
  }

  #store-chronolink-rolex-boutique-primaverii-section-1 .clk-text-inner-container p:nth-of-type(1){
    max-width: 350px;
  }

  #store-chronolink-tudor-boutique-marriott-bucharest-section-1 .clk-text-inner-container p:nth-of-type(1){
    max-width: 306px;
  }


}

@media only screen and (max-width: 767px) and (orientation: landscape) {
  .hero-slider {
    height: auto;
  }
}


/* Boxed Layout for Big Screens */
@media (min-width: 1920px) {


  :root {
		--clk-grid-padding-width: 145px;
	}

  #clk_header_container{
    padding: 24px 8% !important;
  }

  .clk-grid{
    /* max-width: 1568px; */
    max-width: 1920px;
    margin: 0px auto;
  }

  #hp-hero-section .clk-grid{
    max-width: unset;
    padding-left: 0px;
    padding-right: 0px;
  }

  #hp-hero-section .clk-grid.hero-overlay{
    display: flex;
  }

  .clk-grid.hero-overlay .clk-hero-content{
    /* max-width: 1568px; */
    max-width: 1920px;
    width: 100vw;
    margin: 0px auto;
    padding: 0px var(--clk-grid-padding-width);
  }


  #hp-hero-section .hero-overlay .clk-hero-content.ro{
    max-width: 1920px;
  }

  .clk-grid.hero-overlay .clk-hero-content.ro h2{
    max-width: 650px;
  }
  .clk-grid.hero-overlay .clk-hero-content h2{
    max-width: 550px;
    width: 100vw;
  }

  .clk-hero-slider-wrapper{
    /* max-width: 1568px; */
    max-width: 1920px;
    width: 100%;
    margin: 0px auto;
    padding: 0px var(--clk-grid-padding-width);
  }

  .clk-hero-section-offpage .clk-grid{
    max-width: unset;
    padding-left: 0px;
    padding-right: 0px;
  }

  .clk-hero-section-offpage-text-container{
    /* max-width: 1568px; */
    max-width: 1920px;
    /* width: 100%;
    margin: 0px auto;
    padding: 0px var(--clk-grid-padding-width); */
  }

  .page-template-25-chrono-homepage section.map-section{
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .clk-page-content.map-section #googleMap{
    width: 100%;
  }

  #map-section-overlay-gradient{
    background: linear-gradient(279deg, rgba(245, 243, 241, 0) 47.89%, rgba(245, 243, 241, 1) 67.5%), linear-gradient(214deg, rgba(245, 243, 241, 0) 33.83%, rgba(245, 243, 241, 1) 70.97%), linear-gradient(to right, rgba(245, 243, 241, 1) 80.91%, rgba(245, 243, 241, 0) 100%);
    width: 50%;
    z-index: 1;
    position: absolute;
    z-index: 1;
    top: 0;
    bottom: 0;
    left: 0;
  }

  .clk-map-section-overlay-wrapper{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    bottom: 0;
    /* max-width: 1568px; */
    max-width: 1920px;
    right: 0;
    z-index: 2;
    margin: 0px auto;
    padding: 0px var(--clk-grid-padding-width);
    display: flex;
  }

  .clk-map-section-overlay-hero{
    position: relative;
    margin-left: auto;
    align-self: end;
    right: 0;
  }

  #clk-hero-scroll-btn{
    right: 0;
    left: 0;
    max-width: 1920px;
    width: 100%;
    align-items: flex-end;
    margin: 0px auto;
    padding: 0px var(--clk-grid-padding-width);
    pointer-events: none;
  }

  #clk-hero-scroll-btn .btn-content{
    pointer-events: auto !important;
  }

  .hero-slider{
    height: 100%;
  }

  .clk-hero-slider-wrapper h2{
    margin: 0px auto;
    padding: 120px 0px;
  }

}
