@import url("https://fonts.googleapis.com/css2?family=Climate+Crisis&display=swap");
.Form-container {
  position: relative;
  display: block;
  bottom: 20px;
  margin-top: 1600px;
  /* Styles for the FORM class */
  /* Styles for the footer-container class */
}
.Form-container h2 {
  text-align: center;
  color: white;
  font-size: 40px;
  padding-bottom: 40px;
}
.Form-container form {
  background-color: rgba(104, 104, 104, 0.4);
  max-width: 500px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #2edad4;
  font-size: 25px;
  padding: 20px;
  border-radius: 20px;
}
.Form-container label {
  display: block;
  margin-bottom: 10px;
  font-weight: bold;
}
.Form-container input[type=text], .Form-container textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 20px;
  border: 2px solid #ccc;
  border-radius: 5px;
  resize: none;
  font-size: 16px;
  font-family: sans-serif;
}
.Form-container input[type=submit] {
  background-color: #4CAF50;
  color: white;
  padding: 12px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
}
.Form-container input[type=submit]:hover {
  background-color: #45a049;
}
@media screen and (max-width: 500px) {
  .Form-container form {
    margin-top: 100px;
    max-width: 80%;
  }
  .Form-container h2 {
    text-align: center;
    color: white;
    font-size: 40px;
    padding-top: 600px;
    padding-bottom: 0px;
  }
}
.Form-container #footer-container {
  color: #fff;
  padding: 20px;
  margin-top: 100px;
  height: 100px;
}

textarea {
  resize: none;
}

.text {
  color: white;
  font-size: 20px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  white-space: nowrap;
}

.svg-inline--fa {
  vertical-align: -0.2em;
}

.rounded-social-buttons {
  text-align: center;
}

.rounded-social-buttons .social-button {
  display: inline-block;
  position: relative;
  cursor: pointer;
  width: 3.125rem;
  height: 3.125rem;
  border: 0.125rem solid transparent;
  padding: 0;
  text-decoration: none;
  text-align: center;
  color: #fefefe;
  font-size: 1.5625rem;
  font-weight: normal;
  line-height: 2em;
  border-radius: 1.6875rem;
  transition: all 0.5s ease;
  margin-right: 0.25rem;
  margin-bottom: 0.25rem;
}

.rounded-social-buttons .social-button:hover, .rounded-social-buttons .social-button:focus {
  transform: rotate(360deg);
}

.rounded-social-buttons .fa-twitter, .fa-facebook-f, .fa-linkedin, .fa-youtube, .fa-instagram {
  font-size: 25px;
}

.rounded-social-buttons .social-button.facebook {
  background: #3b5998;
}

.rounded-social-buttons .social-button.facebook:hover, .rounded-social-buttons .social-button.facebook:focus {
  color: #3b5998;
  background: #fefefe;
  border-color: #3b5998;
}

.rounded-social-buttons .social-button.twitter {
  background: #55acee;
}

.rounded-social-buttons .social-button.twitter:hover, .rounded-social-buttons .social-button.twitter:focus {
  color: #55acee;
  background: #fefefe;
  border-color: #55acee;
}

.rounded-social-buttons .social-button.linkedin {
  background: #007bb5;
}

.rounded-social-buttons .social-button.linkedin:hover, .rounded-social-buttons .social-button.linkedin:focus {
  color: #007bb5;
  background: #fefefe;
  border-color: #007bb5;
}

.rounded-social-buttons .social-button.youtube {
  background: #bb0000;
}

.rounded-social-buttons .social-button.youtube:hover, .rounded-social-buttons .social-button.youtube:focus {
  color: #bb0000;
  background: #fefefe;
  border-color: #bb0000;
}

.rounded-social-buttons .social-button.instagram {
  background: #125688;
}

.rounded-social-buttons .social-button.instagram:hover, .rounded-social-buttons .social-button.instagram:focus {
  color: #125688;
  background: #fefefe;
  border-color: #125688;
}

