
/* our fonts */
@import url('https://fonts.googleapis.com/css2?family=Comfortaa:wght@400;600&family=Geologica&display=swap');



body[id="index"] {
    /*background-image: url(images/bg.png);*/
    background-image: linear-gradient(#0A7386, #09697C, #062D40); 
    background-repeat: no-repeat;

    /*background-image: linear-gradient(#0A7386,#09697C #062D40);*/
    
    /* removes margins and padding from body and all elements.*/
    margin:0px; 
    padding:0px;
    min-height: 100%;
  }

body {
  overflow-x: hidden;
}

* {
    margin: 0;
    padding: 0;
  }

/* all colors appear as what they were set to. EG hyperlinks wont change text color */
p { 
color: inherit;
color:white;
font-family: 'Comfortaa';
font-size: 15px;
font-weight: bold;
} 

move later
img {
object-fit: contain;
}

/* clears all decorations from hyperlink such as underline and color*/
a{
  color:inherit;
}
a:link{
    text-decoration: none;
    color:inherit;
}

h2,h4,h5 {
  margin: 20px;
  z-index: 2;
}
h1 {
    color:white;
    font-family: 'Geologica', sans-serif;
    font-size: 80px;
    margin: 0px;
}

h2 {
    color:white;
    font-family: 'Comfortaa';
    font-size: 20px;
}

h3 {
    margin-bottom: 5px;
    color:white;
    font-family: 'Comfortaa';
    text-decoration: none;
    font-size: 12px;
    font-weight: normal;
}

h4 {
    color:white;
    font-family: 'Comfortaa';
    font-size: 15px;
    font-weight: bold;
}

h5 {
    color:white;
    font-family: 'Geologica';
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 10px;
}


.container-centre {
width:100%;
text-align: center;
display: inline-block;
}

.container-middle{
 margin: 0 auto;
 text-align: center;
}

 .container-fixed{
  position:fixed;
  width: 85%;
  left: 15%;
  margin-top: 1%;
  height:1%;
}


.container-title {
    margin-top: 4%;
    margin-left: 4%;
}

.container-title2{
    margin-left: 12%;
}

.container{
    margin-top: 5%;
    padding-top: 1%;
}

.container-text {
    background-color: #023B53;
    border-radius: 25px;
    padding-left: 1%;
    padding-right: 1%;
    height: 80%;
    max-width: 20%;;
    margin-top:auto;
    margin-bottom:auto;
    transition: 0.3s ease-in-out;
    overflow: hidden;
    justify-content: space-between;
}

.container-text:hover {
  transform: scale(1.1);
}

.container-text:hover 
  .container-circle{
  opacity: 30%;
  border-radius: 0%;
  overflow: visible;
  height: 100%;
  width: 100%;
  margin:0px;
  padding:0px;
}

.container-profiles{
  text-align: center;
  height:100%;
  overflow:hidden;
  transition: 0.3s ease-in-out;
  position: relative;
  bottom:0%;
}

.container-text:hover
.container-profiles{
position:relative;
bottom: 100%;
overflow: visible;
}

.container-updates {
  background-color: #023B53;
  border-radius: 25px;
  padding:5%;
  margin-top:40%;
  margin-bottom:auto;
  transition: 0.3s ease-in-out;
  max-height: 100%;
  min-height: 50%;
  width: 100%;
}

.container-circle {
  width: 60%;
  aspect-ratio : 1 / 1;
  margin-top: 10%;
  border-radius: 50%;
  transition: 0.3s ease-in-out;
  z-index: 1;

}

.container-text, .container-updates:hover{
    transform: translate(0, -10px);
}

.container-image{
object-fit: contain;
height:70%;
width:100%;
}

.container-images{
    column-width: 10px;
    column-gap: 3%;
    width:100%;
    height:100%;
    margin-top: 3%;
    display:flex;
    justify-content: center;
    text-align: center;
    transition: 0.5s ease-in-out;
    justify-content: center;
}

.container-circles{
  margin: 1% auto;
  column-gap: 1%;
  text-align: center;
  display:flex;
  width:100%;
  justify-content: center;
}
.container-menu{
  display:flex;
  overflow:hidden;
  width:300vw;

}

.container-roadmap{
  width:100%;
  display: flex;
  align-items:flex-start;
}

.container-roadmap-left{
position: absolute;
margin-left: 10%;
margin-top:20%;
flex: 1;
width:100%;
height: 100%;
}

.left {
  position:absolute;
}

.right {
  position: absolute;
  right: 10%;
  width: 30%;
}

 .container-item{
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-left: 20%;
    padding-right: 20%;
    display: flex;
 }

.content {
margin-top: 0;
}

.flex-container {
    display: flex;
}

.nav-bar {
    margin-top: 0px;
    margin-right: 2%;
    text-align: right;
}

/* navigation dots on the left */
.nav {
    --nav-gap: 15px;
    padding: var(--nav-gap);
    position: fixed;
    left: 3%;
    top: 50%;
    transform: translateY(-50%);
  }
  
  .nav-item {
    align-items: center;
    display: flex;
    margin-bottom: var(--nav-gap);
  }
  
  .nav-link:hover ~ .nav-label {
    opacity: 1;
  }
  
  .nav-label {
    color: white;
    font-family: 'Comfortaa';
    text-decoration: none;
    font-size: 12px;
    opacity: 0;
    transition: opacity 0.1s;
    margin-left: 10%;
  }
  
  .nav-link {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    height: var(--nav-gap);
    margin-left: var(--nav-gap);
    transition: transform 0.1s;
    width: var(--nav-gap);
  }
  
  .nav-link-selected {
    background: white;
    transform: scale(1.4);
  }



/* not related to the rest of the navs */

.nav-top li{
    right: 0px;
    display: inline-block;
}

.nav-top {
    text-align: right;
}


/* lets me see the hitbox, and size of text */
.hitbox {
  color: white;
  border: 5px;
  border-style: solid;
}


/* formatting things */

li {
    display: inline-block;
    padding: 0 20px;
    transition: all 0.3s ease-in-out;
  }

li:hover{
    color: #fff;
}

ul {
    list-style-type: none;
}

.ul1 {
    list-style-type: none;
}

.img-container{
    width:  223px;
    height: 223px;
    object-fit: none;
}

.footer {
    text-align: center;
    bottom: 0;
    width: 100%;
    margin-top: 3%;;
}

.wrapper {
    margin-left:auto;
    margin-right:auto
}

.section {
    height: 100vh;
    border: 3px solid rgba(0,0,0,0);
    /* invisible border keeps section properly formatted*/
  }

.menu-section {
    position:relative;
    height: 100%;
    width:100%;
    margin-top:5%
  }

.menu-fixed{
  position:fixed;
  height:100;
  width:100%;
  transform: translate(0%, -0%);
}

  /* built for the roadmap page so section nav dots arent messed up */
.seperator {
    height: 100vh;
    /* invisible border keeps section properly formatted*/
  }


.contact {
    margin-top: 5%;
    width: 100%;
    height:100%;
    display:flex;
    flex-direction: column;
    column-gap: 3%;
    justify-content: space-around;
}

.flush-left { /* positions absolute left */
    left:0px;
    position: relative;
}


input,textarea {
  margin: 1% 0;
}

/* Style inputs with type="text", select elements and textareas */
input[type=text], select, textarea {
    font-family:"Comfortaa";
    width:10%;
    height:5%;
    text-align: left;
    border: none;
    outline:none;
    padding: 12px; /* Some padding */ 
    border-radius: 15px; /* Rounded borders */
    box-sizing: border-box; /* Make sure that padding and width stays in place *//* Add a top margin */
    resize: vertical; /* Allow the user to vertically resize the textarea (not horizontally) */
    transition: 0.3s all ease-in-out;
  }
  
  /* Button */
	input[type="submit"],
	button,
	.button {
    font-family:"Comfortaa";
    font-size: 15px;
    background: none;
    color: white;
    border: 1px solid white;
    padding: 15px;
    border-radius: 15px; 
    margin-right:1%;
    margin-left:1%;
    margin-bottom: 5%; 
    cursor: pointer;
    transition: all 0.3s ease-in-out; /* animation stuff dw abt it */
  }
  
  /* Hover button */
	input[type="submit"]:hover,
	button:hover,
	.button:hover {
    background-color: #023B53;
    border: 1px solid #023B53;
    color: #fff;
    transform: scale(1.1);
  }


  




/* elements */

.nav-circle{
  display: block;
	float: left;
  border-radius: 50%;
  height: 50px;
  z-index: 12;
  background-color: white;
}

.circle {
  height:100px;
  width: 100px;
  border:1.5px solid white;
  border-radius: 50%;
}

.small-circle {
  height:57.5px;
  width: 57.5px;
  border-radius: 50%;
}

.menu-circle-filled {
  background:white;
  height:11px;
  width:11px;
  border-radius: 50%;
  color:white;
}

.menu-circle {
  height:10px;
  width:10px;
  border-radius: 50%;
  border:1px solid white;
  color:white;
  transition: all 0.3s ease-in-out;
}


.roadmap-circle {
  height: 20px;
  width: 20px;
  border-radius: 50%;
  background-color: #09697C;
  border: 3px white solid;
}


.square {
    height: 4px;
    width: 486px;
    background-color: white;
}

.square2 {
    height: 4px;
    width: 270px;
    background-color:#A7A7A7;
 
}

.roadmap-border-top {
  height: 15%;
  width: 100%;
  background-image: linear-gradient(to top, rgba(0,0,0,0), rgba(9, 105, 124,1));
  position:fixed;
  margin-top: 0px;
  /*keeps this at the forefront of other elements*/
  z-index:9;
}

.roadmap-border-bottom {
  height: 15%;
  width: 100%;
  background-image: linear-gradient(to top, rgba(9, 105, 124,1), rgba(0,0,0,0));
  position:fixed;
  bottom:0px;
  /*keeps this at the forefront of other elements*/
  z-index:8;
}

.roadmap-border-block {
  height: 2%;
  width: 100%;
  background-color:rgba(9, 105, 124,1);
  position:fixed;
  margin-top: 0px;
  /*keeps this at the forefront of other elements*/
  z-index:8;
}

.icon {
  margin-right: 100px;
}

.button.icon{
  margin-right:100px;
}

.fa-brands{
    color:white;
    width: 3%;
    font-size: 100%;
}

/* scroll wheel */

.page {
    overflow: auto;
}

.banner {
    position: absolute;
    text-align: center;
    left:0%;
    width: 100%;
    height: 50%;
    background: #062D40
}

.banner-2 {
    margin-top: 3%;
    margin-bottom: 3%;
    height: 50%;
    text-align: center;
    opacity: 80%;
    background: #062D40
}

why do I need this
section:contact(2n) {
    background-color: coral;
}

/* side nav */


.sidenav {
  height: 100%; /* 100% Full-height */
  width: 0; /* 0 width - change this with JavaScript */
  position: fixed; /* Stay in place */
  z-index: 1; /* Stay on top */
  top: 0; /* Stay at the top */
  right: 0;
  background-color: #062D40; /* Black*/
  overflow-x: hidden; /* Disable horizontal scroll */
  padding-top: 60px; /* Place content 60px from the top */
  transition: 0.5s; /* 0.5 second transition effect to slide in the sidenav */
}

/* The navigation menu links */
.sidenav a {
  font-family: 'Comfortaa';
  color: white;
  font-size: 10px;
  display: block;
  transition: 0.3s;
}

.sidenav input, select {
    font-family:"Comfortaa";
    width:80%;
    margin-right: 10%;
    margin-left:10%;
    margin-top: 5%;
    display: block;
    border: none;
    transition: left 0.3s ease-in-out;
    padding: 12px; /* Some padding */ 
    border-radius: 15px; /* Rounded borders */
    box-sizing: border-box; /* Make sure that padding and width stays in place *//* Add a top margin */
    margin-bottom: 5%; /* Bottom margin */
    resize: vertical /* Allow the user to vertically resize the textarea (not horizontally) */
  }

/* When you mouse over the navigation links, change their color */
.sidenav a:hover {
  color: #A7A7A7;
}

/* Position and style the close button (top right corner) */
.sidenav .closebtn {
  position: absolute;
  top: 0;
  right: 25px;
  font-size: 36px;
  margin-left: 50px;
}

/* Style page content - use this if you want to push the page content to the right when you open the side navigation */
#main {
  transition: margin-left .5s;
}

