@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');



html {
  scroll-behavior: smooth;
}
 
h2 {
  text-indent: 40px;
  margin: 20px;
}
 
a {
  text-decoration: none;
  color: #55B3FA; 
}

.home_bottom {
  transition: filter 0.3s;
}

.home_bottom:hover {
  filter: brightness(70%); 
}

.content-table {
  border-collapse: collapse;
  margin-bottom: 5%;
  font-size: 0.9em;
  min-width: 60%;
  border-radius: 5px 5px 5px 5px;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(167, 167, 167, 0.15);
}

.content-table thead tr {
  background-color: #55B3FA;
  color: #ffffff;
  text-align: left;
  font-weight: normal;
}

.content-table th,
.content-table td {
  padding: 12px 15px;
}

.content-table tbody tr {
  border-bottom: 1px solid #55B3FA;
}

.content-table tbody tr:nth-of-type(even) {
  background-color: #083f80;
}

.content-table tbody tr:last-of-type {
  border-bottom: 2px solid #55B3FA;
}

.content-table tbody tr.active-row {
  font-weight: normal;
  color: white;
}


/* DIFFERENT TEXT STYLE CLASSES */

.main-P-Text {
  font-weight: normal;
  font-size: 20px;
  line-height: 35px;
}

.figureCaption {
  font-weight: 50;
  font-style: italic;
  text-align: center;
  margin-top: 25px;
  margin-bottom: 25px;
}

.dashed { 
  margin-top: 40px;
}

ul {
  margin: 0;
  font-weight: normal;
  font-size: 20px;
  line-height: 35px;
}

ul.dashed {
  list-style-type: none;
}
ul.dashed > li {
  text-indent: -5px;
}
ul.dashed > li:before {
  content: "- ";
  text-indent: -5px;
}


/* END OF DIFFERENT TEXT STYLE CLASSES */

body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  color: white;
  overflow-x: hidden;
}

.outer_container {
  width: 100%;
  height: 70dvh;
  margin-top: 100px;
  background-color: white;
  /* position: absolute; */
}

.main_title {
  text-align: center;
  padding-top: 50px;
  font-size: 120px;
  margin: 0;
  padding-top: 150px;
  padding-left: 150px;
  width: 50%;
  display: inline-block;
}

#motto-text {
  width: 50%;
  font-size: 30px;
  color: #074d70;
  text-align: center;
  line-height: 45px;
  margin-top: 30px;
  padding-left: 155px;
  word-spacing: 3px;
  display: inline-block;
}

#bottom-text{
  text-align: center;
  color: black;
  margin-top: 90px;
}

.bottom-text-container {
  display: block;
}

.downArrow{
  display: inline-block;
	bottom: 45%;
	left: 50%;
  display: flex;
  justify-content: center;
}
.bounce {
	-moz-animation: bounce 3s infinite;
	-webkit-animation: bounce 3s infinite;
	animation: bounce 3s infinite;
}
.home_logo {
  width: 700px;
  position: absolute;
  /* right: 0; */
  left: 20;
  top: 13%;
}

@-moz-keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    -moz-transform: translateY(0);
    transform: translateY(0);
  }
  40% {
    -moz-transform: translateY(-30px);
    transform: translateY(-30px);
  }
  60% {
    -moz-transform: translateY(-15px);
    transform: translateY(-15px);
  }
}
@-webkit-keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  40% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }
  60% {
    -webkit-transform: translateY(-15px);
    transform: translateY(-15px);
  }
}
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  40% {
    -moz-transform: translateY(-30px);
    -ms-transform: translateY(-30px);
    -webkit-transform: translateY(-30px);
    transform: translateY(-10px);
  }
  60% {
    -moz-transform: translateY(-15px);
    -ms-transform: translateY(-15px);
    -webkit-transform: translateY(-15px);
    transform: translateY(-5px);
  }
}
.nav {
  width: 100%; 
  height: 60px; 
  background-color: #272727;
  display: flex;
  align-items: center;
}

.nav a {
  text-decoration: none;
}

.down_charet {
  display: revert;
  font-size: 20px;
  position: relative;
  bottom: 5px;
  margin-left: 5px;
  font-weight: lighter;
}

.box {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  justify-content: space-evenly;
}



.nav-button {
  display: flex;
  color: grey;
  font-size: 20px;
  transition: color 0.2s;
  font-weight: bold;
  align-items: center;
  cursor: pointer;
}

