@charset "UTF-8";
/* CSS Document */

:root {
  --dark-grey: #444444;
  --xlight-grey: #f7f7f7;
  --blue: #17212d;
  --blue-accent: #17212d;
  --blue-light: #315891;
  --blue-xlight: #d9e3f2;
  --yellow: #d9b20f;
  --white: #FFFFFF;
  --light-grey: #efefef;

  
}

body { overflow: hidden;}

#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #f7f7f7;
  /* change if the mask should have another color then white */
  z-index: 2000;
  /* makes sure it stays on top */
}

#status {
  width: 200px;
  height: 200px;
  position: absolute;
  left: 50%;
  /* centers the loading animation horizontally one the screen */
  top: 50%;
  /* centers the loading animation vertically one the screen */
  background-image: url(../images/loading.gif);
  /* path to your loading animation */
  background-repeat: no-repeat;
  background-position: center;
  margin: -100px 0 0 -100px;
  /* is width and height divided by two */
}

body {
	font-family:  "poppins", open-sans, Calibri, Helvetica, Arial, sans-serif;
	color: var(--blue);	
	font-weight: 300;
    background: #fff;
    overflow-x: hidden !important;
}

h1 {
    font-weight: 700;
    font-size: 2em;
    
}

h2 {
    font-weight: 700;
    color: var(--blue);
    
    font-size: 1.7em;
}

h3 {
    font-weight: 700;
    font-size: 1.3em;
    color: var(--blue);
}

.bg-blue-pattern h2 {
    color: var(--white);
}

.bg-blue-pattern h3 {
    color: var(--yellow);
}


h4 {
    font-size: 1.2em;
    
    font-weight: 700;
    color: var(--blue);
}

p {
    font-size: 1.05em;
    line-height: 1.3em;
    
}

strong {
font-weight: 600;
}

.text-lg {
    font-size: 1.3em;
}

.mb-8 {
    margin-bottom: 8em;
}

.bb {
border-bottom: 1px solid #ddd;
}

p a:link,
p a:visited {
  text-decoration: none;
  color: var(--blue-accent);
  font-weight: 500;
	background: 
    linear-gradient(to right, rgba(58,87,140, 1), rgba(58,87,140, 1)),
    linear-gradient(to right, rgba(217, 178, 15, 1), rgba(255, 209, 18, 1), rgba(217, 178, 15, 1));
  background-size: 100% 0.1em, 0 0.1em;
  background-position: 100% 90%, 0 90%;
  background-repeat: no-repeat;
  transition: all 400ms;
}

p.dark a:link,
p.dark a:visited {
  text-decoration: none;
  color: var(--blue-xlight);
  font-weight: 500;
	background: 
    linear-gradient(to right, rgba(58,87,140 1), rgba(58,87,140, 1)),
    linear-gradient(to right, rgba(217, 178, 15, 1), rgba(255, 209, 18, 1), rgba(217, 178, 15, 1));
  background-size: 100% 0.1em, 0 0.1em;
  background-position: 100% 90%, 0 90%;
  background-repeat: no-repeat;
  transition: all 400ms;
}

p a:hover,
p a:focus, 
p.dark a:hover,
p.dark a:focus {
  background-size: 0 0.1em, 100% 0.1em;
  color: var(--yellow);
}

.bg-blue-pattern p a:link,
.bg-blue-pattern p a:visited {
  text-decoration: none;
  color: var(--blue-xlight);
  font-weight: 500;
	background: 
    linear-gradient(to right, rgba(217,227,242, 1), rgba(217,227,242, 1)),
    linear-gradient(to right, rgba(217, 178, 15, 1), rgba(255, 209, 18, 1), rgba(217, 178, 15, 1));
  background-size: 100% 0.1em, 0 0.1em;
  background-position: 100% 90%, 0 90%;
  background-repeat: no-repeat;
  transition: all 400ms;
}

.bg-blue-pattern p a:hover,
.bg-blue-pattern p a:focus {
  background-size: 0 0.1em, 100% 0.1em;
  color: var(--yellow);
}

td a:link,
td a:visited {
  text-decoration: none;
  color: var(--blue);
  font-weight: 400;
	background: 
    linear-gradient(to right, rgba(58,87,140, 1), rgba(58,87,140, 1)),
    linear-gradient(to right, rgba(255, 255, 255, 1), rgba(255, 209, 18, 1), rgba(255,255,255, 1));
  background-size: 100% 0.1em, 0 0.1em;
  background-position: 100% 90%, 0 90%;
  background-repeat: no-repeat;
  transition: all 400ms;
}

td a:hover,
td a:focus {
  background-size: 0 0.1em, 100% 0.1em;
  color: var(--white);
}


::-moz-selection {
    color: var(--blue);
    background: var(--yellow);
}

