#home-wrapper {
  width: 100%;
  min-height: 500px;
  height: 100%;
  background-size: cover;
  animation: animatedBackground 30s ease-in-out alternate infinite;
  animation-delay: -15s;
  --beforeOpacity: 0; }

#home-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #2d2d2d;
  transition: opacity 250ms ease-in-out;
  opacity: var(--beforeOpacity); }

#home-bg {
  width: 100%;
  height: 100%;
  padding-left: 50px;
  position: relative; }
  @media (min-width: 768px) {
    #home-bg {
      padding-left: 0px; } }

#index-wrapper {
  width: 95%;
  height: 100%;
  margin: auto;
  display: flex;
  flex-direction: column;
  justify-content: center; }

#box-wrapper {
  width: 95%;
  height: 95%;
  max-width: 600px;
  margin: auto;
  display: flex;
  flex-direction: column;
  justify-content: center; }

#title-box {
  display: table;
  flex: 1;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 30px;
  margin-top: 30px;
  text-align: center; }
  #title-box p {
    display: table-cell;
    vertical-align: middle;
    font-family: 'Montserrat', sans-serif;
    font-size: 40px;
    font-weight: bold;
    color: white;
    mix-blend-mode: exclusion; }
    @media (min-width: 768px) {
      #title-box p {
        font-size: 60px; } }

.home-box {
  display: table;
  flex: 1;
  width: 100%;
  margin-top: 10px;
  margin-bottom: 10px;
  cursor: pointer; }
  .home-box:hover {
    text-decoration: none; }
    .home-box:hover div {
      background-color: #edb88b; }
  .home-box div {
    display: table;
    background-color: transparent;
    transition: background-color 250ms linear;
    width: 100%; }
  .home-box p {
    display: table-cell;
    background-color: white;
    width: 100%;
    color: black;
    font-size: 20px;
    font-weight: bold;
    padding: 10px;
    text-align: center;
    mix-blend-mode: screen; }
    .home-box p:hover {
      text-decoration: none; }
    @media (min-width: 768px) {
      .home-box p {
        font-size: 40px; } }

#background-switcher-wrapper {
  width: 100%;
  height: 5%;
  min-height: 60px;
  margin-top: auto;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  justify-content: left; }
  @media (min-width: 768px) {
    #background-switcher-wrapper #background-switcher {
      place-self: flex-end !important; } }
  #background-switcher-wrapper #background-switcher {
    place-self: center; }
    #background-switcher-wrapper #background-switcher #switcher-top {
      display: table;
      width: 200px; }
      #background-switcher-wrapper #background-switcher #switcher-top span {
        display: table-cell;
        font-size: 20px;
        text-align: center;
        font-family: 'Montserrat', sans-serif;
        color: white; }
      #background-switcher-wrapper #background-switcher #switcher-top #switcher-backward, #background-switcher-wrapper #background-switcher #switcher-top #switcher-forward {
        font-size: 30px;
        cursor: pointer; }
      #background-switcher-wrapper #background-switcher #switcher-top #switcher-backward {
        text-align: right; }
      #background-switcher-wrapper #background-switcher #switcher-top #switcher-forward {
        text-align: left; }
      #background-switcher-wrapper #background-switcher #switcher-top #switcher-counter {
        width: 75px;
        margin-left: 10px;
        margin-right: 10px; }
    #background-switcher-wrapper #background-switcher #switcher-bottom {
      width: 200px;
      display: flex;
      flex-direction: column;
      justify-content: center; }
      #background-switcher-wrapper #background-switcher #switcher-bottom span {
        place-self: center;
        font-size: 18px;
        text-align: center;
        font-family: 'Montserrat', sans-serif;
        color: white; }

@keyframes animatedBackground {
  0% {
    background-position-x: 0; }
  100% {
    background-position-x: 100%; } }

/*# sourceMappingURL=all.css.map */