.nav-button:hover, .nav-button.active, .dropdown:hover .nav-button {
  color:  white;
}

.dropdbtn {
  display: none;
  position: absolute;
  background-color: #333030;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}


.dropdbtn a {
  float: none;
  color: #ddd;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  text-align: left;
}

.dropdbtn a:hover {
  background-color: #544f4f;
  border-radius: 5px;
}

/* DO NOT DELETE THIS. */
.show { 
  display: block;
  margin-top: 10px;
  border-radius: 5px;


}

.under-nav {
  background-color: #495057;
  width: 100px;
  height: 100%;
}


.tank_top {
  width: 100%;
  height: 45px;
  background-color: white;
  display: flex;
  justify-content: center;
  /* margin-top: 220px; */
  
}

.tank_top_flex {
    background-color: #242121;
    width: 600px;
    height: 50px;
    margin-top: 20px;
    /* display: flex;
    align-content: top; */
    border-top-left-radius: 5px;  
    border-top-right-radius: 5px;  

}

.tank_middle {
  background-color: #242121;
  width: 100%;
  height: 100px;
  display: block;
}

.main_body {
    /* background-color: #b5e5ec; */
    background-image: linear-gradient(#b5e5ec, rgb(44, 131, 231));
    height: 100%;
    width: 100%;
    z-index: 5;
    display: inline-block;
}

.tank-dirt {
  height: 100px;
  width: 100%;
  background-image: url("https://static.igem.wiki/teams/4599/wiki/dirt-2.png");
  }

.tank-water {
  height: 100px;
  width: 100%;
  background-color: rgb(99, 147, 183);
}

  .objects {
    width: 100%;
}

.rock img {
    width: 600px;
    height: 600px;
}

.sub img {
    width: 500x;
    height: 600px;
}


.hello {
  display: flex;
  justify-content: space-between;
  position: relative;
  bottom: -8px;
}
/* PROJECT DESCRIPTION */

.top_header_body {
  width: 100%;
  height: 300px;
  background: linear-gradient(rgba(4, 34, 69, 0.8), rgba(4, 34, 69, 0.8)), url("https://static.igem.wiki/teams/4599/wiki/header-hp.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.top_header_gradient {
  width: 100%;
  height: 100px;
  background-size: cover;
  background: linear-gradient(transparent 1%,#042245);
  background-position: center;
  background-repeat: no-repeat;
}

.top_header_title {
    font-weight: bold;
    text-align: center;
    font-size: 50px;
    padding-top: 100px;
}

.top_header_subtitle {
  font-size: 25px;
  text-align: center;
  font-weight: normal;
  color: #c5c5c5;
}

.table_of_contents_container {
  width: 320px;
  height: 100%;
  /* flex-basis: 200px; */
  flex-direction: column;
  justify-content: space-evenly;
  margin: 0;
  display: inline-block;
  position: sticky;
  overflow: visible;
  top: 10px;

}

.content_of_table {
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-family: 'Kanit', sans-serif;
  margin: 35px 20px;
  height: 35px;
  font-size: 20px;
  background-color: #0c77c9;
  border-radius: 30px;
  color: white;
  transform: scale(1);
}

.content_of_table:hover {
  background-color: white;
  color:black;
  transition: all 0.3s;
  transform: scale(0.95);
  cursor: pointer;
}



.table_of_contents_title {

  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-family: 'Kanit', sans-serif;
  margin: 20px;
  height: 40px;
  font-size: 25px;
  text-align: center;
  border-radius: 30px;
  border-color: black;
  color: white;
}

.body_not_home {
  background-color: #042245;
}

.text_by_side {
  display: inline-block;
  margin: 0px 40px 30px 30px;
  width: calc(100% - 30%);
  /* margin-top: 50px; */
  vertical-align: top;
}

.icon_container {
  width: 50px;
  height: 50px;
  display: block;
}
.content_header_icon {
  /* background-image: url('bulb.svg'); */
  width: 100%;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
}

.instagram_logo {
  width: 50px;
  height: 60px;
  background-image: url("instagram.svg");
  background-size: cover;
  /* display: inline-flex; */
}

.instagram_logo {
  width: 60px;
  height: 70px;
  background-image: url("instagram.svg");
  background-size: cover;
  /* display: inline-flex; */
}

.facebook_logo {
  width: 60px;
  height: 70px;
  background-image: url("facebook.svg");
  background-size: cover;
  /* display: inline-flex; */
}

.youtube_logo {
  width: 80px;
  height: 60px;
  background-image: url("youtube.svg");
  background-size: cover;
  /* display: inline-flex; */
}

.gitlab_logo {
  width: 50px;
  height: 60px;
  background-image: url("gitlab.svg");
  background-size: cover;
  /* display: inline-flex; */
}

.container {
  width: 100%;
  height: 500px;
}

.image-container {
  display: flex;
  align-items: right;
  align-items: center;
  margin-top: 50px;
}

.image-container img {
  width: 50px;
  height: 50px;
  margin-right: 10px;

}

.p-title {
  color: #55B3FA;
}


#scroll-top button {
  visibility: none;
}

#scroll-top img {
  width: 40px;
  height: 40px;
  position: fixed;
  bottom: 20px;
  right: 20px;
  padding: 10px;
  border: none;
  cursor: pointer;
  z-index: 999;
  outline: none;
  background-color: transparent;
  opacity: 0; /* Set initial opacity to 0 */
  visibility: hidden; /* Hide the image initially */
  transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out; /* Add transitions for opacity and visibility */
}

#scroll-top.show img {
  opacity: 1; /* Set opacity to 1 when the image is shown */
  visibility: visible; /* Show the image */
}

.loader-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: white;
  opacity: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999; /* Adjust the z-index value as needed */
}