::selection {
   color: var(--blue);
    background: var(--yellow);
}

span.highlight {
    font-weight: bold;
    color: var(--yellow);
}

.navbar {
    height: 115px;
}

@media (max-width: 1199px) {
    .offcanvas {

    background: rgba(58,87,140,0.6);
    backdrop-filter: blur(5px);

}
}

@media (min-width: 1200px) {
	.navbar {
		background: url(../images/nav/nav-bg-xl.png) top center no-repeat, linear-gradient(180deg,rgba(38, 50, 71, 0.9) 20%, rgba(0, 0, 0, 0) 100%) !important;
        background-size: 3000px 115px !important;
	}
}

@media (min-width: 992px) and (max-width: 1199px){
	.navbar {
		background: url(../images/nav/nav-bg-lg.png) top center no-repeat , linear-gradient(180deg,rgba(38, 50, 71, 0.9) 20%, rgba(0, 0, 0, 0) 100%) !important;
        background-size: 1364px 115px !important;
	}
}

@media (min-width: 768px) and (max-width: 991px) {
	.navbar {
		background: url(../images/nav/nav-bg-md.png) top center no-repeat , linear-gradient(180deg,rgba(38, 50, 71, 0.9) 20%, rgba(0, 0, 0, 0) 100%) !important;
        background-size: 1373px 115px !important;
	}
    
}

@media (min-width:576px) and (max-width: 767px) {
	.navbar {
		background: url(../images/nav/nav-bg-sm.png) top left no-repeat , linear-gradient(180deg,rgba(38, 50, 71, 0.9) 20%, rgba(0, 0, 0, 0) 100%) !important;
        background-size: 1118px 115px !important;
	}
}

@media (max-width: 575px){
	.navbar {
		background: url(../images/nav/nav-bg-xs.png) top left no-repeat , linear-gradient(180deg,rgba(38, 50, 71, 0.9) 20%, rgba(0, 0, 0, 0) 100%) !important;
        background-size: 1118px 115px !important;
	}
    
    .navbar-brand img {
        height: 60 !important;
    }
}

a.nav-link:link, a.nav-link:visited {
    color: var(--white);
    text-transform: uppercase;
    font-size: 1.1em;
    font-weight: 700;
    transition: all 0.3s ease-in;
}

a.nav-link:active, a.nav-link:hover { 
    color: var(--yellow);
    transition: all 0.3s ease-in;
}

.navbar-nav .nav-link.active, .navbar-nav .nav-link.show {
    color: var(--yellow);
}

.navbar-toggler {
    color: var(--white);
    border: none;
    
}

.accent-heading {
    position: relative;
    width: -moz-fit-content;
      width: fit-content;
      z-index: 100;
      
}

.accent-heading::before {
    content: "";
    position: absolute;
    width: 120%;
    height: 15px;
    background: var(--yellow);
    left: -10%;
    bottom: 0px;
    z-index: -1;
    box-sizing: border-box;
}

    .splash {
        height: 80vh;
        height: 80svh;
        color: var(--white);
    }

.secondary-splash {
    height: 400px;
    color: var(--white);
}

.splash h1, 
.secondary-splash h1{
    color: var(--white);
}

.home-splash-text {
    border-left: 5px solid var(--yellow);
    padding-left: 20px;
    color: var(--white);
}

.scroll-text {
    margin-top: -50px;
    position: relative;
    z-index: 99;
}

.scroll-text p {
    color: var(--yellow); 
    letter-spacing: 4px;
    text-transform: uppercase;
    font-weight: 300;
}

.scroll-text::after {
    content: '';
    position: absolute;
    top: 25px;
    left: 50%;
    width: 2px;
    height: 100px;
    background: var(--yellow);
    
}

.content {
    padding-block: 6em;
}

.bg-blue-pattern {
    background: #72AED5;
    background: linear-gradient(162deg, rgba(49,88,145, 1) 24%, rgba(49,88,145, 0) 100%), url("../images/swirl-pattern.png") repeat;
    color: var(--white);
}

.bg-light-gradient {
    background-image: linear-gradient(217deg, rgba(217,227,242, 0.6),rgba(255,255,255,1));
    border-bottom: 1px solid #ddd;
}

.bg-light {
    background: #FFFFFF;
    background: linear-gradient(0deg,rgba(255,255,255, 1) 50%, rgba(185,214,234, 0.6) 100%);
}

.bg-light-blue {
    background: rgba(217,227,242,0.6); 
}

.bg-blue {
    background: var(--blue);
    color: var(--white);
}

.bg-blue h3 {
    color: var(--white);
}

