

.left-header-column {
  width: 60%;
}

.right-header-column {
  display: flex;
  width: 40%;
  padding-right: 2em;
  justify-content: center;
  align-content: center;
}

.right-header-column img {
  width: 90%;
  max-width: 380px;
  object-fit: cover;
}

#header-section {
  padding-bottom: 4em;
  display: flex;
  flex-direction: row-reverse;
  width: 100%;
  margin-top: -4em;
  justify-content: center;
  align-items: center;
  min-height: 85vh;
}

.header-byline {
  font-size: 2em;
}

#call-to-action {
  display: flex;
  flex-direction: row;
  justify-content: left;
  font-weight: bold;
  font-size: 1.4rem;
  padding: 1em 2em;
  max-width: 8em;
}

#call-to-action p {
  margin: 0;
}

#arrow-pointer {
  position: relative;
  left: 0.5em;
  color: white;
  animation: arrowMove 4s infinite;
}

@keyframes arrowMove {
  0%   {left: 1.5em;}
  50%  {left: 0.5em;}
  100% {left: 1.5em;}
}


#call-to-action:hover {
  background-color: var(--action-hover);
  border: 1px solid black;
}


#main-website {
  color: blue;
}


@media only screen and (max-width: 1000px) {
  
  #header-section {
    padding: 3em 0;
    min-height: unset;
    margin-top: 0;
  }

  .right-header-column img {
    max-height: 40vh;
    object-fit: contain;
  }


}

@media only screen and (max-width: 1000px) {
  
  #header-section {
    padding: 3em 0;
    flex-direction: column-reverse;
    font-size: 0.7rem;
  }

  .left-header-column {
    width: 100%;
  }
  
  .right-header-column {
    width: 100%;
    padding: 3em;
  }

  .right-header-column img {
    width: 100%;
  }


}