.main-header {
  position: fixed;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100px;
  width: 100vw;
  padding: 0 10vw;
  color: #ffffff;
  font-size: 20px;
  z-index: 9999;
  transition: 0.6s ease-out;
}
.main-header img {
  width: 20%;
}
.main-header .video-container {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  overflow: hidden;
}
.main-header .video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.main-header a {
  text-decoration: none;
  color: inherit;
  text-transform: uppercase;
}
.main-header .navlinks {
  display: flex;
  list-style: none;
}
.main-header .navlinks .navlink a {
  margin: 0.2rem;
  padding: 1rem 0.5rem;
}
.main-header .navlinks .navlink a:hover {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 5px;
}
.main-header .menu-icon {
  position: relative;
  padding: 20px 10px;
  cursor: pointer;
  z-index: 1;
  display: none;
}
.main-header .menu-icon__line {
  display: block;
  position: relative;
  background: black;
  height: 2px;
  width: 20px;
  border-radius: 4px;
}
.main-header .menu-icon__line::before, .main-header .menu-icon__line::after {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  border-radius: 4px;
  background: black;
  transition: background 0.8s ease;
}
.main-header .menu-icon__line::before {
  transform: translateY(-5px);
}
.main-header .menu-icon__line::after {
  transform: translateY(5px);
}
.main-header .menu-btn {
  display: none;
}
.main-header.scrolled {
  height: 100px;
  background: rgba(0, 0, 0, 0.8);
  color: white;
}
.main-header.scrolled .menu-icon__line, .main-header.scrolled .menu-icon__line::before, .main-header.scrolled .menu-icon__line::after {
  background: white;
}

.hero {
  height: 100vh;
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 10vw;
  color: #fff;
}
.hero h1 {
  position: relative;
  font-size: 4rem;
  text-transform: uppercase;
  text-align: center;
  background: rgba(0, 0, 0, 0.2);
  padding: 2rem;
  border-radius: 20px 0;
  z-index: 0;
}
.hero h1::before, .hero h1::after {
  content: "";
  position: absolute;
  top: 0;
  height: 100%;
  width: 50%;
}
.hero h1::before {
  left: 0;
  border-bottom: 6px solid black;
}
.hero h1::after {
  right: 0;
  border-top: 6px solid black;
}

@media screen and (max-width: 767px) {
  .main-header .menu-icon {
    display: block;
  }
  .main-header .menu-icon__line {
    animation: closedMid 0.8s backwards;
    animation-direction: reverse;
  }
  .main-header .menu-icon__line::before {
    animation: closedTop 0.8s backwards;
    animation-direction: reverse;
  }
  .main-header .menu-icon__line::after {
    animation: closedBtm 0.8s backwards;
    animation-direction: reverse;
  }
  .main-header .navlinks {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
    padding: 10rem 0;
    width: 100vw;
    height: 100vh;
    font-size: 2rem;
    color: white;
    background: #272727;
    transition: opacity 0.8s 0.5s, 0.5s, -webkit-clip-path 1s;
    transition: opacity 0.8s 0.5s, clip-path 1s, 0.5s;
    transition: opacity 0.8s 0.5s, clip-path 1s, 0.5s, -webkit-clip-path 1s;
    -webkit-clip-path: circle(200px at top right);
            clip-path: circle(200px at top right);
  }
  .main-header .navlinks .navlink {
    opacity: 0;
    transform: translateX(100%);
    width: 100%;
    text-align: center;
  }
  .main-header .navlinks .navlink a {
    display: block;
    padding: 2rem 0;
  }
  .main-header .menu-btn:checked ~ .navlinks {
    opacity: 1;
    -webkit-clip-path: circle(100% at center);
            clip-path: circle(100% at center);
  }
  .main-header .menu-btn:checked ~ .navlinks .navlink {
    opacity: 1;
    transform: translateX(0);
    transition: opacity 0.4s ease-in-out, transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  }
  .main-header .menu-btn:checked ~ .navlinks .navlink:nth-of-type(1) {
    transition-delay: 0.3s;
  }
  .main-header .menu-btn:checked ~ .navlinks .navlink:nth-of-type(2) {
    transition-delay: 0.4s;
  }
  .main-header .menu-btn:checked ~ .navlinks .navlink:nth-of-type(3) {
    transition-delay: 0.5s;
  }
  .main-header .menu-btn:checked ~ .navlinks .navlink:nth-of-type(4) {
    transition-delay: 0.6s;
  }
  .main-header .menu-btn:checked ~ .navlinks .navlink:nth-of-type(5) {
    transition-delay: 0.7s;
  }
  .main-header .menu-btn:checked ~ .menu-icon {
    border-radius: 50%;
    animation: pulse 1s;
  }
  .main-header .menu-btn:checked ~ .menu-icon .menu-icon__line {
    background: white;
    animation: openMid 0.8s forwards;
  }
  .main-header .menu-btn:checked ~ .menu-icon .menu-icon__line::before {
    background: white;
    animation: openTop 0.8s forwards;
  }
  .main-header .menu-btn:checked ~ .menu-icon .menu-icon__line::after {
    background: white;
    animation: openBtm 0.8s forwards;
  }
  .hero h1 {
    font-size: 2.5rem;
  }
}
@keyframes pulse {
  from {
    box-shadow: 0, 0, 0, 0px rgba(255, 255, 255, 0.6);
    background: rgba(255, 255, 255, 0.6);
  }
  to {
    box-shadow: 0, 0, 0, 0px rgba(255, 255, 255, 0);
    background: rgba(255, 255, 255, 0);
  }
}
@keyframes openTop {
  0% {
    transform: translateY(-5px) rotate(0deg);
  }
  50% {
    transform: translateY(0px) rotate(0deg);
  }
  100% {
    transform: translateY(0px) rotate(90deg);
  }
}
@keyframes openMid {
  50% {
    transform: translateY(0px) rotate(0deg);
  }
  100% {
    transform: translateY(0px) rotate(45deg);
  }
}
@keyframes openBtm {
  0% {
    transform: translateY(5px) rotate(0deg);
  }
  50% {
    transform: translateY(0px) rotate(0deg);
  }
  100% {
    transform: translateY(0px) rotate(90deg);
  }
}
@keyframes closedTop {
  0% {
    transform: translateY(5px) rotate(0deg);
  }
  50% {
    transform: translateY(0px) rotate(0deg);
  }
  100% {
    transform: translateY(0px) rotate(90deg);
  }
}
@keyframes closedMid {
  50% {
    transform: translateY(0px) rotate(0deg);
  }
  100% {
    transform: translateY(0px) rotate(45deg);
  }
}
@keyframes closedBtm {
  0% {
    transform: translateY(5px) rotate(0deg);
  }
  50% {
    transform: translateY(0px) rotate(0deg);
  }
  100% {
    transform: translateY(0px) rotate(90deg);
  }
}
* {
  padding: 0;
  margin: 0;
}