.loader {
  display: inline-block;
  width: 900px; /* Adjust the width and height according to your GIF dimensions */
  height: 900px;
  background-image: url("https://static.igem.wiki/teams/4599/wiki/loading.gif"); /* Replace 'path-to-your-gif.gif' with the actual path to your GIF file */
  background-size: cover;
}

.fade-container {
  /* Set the height of the container to trigger the fade-in effect when elements come into view */
  min-height: 300px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  justify-content: space-around;
  margin-bottom: 270px;
}

#fade-container-first {
  /* Set the height of the container to trigger the fade-in effect when elements come into view */
  min-height: 300px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  justify-content: space-around;
  margin-bottom: 270px;
  margin-top: 100px;
}

.fade-element{
  opacity: 0;
  transform: scale(0.97);
  transition: opacity 1s ease, transform 1s ease;
  font-weight: bold;
  font-size: 40px;
  size: 40px;


}





/* waves */
  .ocean {
    height: 80px; /* change the height of the waves here */
    width: 100%;
    position: relative;
    margin-top: 25px;
    overflow-x: hidden;
  }
  
  .wave {
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 800 88.7'%3E%3Cpath d='M800 56.9c-155.5 0-204.9-50-405.5-49.9-200 0-250 49.9-394.5 49.9v31.8h800v-.2-31.6z' fill='%23b5e5ec'/%3E%3C/svg%3E");
    position: absolute;
    width: 200%;
    height: 100%;
    animation: wave 20s linear infinite;
    transform: translate3d(0, 0, 0);
    opacity: 0.8;
  }
  
  .wave:nth-of-type(2) {
    bottom: 0;
    animation: wave 36s linear reverse infinite;
    opacity: 0.5;
  }
  
  .wave:nth-of-type(3) {
    bottom: 0;
    animation: wave 40s linear infinite;
    opacity: 0.5;
  }
  
  @keyframes wave {
      0% {transform: translateX(0);}
      50% {transform: translateX(-25%);}
      100% {transform: translateX(-50%);}
  }