.bg-gradient-diagonal {
    background-image: linear-gradient(297deg, transparent 0%, transparent 34%,rgba(178, 178, 178,0.02) 34%, rgba(178, 178, 178,0.02) 53%,transparent 53%, transparent 100%),linear-gradient(222deg, transparent 0%, transparent 30%,rgba(8, 8, 8,0.02) 30%, rgba(8, 8, 8,0.02) 58%,transparent 58%, transparent 100%),linear-gradient(352deg, transparent 0%, transparent 25%,rgba(88, 88, 88,0.02) 25%, rgba(88, 88, 88,0.02) 57%,transparent 57%, transparent 100%),linear-gradient(90deg, rgb(255,255,255),rgb(255,255,255));
}

.img-fit img {
    width: 100%;
    height: 100%;
    object-fit: cover !important;
}

thead th {
    background: var(--blue) !important;
    color: var(--white) !important;
    text-transform: uppercase;
    font-weight: 400;
}

tbody tr:hover td {
    background: var(--yellow) !important;
    transition: all 0.3s;
}

tr.available td { 
    background: var(--yellow) !important;
}

.table-header-custom {
    background: var(--blue) !important;
    color: var(--white) !important; 
    border-radius: 10px 10px 0 0;
    padding: 6px 25px;
    margin-left: -8px;
}

.availability polygon, 
.availability path,
.availability rect {
    fill: #ffffff;
    fill-opacity: 0.0;
    transition: all 0.25s ease 0s;
} 

polygon.available, 
path.available, 
rect.available {
    fill: var(--blue);
    fill-opacity: 0.5;
    transition: all 0.25s ease 0s;
}

.availability polygon:hover, 
.availability path:hover, 
.availability rect:hover {
    fill: var(--yellow);
    fill-opacity: 0.8;
    stroke-width: 4px;
    stroke: var(--blue);
    
    transition: all 0.25s ease 0s;
    cursor: help;
}

polygon.available:hover, 
path.available:hover, 
rect.available:hover {
    cursor: pointer;
}

.comparison {
    padding-block: 6em;
    border-top: 1px solid #ddd;
}

.hidden {
    display: none;
}

img.icons {
   width: 100%;
   max-width: 70px;
}

.marquee-container {
  overflow: hidden; /* Hides the duplicated content until it scrolls into view */
  width: 100%;
  /* Optional styling: add padding, height, etc. */
  padding: 0; 
}

.marquee-track {
  display: flex;
  width: max-content; /* Allows content to take up more space than the container */
  animation: scrolling 45s linear infinite; /* Defines the animation properties */
}

.marquee-track img {
  /* Optional styling: add margins, height, width as needed */
  height: 500px;
  margin: 0 2em;
}

/* Keyframes animation for the infinite scroll */
@keyframes scrolling {
  0% {
    transform: translateX(0); /* Start position */
  }
  100% {
    /* Translate the content by 50% to hide the first half and reveal the duplicated half */
    transform: translateX(-50%); 
  }
}

/* Optional: Pause animation on hover */
.marquee-container:hover .marquee-track {
  animation-play-state: paused;
}

/* Optional: Respect user's motion preferences */
@media (prefers-reduced-motion: reduce) {
  .marquee-track {
    animation-play-state: paused;
  }
}

.population-1 {
    width: 25px;
    height: 25px;
    border-radius: 40px;
    background: #93b2d0;
    border: 2px solid #ddd;
}

.population-2 {
    width: 25px;
    height: 25px;
    border-radius: 40px;
    background: #c7e3f2;
    border: 2px solid #ddd;
}

.footer {
    background: var(--blue);
    color: var(--white);
}

.footer p {
    font-size: 0.8em;
}

.btn-primary { 
  color: var(--white); 
  background-color: var(--blue); 
  border-color: var(--blue); 
  font-weight: 500;
  text-transform: uppercase;
  border-radius: 100px;
  transition: all 0.3s ease-in;
  padding: 10px 25px;
} 
 
.btn-primary:hover, 
.btn-primary:focus, 
.btn-primary:active, 
.btn-primary.active, 
.open .dropdown-toggle.btn-primary { 
  color: var(--blue);
  background-color: var(--yellow); 
  border-color: var(--yellow); 
  transition: all 0.3s ease-in;
} 
 
.btn-primary:active, 
.btn-primary.active, 
.open .dropdown-toggle.btn-primary { 
  background-image: none; 
} 


.btn-secondary { 
  color: var(--white); 
  background-color: var(--blue-light); 
  border-color: var(--blue-light); 
  font-weight: 500;
  text-transform: uppercase;
  border-radius: 100px;
  transition: all 0.3s ease-in;
  padding: 10px 25px;
} 
 
.btn-secondary:hover, 
.btn-secondary:focus, 
.btn-secondary:active, 
.btn-secondary.active, 
.open .dropdown-toggle.btn-secondary { 
  color: var(--blue);
  background-color: var(--yellow); 
  border-color: var(--yellow); 
  transition: all 0.3s ease-in;
} 
 
