/* --- GLOBAL --- */

:root {
	
    --color001: white;
    --color002: rgb(17, 46, 59); /* Dark blue */
    --color003: rgb(97, 184, 199); /* Sky blue */
    --color004: rgb(0, 0, 0, 0.5);
    --color005: rgb(186, 227, 231); /* Light blue */
    --color004: rgb(17, 46, 59, 0.9);
    
    --pic-padding: 10px;
    
   }

* { 
	box-sizing: border-box 
}

/* --- GENERAL TAGS --- */

body, html {
	
    margin: 0;
    color: var(--color001);
    background: var(--color002);
    font-family: 'Oswald', sans-serif,Tahoma;
    overflow-x: hidden;
    
}

main { 
	
	margin: auto 
	
}

section {
	
    margin: auto;
    width: 100%;
    position: relative;
    display: flex;
    justify-content: center;
    
}

article {
	
    display: flex;
    width: 100%;
    margin-bottom: 20px;
    
}

a {
	
  text-transform: uppercase;
  text-decoration: none;
  color: white;
  
}

/* --- HELPERS --- */
    
.mob-display {
	
	display: none;
	
}

.mob-hide {
	
	display: block;
	
}
	
.mob-unlfex {
	
	display: flex;
	
}

/* --- GENERAL LAYOUT --- */

.flex-row {
	
    display: flex;
    flex-direction: row;   
    
}

.left-box,
.right-box {
	
    width: 50%;
    
}

.invert-color {
	
    color: black;
    background: white;

}

.section-footer {
	
    position: absolute;
    margin: auto;
    bottom: 14px;
    right: 0%;
    left: 0%;
    width: 28px;
    height: 28px;

}


/* --- DESIGN TAGS --- */

h1 {
	
    font-weight: 400;
    line-height: 1.1;
    margin: 0%;
    font-size: 3em;
    text-transform: uppercase;
    text-align: left;
	margin-right: 40px;

 }


 h1:before {
	     content: "";
	     background: var(--color003);
	     position: absolute;
	     top: 4px;
	     left: -20px;
	     height: 96px;
	     width: 6px;  
	}
	

	 

h2 {
	
     line-height: 0;
     font-size: 2em;
     padding-bottom: 5%;
     font-weight: 300;
     text-transform: uppercase;
     text-align: left;
     
}

h3 {
	
    line-height: 1.2;
    font-size: 0.9em;
    margin-top: 1%;
    font-weight: 300;
    text-transform: uppercase;
    text-align: left;
    
}

/* --- DESIGN ITEMS --- */

.highlight { 
	
	color: var(--color003); 
}

.small-text {
	
    font-size: 0.79em;
    letter-spacing: 0.04em;
    font-weight: lighter;
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.3;
    
}

	.small-text p:first-child {
		
		margin-top: 0;
			    
	}
	
.intro-text {

	width: 65%;	

}	

.link-btn {
	
      padding: 2.5%;
      background: var(--color003);
      color: white;
      white-space: nowrap;
      font-size: x-small;
      cursor: pointer;
}

.link-btn.bold {
	
	padding: 1.5%;
	background: var(--color002);
	color: white;
	font-size: 25px;

}

.arrow { 
	
	font-size: 4em; 

}

#home{
	
	position: fixed;
	bottom: 0;
	margin-bottom: 20px;
	margin-left: 20px;
	opacity: 0.8;
	z-index: 10;
	width: 32px;
}

/* --- HEADER --- */

header {
	
    height: 160px;
    width: 100%;
    position: relative;
    display: flex;
    justify-content: center;
    margin: auto;
}

.header-container {

    display: flex;
    margin: auto;
    max-width: 90%;
    position: absolute;
    width: 1024px;
    height: 100%;
    
}

	.header-container>div {
	
	    min-height: 90px;
	    display: flex;
	    width: 100%;
	    margin-left: -20px;
	
	}

.hamburger {
	
    flex-direction: column;
    justify-content: center;
    display: flex;
    cursor: pointer;
    
}

	.hamburger>div {
		
	    font-weight: 300;
	    width: 25px;
	    margin: 2.5px;
	    height: 2px;
	    background: white;
	}

#nav-overlay {
	
    display: none;
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(63, 187, 193, 0.95);
    z-index: 5;
    cursor: pointer;
    
}

	#nav-overlay nav {
		
	    text-transform: uppercase;
	    padding: 5%;
	    
	}
	
		#nav-overlay nav .cross {
		
		    cursor: pointer;
		    float: right;
		    background: transparent;
		    color: white;
		    height: 25px;
		    border: none;
		    
		}
		
	#nav-overlay a {
		
	    display: block;
	    padding: 0.5%;
	    text-align: left;
	    color: white;
	    font-size: 32px;
	}
	
		#nav-overlay a:hover {
			
	   	 color: var(--color002);
	   	 
	    }