/* fish */

  
  svg#fish {
    top: 5em;
  }
  /* Fish Animation */
  svg.fish{
    overflow-x: hidden;
  }
  
  @-webkit-keyframes swim
  {
    0% {margin-left: -235px}
    90% {margin-left: 100%;}
    100% {margin-left: 100%;}
  }
  
  @keyframes swim
  {
    0% {margin-left: -235px}
    70% {margin-left: 100%;}
    100% {margin-left: 100%;}
  }
  
  .fish-top{
    width: 100%;
    height: 104px;
    margin-left: -235px;
    position: relative;	
    animation: swim 20s;
    -webkit-animation: swim 20s;
    animation-iteration-count: infinite;
    -webkit-animation-iteration-count: infinite;
    animation-timing-function: linear;
    -webkit-animation-timing-function: linear;
    margin-bottom: 10px;
    overflow-x: hidden;
  }
  
  .fish{
    width: 100%;
    height: 104px;
    margin-left: -235px;
    position: relative;	
    animation: swim 15s;
    -webkit-animation: swim 15s;
    animation-iteration-count: infinite;
    -webkit-animation-iteration-count: infinite;
    animation-timing-function: linear;
    -webkit-animation-timing-function: linear;
    margin-bottom: 300px;
    overflow-x: hidden;

  }

  .fish-bottom{
    width: 100%;
    height: 104px;
    margin-left: -235px;
    position: relative;	
    animation: swim 20s;
    -webkit-animation: swim 20s;
    animation-iteration-count: infinite;
    -webkit-animation-iteration-count: infinite;
    animation-timing-function: linear;
    -webkit-animation-timing-function: linear;
    margin-top: 50px;
    overflow-x: hidden;

  }

  svg #fish1,
  svg #fish2,
  svg #fish3,
  svg #fish4,
  svg #fish5,
  svg #fish6 {

    -moz-animation: bounce 2s infinite;
    -webkit-animation: bounce 2s infinite;
    animation: bounce 2s infinite;
    fill: #ff9c4a;
  }
  
  svg #fish2{
    animation-delay: 0.5s;
    -webkit-animation-delay: 0.5s;
  }
  
  svg #fish3{
    animation-delay: 0.2s;
    -webkit-animation-delay: 0.2s;
  }
  
  svg #fish4{
    animation-delay: 0.4s;
    -webkit-animation-delay: 0.4s;
  }
  
  svg #fish5{
    animation-delay: 0.1s;
    -webkit-animation-delay: 0.1s;
  }
  
  svg #fish6{
    animation-delay: 0.3s;
    -webkit-animation-delay: 0.3s;
  }
  
  /**/
  @-moz-keyframes bounce {
    0%, 50%, 100% {
      -moz-transform: translateY(0);
      transform: translateY(0);
    }
    25% {
      -moz-transform: translateY(-5px);
      transform: translateY(-5px);
    }
    75% {
      -moz-transform: translateY(-3px);
      transform: translateY(-3px);
    }
  }
  @-webkit-keyframes bounce {
    0%, 50%, 100% {
      -webkit-transform: translateY(0);
      transform: translateY(0);
    }
    25% {
      -webkit-transform: translateY(-5px);
      transform: translateY(-5px);
    }
    75% {
      -webkit-transform: translateY(-3px);
      transform: translateY(-3px);
    }
  }
  @keyframes bounce {
    0%, 50%, 100% {
      -moz-transform: translateY(0);
      -ms-transform: translateY(0);
      -webkit-transform: translateY(0);
      transform: translateY(0);
    }
    25% {
      -moz-transform: translateY(-5px);
      -ms-transform: translateY(-5px);
      -webkit-transform: translateY(-5px);
      transform: translateY(-5px);
    }
    75% {
      -moz-transform: translateY(-3px);
      -ms-transform: translateY(-3px);
      -webkit-transform: translateY(-3px);
      transform: translateY(-3px);
    }
  }
  
  /*END Fish Animation*/

  .carousel-container {
    position: relative;
    display: flex;
    justify-content: center;
    top: 63%;
  }
  
  .carousel-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    cursor: pointer;
    border: none;
    outline: none;
    background-color: transparent;
  }

  .carousel-button img {
    width: 50px;
    height: 50px;
  }
  

  
  .carousel-button#prev-btn {
    left: 2%;
  }
  
  .carousel-button#next-btn {
    right: 2.6%;
  }
  
  .carousel {
    width: 1650px; /* Adjust the width of the carousel */
    overflow: hidden;
  }
  
  .slick-track {
    display: flex;
  }
  
  .icons img {
    width: 110px; /* Adjust the icon width as needed */
    height: 180px; /* Adjust the icon height as needed */
    border-radius: 50%; /* Make the icons circular */
    margin: 15px; /* Add a gap between icons */
    border-color: #ffffff;
    border: 8px solid #3b3636; /* Set the black border (2px in this example) */
  }
  
.team-Page_Background {
  background-image: url(https://static.igem.wiki/teams/4599/wiki/ourteam.png);
  width: 100%; 
  height: 100vh; 
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;


}

/* .info-text {
  padding-top: 20px;
  width: 47%;
  height: 39%;
  background-color: transparent;
  position: absolute;
  left: 25%;
  top: 15.5%;
  font-size: 30px;
} */

.info-text img {
  position: absolute;
  width: 115%;
  height: 51%;
}

/* .info-image {
  position: absolute;
  right: 0;
  top: 30.5%;
  left: 81.1%;
} */

/* .info-image img {
  background-image: url(https://static.igem.wiki/teams/4599/wiki/team-page/team-page/blank-team.png);
  width: 130px;
  height: 130px;
  border-radius: 50%;

} */


#footer {
  position: relative;
  bottom: 0px;
  z-index: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  background-color: #272727;
}

