html,
body {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
}
body {
  zoom: 1;
  font-family: "Barlow", "Helvetica Neue", Arial, sans-serif;
  color: #0f2a3a;
  background: #ffffff;
  overflow: hidden;
}
.hero-header {
  height: 120px;
  background: #0f4b74;
  display: flex;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
}
.hero-header h1 {
  margin: 0;
  font-size: 54px;
  letter-spacing: 0.03em;
  color: #ffffff;
  font-weight: 600;
}
.screen {
  width: 100vw;
  height: calc(100vh - 120px);
  position: relative;
  padding: 80px 120px 120px 120px;
  box-sizing: border-box;
}
.schedule {
  max-width: calc(100% - 420px);
}
.schedule h4 {
  margin: 0 0 40px 0;
  font-size: 42px;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #0f2a3a;
}
#content {
  display: table;
  border-spacing: 0 12px;
  font-size: 38px;
}
#content div.day-listing {
  display: table-row;
}
#content div.day-listing.active * {
  font-weight: 700;
}
#content div.day-listing h3 {
  display: table-cell;
  vertical-align: top;
  text-align: left;
  padding-right: 40px;
  font-size: 38px;
  font-weight: 600;
  color: #0f2a3a;
}
#content div.day-listing h3 small {
  display: block;
  font-size: 70%;
  font-weight: 400;
  color: #5c6c77;
}
#content div.day-listing ul {
  display: table-cell;
  text-align: left;
  list-style: none;
  padding: 0 0 8px 0;
  margin: 0;
}
#content div.day-listing ul li {
  padding: 0 0 12px 0;
  display: flex;
  align-items: baseline;
  gap: 100px;
}
#content div.day-listing ul li span.time {
  display: inline-block;
  width: 170px;
  font-weight: 600;
  color: #0f2a3a;
}
#content div.day-listing ul li span.name {
  display: inline-block;
  margin: 0;
  color: #0f2a3a;
  font-weight: 500;
}
#content div.day-listing ul li span.signal {
  margin-left: auto;
  border-radius: 8px;
  font-size: 70%;
  padding: 6px 12px;
  text-align: center;
  color: white;
  font-weight: 600;
  min-width: 160px;
}
#content div.day-listing ul li span.signal.green {
  background-color: #0f4b74;
}
#content div.day-listing ul li span.signal.red {
  background-color: #cc3333;
}
.promo {
  position: absolute;
  right: 120px;
  top: 40px;
  width: 300px;
  height: calc(100% - 100px);
  display: flex;
  align-items: flex-start;
  justify-content: center;
}
.promo img {
  height: 100%;
  width: auto;
  display: block;
}
.footer-social {
  position: absolute;
  left: 250px;
  bottom: 45px;
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 18px;
  color: #2b627a;
}
.footer-social .footer-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 500;
  letter-spacing: 0.02em;
}
.footer-social img {
  height: 26px;
  width: 26px;
  display: block;
}
@media (max-width: 1500px) {
  .hero-header {
    height: 100px;
  }
  .hero-header h1 {
    font-size: 30px;
  }
  .screen {
    height: calc(100vh - 100px);
    padding: 70px 90px 100px 90px;
  }
  .schedule {
    max-width: calc(100% - 380px);
  }
  .promo {
    right: 90px;
    width: 270px;
  }
  .footer-social {
    left: 190px;
    bottom: 35px;
    font-size: 16px;
    gap: 22px;
  }
  .footer-social .footer-item {
    gap: 10px;
  }
  .footer-social img {
    height: 22px;
    width: 22px;
  }
  #content {
    font-size: 34px;
  }
}