/* On smaller screens, where height is less than 450px, change the style of the sidenav (less padding and a smaller font size) */
@media screen and (max-height: 450px) {
  .sidenav {padding-top: 15px;}
  .sidenav a {font-size: 18px;}
}

#pagethree{ /*background lighthouse for third segment*/
    background-image: url(images/bg.png);
    background-repeat:no-repeat;
    background-position-x: 90%;
    background-size: contain;
}

#pageteam {
    background-image: url(images/pageteam.png);
    background-size:     cover;                    
    background-repeat:   no-repeat;
    background-position: center bottom; 
}

#pageRedirect {
  background-size: cover;
  overflow-y: hidden; /* Hide vertical scrollbar */
  overflow-x: hidden; /* Hide horizontal scrollbar */
}

#pageRoadmap{
  background-image: #09697C;
}

.sectionLinks li {
    list-style-type: none;
    width: 12px;
    height: 12px;
    border-radius: 12px;
    margin: 8px 0 8px 20px;
    border: 1px solid #fff;
}

.sectionLinks {
    position: fixed;
    display: flex;
    flex-direction: column;
    top: 45%;
    z-index: 10;
}

.dotstyle ul {
	position: fixed;
	display: flex;
    flex-direction: column;
    top: 45%;
    z-index: 10;
	cursor: default;
}

