/* Importing google fonts */
@import url("https://fonts.googleapis.com/css2?family=Lato&display=swap");
/* Reset default configuration */
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
body {
  font-family: "Lato", sans-serif;
  color: #000;
}
h1 {
  background-color: #0e7490;
  color: #ffffffff;
  text-align: center;
  padding: 10px;
}
.biologySuperHero {
  margin-top: 100px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.projectName {
  margin-left: 80px;
}
h2 {
  margin-bottom: 30px;
}

p {
  margin-bottom: 10px;
}
.projectImage {
  margin-right: 100px;
}
.imageProject {
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
  border-radius: 10px;
  margin-left: 100px;
}
/* sections section*/
.HazardHumanSpaceFlight {
  margin-top: 100px;
  background-color: #0e7490;
  color: #ffffffff;
  display: flex;
  padding: 30px;
}
#explore {
  width: 320px;
  height: 180px;
}
.hazardTitle {
  align-self: center;
  margin: 0 30px;
}
.hazardTitle > p {
  margin-top: -20px;
}
.hazardImage {
  display: grid;
  grid-template: 1fr 1fr 1fr / 1fr 1fr;
}
.hazard {
  cursor: pointer;
}
.hazardImage > img {
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.6);
  margin: 10px;
  border-radius: 10px;
  transition: all 0.4s;
  width: 320px;
  height: 180px;
}
.hazardImage > img:hover {
  box-shadow: 0 10px 20px rgba(255, 255, 255, 1);
}
/* Modal */

.hidden {
  display: none;
}
.modal {
  position: fixed;
  width: 95%;
  height: 95%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 5;
  backdrop-filter: blur(3px);
  background-color: rgba(0, 0, 0, 0.9);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.8);
  color: #ffffffff;
  padding: 50px;
  border-radius: 20px;
  animation: modalAnimation 1s forwards;
  user-select: none;
}
@keyframes modalAnimation {
  0% {
    width: 0%;
    height: 0%;
    color: #0000;
  }
  99% {
    color: #0000;
  }
  100% {
    height: 95%;
    width: 95%;
    color: #ffffffff;
  }
}
.modal > h3 {
  margin: 80px 20px;
}
.modal > p {
  margin: 20px;
}
.esc {
  padding: 10px;
  display: inline-block;
  color: #000;
  border-radius: 10px;
  animation: animationEscModal 1s forwards;
}
@keyframes animationEscModal {
  0% {
    opacity: 0;
    color: #0000;
  }
  99% {
    opacity: 0;
    background-color: transparent;
    color: #0000;
  }
  100% {
    opacity: 1;
    color: #000;
    background-color: #ffffffff;
  }
}
/* carrousel settings */
.carousel-card {
  margin-top: -30px;
  display: grid;
  grid-template: 1fr 1fr / 1fr 1fr;
  justify-items: center;
  gap: 20px;
}
.carousel-item > a > img {
  width: 360px;
  height: 180px;
  border-radius: 10px;
  border: 3px solid #ffffffff;
  animation: animationEscModal 1s forwards;
  transition: all 0.4s;
  cursor: pointer;
}
.carousel-item > a > img:hover {
  width: 370px;
  height: 185px;
}

/* Video Section */
.videoSection {
  width: 100%;
  text-align: center;
}
.solutionVideo {
  margin-top: 100px;
}
.divVIdeo {
  width: 100%;
  height: 100%;
  margin-top: 10px;
  margin-bottom: 100px;
}
.video {
  border-radius: 20px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.9);
}