#branding-box {

    padding: 0.5%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    
}

#jubilee {
	
    margin-top: 12px;
    height: 75%;
    
}

#address {
	
    white-space: nowrap;
    font-size: 0.5em;
    font-weight: 200;
    letter-spacing: 1px;
    margin-top: 2%;
    
}

#watermark {
	
    z-index: 2;
    position: absolute;
    right: -90px;
    bottom: -120px;
    height: 250%;
    max-height: 260px;
    
}

/* --- COOKIE CONSENT --- */

.cookie-consent {
	
	position: fixed;
	z-index: 9999;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	min-height: 140px;
	padding: 16px;
	background: var(--color002);
	
}
	.cookie-consent p {
	
		margin-top: 0;
			
	}
	
	.cookie-consent .link-btn {
		
		font-size: 17px;
		padding: 7px;
		margin-bottom: 16px;
		box-sizing: border-box;
	
	}

/* --- SECTIONS GENERAL --- */

.content {
	
    display: flex;
    flex-direction: column;
    margin: auto;
    width: 1024px;
    position: relative;
    bottom: 0;
    height: 100%;
    margin-top: 25px;
    padding-bottom: 50px;
    
}

/* --- Tables --- */

.section-plan table {
    border-collapse: collapse;
    border-spacing: 0;
    width: 100%;
    text-align: center;
}

.section-plan th,
.section-plan td {
    padding: 1%;
    text-align: center;
}

.section-plan thead tr {
    background-color: var(--color003);
}

.section-plan tr:nth-child(even) {
    background-color: var(--color005);
    color: var(--color002);
}

/* --- Buttons --- */

.btns {
    margin-top: 90px;
    line-height: 60px;
}

.btns a:first-child {
    margin-right: 12px;
}

.btns a {
    font-size: 16px;
}

/* --- Photos grids --- */

.multi-pic {
	
    flex-direction: column;
    
}

.mob-stack {
	
	flex-direction: row;
	
}

.pic-grid {
    width: 100%;
    display: flex;
    flex-direction: row;
}

.pic-grid.c2 .column {
    width: 50%;
}

.pic-grid.c3 .column {
    min-height:100%;
}

.pic-grid .column {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 0 var(--pic-padding);
}

.pic-grid .column:first-child {
    padding-left: 0;
}

.pic-grid .column:last-child {
    padding-right: 0;
}

.pic-grid .column img {
    padding-bottom: calc( var(--pic-padding) * 2 );
   /* padding-top: calc( var(--pic-padding) * 2 ); */
    width: 100%;
}

.pic-grid.height-fill .column img {
    flex: 1 auto;
}

.pic-grid .row {
	position: relative;
    display: flex;
    flex-direction: row;
    width: 100%;
    margin-bottom: calc( var(--pic-padding) * 2 ); 
    align-items: flex-start;
}

.pic-grid .row img {
    padding: 0 var(--pic-padding);
    min-width: 0;
    flex: 1 1 0;
    width: 100%;
}

.pic-grid .row img:first-child {
    padding-left: 0;
}

.pic-grid .row img:last-child {
    padding-right: 0;
}

.pic-base {
    position: absolute;
    bottom: 0;
}


#explore .pic-grid-con{
    padding-left: 20%;
    margin-top: 25px;
}

#intro, #banner,
#spec {
	
    max-width: 100%;
    padding: 0;
    
}


/* --- INTRO --- */

#intro {
	
	background-image: url(../images/photos/photo_0.jpg); 
	background-size: cover; 

}	  

	#intro h1 {
		
		font-size: 2em;
	}  	

/* --- PLANS SECTION --- */

#francis {
	
	display: none;
	
}	  
	
   
/* --- SPEC SECTION --- */

#spec {  
	
	min-height: 450px; 

}

.bkg {
	
    width: 100%;
    display: flex;
    content: center;
    
}

#spec ul {
	
    column-count: 2;
    margin: 0;
    padding: 0;
    
}

#spec li {
	
    padding-right: 30%;
    padding-top: 16px;
    align-items: baseline;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 16px;
	font-size: 1.2em;
    
}

/* --- BALANCE SECTION --- */

.bike-box {
    overflow: hidden;
    margin-left: 20px;
    text-align: right;
}

	.bike-box img {
		
	    width: 94%;
	}

#balance p {
	
    padding: 0;
    margin: 0;
    
}

/* --- GOOD COMPANY --- */

#goodcompany {
    text-align: center;
    display: flex;
    
}

#brands {
	
    width: 80%;
    margin: auto;
    
}

/* --- CONTACT SECTION --- */

#contact h3 {
	
    text-transform: uppercase;
    line-height: 0.5;
    letter-spacing: 0.06em;
    margin-top: 10%;
    
}

