@import url("https://fonts.googleapis.com/css2?family=Lato:wght@100;300;400;700;900&display=swap");
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  text-decoration: none !important;
}

body.NSDC2023 section.header {
  background: linear-gradient(rgba(54, 71, 87, 0.6), rgba(46, 61, 75, 0.9)), url("https://www.the-eic.com/Portals/0/Website/Events/North-Sea-Decarbonisation-Conference/2023/assets/img/pexels-josh-sorenson-1054391.jpg") no-repeat center;
  background-size: cover;
}
body.NSDC2023 section.header h1 {
  color: white;
  font-size: 70px;
  line-height: 70px;
  font-weight: 600;
}
body.NSDC2023 section.header p {
  color: white;
  font-size: 20px;
  margin: 0;
}
body.NSDC2023 section.header i {
  color: white;
  font-size: 20px;
}
body.NSDC2023 section.menu li {
  list-style-type: none;
  background-color: #43586b;
  padding: 5px;
  color: white;
  padding-left: 20px;
  padding-right: 20px;
  border-radius: 10px;
  transition: background-color 300ms;
  text-align: center;
}
body.NSDC2023 section.menu a {
  color: white;
  text-decoration: none;
  position: relative;
}
body.NSDC2023 section.menu li:hover {
  background-color: #334250;
}
body.NSDC2023 section.about {
  padding-top: 2rem;
  padding-bottom: 3rem;
}
body.NSDC2023 section.about h2 {
  font-size: 40px;
  line-height: 42px;
  color: #43586b;
  font-weight: 500;
}
body.NSDC2023 section.about p {
  text-align: justify;
  font-size: 16px;
  margin: 0;
  margin-bottom: 20px;
}
body.NSDC2023 section.costitems span {
  border-radius: 50px;
  color: #F58220;
  border: 1px solid #F58220;
  font-size: 14px;
  padding: 2px 10px;
  opacity: 0.9;
}
body.NSDC2023 section.costitems h5 {
  font-size: 23px;
  color: #43586b;
  font-weight: 500;
}
body.NSDC2023 section.costitems hr {
  text-align: center;
  margin: 0;
  background-color: #43586b;
  height: 1px;
  border: none;
  width: 100%;
}
body.NSDC2023 section.costitems p {
  font-size: 25px;
  font-weight: 700;
}
body.NSDC2023 section.sessions {
  padding: 3rem;
  background-color: #334250;
}
body.NSDC2023 section.sessions h2 {
  font-size: 40px;
  line-height: 42px;
  color: white;
}
body.NSDC2023 section.sessions i {
  font-size: 45px;
  color: white;
}
body.NSDC2023 section.sessions h4 {
  color: white;
  font-size: 24px;
  font-weight: 500;
}
body.NSDC2023 section.sessions p {
  color: white;
  font-size: 16px;
}
body.NSDC2023 section.sessions h5 {
  color: white;
  font-size: 18px;
}
body.NSDC2023 section.sessions a {
  color: white;
  text-decoration: underline !important;
  font-size: 15px;
}
body.NSDC2023 section.sessions a:hover {
  text-decoration: none !important;
}
body.NSDC2023 figure {
  margin-bottom: -4px;
  margin-top: -3px;
  color: aqua;
}

.waves {
  position: relative;
  width: 100%;
  height: 2vh;
  margin-bottom: -7px; /*Fix for safari gap*/
  min-height: 100px;
  max-height: 150px;
}

/* Animation */
.parallax > use {
  -webkit-animation: move-forever 25s cubic-bezier(0.55, 0.5, 0.45, 0.5) infinite;
          animation: move-forever 25s cubic-bezier(0.55, 0.5, 0.45, 0.5) infinite;
}

.parallax > use:nth-child(1) {
  -webkit-animation-delay: -2s;
          animation-delay: -2s;
  -webkit-animation-duration: 7s;
          animation-duration: 7s;
}

.parallax > use:nth-child(2) {
  -webkit-animation-delay: -3s;
          animation-delay: -3s;
  -webkit-animation-duration: 10s;
          animation-duration: 10s;
}

.parallax > use:nth-child(3) {
  -webkit-animation-delay: -4s;
          animation-delay: -4s;
  -webkit-animation-duration: 13s;
          animation-duration: 13s;
}

.parallax > use:nth-child(4) {
  -webkit-animation-delay: -5s;
          animation-delay: -5s;
  -webkit-animation-duration: 20s;
          animation-duration: 20s;
}

@-webkit-keyframes move-forever {
  0% {
    transform: translate3d(-90px, 0, 0);
  }
  100% {
    transform: translate3d(85px, 0, 0);
  }
}

@keyframes move-forever {
  0% {
    transform: translate3d(-90px, 0, 0);
  }
  100% {
    transform: translate3d(85px, 0, 0);
  }
}
/*Shrinking for mobile*/
@media (max-width: 768px) {
  .waves {
    height: 40px;
    min-height: 40px;
  }
  body.NSDC2023 section.header h1 {
    font-size: 35px;
    line-height: 43px;
    margin-top: 20px;
    margin-bottom: 20px;
  }
}/*# sourceMappingURL=styles.css.map */