* {
	font-family: "Instrument Sans", sans-serif;
	font-optical-sizing: auto;
	font-style: normal;
}

*,
*::before,
*::after {
	box-sizing: inherit;
	margin: 0;
}

input[type="date"] {
  -webkit-appearance: none; /* removes native Safari quirks */
  appearance: none;
  width: 100%; /* or a set width like 150px */
  max-width: 100%; 
  box-sizing: border-box;
}

html {
	box-sizing: border-box;
	scroll-behavior: smooth;
}

/* basic repeating classes */
.section-title {
	font-size: 1.5rem;
	font-weight: 500;
	line-height: calc(2 / 1.5);
	
	@media (min-width: 1440px) {
        font-size: 2.5rem;
        line-height: calc(2.5 / 2.5);
    }
}

.section-text {
	font-size: 1rem;
	font-weight: 400;
	line-height: calc(1.5 / 1);
	
	@media (min-width: 1440px) {
        font-size: 1.5rem;
        line-height: calc(2 / 1.5);
    }
}

.text-light-blue {
	color: #3c91e6;
}

.text-blue {
	color: #0e3d6c;
}

.text-gray {
	color: #606060;
}

.text-white {
	color: white;
}

.image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: inline-block;
}

.sm-icon {
	display: inline-block;
	width: 20px;
	height: 20px;
}

.md-icon {
	display: inline-block;
	width: 40px;
	height: 40px;
}

.lg-icon {
	display: inline-block;
	width: 65px;
	height: 65px;
}

.setToSectionTop {
    position: absolute;
    top: 0;
    left: 50%;
    width: 300%;
    transform: translateX(-50%);
    
    @media (min-width: 768px) {
        width: 200%;
    }
    
    @media (min-width: 1024px) {
        width: 100%;
	    left: 0;
	    right: 0;
	    transform: translateX(0);
    }
}

.setToSectionBottom {
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 300%;
    transform: translateX(-50%);
    
    @media (min-width: 768px) {
        width: 200%;
    }
    
    @media (min-width: 1024px) {
        width: 100%;
	    left: 0;
	    right: 0;
	    transform: translateX(0);
    }
}

 /*landing sections */
.header {
	display: flex;
	position: relative;
	justify-content: center;
	width: 100%;
	height: auto;
	align-items: center; 
	top: 0;
	padding: 1rem;
	
    @media (min-width: 768px) {
        flex-direction: column;
		gap: 2rem;
		align-items: center;
    }
    @media (min-width: 1024px) {
        flex-direction: row;
    }
}

.header-menu-wrapper {
	position: absolute;
	left: 0;
	padding: 1.5rem;
	
	@media (min-width: 768px) {
        display: none;
    }
}

.header-logo-wrapper {
	width: 200px;
	height: auto;
	
	@media (min-width: 1024px) {
        display: none;
    }
}

.header-nav {
	display: none;
	justify-content: center;
	width: 100%;
	
	@media (min-width: 768px) {
	    display: flex;
    }
    @media (min-width: 1024px) {
        padding: 0 8rem;
    }
}

.header-nav-content-wrapper {
    display: none; 
    justify-content: space-between; 
    width: 100%; 
    align-items: center;
    
	@media (min-width: 768px) {
	    display: flex; 
        width: 650px;
    }
    @media (min-width: 1024px) {
	    display: flex; 
        width: 900px;
    }
}

.header-desktop-logo-wrapper{
    display: none;
    width: 200px;
	height: auto;
	
	@media (min-width: 1024px) {
	     display: flex;
    }
}

.nav-item{
    color: white;
    text-decoration: none;
}

.langSelect{
    position: absolute;
    top: 20px;
    right: 20px;
}

.language-select {
    position: absolute;
    top: 20px;
    right: 20px;
    appearance: none;           
    background: transparent;   
    color: #fff;                
    border: 1px solid white;     
    padding: 8px 36px 8px 12px; 
    border-radius: 8px;        
    font-size: 16px;
    cursor: pointer;
    outline: none;
    transition: all 0.25s ease;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='white' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 12px;
}

/* On hover before click */
.language-select:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

/* On focus (clicked / open) */
.language-select:focus {
    background: white; 
    color: #606060;              
    border: 1px solid #606060;  
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%23555' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 12px;
}