.btn-secondary:active, 
.btn-secondary.active, 
.open .dropdown-toggle.btn-secondary { 
  background-image: none; 
} 


/* MEDIA QUERIES
------------------------*/

/* Small devices (landscape phones, 576px and up)*/
@media (max-width: 576px) { }

/* Small devices (landscape phones, 576px and up)*/
@media (max-width: 767px) { }

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {


}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) { 
.bl {
    border-left: 3px solid var(--blue);
    padding-left: 100px;
}

.home-splash-text h1 {
    font-size: 2.5em;
}

.home-splash-text p.text-lg {
    font-size: 1.5em;
}


}

/*X-Large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) { }

/* SLIDES */ 
.main-container {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80vh;
  height: 80svh;
  overflow: hidden;
  z-index: 1 !important;
  transition: opacity 0.3s;
}
.img {
  position: absolute;
  overflow: hidden;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background-color: transparent;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 0;
}

.main-container.loaded .loader-container {
  display: none;
}
.main-container.loaded .img,
.main-container.loaded .info-container {
  opacity: 1;
}
.main-container.loaded .title {
  opacity: 0;
}

.main-container.loaded .img-1 {
  
  animation: kenburns-top 9s linear both reverse 0.5s, fade-out 2s ease-in forwards 8.5s;
  z-index: 6;
}
.main-container.loaded .img-2 {
  
  animation: kenburns-bottom 9s linear both 8.5s, fade-out 2s ease-in forwards 16.5s;
  z-index: 5;
}
.main-container.loaded .img-3 {
 
  animation: kenburns-right 9s linear both reverse 16.5s, fade-out 2s ease-in forwards 24.5s;
  z-index: 4;
}
.main-container.loaded .img-4 {
  
  animation: kenburns-left 9s linear both 24.5s, fade-out 2s ease-in forwards 32.5s;
  z-index: 3;
}
.main-container.loaded .img-5 {
  
  animation: kenburns-right 9s linear both reverse 32.5s;
  z-index: 2;
}


/**
 * ----------------------------------------
 * animation kenburns-top
 * ----------------------------------------
 */
@keyframes kenburns-top {
  0% {
    transform: scale(1) translateY(0);
    transform-origin: 50% 16%;
  }
  100% {
    transform: scale(1.05) translateY(-15px);
    transform-origin: top;
  }
}
/**
 * ----------------------------------------
 * animation kenburns-bottom
 * ----------------------------------------
 */
@keyframes kenburns-bottom {
  0% {
    transform: scale(1) translateY(0);
    transform-origin: 50% 84%;
  }
  100% {
    transform: scale(1.05) translateY(15px);
    transform-origin: bottom;
  }
}
/**
 * ----------------------------------------
 * animation kenburns-right
 * ----------------------------------------
 */
@keyframes kenburns-right {
  0% {
    transform: scale(1) translate(0, 0);
    transform-origin: 84% 50%;
  }
  100% {
    transform: scale(1.05) translateX(20px);
    transform-origin: right;
  }
}
/**
 * ----------------------------------------
 * animation kenburns-left
 * ----------------------------------------
 */
@keyframes kenburns-left {
  0% {
    transform: scale(1) translate(0, 0);
    transform-origin: 16% 50%;
  }
  100% {
    transform: scale(1.05) translate(-20px, 15px);
    transform-origin: left;
  }
}
/**
 * ----------------------------------------
 * animation focus-in-contract
 * ----------------------------------------
 */
@keyframes focus-in-contract {
  0% {
    letter-spacing: 1em;
    filter: blur(12px);
    opacity: 0;
  }
  100% {
    filter: blur(0px);
    opacity: 1;
  }
}
/**
 * ----------------------------------------
 * animation tracking-in-contract
 * ----------------------------------------
 */
@keyframes tracking-in-contract {
  0% {
    letter-spacing: 1em;
    opacity: 0;
  }
  40% {
    opacity: 0.6;
  }
  100% {
    letter-spacing: normal;
    opacity: 1;
  }
}
/**
 * ----------------------------------------
 * animation fade-out
 * ----------------------------------------
 */
@keyframes fade-out {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
/**
 * ----------------------------------------
 * animation fade-in
 * ----------------------------------------
 */
@keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/**
 * ----------------------------------------
 * animation text-blur-out
 * ----------------------------------------
 */
@keyframes text-blur-out {
  0% {
    filter: blur(0.01);
  }
  100% {
    filter: blur(12px) opacity(0%);
  }
}
/**
 * ----------------------------------------
 * animation slide-in-bottom
 * ----------------------------------------
 */
@keyframes slide-in-bottom {
  0% {
    transform: translateY(100%);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
/**
 * ----------------------------------------
 * animation rotate-center
 * ----------------------------------------
 */
@keyframes rotate-center {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}

