html, body {
  height: 100%;
  margin: 0;
}

div.bkg {
  width: 100%;
  height: 100%;
  position: relative;

  background: #002557;
  margin: 0;
  overflow: hidden;
}

.bkg-slanted {
  position: absolute;
  top: -100%;
  left: 40%;
  bottom: -100%;
  transform-origin: left center;
  transform: rotate(30deg);
  background: #cce5f1;
  width: 100%;
}

.circle {
  position: absolute;
  border-radius: 50%;
  width: 18vw;
  height: 18vw;
  background: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 8px,
    #f0f0f080 8px,
    #f0f0f080 16px
  );
}

.circle.top {
  top: 50%;
  right: -5vw;
  transform: translateY(-50%) translateY(-33vw);
  width: 27vw;
  height: 27vw;
}

.circle.bottom {
  top: 50%;
  left: -7vw;
  transform: translateY(-50%) translateY(23vw);
}

.hero {
  border-radius: 50%;
  border-bottom-left-radius: 0;
  width: 25vw;
  height: 25vw;
  background: white;
  transform: rotate(-45deg);
  /* padding: 20px; */
  border: solid 2.5rem white;
  overflow: hidden;
  margin-bottom: 9vw;
}

.hero img {
  transform: translateX(-25%) rotate(45deg) ;
  height: 100%; 
}

.hero-group {
  text-align: center;
  display: inline-block;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) translate(-30vw, 1vw);
}

.hero-group .dots div {
  border-radius: 50%;
  background: white;
  margin: 0.8vw;
  display: inline-block;
  width: 2.5vw;
  height: 2.5vw;
}

.right-col {
  position: absolute;
  display: inline-flex;
  right: 0;
  top: 50%;
  transform: translate(0, -50%);
  width: 50%;
  flex-direction: column;
  align-items: center;
  font-family: Arial, Helvetica, sans-serif;
  color: #435693;
}

.right-col > div {
  margin-bottom: 2vw;
}

.right-col .eeo-logo img {
  height: 7vw;
}

.right-col .title {
  font-size: 2vw;
  text-align: center;
  font-weight: bold;
  margin-bottom: 1.5vw;
}


.right-col .subtitle {
  font-size: 1vw;
  font-weight: 900;
  text-align: right;
  margin-right: 1rem;
  margin-left: -10%;
}

.right-col .action-row {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: flex-end;
}

.right-col .action-row img {
  height: 11vw;
  margin: 1rem;
  transition: all 0.2s cubic-bezier(0.25, 0.1, 0.44, 1.44);
}

.right-col .action-row img:hover {
  -webkit-filter: drop-shadow(5px 5px 5px #00000080);
  filter: drop-shadow(5px 5px 5px #00000080);
  transform: translate(-5px, -5px);
}

.right-col .action-row .login {
  width: 30vw;
}

.right-col .other-logos {
  display: flex;
  flex-direction: row;
  justify-items: center;
  align-items: center;
  height: 5vw;
}

.right-col .other-logos img {
  height: 100%;
  margin: 0 1.2vw;
}