#contact p {
	
    font-family: Arial, Helvetica, sans-serif;
    letter-spacing: 0.06em;
    line-height: 0.4;
    
}

#contact .left-box {   
	
	white-space: nowrap; 
}

.agents-box {

	display: flex;	
	
}

	.agents-box > div {
	
		margin-right: 32px;
		margin-top: auto;
		
	}

.agents-box  img {
	height: 116px;
}

#contact .small-text {
	
    font-size: 0.5em;
    letter-spacing: 0.06em;
    font-weight: lighter;
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.2;
    
}

#contact a {
	
    text-transform: capitalize;
    
}

/* --- SCROLL ANIMATION FEATURE  --- */

.js-scroll {
	
    opacity: 0;
    transition: opacity 500ms;
    
}

.js-scroll.scrolled {
	
    opacity: 1
    
}

.scrolled.fade-in-bottom {
	
    animation: fade-in-bottom 1s ease-in-out both;
    
}

/* ---  PAGE 1 ANIMATION FEATURE--- */

@keyframes fade-in-bottom {
	
    0% {
	    
        -webkit-transform: translateY(50px);
        transform: translateY(50px);
        opacity: 0;
        
    }

    100% {
	    
        -webkit-transform: translateY(0px);
        transform: translateY(0px);
        opacity: 1;
        
    }
    
}

.nudge-bottom {
	
    animation: nudge-bottom 1s ease-in-out both;
    
}

@keyframes nudge-bottom {
	
    0% {
        -webkit-transform: translateY(50px);
        transform: translateY(50px);

    }

    100% {
	    
        -webkit-transform: translateY(0);
        transform: translateY(0);

    }
    
}

@media screen and (max-width: 4040px) {
		
	#intro {

		background-position-y: -120px;
		height: 58vw;
	
	}
	
}	

@media screen and (max-width: 1300px) {
		
	#intro {

		background-position-y: 0px;
		height: 700px; 
	
	}
	
}	

@media screen and (max-width: 1040px) {
	
	:root {
	
		--pic-padding: 4px;
	
	}
	
	
	h1, h2 {
		
		margin-left: 16px;
		margin-right: 0px;
		
	}
	
	/* 28 Feb 2024  */
	.main-header{
		font-size: 34px;
	}
	
		
		h1::before {
			left: 20px;	  
		}	
		
	
	h1 br {
		
		display: none;
		
	}
	
	.main-header br{
		display: inline;
	}
		
	.content {
		
		padding: 0 25px 50px 25px;
		width: 100%;
	
	}
	
	article {
		
		margin-bottom: 16px;
		
	}
	
	article h3 {
		
		margin-top: 60px;
	}
	
		
	.flex-row {  
		
		display: block;
	
	}
	
	.mob-display {
		
		display: block;
		
	}
	
	.mob-hide {
		
		display: none;
		
	}
	
	.mob-unflex {
		
		display: block;
		
	}
	
	
	.intro-text {

		width: 100%;	

	}	
	
	.left-box,
	.right-box {
		
		width: 100%;
	
	}

	.small-text {
		
		margin-top: 20px;
		font-size: 0.86em;
		font-weight: normal;
		
	}	
	

	.btns { 
		
		margin-top: 4px;
		cursor: pointer;
	}
	
	.btns a { 
		
		font-size: 13px;
	
	}
	
	.section-plan .btns {
		
		margin: 10px 0;
		
	}
		
	.mob-stack {
		
		flex-direction: column;
		
	}
	
		.mob-stack.pic-grid.c2 .column {
		
			width: 100%;
		
		}	
		
		
	#explore .pic-grid-con{
		
		padding-left: 0%;
		margin-top: 0;
	
	}


	#spec {
		
		height: auto !important;
	}
	
	
		#spec li {
			
			padding: 5% 14% 5% 0;
		    padding-right: 10%;
			font-size: 1em;
	
	    
		}
	
	.bike-box {
		
		margin-top: 14px;
	}
	
	.bike-box img {
		
		width: 100%
		
	}
	
	#balance p {
		
		padding-bottom: 12px;
	}
	
	#contact .left-box h3:first-child {
		
			margin-top: 16%;
	}	
	
	#contact h3 {
		
			margin-top: 7%;
	}	
	
	.man-hack {
		
		width: 240% !important;
	}
	
}


@media screen and (max-width: 600px) {
	
	.main-header{
		font-size: 32px;
		margin-bottom: 20px;
	}
		.main-header br{
		display: none;
	}
	
	#intro {

		background-position-x: 37%;
		
	}	
	
	#intro h1 {
		
		font-size: 1.7em;
	}  

	.agents-box {
		
		display: block;
	
	}	
	
}