@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/2024/assets/img/NSDC-2024-BackgroundImage.png") 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;
  color: white;
  padding: 5px;
  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.sessionspage {
  padding-top: 2rem !important;
  padding-bottom: 3rem;
}
body.NSDC2023 section.sessionspage h2 {
  font-size: 40px;
  line-height: 42px;
  color: #43586b;
  font-weight: 500;
}
body.NSDC2023 section.sessionspage img {
  object-position: center;
  object-fit: cover;
}
body.NSDC2023 section.sessionspage h3 {
  color: white;
}
body.NSDC2023 section.sessionspage a.buttonagendansdc {
  background-color: #43586b;
  padding: 13px 30px;
  border-radius: 30px;
  color: white;
  text-decoration: none;
  transition: background-color 300ms;
}
body.NSDC2023 section.sessionspage a.buttonagendansdc:hover {
  background-color: #334250;
}
body.NSDC2023 section.sessionspage p {
  color: white;
}
body.NSDC2023 section.sessionspage .cardcolor {
  background: #43586b;
}
body.NSDC2023 section.sessionspage p.pcohostsection {
  font-size: 25px;
  font-weight: 600;
  padding: 12px;
  padding-top: 15px;
  margin-bottom: 0;
  height: 60px;
  background-color: #334250;
  text-transform: uppercase;
}
body.NSDC2023 section.sessionspage p.pspeakersection {
  font-size: 25px;
  padding-bottom: 8px;
  margin-bottom: 0;
}
body.NSDC2023 section.sessionspage .imglogoinsideframe {
  max-width: 100%;
  height: 100%;
  object-fit: scale-down;
}
body.NSDC2023 section.sessionspage .framelogosNSDC {
  width: 95px;
  height: 50px;
  padding: 10px;
  text-align: center;
  border: 1px solid #e4e4e4;
  background-color: white;
  margin-right: 5px;
  margin-bottom: 5px;
  box-sizing: content-box;
}
body.NSDC2023 section.sessionspage img.imgcohostsection {
  width: 170px;
  background-color: white;
  padding: 1em;
  object-fit: contain;
  height: 60px;
}
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 {
  animation: move-forever 25s cubic-bezier(0.55, 0.5, 0.45, 0.5) infinite;
}

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

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

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

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

@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;
  }
}