/* animatation */
#main {
  transition: 0.5s;
  margin:0%;
}


html {
    scroll-behavior: smooth;
    margin:0;
    padding:0;
    background-color: #09697C;
  }

/* nav bar animation line */
span {
    position: relative;
    display: block;
    cursor: pointer;
  }
  
  span:before, span:after {
    content: '';
    position: absolute;
    width: 0%;
    height: 2.5px;
    top: 110%;
    background: #A7A7A7;
  }
  
  span:before {
    left: -2.5px;
  }
  span:after {
    right: 2.5px;
    background: #ffff;
    transition: width 0.8s cubic-bezier(0.22, 0.61, 0.36, 1);
  }
  
  span:hover:before {
    background: #fff;
    width: 100%;
    transition: width 0.5s cubic-bezier(0.22, 0.61, 0.36, 1);
  }
  
  span:hover:after {
    background: transparent;
    width: 100%;
    transition: 0s;
  }

  /* search config navigation */

  .searchBox {
    height: 100px;
    width: 200px;
    border: solid red 5px;
    position: relative;
    left: 1px;
    transition: left 0.3s ease-in-out;
  
  }

  /* Left nav bar animation */

.dotstyle li {
	position: relative;
	display: block;
	float: left;
    margin: 8px 0 8px 20px;
	width: 16px;
	height: 16px;
	cursor: pointer;
  z-index: 10;
}