.hero-wrapper {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	color: white;
	overflow: hidden;

	background: linear-gradient(to top, rgba(4, 40, 75, 1), rgba(4, 40, 75, 0)),
		url("/assets/hero-image.webp");
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

.hero-content-wrapper {
	position: relative;
	z-index: 1;
	max-width: 950px;
	 /*top | right | bottom | left */
	padding: 2rem 2rem 7rem 2rem;
	display: flex;
	flex-direction: column;
	gap: 4rem;
	justify-content: center;
	align-items: center;
		
	@media (min-width: 768px) {
        gap: 6rem;
        padding: 3rem 2rem 10rem 2rem;
    }
	@media (min-width: 1440px) {
	    gap: 8rem;
	    padding-bottom: 12rem;
	}
}

.hero-title {
	font-size: 2rem;
	font-weight: 700;
	line-height: calc(2.5 / 2);
	
	@media (min-width: 768px) {
        font-size: 3rem;
        line-height: 1;
    }
	@media (min-width: 1024px) {
	    font-size: 4rem;
	    line-height: 1;
	}
}

.hero-text {
	font-size: 1.5rem;
	font-weight: 400;
	line-height: calc(2 / 1.5);
	
	@media (min-width: 1024px) {
	    font-size: 2.5rem;
	    line-height: calc(2.5 / 2.5);
	}
}

.quote-section-wrapper {
	display: flex;
	justify-content: center;
	align-items: center;
}

.quote-content-wrapper {
	display: flex;
	flex-direction: column;
	gap: 2rem;
	justify-content: center;
	align-items: center;
	padding: 1rem 2.5rem;
	width: 100%;
	
	@media (min-width: 768px) {
        padding: 2rem 3.5rem;
    }
    @media (min-width: 1024px) {
        padding-right: 5rem;
        padding-left: 5rem;
    }
    @media (min-width: 1440px) {
        max-width: 1400px;
    }
}

.quote {
	font-size: 1.5rem;
	font-weight: 400;
	line-height: calc(2 / 1.5);
	/*max-width: 700px;*/
	text-align: center;
}

.lightBlueTheme {
	background-color: #cde3f9;
	color: #0e3d6c;
}

.map-section-wrapper {
	position: relative;
	min-height:600px;
	width: 100%;
	height: auto;
	overflow: hidden;
	background: url("/assets/mapSM.svg");
	background-repeat: no-repeat;
	background-size: 100% auto;
	
    @media (min-width: 768px) {
        min-height: 500px;
        background-image: url("/assets/mapMD.svg");
        background-position: bottom right;
    }
    @media (min-width: 1024px) {
       	background-size: cover;
        min-height: 550px;
    }
    @media (min-width: 1440px) {
        background-image: url("/assets/mapLG.svg");
        background-position: center right;
    }
    @media (min-width: 1900px) {
        min-height: 700px;
        background-repeat: no-repeat;
        background-size: 100% auto;
    }
} 

.map-content-wrapper {
	display: flex;
	flex-direction: column;
	position: relative;
    z-index: 1; 
	gap: 1rem;
	padding: 1rem;
	padding-top: 6rem;
	width: 75%;
	text-align: left;
	color: white;
	
	@media (min-width: 400px) {
    	padding: 2rem;
    	padding-top: 9rem;
    }
	@media (min-width: 768px) {
        width: 45%;
        padding-top: 8rem;
    }
	@media (min-width: 1024px) {
	    width: 60%;
	    padding: 4rem;
	    padding-top: 12rem;
	}
	@media (min-width: 1440px) {
	    padding-top: 13rem;
	}
	@media (min-width: 1900px) {
	    padding-top: 15rem;
	}
}


.times-section-wrapper {
	display: flex;
	justify-content: center;
	align-items: center;
}

.times-content-wrapper {
	width: 250px;
	display: flex;
	flex-direction: column;
	gap: 4rem;
	padding: 4rem 2rem;
	
	@media (min-width: 768px) {
    	flex-direction: row;
		width: auto;
    }
}

.times-content {
	display: flex;
	flex-direction: column;
	text-align: center;
	width: 100%;
	gap: 1rem;
}

.times-time {
	font-size: 1.75rem;
	font-weight: 400;
	line-height: calc(2.25 / 1.75);
	margin: 0;
	
	@media (min-width: 1440px) {
        font-size: 2rem;
        line-height: calc(2.5 / 2);
    }
}

.times-text {
	font-size: 1rem;
	font-weight: 200;
	line-height: calc(1.5 / 1);
	
	@media (min-width: 1440px) {
        font-size: 1.25rem;
        line-height: calc(1.75 / 1.25);
    }
}

.gallery-section-wrapper {
	position: relative;
	display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-content-wrapper {
    display: grid;
    position: relative;
    overflow: hidden;
}

.gallery-content-top {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	height: 430px;
	overflow: hidden;
	
	@media (min-width: 1440px) {
        height: 550px;
    }
}

.gallery-content-bottom {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	height: 430px;
	overflow: hidden;
	
	@media(min-width: 768px) {
	    grid-template-columns: repeat(4, minmax(0, 1fr));
        height: 250px;
    }
    @media (min-width: 1440px) {
        height: 350px;
    }
    @media (min-width: 1900px) {
        height: 450px;
    }
}

.gallery-text-mobile {
	display: flex;
	flex-direction: column;
	gap: 3rem;
	padding: 3rem;
	background-color: #cde3f9;
	align-items: center;
	justify-content: center;
	
	@media (min-width: 768px) {
		display: none;	    
    }
}

.gallery-text-web {
	display: none;
	flex-direction: column;
	position: absolute;
	gap: 3rem;
	padding: 3rem;
	background-color: #cde3f9;
	align-items: center;
	justify-content: center;
	
	@media (min-width: 768px) {
		display: grid;
		grid-template-columns: repeat(2, minmax(0, 1fr));
		border-radius: 1rem;
		gap: 3rem;
    }
    @media (min-width: 1024px) {
		gap: 6rem;
    }
    @media (min-width: 1440px) {
		gap: 10rem;
		padding: 5rem;
    }
}

.gallery-text-content {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 1rem;
	color: #0E3D6C;
}

.gallery-text {
	text-align: center;
	width: 250px;
	
	@media (min-width: 1440px) {
        font-size: 1.25rem;
        line-height: calc(1.75 / 1.25);
    }
}

.gallery-icon {
    width: 60px;
    height: auto;
    
    @media (min-width: 768px) {
        width: 70px;
    }
    @media (min-width: 1024px) {
        width: 80px;
    }
    @media (min-width: 1440px) {
        width: 90px;
    }
}

.gallery-clock {
    padding: 0.5rem;
}

.yellowWave {
	width: 100%;
	height: auto;
	z-index: 10;
	position: absolute;
	top: -20px;
	
	@media (min-width: 768px) {
	    transform: scaleY(-1);
    }
    @media (min-width: 1024px) {
	    top: -70px;
    }
    @media (min-width: 1440px) {
	    top: -90px;
    }
    @media (min-width: 1900px) {
	    top: -110px;
    }
}

.faq-section-wrapper {
	position: relative;
	width: 100%;
	display: grid;
	grid-template-columns: repeat(1, minmax(0, 1fr));

    @media (min-width: 768px) {
    	grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    @media (min-width: 1024px) {}
}

.faq-content-wrapper {
	padding: 2rem;
	padding-top: 3rem;
	width: 100%;
	order: 1;
	display: flex;
	flex-direction: column;
	gap: 1rem;

    @media (min-width: 768px) {
    	order: 2;
    	padding-top: 4rem;
    }
    @media (min-width: 1024px) {
        padding-top: 5rem;
        gap: 2rem;
    }
    @media (min-width: 1900px) {
        padding-top: 7rem;
    }
}

.faq-image-wrapper {
	display: block;
	width: 100%;
	height: 430px;
	order: 2;
	
	@media (min-width: 768px) {
    	order: 1;
	    height: 100%;
    }
}

.cta-section-wrapper {
    position: relative;
	min-height: 750px;
	width: 100%;
	height: auto;
	background: url("/assets/cta-bg.svg");
	background-repeat: no-repeat;
    background-position: center;
	
    @media (min-width: 768px) {
        min-height: 350px;
        background: url("/assets/cta-bgMD.svg");
    }
    @media (min-width: 1024px) {
       	background-size: cover;
        min-height: 400px;
    }
    @media (min-width: 1900px) {
        min-height: 500px;
    }
}

.cta-content-wrapper {
    position: absolute;
    inset: 0;
	display: flex;
	flex-direction: column;
	padding: 2rem;
	gap: 4rem;
	justify-content: center;
	align-items: center;
    z-index: 1;
	color: white;
	height: 100%;
	
	@media (min-width: 1024px) {
        padding: 4rem;
    }
    @media (min-width: 1900px) {
        padding: 4rem 10rem;
    }
}

.cta-title {
    font-size: 1.5rem;
    font-weight: 400;
	line-height: calc(2 / 1.5);
    text-align: center;
    
    @media (min-width: 1440px) {
       font-size: 2.5rem;
       line-height: calc(2.5 / 2.5);
    }
}

.crew-section-wrapper {
	display: flex;
	flex-direction: column;
	color: white;
	
	@media (min-width: 768px) {
		flex-direction: row;
    }
}

.crew-content-wrapper {
	display: flex;
	flex-direction: column;
	padding: 2rem;
	width: 100%;
	gap: 1.25rem;
	
	@media (min-width: 768px) {
		width: 50%;
		justify-content: center;
    }
}

.crew-gallery-wrapper {
	/*display: grid;*/
	/*grid-template-columns: repeat(2, minmax(0, 1fr));*/
	width: 100%;
	
	display: flex;
	justify-content: center;
    align-items: center;
	height: 300px;
	overflow: hidden;
	
	
	@media (min-width: 768px) {
        width: 50%;
        height: 325px;
    }
}

.crew-gallery-wrapper .image {
    width: 100%;
    height: 100%;
    object-fit: cover; /* fills container */
    object-position: center; /* centers content */
}

.final-section-wrapper {
    position: relative;
	overflow: hidden;
	background: url("/assets/beach2.webp") center/cover no-repeat;
    background-color: rgba(14, 61, 108, 0.75); /* 75% overlay */
    background-blend-mode: multiply; 
    display: flex;
    align-items: center;
	justify-content: center;
}

.final-content-wrapper{
    padding: 2rem;
	padding-bottom: 8rem;
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 1rem;

    @media (min-width: 768px) {
    	padding-bottom: 12rem;
    }
    @media (min-width: 1024px) {
        padding-bottom: 10rem;
        gap: 2rem;
    }
    @media (min-width: 1440px) {
        padding: 6rem;
        padding-bottom: 14rem;
    }
    @media (min-width: 1900px) {
        padding-bottom: 16rem;
    }
}

.footer {
   	background-color: #cde3f9;
}

.footer-section-wrapper {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 2rem;
	width: 100%;
	
    @media (min-width: 768px) {
		flex-direction: row;
		justify-content: space-between;
		padding: 0 1rem;
    }
    @media (min-width: 1024px) {
        padding: 0 2rem;
    }
    @media (min-width: 1440px) {
        padding: 0 8rem;
    }
    @media (min-width: 1900px) {
        padding: 0 12rem;
    }
}

.footer-content-wrapper {
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 100%;
    gap: 1rem; 
    padding-top: 0.5rem;
    
    @media (min-width: 768px) {
        width: 40%;    
    }
}

.footer-data-wrapper {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 1rem;
}

.footer-logo {
	width: 280px;
	height: 60px;
	padding: 0.5rem;
}

.footer-contact-data {
	display: flex;
	gap: 1rem;
	align-items: center;
	text-decoration: none; 
}

.footer-nav-wrapper {
	display: flex;
	flex-direction: column;
	gap: 2rem; 
	padding: 0 1rem;
	
	@media (min-width: 768px) {
        width: 60%;
    }
    @media (min-width: 1024px) {
        width: 50%;
    }
}

.footer-nav-content-wrapper {
	display: flex;
	list-style-type: none;
	justify-content: space-between;
}

.footer-nav-item {
	text-decoration: none;
	display: flex;
	flex-wrap: wrap;
	font-size: 0.875rem; /* (14px) */
	line-height: calc(1.25 / 0.875);
	
	@media (min-width: 768px) {
		font-size: 1rem;
		line-height: calc(1.5 / 1);
    }
}

.footer-signature {
    text-align: center;
    width: 100%;
    padding: 0.5rem 0;
    padding-top: 1rem;
    
    @media (min-width: 768px) {
        padding: 1rem 0;
    }
}

.footer-icon {
    fill: #0E3D6C;
}

.footer-socials-wrapper {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	justify-content: space-between;
	align-items: center;
	
	@media (min-width: 1024px) {
    	justify-content: end;
    	align-items: right;
    }
}

.about-us-section-wrapper {
    position: relative;
	width: 100%;
	display: grid;
	grid-template-columns: repeat(1, minmax(0, 1fr));

    @media (min-width: 768px) {
    	grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

.about-us-content-wrapper {
    padding: 2rem;
	padding-top: 3rem;
	width: 100%;
	display: flex;
	flex-direction: column;
	gap: 1rem;

    @media (min-width: 768px) {
    	padding-top: 4rem;
    }
    @media (min-width: 1024px) {
        padding-top: 5rem;
        padding" 3rem;
        gap: 2rem;
    }
    @media (min-width: 1900px) {
        padding-top: 7rem;
    }
}

.about-us-image-wrapper {
    display: block;
	width: 100%;
	height: 430px;
	
	@media (min-width: 768px) {
	    height: 100%;
    }
	@media (min-width: 1024px) {
	    height: 350px;
    }
}

.about-us-image-wrapper .image {
    width: 100%;
    height: 100%;
    object-fit: cover; /* fills container */
    object-position: center; /* centers content */
    
	@media (min-width: 1024px) {
	    object-position: top;
    }
}