body {
  background: linear-gradient(#011526, #0D0D0D);
}

.Section_container {
  background-color: #013440;
  display: grid;
  height: 120vh;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-template-rows: 0.2fr 1.5fr 1, 2fr 0.8fr;
  grid-template-areas: "intro intro intro intro" "ImgContainer main main main" "content2 content2 content1 content1" "content3 content3 content3 content3";
  grid-gap: 1.3rem;
}

#intro {
  background-color: #011526;
  grid-area: intro;
  padding-top: 150px;
  padding-bottom: 150px;
}
#intro h2 {
  text-align: center;
  margin: auto;
  border-radius: 20px;
  padding: 10px;
  font-size: 30px;
  width: 50%;
  color: white;
}

#ImgContainer {
  grid-area: ImgContainer;
  width: 40vmin;
  height: 600px;
  position: relative;
  transform: translate(-50%, -50%);
  left: 50%;
  top: 43%;
  overflow: hidden;
  padding: 20px;
  padding-left: 20px;
}
#ImgContainer .wrapper {
  width: 100%;
  height: 100%;
  display: flex;
  animation: slide 24s linear infinite;
}

@keyframes slide {
  0% {
    transform: translateX(0);
  }
  14.28571429% {
    transform: translateX(0);
  }
  21.42857143% {
    transform: translateX(-100%);
  }
  35.71428571% {
    transform: translateX(-100%);
  }
  42.85714286% {
    transform: translateX(-200%);
  }
  57.14285714% {
    transform: translateX(-200%);
  }
  64.28571429% {
    transform: translateX(-300%);
  }
  78.57142857% {
    transform: translateX(-300%);
  }
  85.71428571% {
    transform: translateX(-400%);
  }
  100% {
    transform: translateX(-400%);
  }
}
img {
  width: 100%;
}