.footer-text {
  text-align: center;
  color: #585858;
  position: absolute;
  margin-top: 50px;
  bottom: 230px;
  left: 50%;
  transform: translateX(-50%);
}


.footer-text a {
  color: #585858;
  text-decoration: none;
}

.footer-text a:hover {
  color: #696969;
  text-decoration: underline;
}

.social-icons-wrapper {
  position: relative;
  z-index: 5;
  display: grid;
  display: flex;
  width: 80%;
  max-width: 1440px;
  margin: 40px auto;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-align-self: auto;
  -ms-flex-item-align: auto;
  align-self: auto;
}
.social-icons-wrapper.images-grid {
  display: grid;
  flex-direction: row;
  justify-content: space-between;
  flex-wrap: nowrap;
  align-items: flex-start;
  align-content: flex-start;
  flex: 0 auto;
  grid-auto-columns: 1fr;
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto auto auto;
}
.social-icons-wrapper.images-grid._2-rows {
  -ms-grid-rows: auto auto;
  grid-template-rows: auto auto;
}

.social-icons-wrapper.images-grid._1-row {
  -ms-grid-rows: auto;
  grid-template-rows: auto;
  cursor: default;
}

.icon-link{
  min-width: 19%;
}

.social-link{
  width: 90%;
  height: auto;
  background-color: #585858;
  
}
.social-link.facebook-link {
  background-color: #585858;
  max-width: 20%;
  min-width: 19%;
}

.social-link.facebook-link:hover {
  background-color: #4460a0;
}

.social-link.twitter-link{
  background-color: #585858;
}
.social-link.twitter-link:hover{
  background-color: #00acee;
}
.social-link.gitlab-link{
  background-color: #585858;
}
.social-link.gitlab-link:hover{
  background-color: #db5b28ce;
}
.social-link.instagram-link
{
  background-color: #585858;
}
.social-link.instagram-link:hover {
  background-color: #ed4a55; /* Color to change to when hovered */
}
.social-link.instagram-link
{
  background-color: #585858;
}

.social-link.tik-tok-link:hover {
  background-color: #ec4989;; /* Color to change to when hovered */
}
.footer-divider {
  width: 2px;
  height: 53px;
  background-color: hsla(0, 0%, 96.5%, 0.1);
  -webkit-transform: rotate(20deg);
  -ms-transform: rotate(20deg);
  transform: rotate(20deg);
}

.attribution_form{
  background-color: #a8a8a8;
}

.top-sub {
  width: 100%;
  height: 20%;
}

.bottom-sub{
  width: 100%;
  /* height: 50%; */
}

.Team-page-Background {
  background-color: rgb(84, 84, 84);
}

.attrubtions-background {
  background-color: rgb(41, 41, 41);
}

.attrubtions-background img{
  width: 100%;
}

.sandman img {
  display: block;
}

.rotate {
  height: 140px;
  white-space: nowrap;
  background: none;
  border: none;
}

@import url(https://fonts.googleapis.com/css?family=Open+Sans:400,600);



table {
  background: #042245;
  border-radius: 0.25em;
  border-collapse: collapse;
  width: 50%;
  margin-bottom: 100px;
  
}
th {
  border-bottom: 1px solid #083f80;
  color: white;
  font-size: 1em;
  font-weight: 600;
  padding: 0.5em 1em;
  text-align: left;
}
td {
  color: white;
  font-weight: 400;
  padding: 0.65em 1em;
}

tbody tr {
  transition: background 0.25s ease;
}
tbody tr:hover {
  background: rgba(87, 86, 86, 0.53);
}

.table-header-attrubutions {
  background-color: rgb(41, 41, 41);
  margin: 0;
}

.atturbutions-image-container {
  display: flex;
  align-items: right;
  align-items: center;
  background-color: rgb(41, 41, 41);
  justify-content: center;
  font-size: 25px;
}

.atturbutions-image-container img{
  width: 100px;
  height: 100px;
  margin-right: 10px;
}

.attributions-title {
color: white;
}

.table-div {
  background-color: rgb(41, 41, 41); display: flex; justify-content: center;
}

