body {
    background-color: #1b263c;
    margin: auto;
    padding: 0;
    font-family: "urw-din", sans-serif, Arial;
}
h1 {
    font-size: 2rem;
    color: #fff;
}
h2 {
    text-transform: uppercase;
    font-size: 1.5rem;
    color: #fff;
    margin: 0;
}
li {
    margin-bottom: 20px;
    font-size: 1.4rem;
}
.main-nav {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  position: relative;
  padding: 2rem;
  background-image: url('./img/lock-up-bg.jpg');
  background-size:cover;
  background-position: center;
}
.lock-up img {
  max-width: 100%;
  height: auto;
}
.btn-blue {
    font-family: "zuume", sans-serif;
    background-color: #174173;
    padding: 5px 35px;
    border-radius: 20px;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 2rem;
    color: #fff;
}
.page-wrapper {
    max-width: 3000px;
    margin:0 auto;
    background-image: url(./img/background_v1.jpg);
    background-size: 120%;
    background-position: top;
    background-repeat: no-repeat;
    padding-top:4rem;
}
.top-section {
    padding:2rem 4rem;
    position: relative;
}
.top-section p {
    font-size: 1.5rem;
    line-height: 1.5;
    color:#fff;
    position: relative;
    z-index: 2;
}
.highlight {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.20);
  z-index: 1;
}
.chart-wrapper {
    padding: 1rem;
}
.chart-title {
    min-height: 80px;
    margin: 0 2rem;
    align-content: center;
}
.row {
    display:grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin:1rem 0;
}
.col {
    min-width: 0;
}
.col iframe {
    background-color:#fff;
    border-radius:25px;
    border: 0;
    padding: 1rem;
    display: block;
    min-width: 90%;
    max-width: 100%;
    min-height: 450px;
    justify-self: center;
}
.row,
.col {
  opacity: 0;
  transform: translateY(-20px);
}
@supports (animation-timeline: view()) {
  .row,
  .col {
    animation-name: fade-down;
    animation-duration: 1ms;
    animation-fill-mode: both;
    animation-timeline: view();
    animation-range: entry 20% cover 40%;
  }

  @keyframes fade-down {
    from {
      opacity: 0;
      transform: translateY(-20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
}
@media (prefers-reduced-motion: reduce) {
  .row,
  .col {
    opacity: 1;
    transform: none;
    animation: none;
  }
}
iframe {
    display: none;
}
.bottom-section {
    background-image: url(./img/bottom-bg.jpg);
    background-size:cover;
    background-repeat: no-repeat;
    background-position:top;
    min-height: 700px;
}
footer {
    background-color: #0A1C36;
    padding: 0px 20px;
}
.wrap {
    display: grid;
    grid-template-columns: 25% 75%;
    padding:4rem;
}
.wrap p {
    color:#fff;
}
.col-2 {
    border-left:1px solid #fff;
    padding-left:3rem;
}
.social-nav ul {
    list-style-type: none;
    padding-inline-start:0;
}
.social-nav {
    display:flex;
    flex-direction: row;
    flex-wrap: nowrap;
    list-style-type: none;
        padding-inline-start:0;
}
.fab {
    color:#fff;
    border:2px solid #fff;
    border-radius:50px;
    padding:15px 16px;
    font-size:1rem;
    margin-right:20px;
}
.fab:hover {
    background-color:#fff;
    color:#0A1C36;
}
.fa-facebook-f {
    padding:15px 18px;
}
.fa-youtube {
    padding:15px 14px;
}
.fa-x-twitter {
    padding:15px 15px;
}
.visually-hidden {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}
@media (min-width:1101px) {
.logo {
  justify-self: start;
}
.lock-up {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
}
}
@media (max-width:1100px) {
.main-nav {
grid-template-columns: 1fr;
gap:2rem;
}
.logo {
    text-align: center;
}
.row {
grid-template-columns: 1fr;
}
.col {
    margin-top:1rem;
}
}
@media (max-width: 768px) {
.logo > img {
width:30%;
}
.lock-up {
    text-align: center;
    align-content: center;
}
.lock-up > img {
width:70%;
}
.top-section, .wrap, footer {
    padding:1rem;
}
.bottom-section {
background-position: left;
}
.wrap {
    grid-template-columns:1fr;
}
.col-2 {
    border:none;
    padding-left:0;
    margin-top:1rem;
}
.social-nav {
    flex-wrap:wrap
}
}