#main {
  background-image: url(/dist/Imgs/StockImages/Microphone.jpg);
  background-size: cover;
  margin-bottom: 100px;
  grid-area: main;
  padding-bottom: 200px;
}
#main .infoText {
  left: 50%;
  top: 50%;
  text-align: center;
  margin-top: 15%;
  color: white;
}
#main .infoText p {
  padding: 20px;
}
#main .infoText button {
  margin-top: 20px;
  padding: 20px;
  border-radius: 20px;
  background-color: #141E26;
}
#main .infoText button a {
  color: #05DBF2;
  list-style: none;
  text-decoration: none;
  font-size: 20px;
}
#main .infoText button:hover {
  background-color: #013440;
}
#main .infoText button:hover a {
  color: white;
}

#content1 {
  margin-top: 50px;
  margin-bottom: 150px;
  padding-top: 80px;
  padding-bottom: 100px;
  background-color: #3BBFBF;
  margin: auto 0;
  grid-area: content1;
  left: 50%;
  right: 50%;
  text-align: center;
}
#content1 h2 {
  text-decoration: underline;
}
#content1 p {
  padding-top: 20px;
  font-size: 20px;
}
#content1 h3 {
  color: #0d0d0d;
}

#container {
  color: #999;
  text-transform: uppercase;
  font-size: 36px;
  font-weight: bold;
  padding-top: 100px;
  padding-bottom: 100px;
  position: relative;
  width: 100%;
  bottom: 45%;
  display: block;
}

#flip {
  height: 50px;
  overflow: hidden;
}

#flip > div > div {
  color: #fff;
  padding: 4px 12px;
  height: 50px;
  margin-bottom: 45px;
  display: inline-block;
}

#flip div:first-child {
  animation: show 10s linear infinite;
}

#flip div div {
  background: #009111;
}

#flip div:nth-child(2) div {
  background: #4ec7f3;
}

#flip div:nth-child(3) div {
  background: #0d0d0d;
}

#flip div:nth-child(4) div {
  background: #013440;
}

#flip div:nth-child(5) div {
  background: #176a73;
}

#flip div:nth-child(6) div {
  background: #0084ff;
}

@keyframes show {
  0% {
    margin-top: 0px;
  }
  8.33% {
    margin-top: 0px;
  }
  16.67% {
    margin-top: -90px;
  }
  25% {
    margin-top: -90px;
  }
  33.33% {
    margin-top: -180px;
  }
  41.67% {
    margin-top: -180px;
  }
  50% {
    margin-top: -270px;
  }
  58.33% {
    margin-top: -270px;
  }
  66.67% {
    margin-top: -360px;
  }
  75% {
    margin-top: -360px;
  }
  83.33% {
    margin-top: -450px;
  }
  91.67% {
    margin-top: -450px;
  }
  100% {
    margin-top: -540px;
  }
}
#content2 {
  padding-top: 20px;
  background-image: url(/dist/Imgs/mapDesign.png);
  background-size: cover;
  grid-area: content2;
  display: flex;
  align-items: center;
  justify-content: center;
}
#content2 h2 {
  width: 200px;
  height: 100px;
  color: white;
}

#content3 {
  grid-area: content3;
}
#content3 .wrapper {
  margin: 0 auto;
  min-height: 100vh;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: white;
}
#content3 .wrapper h2 {
  font-size: 60px;
  font-weight: 500;
  text-align: center;
  margin-bottom: 30px;
}
#content3 .wrapper h5 {
  margin-bottom: 200px;
}
#content3 .cards {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 1000px;
  margin: 0 auto;
}
#content3 .cards p {
  font-size: 18px;
  margin-top: 60px;
  margin-bottom: 25px;
}
#content3 .cards h4 {
  color: gray;
  font-size: 18px;
  font-weight: 400;
}
#content3 .Prcard {
  width: 350px;
  height: 250px;
  border-radius: 15px;
  margin: 25px;
  padding: 20px 30px;
  position: relative;
  background-color: aqua;
  box-shadow: 10px 20px 25px rgba(0, 0, 0, 0.5);
  transition: 0.5s;
}
#content3 .Prcard img {
  height: 200px;
  width: 200px;
  border: 2px solid #f2f2f2;
  border-radius: 50%;
  position: absolute;
  top: -50%;
  left: 20px;
}
#content3 .Prcard:hover {
  transform: scale(1.4);
  color: #333;
  background: #fff;
  z-index: 10000;
}
#content3 h2 {
  left: 50%;
  right: 50%;
  text-align: center;
}