.dotstyle li a {
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	outline: none;
	border-radius: 50%;
	background-color: #fff;
	background-color: rgba(255,255,255,0.3);
	text-indent: -999em;
	cursor: pointer; /* make the text accessible to screen readers */
	position: absolute;
  z-index: 10;
}

/* Fill up */
.dotstyle-fillup li a {
	overflow: hidden;
	background-color: rgba(0,0,0,0);
	box-shadow: inset 0 0 0 2px rgba(255,255,255,1);
	transition: background 0.3s;
  z-index: 10;
}

.dotstyle-fillup li a::after {
	content: '';
	position: absolute;
	bottom: 0;
	height: 0;
	left: 0;
	width: 100%;
	background-color: #fff;
	box-shadow: 0 0 1px #fff;
	transition: height 0.3s;
  z-index: 10;
}

.dotstyle-fillup li a:hover,
.dotstyle-fillup li a:focus {
	background-color: rgba(0,0,0,0.2);
  z-index: 10;
}

.dotstyle-fillup li.current a::after {
	height: 100%;
  z-index: 10;
}

/* Animation opacity search bar */
@keyframes fadeIn { 
    from { opacity: 0; } 
  }
  
h6 {
    position: relative;
    top: 100px;
    
    font: italic bold 5em/1 Bodoni, serif;
    color: #555;
    text-align: center;
    
    animation: fadeIn 1s infinite alternate;
  }

/* links */
link { text-decoration: none; }
a:visited { text-decoration: none; }
a:hover { text-decoration: none; }
a:active { text-decoration: none; }