@media only screen and (max-width: 767px) {
  .Section_container #intro {
    width: 100%;
  }
  .Section_container #intro h2 {
    width: 300px;
    font-size: 20px;
  }
  #container {
    color: #999;
    text-transform: uppercase;
    font-size: 20px;
    font-weight: bold;
    padding-top: 40px;
    padding-bottom: 40px;
    position: relative;
    width: 400px;
    bottom: 0px;
    display: block;
  }
  #flip {
    height: 55px; /* Increase height to display all 6 words */
    font-size: 14px;
    padding: 2px 6px;
    overflow: hidden;
  }
  #flip > div > div {
    height: 50px;
    margin-bottom: 80px;
  }
  #flip div:first-child {
    animation: show 12s linear infinite;
  }
  #flip div:nth-child(1) div {
    border-radius: 5px;
    background: #009111;
    margin-top: 0px; /* Adjust margin-top to display first word properly */
  }
  #flip div:nth-child(2) div {
    border-radius: 5px;
    background: #4ec7f3;
    margin-top: -120px; /* Adjust margin-top to display second word properly */
  }
  #flip div:nth-child(3) div {
    border-radius: 5px;
    background: #0d0d0d;
    margin-top: -240px; /* Adjust margin-top to display third word properly */
  }
  #flip div:nth-child(4) div {
    border-radius: 5px;
    background: #013440;
    margin-top: -370px; /* Adjust margin-top to display fourth word properly */
  }
  #flip div:nth-child(5) div {
    border-radius: 5px;
    background: #176a73;
    margin-top: -500px; /* Adjust margin-top to display fifth word properly */
  }
  #flip div:nth-child(6) div {
    border-radius: 5px;
    background: #0084ff;
    margin-top: -620px; /* Adjust margin-top to display sixth word properly */
  }
  @keyframes show {
    0% {
      margin-top: 0px;
    }
    8% {
      margin-top: 0px;
    }
    16% {
      margin-top: -120px; /* Adjust margin-top values for shorter display duration */
    }
    24% {
      margin-top: -120px;
    }
    32% {
      margin-top: -240px;
    }
    40% {
      margin-top: -240px;
    }
    48% {
      margin-top: -370px;
    }
    56% {
      margin-top: -370px;
    }
    64% {
      margin-top: -500px;
    }
    72% {
      margin-top: -500px;
    }
    80% {
      margin-top: -620px;
    }
    100% {
      margin-top: -620px; /* Adjust margin-top to display all six words */
    }
  }
  #main .infoText {
    width: 100%;
    text-align: center;
  }
  #main .infoText h2 {
    width: 400px;
    font-size: 20px;
  }
  #main .infoText {
    width: 100%;
    text-align: center;
  }
  #main .infoText h2 {
    width: 400px;
    font-size: 20px;
  }
  #content2 {
    height: 400px;
    margin-bottom: 20px;
  }
  #content3 {
    width: 100%;
  }
  #content3 .wrapper h2 {
    font-size: 40px;
  }
  #content3 .wrapper h5 {
    margin-bottom: 20px;
  }
  #content3 .cards {
    width: 100%;
    flex-wrap: wrap;
    flex-direction: column;
    margin: 0 auto;
    padding: 0;
  }
  #content3 .Prcard {
    width: 300px;
    margin-top: 30px;
    margin-bottom: 30px;
    padding: 10px;
  }
  #content3 .Prcard img {
    height: 100px;
    width: 100px;
    border: 2px solid #f2f2f2;
    border-radius: 50%;
    position: absolute;
    top: -10%;
    left: 100px;
  }
  #content3 .Prcard:hover {
    transform: scale(1.2);
    color: #333;
    background: #fff;
    z-index: 10000;
  }
  #intro {
    grid-area: intro;
    padding-top: 10px;
    padding-bottom: 10px;
  }
  #intro h2 {
    text-align: left;
    margin: auto;
    border-radius: 20px;
    padding: 10px;
    font-size: 20px;
    width: 50%;
    color: white;
  }
  #ImgContainer {
    height: 350px;
    width: 250px;
  }
  .Section_container {
    grid-template-columns: 1fr;
    grid-template-rows: 1fr 3fr 2.2fr 1.2fr 1.2fr 1fr;
    grid-template-areas: "intro" "ImgContainer" "main" "content1" "content2" "content3" "footer";
  }
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: Arial, Helvetica, sans-serif;
}

.container {
  width: 50%;
  margin: 2rem auto;
}
.container p {
  margin: 1rem 0;
}

.video-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}/*# sourceMappingURL=main.css.map */