/*
====================
GLOBAL VARIABLES / STYLES

Declared at head of compiled CSS file
====================
*/
body {
  font-family: "Jost", sans-serif;
  cursor: default;
  caret-color: transparent;
}

h2 {
  font-size: 2.1em;
  font-weight: 500;
}

.text-center {
  text-align: center;
}

.margin-y {
  margin-top: 50px;
  margin-bottom: 50px;
}

/*
====================
Global Hero Section Styling
Hero sections can be overriden in page-specific CSS
====================
*/
.hero {
  height: 40vh;
  display: flex;
  flex-direction: row;
}

.hero-image {
  width: 50%;
}
@media screen and (max-width: 1000px) {
  .hero-image {
    width: 40%;
  }
}
@media screen and (max-width: 820px) {
  .hero-image {
    display: none;
  }
}
.hero-image img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.hero-contents-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: 3em;
  background-color: #191919;
  width: 50%;
}
@media screen and (max-width: 1000px) {
  .hero-contents-container {
    width: 60%;
  }
}
@media screen and (max-width: 820px) {
  .hero-contents-container {
    width: 100%;
    align-items: center;
    padding-left: 0;
  }
}

.hero-contents h2 {
  color: white;
  font-size: 2.5em;
  letter-spacing: 1px;
}
.hero-contents .hero-separator {
  width: 50%;
  border-bottom: 2px solid #EF3E33;
  margin-bottom: 35px;
}

.button-wrapper {
  display: flex;
  flex-direction: row;
}
.button-wrapper button {
  background: none;
  border: 1px solid rgba(128, 128, 128, 0.3);
  border-radius: 10px;
  font-weight: 500;
  font-size: 0.9em;
  padding: 12px 20px;
  color: white;
  margin-right: 20px;
}
.button-wrapper button:hover {
  background-color: #EF3E33;
  color: white;
}

.arrow-icon svg {
  height: 40px;
  fill: white;
  stroke: #EF3E33;
}

/* Bulma Utilities */
.navbar-link:not(.is-arrowless)::after {
  border: 3px solid transparent;
  border-radius: 2px;
  border-right: 0;
  border-top: 0;
  content: " ";
  display: block;
  height: 0.625em;
  margin-top: -0.4375em;
  pointer-events: none;
  position: absolute;
  top: 50%;
  transform: rotate(-45deg);
  transform-origin: center;
  width: 0.625em;
}

.navbar-burger {
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  background: none;
  border: none;
  color: currentColor;
  font-family: inherit;
  font-size: 1em;
  margin: 0;
  padding: 0;
}

.navbar {
  background-color: hsl(0, 0%, 100%);
  min-height: 2.25rem;
  position: relative;
  z-index: 30;
}
.navbar.is-white {
  background-color: hsl(0, 0%, 100%);
  color: hsl(0, 0%, 4%);
}
.navbar.is-white .navbar-brand > .navbar-item,
.navbar.is-white .navbar-brand .navbar-link {
  color: hsl(0, 0%, 4%);
}
.navbar.is-white .navbar-brand > a.navbar-item:focus, .navbar.is-white .navbar-brand > a.navbar-item:hover, .navbar.is-white .navbar-brand > a.navbar-item.is-active,
.navbar.is-white .navbar-brand .navbar-link:focus,
.navbar.is-white .navbar-brand .navbar-link:hover,
.navbar.is-white .navbar-brand .navbar-link.is-active {
  background-color: hsl(0, 0%, 95%);
  color: hsl(0, 0%, 4%);
}
.navbar.is-white .navbar-brand .navbar-link::after {
  border-color: hsl(0, 0%, 4%);
}
.navbar.is-white .navbar-burger {
  color: hsl(0, 0%, 4%);
}
@media screen and (min-width: 820px) {
  .navbar.is-white .navbar-start > .navbar-item,
  .navbar.is-white .navbar-start .navbar-link,
  .navbar.is-white .navbar-end > .navbar-item,
  .navbar.is-white .navbar-end .navbar-link {
    color: hsl(0, 0%, 4%);
  }
  .navbar.is-white .navbar-start > a.navbar-item:focus, .navbar.is-white .navbar-start > a.navbar-item:hover, .navbar.is-white .navbar-start > a.navbar-item.is-active,
  .navbar.is-white .navbar-start .navbar-link:focus,
  .navbar.is-white .navbar-start .navbar-link:hover,
  .navbar.is-white .navbar-start .navbar-link.is-active,
  .navbar.is-white .navbar-end > a.navbar-item:focus,
  .navbar.is-white .navbar-end > a.navbar-item:hover,
  .navbar.is-white .navbar-end > a.navbar-item.is-active,
  .navbar.is-white .navbar-end .navbar-link:focus,
  .navbar.is-white .navbar-end .navbar-link:hover,
  .navbar.is-white .navbar-end .navbar-link.is-active {
    background-color: hsl(0, 0%, 95%);
    color: hsl(0, 0%, 4%);
  }
  .navbar.is-white .navbar-start .navbar-link::after,
  .navbar.is-white .navbar-end .navbar-link::after {
    border-color: hsl(0, 0%, 4%);
  }
  .navbar.is-white .navbar-item.has-dropdown:focus .navbar-link,
  .navbar.is-white .navbar-item.has-dropdown:hover .navbar-link,
  .navbar.is-white .navbar-item.has-dropdown.is-active .navbar-link {
    background-color: hsl(0, 0%, 95%);
    color: hsl(0, 0%, 4%);
  }
  .navbar.is-white .navbar-dropdown a.navbar-item.is-active {
    background-color: hsl(0, 0%, 100%);
    color: hsl(0, 0%, 4%);
  }
}
.navbar.is-black {
  background-color: hsl(0, 0%, 4%);
  color: hsl(0, 0%, 100%);
}
.navbar.is-black .navbar-brand > .navbar-item,
.navbar.is-black .navbar-brand .navbar-link {
  color: hsl(0, 0%, 100%);
}
.navbar.is-black .navbar-brand > a.navbar-item:focus, .navbar.is-black .navbar-brand > a.navbar-item:hover, .navbar.is-black .navbar-brand > a.navbar-item.is-active,
.navbar.is-black .navbar-brand .navbar-link:focus,
.navbar.is-black .navbar-brand .navbar-link:hover,
.navbar.is-black .navbar-brand .navbar-link.is-active {
  background-color: hsl(0, 0%, 0%);
  color: hsl(0, 0%, 100%);
}
.navbar.is-black .navbar-brand .navbar-link::after {
  border-color: hsl(0, 0%, 100%);
}
.navbar.is-black .navbar-burger {
  color: hsl(0, 0%, 100%);
}
@media screen and (min-width: 820px) {
  .navbar.is-black .navbar-start > .navbar-item,
  .navbar.is-black .navbar-start .navbar-link,
  .navbar.is-black .navbar-end > .navbar-item,
  .navbar.is-black .navbar-end .navbar-link {
    color: hsl(0, 0%, 100%);
  }
  .navbar.is-black .navbar-start > a.navbar-item:focus, .navbar.is-black .navbar-start > a.navbar-item:hover, .navbar.is-black .navbar-start > a.navbar-item.is-active,
  .navbar.is-black .navbar-start .navbar-link:focus,
  .navbar.is-black .navbar-start .navbar-link:hover,
  .navbar.is-black .navbar-start .navbar-link.is-active,
  .navbar.is-black .navbar-end > a.navbar-item:focus,
  .navbar.is-black .navbar-end > a.navbar-item:hover,
  .navbar.is-black .navbar-end > a.navbar-item.is-active,
  .navbar.is-black .navbar-end .navbar-link:focus,
  .navbar.is-black .navbar-end .navbar-link:hover,
  .navbar.is-black .navbar-end .navbar-link.is-active {
    background-color: hsl(0, 0%, 0%);
    color: hsl(0, 0%, 100%);
  }
  .navbar.is-black .navbar-start .navbar-link::after,
  .navbar.is-black .navbar-end .navbar-link::after {
    border-color: hsl(0, 0%, 100%);
  }
  .navbar.is-black .navbar-item.has-dropdown:focus .navbar-link,
  .navbar.is-black .navbar-item.has-dropdown:hover .navbar-link,
  .navbar.is-black .navbar-item.has-dropdown.is-active .navbar-link {
    background-color: hsl(0, 0%, 0%);
    color: hsl(0, 0%, 100%);
  }
  .navbar.is-black .navbar-dropdown a.navbar-item.is-active {
    background-color: hsl(0, 0%, 4%);
    color: hsl(0, 0%, 100%);
  }
}
.navbar.is-light {
  background-color: hsl(0, 0%, 96%);
  color: rgba(0, 0, 0, 0.7);
}
.navbar.is-light .navbar-brand > .navbar-item,
.navbar.is-light .navbar-brand .navbar-link {
  color: rgba(0, 0, 0, 0.7);
}
.navbar.is-light .navbar-brand > a.navbar-item:focus, .navbar.is-light .navbar-brand > a.navbar-item:hover, .navbar.is-light .navbar-brand > a.navbar-item.is-active,
.navbar.is-light .navbar-brand .navbar-link:focus,
.navbar.is-light .navbar-brand .navbar-link:hover,
.navbar.is-light .navbar-brand .navbar-link.is-active {
  background-color: hsl(0, 0%, 91%);
  color: rgba(0, 0, 0, 0.7);
}
.navbar.is-light .navbar-brand .navbar-link::after {
  border-color: rgba(0, 0, 0, 0.7);
}
.navbar.is-light .navbar-burger {
  color: rgba(0, 0, 0, 0.7);
}
@media screen and (min-width: 820px) {
  .navbar.is-light .navbar-start > .navbar-item,
  .navbar.is-light .navbar-start .navbar-link,
  .navbar.is-light .navbar-end > .navbar-item,
  .navbar.is-light .navbar-end .navbar-link {
    color: rgba(0, 0, 0, 0.7);
  }
  .navbar.is-light .navbar-start > a.navbar-item:focus, .navbar.is-light .navbar-start > a.navbar-item:hover, .navbar.is-light .navbar-start > a.navbar-item.is-active,
  .navbar.is-light .navbar-start .navbar-link:focus,
  .navbar.is-light .navbar-start .navbar-link:hover,
  .navbar.is-light .navbar-start .navbar-link.is-active,
  .navbar.is-light .navbar-end > a.navbar-item:focus,
  .navbar.is-light .navbar-end > a.navbar-item:hover,
  .navbar.is-light .navbar-end > a.navbar-item.is-active,
  .navbar.is-light .navbar-end .navbar-link:focus,
  .navbar.is-light .navbar-end .navbar-link:hover,
  .navbar.is-light .navbar-end .navbar-link.is-active {
    background-color: hsl(0, 0%, 91%);
    color: rgba(0, 0, 0, 0.7);
  }
  .navbar.is-light .navbar-start .navbar-link::after,
  .navbar.is-light .navbar-end .navbar-link::after {
    border-color: rgba(0, 0, 0, 0.7);
  }
  .navbar.is-light .navbar-item.has-dropdown:focus .navbar-link,
  .navbar.is-light .navbar-item.has-dropdown:hover .navbar-link,
  .navbar.is-light .navbar-item.has-dropdown.is-active .navbar-link {
    background-color: hsl(0, 0%, 91%);
    color: rgba(0, 0, 0, 0.7);
  }
  .navbar.is-light .navbar-dropdown a.navbar-item.is-active {
    background-color: hsl(0, 0%, 96%);
    color: rgba(0, 0, 0, 0.7);
  }
}
.navbar.is-dark {
  background-color: hsl(0, 0%, 21%);
  color: #fff;
}
.navbar.is-dark .navbar-brand > .navbar-item,
.navbar.is-dark .navbar-brand .navbar-link {
  color: #fff;
}
.navbar.is-dark .navbar-brand > a.navbar-item:focus, .navbar.is-dark .navbar-brand > a.navbar-item:hover, .navbar.is-dark .navbar-brand > a.navbar-item.is-active,
.navbar.is-dark .navbar-brand .navbar-link:focus,
.navbar.is-dark .navbar-brand .navbar-link:hover,
.navbar.is-dark .navbar-brand .navbar-link.is-active {
  background-color: hsl(0, 0%, 16%);
  color: #fff;
}
.navbar.is-dark .navbar-brand .navbar-link::after {
  border-color: #fff;
}
.navbar.is-dark .navbar-burger {
  color: #fff;
}
@media screen and (min-width: 820px) {
  .navbar.is-dark .navbar-start > .navbar-item,
  .navbar.is-dark .navbar-start .navbar-link,
  .navbar.is-dark .navbar-end > .navbar-item,
  .navbar.is-dark .navbar-end .navbar-link {
    color: #fff;
  }
  .navbar.is-dark .navbar-start > a.navbar-item:focus, .navbar.is-dark .navbar-start > a.navbar-item:hover, .navbar.is-dark .navbar-start > a.navbar-item.is-active,
  .navbar.is-dark .navbar-start .navbar-link:focus,
  .navbar.is-dark .navbar-start .navbar-link:hover,
  .navbar.is-dark .navbar-start .navbar-link.is-active,
  .navbar.is-dark .navbar-end > a.navbar-item:focus,
  .navbar.is-dark .navbar-end > a.navbar-item:hover,
  .navbar.is-dark .navbar-end > a.navbar-item.is-active,
  .navbar.is-dark .navbar-end .navbar-link:focus,
  .navbar.is-dark .navbar-end .navbar-link:hover,
  .navbar.is-dark .navbar-end .navbar-link.is-active {
    background-color: hsl(0, 0%, 16%);
    color: #fff;
  }
  .navbar.is-dark .navbar-start .navbar-link::after,
  .navbar.is-dark .navbar-end .navbar-link::after {
    border-color: #fff;
  }
  .navbar.is-dark .navbar-item.has-dropdown:focus .navbar-link,
  .navbar.is-dark .navbar-item.has-dropdown:hover .navbar-link,
  .navbar.is-dark .navbar-item.has-dropdown.is-active .navbar-link {
    background-color: hsl(0, 0%, 16%);
    color: #fff;
  }
  .navbar.is-dark .navbar-dropdown a.navbar-item.is-active {
    background-color: hsl(0, 0%, 21%);
    color: #fff;
  }
}
.navbar.is-primary {
  background-color: hsl(171, 100%, 41%);
  color: #fff;
}
.navbar.is-primary .navbar-brand > .navbar-item,
.navbar.is-primary .navbar-brand .navbar-link {
  color: #fff;
}
.navbar.is-primary .navbar-brand > a.navbar-item:focus, .navbar.is-primary .navbar-brand > a.navbar-item:hover, .navbar.is-primary .navbar-brand > a.navbar-item.is-active,
.navbar.is-primary .navbar-brand .navbar-link:focus,
.navbar.is-primary .navbar-brand .navbar-link:hover,
.navbar.is-primary .navbar-brand .navbar-link.is-active {
  background-color: hsl(171, 100%, 36%);
  color: #fff;
}
.navbar.is-primary .navbar-brand .navbar-link::after {
  border-color: #fff;
}
.navbar.is-primary .navbar-burger {
  color: #fff;
}
@media screen and (min-width: 820px) {
  .navbar.is-primary .navbar-start > .navbar-item,
  .navbar.is-primary .navbar-start .navbar-link,
  .navbar.is-primary .navbar-end > .navbar-item,
  .navbar.is-primary .navbar-end .navbar-link {
    color: #fff;
  }
  .navbar.is-primary .navbar-start > a.navbar-item:focus, .navbar.is-primary .navbar-start > a.navbar-item:hover, .navbar.is-primary .navbar-start > a.navbar-item.is-active,
  .navbar.is-primary .navbar-start .navbar-link:focus,
  .navbar.is-primary .navbar-start .navbar-link:hover,
  .navbar.is-primary .navbar-start .navbar-link.is-active,
  .navbar.is-primary .navbar-end > a.navbar-item:focus,
  .navbar.is-primary .navbar-end > a.navbar-item:hover,
  .navbar.is-primary .navbar-end > a.navbar-item.is-active,
  .navbar.is-primary .navbar-end .navbar-link:focus,
  .navbar.is-primary .navbar-end .navbar-link:hover,
  .navbar.is-primary .navbar-end .navbar-link.is-active {
    background-color: hsl(171, 100%, 36%);
    color: #fff;
  }
  .navbar.is-primary .navbar-start .navbar-link::after,
  .navbar.is-primary .navbar-end .navbar-link::after {
    border-color: #fff;
  }
  .navbar.is-primary .navbar-item.has-dropdown:focus .navbar-link,
  .navbar.is-primary .navbar-item.has-dropdown:hover .navbar-link,
  .navbar.is-primary .navbar-item.has-dropdown.is-active .navbar-link {
    background-color: hsl(171, 100%, 36%);
    color: #fff;
  }
  .navbar.is-primary .navbar-dropdown a.navbar-item.is-active {
    background-color: hsl(171, 100%, 41%);
    color: #fff;
  }
}
.navbar.is-link {
  background-color: hsl(229, 53%, 53%);
  color: #fff;
}
.navbar.is-link .navbar-brand > .navbar-item,
.navbar.is-link .navbar-brand .navbar-link {
  color: #fff;
}
.navbar.is-link .navbar-brand > a.navbar-item:focus, .navbar.is-link .navbar-brand > a.navbar-item:hover, .navbar.is-link .navbar-brand > a.navbar-item.is-active,
.navbar.is-link .navbar-brand .navbar-link:focus,
.navbar.is-link .navbar-brand .navbar-link:hover,
.navbar.is-link .navbar-brand .navbar-link.is-active {
  background-color: hsl(229, 53%, 48%);
  color: #fff;
}
.navbar.is-link .navbar-brand .navbar-link::after {
  border-color: #fff;
}
.navbar.is-link .navbar-burger {
  color: #fff;
}
@media screen and (min-width: 820px) {
  .navbar.is-link .navbar-start > .navbar-item,
  .navbar.is-link .navbar-start .navbar-link,
  .navbar.is-link .navbar-end > .navbar-item,
  .navbar.is-link .navbar-end .navbar-link {
    color: #fff;
  }
  .navbar.is-link .navbar-start > a.navbar-item:focus, .navbar.is-link .navbar-start > a.navbar-item:hover, .navbar.is-link .navbar-start > a.navbar-item.is-active,
  .navbar.is-link .navbar-start .navbar-link:focus,
  .navbar.is-link .navbar-start .navbar-link:hover,
  .navbar.is-link .navbar-start .navbar-link.is-active,
  .navbar.is-link .navbar-end > a.navbar-item:focus,
  .navbar.is-link .navbar-end > a.navbar-item:hover,
  .navbar.is-link .navbar-end > a.navbar-item.is-active,
  .navbar.is-link .navbar-end .navbar-link:focus,
  .navbar.is-link .navbar-end .navbar-link:hover,
  .navbar.is-link .navbar-end .navbar-link.is-active {
    background-color: hsl(229, 53%, 48%);
    color: #fff;
  }
  .navbar.is-link .navbar-start .navbar-link::after,
  .navbar.is-link .navbar-end .navbar-link::after {
    border-color: #fff;
  }
  .navbar.is-link .navbar-item.has-dropdown:focus .navbar-link,
  .navbar.is-link .navbar-item.has-dropdown:hover .navbar-link,
  .navbar.is-link .navbar-item.has-dropdown.is-active .navbar-link {
    background-color: hsl(229, 53%, 48%);
    color: #fff;
  }
  .navbar.is-link .navbar-dropdown a.navbar-item.is-active {
    background-color: hsl(229, 53%, 53%);
    color: #fff;
  }
}
.navbar.is-info {
  background-color: hsl(207, 61%, 53%);
  color: #fff;
}
.navbar.is-info .navbar-brand > .navbar-item,
.navbar.is-info .navbar-brand .navbar-link {
  color: #fff;
}
.navbar.is-info .navbar-brand > a.navbar-item:focus, .navbar.is-info .navbar-brand > a.navbar-item:hover, .navbar.is-info .navbar-brand > a.navbar-item.is-active,
.navbar.is-info .navbar-brand .navbar-link:focus,
.navbar.is-info .navbar-brand .navbar-link:hover,
.navbar.is-info .navbar-brand .navbar-link.is-active {
  background-color: hsl(207, 61%, 48%);
  color: #fff;
}
.navbar.is-info .navbar-brand .navbar-link::after {
  border-color: #fff;
}
.navbar.is-info .navbar-burger {
  color: #fff;
}
@media screen and (min-width: 820px) {
  .navbar.is-info .navbar-start > .navbar-item,
  .navbar.is-info .navbar-start .navbar-link,
  .navbar.is-info .navbar-end > .navbar-item,
  .navbar.is-info .navbar-end .navbar-link {
    color: #fff;
  }
  .navbar.is-info .navbar-start > a.navbar-item:focus, .navbar.is-info .navbar-start > a.navbar-item:hover, .navbar.is-info .navbar-start > a.navbar-item.is-active,
  .navbar.is-info .navbar-start .navbar-link:focus,
  .navbar.is-info .navbar-start .navbar-link:hover,
  .navbar.is-info .navbar-start .navbar-link.is-active,
  .navbar.is-info .navbar-end > a.navbar-item:focus,
  .navbar.is-info .navbar-end > a.navbar-item:hover,
  .navbar.is-info .navbar-end > a.navbar-item.is-active,
  .navbar.is-info .navbar-end .navbar-link:focus,
  .navbar.is-info .navbar-end .navbar-link:hover,
  .navbar.is-info .navbar-end .navbar-link.is-active {
    background-color: hsl(207, 61%, 48%);
    color: #fff;
  }
  .navbar.is-info .navbar-start .navbar-link::after,
  .navbar.is-info .navbar-end .navbar-link::after {
    border-color: #fff;
  }
  .navbar.is-info .navbar-item.has-dropdown:focus .navbar-link,
  .navbar.is-info .navbar-item.has-dropdown:hover .navbar-link,
  .navbar.is-info .navbar-item.has-dropdown.is-active .navbar-link {
    background-color: hsl(207, 61%, 48%);
    color: #fff;
  }
  .navbar.is-info .navbar-dropdown a.navbar-item.is-active {
    background-color: hsl(207, 61%, 53%);
    color: #fff;
  }
}
.navbar.is-success {
  background-color: hsl(153, 53%, 53%);
  color: #fff;
}
.navbar.is-success .navbar-brand > .navbar-item,
.navbar.is-success .navbar-brand .navbar-link {
  color: #fff;
}
.navbar.is-success .navbar-brand > a.navbar-item:focus, .navbar.is-success .navbar-brand > a.navbar-item:hover, .navbar.is-success .navbar-brand > a.navbar-item.is-active,
.navbar.is-success .navbar-brand .navbar-link:focus,
.navbar.is-success .navbar-brand .navbar-link:hover,
.navbar.is-success .navbar-brand .navbar-link.is-active {
  background-color: hsl(153, 53%, 48%);
  color: #fff;
}
.navbar.is-success .navbar-brand .navbar-link::after {
  border-color: #fff;
}
.navbar.is-success .navbar-burger {
  color: #fff;
}
@media screen and (min-width: 820px) {
  .navbar.is-success .navbar-start > .navbar-item,
  .navbar.is-success .navbar-start .navbar-link,
  .navbar.is-success .navbar-end > .navbar-item,
  .navbar.is-success .navbar-end .navbar-link {
    color: #fff;
  }
  .navbar.is-success .navbar-start > a.navbar-item:focus, .navbar.is-success .navbar-start > a.navbar-item:hover, .navbar.is-success .navbar-start > a.navbar-item.is-active,
  .navbar.is-success .navbar-start .navbar-link:focus,
  .navbar.is-success .navbar-start .navbar-link:hover,
  .navbar.is-success .navbar-start .navbar-link.is-active,
  .navbar.is-success .navbar-end > a.navbar-item:focus,
  .navbar.is-success .navbar-end > a.navbar-item:hover,
  .navbar.is-success .navbar-end > a.navbar-item.is-active,
  .navbar.is-success .navbar-end .navbar-link:focus,
  .navbar.is-success .navbar-end .navbar-link:hover,
  .navbar.is-success .navbar-end .navbar-link.is-active {
    background-color: hsl(153, 53%, 48%);
    color: #fff;
  }
  .navbar.is-success .navbar-start .navbar-link::after,
  .navbar.is-success .navbar-end .navbar-link::after {
    border-color: #fff;
  }
  .navbar.is-success .navbar-item.has-dropdown:focus .navbar-link,
  .navbar.is-success .navbar-item.has-dropdown:hover .navbar-link,
  .navbar.is-success .navbar-item.has-dropdown.is-active .navbar-link {
    background-color: hsl(153, 53%, 48%);
    color: #fff;
  }
  .navbar.is-success .navbar-dropdown a.navbar-item.is-active {
    background-color: hsl(153, 53%, 53%);
    color: #fff;
  }
}
.navbar.is-warning {
  background-color: hsl(44, 100%, 77%);
  color: rgba(0, 0, 0, 0.7);
}
.navbar.is-warning .navbar-brand > .navbar-item,
.navbar.is-warning .navbar-brand .navbar-link {
  color: rgba(0, 0, 0, 0.7);
}
.navbar.is-warning .navbar-brand > a.navbar-item:focus, .navbar.is-warning .navbar-brand > a.navbar-item:hover, .navbar.is-warning .navbar-brand > a.navbar-item.is-active,
.navbar.is-warning .navbar-brand .navbar-link:focus,
.navbar.is-warning .navbar-brand .navbar-link:hover,
.navbar.is-warning .navbar-brand .navbar-link.is-active {
  background-color: hsl(44, 100%, 72%);
  color: rgba(0, 0, 0, 0.7);
}
.navbar.is-warning .navbar-brand .navbar-link::after {
  border-color: rgba(0, 0, 0, 0.7);
}
.navbar.is-warning .navbar-burger {
  color: rgba(0, 0, 0, 0.7);
}
@media screen and (min-width: 820px) {
  .navbar.is-warning .navbar-start > .navbar-item,
  .navbar.is-warning .navbar-start .navbar-link,
  .navbar.is-warning .navbar-end > .navbar-item,
  .navbar.is-warning .navbar-end .navbar-link {
    color: rgba(0, 0, 0, 0.7);
  }
  .navbar.is-warning .navbar-start > a.navbar-item:focus, .navbar.is-warning .navbar-start > a.navbar-item:hover, .navbar.is-warning .navbar-start > a.navbar-item.is-active,
  .navbar.is-warning .navbar-start .navbar-link:focus,
  .navbar.is-warning .navbar-start .navbar-link:hover,
  .navbar.is-warning .navbar-start .navbar-link.is-active,
  .navbar.is-warning .navbar-end > a.navbar-item:focus,
  .navbar.is-warning .navbar-end > a.navbar-item:hover,
  .navbar.is-warning .navbar-end > a.navbar-item.is-active,
  .navbar.is-warning .navbar-end .navbar-link:focus,
  .navbar.is-warning .navbar-end .navbar-link:hover,
  .navbar.is-warning .navbar-end .navbar-link.is-active {
    background-color: hsl(44, 100%, 72%);
    color: rgba(0, 0, 0, 0.7);
  }
  .navbar.is-warning .navbar-start .navbar-link::after,
  .navbar.is-warning .navbar-end .navbar-link::after {
    border-color: rgba(0, 0, 0, 0.7);
  }
  .navbar.is-warning .navbar-item.has-dropdown:focus .navbar-link,
  .navbar.is-warning .navbar-item.has-dropdown:hover .navbar-link,
  .navbar.is-warning .navbar-item.has-dropdown.is-active .navbar-link {
    background-color: hsl(44, 100%, 72%);
    color: rgba(0, 0, 0, 0.7);
  }
  .navbar.is-warning .navbar-dropdown a.navbar-item.is-active {
    background-color: hsl(44, 100%, 77%);
    color: rgba(0, 0, 0, 0.7);
  }
}
.navbar.is-danger {
  background-color: hsl(348, 86%, 61%);
  color: #fff;
}
.navbar.is-danger .navbar-brand > .navbar-item,
.navbar.is-danger .navbar-brand .navbar-link {
  color: #fff;
}
.navbar.is-danger .navbar-brand > a.navbar-item:focus, .navbar.is-danger .navbar-brand > a.navbar-item:hover, .navbar.is-danger .navbar-brand > a.navbar-item.is-active,
.navbar.is-danger .navbar-brand .navbar-link:focus,
.navbar.is-danger .navbar-brand .navbar-link:hover,
.navbar.is-danger .navbar-brand .navbar-link.is-active {
  background-color: hsl(348, 86%, 56%);
  color: #fff;
}
.navbar.is-danger .navbar-brand .navbar-link::after {
  border-color: #fff;
}
.navbar.is-danger .navbar-burger {
  color: #fff;
}
@media screen and (min-width: 820px) {
  .navbar.is-danger .navbar-start > .navbar-item,
  .navbar.is-danger .navbar-start .navbar-link,
  .navbar.is-danger .navbar-end > .navbar-item,
  .navbar.is-danger .navbar-end .navbar-link {
    color: #fff;
  }
  .navbar.is-danger .navbar-start > a.navbar-item:focus, .navbar.is-danger .navbar-start > a.navbar-item:hover, .navbar.is-danger .navbar-start > a.navbar-item.is-active,
  .navbar.is-danger .navbar-start .navbar-link:focus,
  .navbar.is-danger .navbar-start .navbar-link:hover,
  .navbar.is-danger .navbar-start .navbar-link.is-active,
  .navbar.is-danger .navbar-end > a.navbar-item:focus,
  .navbar.is-danger .navbar-end > a.navbar-item:hover,
  .navbar.is-danger .navbar-end > a.navbar-item.is-active,
  .navbar.is-danger .navbar-end .navbar-link:focus,
  .navbar.is-danger .navbar-end .navbar-link:hover,
  .navbar.is-danger .navbar-end .navbar-link.is-active {
    background-color: hsl(348, 86%, 56%);
    color: #fff;
  }
  .navbar.is-danger .navbar-start .navbar-link::after,
  .navbar.is-danger .navbar-end .navbar-link::after {
    border-color: #fff;
  }
  .navbar.is-danger .navbar-item.has-dropdown:focus .navbar-link,
  .navbar.is-danger .navbar-item.has-dropdown:hover .navbar-link,
  .navbar.is-danger .navbar-item.has-dropdown.is-active .navbar-link {
    background-color: hsl(348, 86%, 56%);
    color: #fff;
  }
  .navbar.is-danger .navbar-dropdown a.navbar-item.is-active {
    background-color: hsl(348, 86%, 61%);
    color: #fff;
  }
}
.navbar > .container {
  align-items: stretch;
  display: flex;
  min-height: 2.25rem;
  width: 100%;
}
.navbar.has-shadow {
  box-shadow: 0 2px 0 0 hsl(0, 0%, 96%);
}
.navbar.is-fixed-bottom, .navbar.is-fixed-top {
  left: 0;
  position: fixed;
  right: 0;
  z-index: 30;
}
.navbar.is-fixed-bottom {
  bottom: 0;
}
.navbar.is-fixed-bottom.has-shadow {
  box-shadow: 0 -2px 0 0 hsl(0, 0%, 96%);
}
.navbar.is-fixed-top {
  top: 0;
}

html.has-navbar-fixed-top,
body.has-navbar-fixed-top {
  padding-top: 2.25rem;
}
html.has-navbar-fixed-bottom,
body.has-navbar-fixed-bottom {
  padding-bottom: 2.25rem;
}

.navbar-brand,
.navbar-tabs {
  align-items: stretch;
  display: flex;
  flex-shrink: 0;
  min-height: 2.25rem;
}

.navbar-brand a.navbar-item:focus, .navbar-brand a.navbar-item:hover {
  background-color: transparent;
}

.navbar-tabs {
  -webkit-overflow-scrolling: touch;
  max-width: 100vw;
  overflow-x: auto;
  overflow-y: hidden;
}

.navbar-burger {
  color: hsl(0, 0%, 29%);
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  background: none;
  border: none;
  cursor: pointer;
  display: block;
  height: 2.25rem;
  position: relative;
  width: 2.25rem;
  margin-left: auto;
}
.navbar-burger span {
  background-color: currentColor;
  display: block;
  height: 1px;
  left: calc(50% - 8px);
  position: absolute;
  transform-origin: center;
  transition-duration: 86ms;
  transition-property: background-color, opacity, transform;
  transition-timing-function: ease-out;
  width: 16px;
}
.navbar-burger span:nth-child(1) {
  top: calc(50% - 6px);
}
.navbar-burger span:nth-child(2) {
  top: calc(50% - 1px);
}
.navbar-burger span:nth-child(3) {
  top: calc(50% + 4px);
}
.navbar-burger:hover {
  background-color: rgba(0, 0, 0, 0.05);
}
.navbar-burger.is-active span:nth-child(1) {
  transform: translateY(5px) rotate(45deg);
}
.navbar-burger.is-active span:nth-child(2) {
  opacity: 0;
}
.navbar-burger.is-active span:nth-child(3) {
  transform: translateY(-5px) rotate(-45deg);
}

.navbar-menu {
  display: none;
}

.navbar-item,
.navbar-link {
  color: hsl(0, 0%, 29%);
  display: block;
  line-height: 1.5;
  padding: 0.5rem 0.75rem;
  position: relative;
}
.navbar-item .icon:only-child,
.navbar-link .icon:only-child {
  margin-left: -0.25rem;
  margin-right: -0.25rem;
}

a.navbar-item,
.navbar-link {
  cursor: pointer;
}
a.navbar-item:focus, a.navbar-item:focus-within, a.navbar-item:hover, a.navbar-item.is-active,
.navbar-link:focus,
.navbar-link:focus-within,
.navbar-link:hover,
.navbar-link.is-active {
  background-color: hsl(0, 0%, 98%);
  color: hsl(229, 53%, 53%);
}

.navbar-item {
  flex-grow: 0;
  flex-shrink: 0;
}
.navbar-item img {
  max-height: 1.75rem;
}
.navbar-item.has-dropdown {
  padding: 0;
}
.navbar-item.is-expanded {
  flex-grow: 1;
  flex-shrink: 1;
}
.navbar-item.is-tab {
  border-bottom: 1px solid transparent;
  min-height: 2.25rem;
  padding-bottom: calc(0.5rem - 1px);
}
.navbar-item.is-tab:focus, .navbar-item.is-tab:hover {
  background-color: transparent;
  border-bottom-color: hsl(229, 53%, 53%);
}
.navbar-item.is-tab.is-active {
  background-color: transparent;
  border-bottom-color: hsl(229, 53%, 53%);
  border-bottom-style: solid;
  border-bottom-width: 3px;
  color: hsl(229, 53%, 53%);
  padding-bottom: calc(0.5rem - 3px);
}

.navbar-content {
  flex-grow: 1;
  flex-shrink: 1;
}

.navbar-link:not(.is-arrowless) {
  padding-right: 2.5em;
}
.navbar-link:not(.is-arrowless)::after {
  border-color: hsl(229, 53%, 53%);
  margin-top: -0.375em;
  right: 1.125em;
}

.navbar-dropdown {
  font-size: 0.875rem;
  padding-bottom: 0.5rem;
  padding-top: 0.5rem;
}
.navbar-dropdown .navbar-item {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.navbar-divider {
  background-color: hsl(0, 0%, 96%);
  border: none;
  display: none;
  height: 2px;
  margin: 0.5rem 0;
}

@media screen and (max-width: 819px) {
  .navbar > .container {
    display: block;
  }
  .navbar-brand .navbar-item,
  .navbar-tabs .navbar-item {
    align-items: center;
    display: flex;
  }
  .navbar-link::after {
    display: none;
  }
  .navbar-menu {
    background-color: hsl(0, 0%, 100%);
    box-shadow: 0 8px 16px rgba(10.2, 10.2, 10.2, 0.1);
    padding: 0.5rem 0;
  }
  .navbar-menu.is-active {
    display: block;
  }
  .navbar.is-fixed-bottom-touch, .navbar.is-fixed-top-touch {
    left: 0;
    position: fixed;
    right: 0;
    z-index: 30;
  }
  .navbar.is-fixed-bottom-touch {
    bottom: 0;
  }
  .navbar.is-fixed-bottom-touch.has-shadow {
    box-shadow: 0 -2px 3px rgba(10.2, 10.2, 10.2, 0.1);
  }
  .navbar.is-fixed-top-touch {
    top: 0;
  }
  .navbar.is-fixed-top .navbar-menu, .navbar.is-fixed-top-touch .navbar-menu {
    -webkit-overflow-scrolling: touch;
    max-height: calc(100vh - 2.25rem);
    overflow: auto;
  }
  html.has-navbar-fixed-top-touch,
  body.has-navbar-fixed-top-touch {
    padding-top: 2.25rem;
  }
  html.has-navbar-fixed-bottom-touch,
  body.has-navbar-fixed-bottom-touch {
    padding-bottom: 2.25rem;
  }
}
@media screen and (min-width: 820px) {
  .navbar,
  .navbar-menu,
  .navbar-start,
  .navbar-end {
    align-items: stretch;
    display: flex;
  }
  .navbar {
    min-height: 2.25rem;
  }
  .navbar.is-spaced {
    padding: 1rem 2rem;
  }
  .navbar.is-spaced .navbar-start,
  .navbar.is-spaced .navbar-end {
    align-items: center;
  }
  .navbar.is-spaced a.navbar-item,
  .navbar.is-spaced .navbar-link {
    border-radius: 4px;
  }
  .navbar.is-transparent a.navbar-item:focus, .navbar.is-transparent a.navbar-item:hover, .navbar.is-transparent a.navbar-item.is-active,
  .navbar.is-transparent .navbar-link:focus,
  .navbar.is-transparent .navbar-link:hover,
  .navbar.is-transparent .navbar-link.is-active {
    background-color: transparent !important;
  }
  .navbar.is-transparent .navbar-item.has-dropdown.is-active .navbar-link, .navbar.is-transparent .navbar-item.has-dropdown.is-hoverable:focus .navbar-link, .navbar.is-transparent .navbar-item.has-dropdown.is-hoverable:focus-within .navbar-link, .navbar.is-transparent .navbar-item.has-dropdown.is-hoverable:hover .navbar-link {
    background-color: transparent !important;
  }
  .navbar.is-transparent .navbar-dropdown a.navbar-item:focus, .navbar.is-transparent .navbar-dropdown a.navbar-item:hover {
    background-color: hsl(0, 0%, 96%);
    color: hsl(0, 0%, 4%);
  }
  .navbar.is-transparent .navbar-dropdown a.navbar-item.is-active {
    background-color: hsl(0, 0%, 96%);
    color: hsl(229, 53%, 53%);
  }
  .navbar-burger {
    display: none;
  }
  .navbar-item,
  .navbar-link {
    align-items: center;
    display: flex;
  }
  .navbar-item.has-dropdown {
    align-items: stretch;
  }
  .navbar-item.has-dropdown-up .navbar-link::after {
    transform: rotate(135deg) translate(0.25em, -0.25em);
  }
  .navbar-item.has-dropdown-up .navbar-dropdown {
    border-bottom: 2px solid hsl(0, 0%, 86%);
    border-radius: 6px 6px 0 0;
    border-top: none;
    bottom: 100%;
    box-shadow: 0 -8px 8px rgba(10.2, 10.2, 10.2, 0.1);
    top: auto;
  }
  .navbar-item.is-active .navbar-dropdown, .navbar-item.is-hoverable:focus .navbar-dropdown, .navbar-item.is-hoverable:focus-within .navbar-dropdown, .navbar-item.is-hoverable:hover .navbar-dropdown {
    display: block;
  }
  .navbar.is-spaced .navbar-item.is-active .navbar-dropdown, .navbar-item.is-active .navbar-dropdown.is-boxed, .navbar.is-spaced .navbar-item.is-hoverable:focus .navbar-dropdown, .navbar-item.is-hoverable:focus .navbar-dropdown.is-boxed, .navbar.is-spaced .navbar-item.is-hoverable:focus-within .navbar-dropdown, .navbar-item.is-hoverable:focus-within .navbar-dropdown.is-boxed, .navbar.is-spaced .navbar-item.is-hoverable:hover .navbar-dropdown, .navbar-item.is-hoverable:hover .navbar-dropdown.is-boxed {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }
  .navbar-menu {
    flex-grow: 1;
    flex-shrink: 0;
  }
  .navbar-start {
    justify-content: flex-start;
    margin-right: auto;
  }
  .navbar-end {
    justify-content: flex-end;
    margin-left: auto;
  }
  .navbar-dropdown {
    background-color: hsl(0, 0%, 100%);
    border-bottom-left-radius: 6px;
    border-bottom-right-radius: 6px;
    border-top: 2px solid hsl(0, 0%, 86%);
    box-shadow: 0 8px 8px rgba(10.2, 10.2, 10.2, 0.1);
    display: none;
    font-size: 0.875rem;
    left: 0;
    min-width: 100%;
    position: absolute;
    top: 100%;
    z-index: 20;
  }
  .navbar-dropdown .navbar-item {
    padding: 0.375rem 1rem;
    white-space: nowrap;
  }
  .navbar-dropdown a.navbar-item {
    padding-right: 3rem;
  }
  .navbar-dropdown a.navbar-item:focus, .navbar-dropdown a.navbar-item:hover {
    background-color: hsl(0, 0%, 96%);
    color: hsl(0, 0%, 4%);
  }
  .navbar-dropdown a.navbar-item.is-active {
    background-color: hsl(0, 0%, 96%);
    color: hsl(229, 53%, 53%);
  }
  .navbar.is-spaced .navbar-dropdown, .navbar-dropdown.is-boxed {
    border-radius: 6px;
    border-top: none;
    box-shadow: 0 8px 8px rgba(10.2, 10.2, 10.2, 0.1), 0 0 0 1px rgba(10.2, 10.2, 10.2, 0.1);
    display: block;
    opacity: 0;
    pointer-events: none;
    top: calc(100% + (-4px));
    transform: translateY(-5px);
    transition-duration: 86ms;
    transition-property: opacity, transform;
  }
  .navbar-dropdown.is-right {
    left: auto;
    right: 0;
  }
  .navbar-divider {
    display: block;
  }
  .navbar > .container .navbar-brand,
  .container > .navbar .navbar-brand {
    margin-left: -0.75rem;
  }
  .navbar > .container .navbar-menu,
  .container > .navbar .navbar-menu {
    margin-right: -0.75rem;
  }
  .navbar.is-fixed-bottom-desktop, .navbar.is-fixed-top-desktop {
    left: 0;
    position: fixed;
    right: 0;
    z-index: 30;
  }
  .navbar.is-fixed-bottom-desktop {
    bottom: 0;
  }
  .navbar.is-fixed-bottom-desktop.has-shadow {
    box-shadow: 0 -2px 3px rgba(10.2, 10.2, 10.2, 0.1);
  }
  .navbar.is-fixed-top-desktop {
    top: 0;
  }
  html.has-navbar-fixed-top-desktop,
  body.has-navbar-fixed-top-desktop {
    padding-top: 2.25rem;
  }
  html.has-navbar-fixed-bottom-desktop,
  body.has-navbar-fixed-bottom-desktop {
    padding-bottom: 2.25rem;
  }
  html.has-spaced-navbar-fixed-top,
  body.has-spaced-navbar-fixed-top {
    padding-top: 4.25rem;
  }
  html.has-spaced-navbar-fixed-bottom,
  body.has-spaced-navbar-fixed-bottom {
    padding-bottom: 4.25rem;
  }
  a.navbar-item.is-active,
  .navbar-link.is-active {
    color: hsl(0, 0%, 4%);
  }
  a.navbar-item.is-active:not(:focus):not(:hover),
  .navbar-link.is-active:not(:focus):not(:hover) {
    background-color: transparent;
  }
  .navbar-item.has-dropdown:focus .navbar-link, .navbar-item.has-dropdown:hover .navbar-link, .navbar-item.has-dropdown.is-active .navbar-link {
    background-color: hsl(0, 0%, 98%);
  }
}
.hero.is-fullheight-with-navbar {
  min-height: calc(100vh - 2.25rem);
}

/*
====================
NAVBAR STYLING
====================
*/
.hidden {
  display: none;
}

.navbar {
  height: 6em;
}

.navbar-item {
  font-size: 0.9em;
  text-decoration: none;
}

a.navbar-item:hover {
  background-color: hsl(0, 0%, 100%);
  color: #EF3E33;
  font-weight: 600;
}

.navbar-start {
  margin-left: 1.5em;
}
@media screen and (max-width: 1100px) {
  .navbar-start a:nth-of-type(6) {
    display: none;
  }
}

.navbar-brand {
  justify-content: space-between;
  align-items: center;
}

#abs-nav-logo {
  max-height: 4rem;
}
@media screen and (max-width: 1000px) {
  #abs-nav-logo {
    display: none;
  }
}
@media screen and (max-width: 819px) {
  #abs-nav-logo {
    display: block;
  }
}

.buttons {
  height: auto;
  width: auto;
}
.buttons a {
  font-weight: 600;
  padding: 11px 13px;
  border-radius: 10px;
  background-color: hsl(0, 0%, 100%);
  color: #EF3E33;
  border: 1px solid rgba(128, 128, 128, 0.5);
  margin-left: 1em;
  text-decoration: none;
}
.buttons a:hover {
  color: hsl(0, 0%, 100%);
  background-color: #EF3E33;
}

.form-field {
  display: block;
  width: 50%;
  padding: 8px 16px;
  line-height: 25px;
  font-size: 14px;
  font-weight: 500;
  border: 1px solid var(--input-border);
  background: rgb(236, 236, 236);
}
.form-field::placeholder {
  color: rgb(168, 168, 168);
}
.form-field:focus {
  outline: none;
}

.form-group {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  width: 100%;
}
.form-group > .form-field {
  white-space: nowrap;
  display: block;
}
.form-group > .form-field:first-child {
  border-radius: 6px 0 0 6px;
}
.form-group > .form-field:last-child {
  border-radius: 0 6px 6px 0;
}
.form-group .form-field {
  position: relative;
  width: 50%;
  z-index: 1;
  margin-top: 0;
  margin-bottom: 0;
}
.form-group #Login {
  font-weight: 600;
  border-radius: 10px;
  background-color: hsl(0, 0%, 100%);
  color: #EF3E33;
  border: 1px solid rgba(128, 128, 128, 0.5);
  padding: 0.5em 1em;
}

/*
====================
FOOTER
====================
*/
footer {
  padding: 0 5em;
  background-color: #191919;
  color: white;
}
@media screen and (max-width: 820px) {
  footer {
    padding: 0 2em;
  }
}
@media screen and (max-width: 600px) {
  footer {
    padding: 0;
  }
}
footer h2 {
  font-weight: 500;
  letter-spacing: 1.5px;
}
footer h3 {
  margin: 0;
  font-weight: 300;
  font-size: 1em;
  letter-spacing: 1.5px;
  text-align: right;
}
footer p, footer li {
  font-weight: 300;
  text-align: left;
  list-style: none;
}
@media screen and (max-width: 600px) {
  footer p, footer li {
    text-align: center;
  }
}
footer a {
  color: white;
  text-decoration: none;
}
footer li:hover {
  transform: scale(1.05);
}
footer a:hover {
  color: #EF3E33;
  transform: scale(1.05);
}

.footer-link-container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  text-align: left;
  margin-bottom: 2em;
}
@media screen and (max-width: 600px) {
  .footer-link-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}

.footer-link-box.ABS-contact p {
  margin: 0;
}
@media screen and (min-width: 600px) and (max-width: 820px) {
  .footer-link-box.ABS-contact {
    font-size: 0.8em;
  }
}
.footer-link-box.technical-information {
  margin-right: 3em;
}
@media screen and (max-width: 600px) {
  .footer-link-box.technical-information {
    margin: 0;
  }
}
.footer-link-box.technical-information h2, .footer-link-box.ABS-websites h2 {
  font-size: 1.25em;
  font-weight: 300;
  letter-spacing: 0;
}
.footer-link-box.technical-information li, .footer-link-box.ABS-websites li {
  font-size: 0.9em;
}
.footer-link-box svg {
  height: 25px;
  width: 25px;
  stroke-width: 3px;
}

.footer-svg-wrapper {
  margin-top: 25px;
}

.footer-container-right {
  display: flex;
  flex-direction: row;
  margin-right: 2em;
}
@media screen and (max-width: 820px) {
  .footer-container-right {
    font-size: 0.9em;
    margin: 0;
  }
}
@media screen and (max-width: 600px) {
  .footer-container-right {
    flex-direction: column;
  }
}
.footer-container-right ul {
  padding: 0;
}
.footer-container-right li {
  margin-top: 2px;
}

.footer-branding {
  display: flex;
  justify-content: space-between;
  margin-top: 1.875em;
  padding-bottom: 2em;
}
.footer-branding .JW-wrapper {
  display: flex;
  justify-content: flex-end;
  margin-top: 20px;
}
.footer-branding .JW-wrapper img {
  width: 50px;
  margin-right: 10px;
}
.footer-branding .JW-wrapper span {
  font-size: 0.8em;
}
@media screen and (max-width: 600px) {
  .footer-branding {
    flex-direction: column;
    align-items: center;
  }
  .footer-branding a {
    margin-bottom: 1em;
  }
}

/*
===============================
HERO
===============================
*/
.hero-contents h2 {
  margin: 0 0 15px 0;
}

#hero-image-index {
  position: relative;
}
#hero-image-index img {
  position: absolute;
  left: 0;
  -webkit-transition: opacity 1s ease-in-out;
  -moz-transition: opacity 1s ease-in-out;
  -o-transition: opacity 1s ease-in-out;
  transition: opacity 1s ease-in-out;
}

#hero-image-index img {
  animation-name: cf4FadeInOut;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
  animation-duration: 20s;
  animation-direction: normal;
}

@keyframes cf4FadeInOut {
  0% {
    opacity: 1;
  }
  17% {
    opacity: 1;
  }
  25% {
    opacity: 0;
  }
  92% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
#hero-image-index img:nth-of-type(1) {
  animation-delay: 20s;
}

#hero-image-index img:nth-of-type(2) {
  animation-delay: 15s;
}

#hero-image-index img:nth-of-type(3) {
  animation-delay: 10s;
}

#hero-image-index img:nth-of-type(4) {
  animation-delay: 5s;
}

@media screen and (max-width: 600px) {
  .hero-contents-container {
    padding-left: 0;
  }
}

.button-wrapper a {
  color: white;
  text-decoration: none;
}

.hero-wrapper {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 600px) {
  .hero-wrapper {
    flex-direction: column;
    align-items: flex-start;
  }
}
.hero-wrapper + h2 {
  margin-bottom: 35px;
}

#text-border {
  font-weight: 500;
  border-bottom: 4px solid #EF3E33;
  border-right: 4px solid #EF3E33;
  margin-left: 15px;
  margin-top: 0.2em;
  padding: 0 0.3em 0.2em 0;
}
@media screen and (max-width: 600px) {
  #text-border {
    margin-left: 0;
  }
}

/*
===============================
LOGO BANNER
===============================
*/
.logo-banner h2 {
  text-align: center;
  margin-bottom: 60px;
}

.logo-box {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  margin: 75px 0 50px 0;
}
@media screen and (max-width: 600px) {
  .logo-box {
    flex-direction: column;
    align-items: center;
  }
}
.logo-box img, .logo-box svg {
  width: 150px;
  margin: 0 20px 50px 20px;
}

/*
===============================
LINKS GRID
===============================
*/
.links-grid-index {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 0.8em;
  margin-top: 50px;
}
@media screen and (max-width: 1000px) {
  .links-grid-index {
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (max-width: 820px) {
  .links-grid-index {
    grid-template-columns: 1fr;
    padding: 0 20px;
  }
}

.link-card-index {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 300px;
  background-size: cover;
}
.link-card-index:nth-of-type(1) {
  background-image: url("../../images/image_grid_1.webp");
}
.link-card-index:nth-of-type(2) {
  background-image: url("../../images/image_grid_2.webp");
}
.link-card-index:nth-of-type(3) {
  background-image: url("../../images/image_grid_3.webp");
}
.link-card-index:nth-of-type(4) {
  background-image: url("../../images/image_grid_4.webp");
}
.link-card-index:nth-of-type(5) {
  background-image: url("../../images/image_grid_5.webp");
}
.link-card-index:nth-of-type(6) {
  background-image: url("../../images/image_grid_6.webp");
}
.link-card-index p {
  -webkit-box-shadow: -20px -20px 0px 0px rgba(0, 0, 0, 0.25);
  -moz-box-shadow: -20px -20px 0px 0px rgba(0, 0, 0, 0.25);
  box-shadow: -20px -20px 0px 0px rgba(0, 0, 0, 0.25);
  background: rgba(0, 83, 161, 0.5960784314);
  color: white;
  font-size: 1.5em;
  font-weight: 300;
  padding: 1em 1.5em;
}
.link-card-index p:hover {
  transform: scale(1.05);
}
.link-card-index p a {
  text-decoration: none;
  color: white;
}

/*
===============================
TALON CTA
===============================
*/
.Talon-CTA {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 40% 60%;
  align-items: center;
  padding: 100px 0;
  margin-bottom: 60px;
}
@media screen and (max-width: 820px) {
  .Talon-CTA {
    grid-auto-flow: row;
    grid-auto-columns: 100%;
  }
}
.Talon-CTA .talon-copy {
  text-align: center;
  padding-left: 10%;
  padding-right: 10%;
}
@media screen and (max-width: 820px) {
  .Talon-CTA .talon-copy {
    margin-bottom: 50px;
  }
}
.Talon-CTA .talon-copy p {
  margin-bottom: 50px;
  padding: 0 30px;
}
.Talon-CTA .talon-copy .button {
  background: none;
  border: 1px solid rgba(128, 128, 128, 0.3);
  border-radius: 10px;
  font-weight: 700;
  font-size: 1em;
  padding: 12px 30px;
  color: #EF3E33;
  margin-right: 20px;
  text-decoration: none;
}
.Talon-CTA .talon-copy .button:hover {
  background-color: #EF3E33;
  color: white;
}
.Talon-CTA .talon-image {
  text-align: center;
}
.Talon-CTA img {
  width: 80%;
  box-shadow: 10px 10px 14px 3px rgba(0, 0, 0, 0.34);
  -webkit-box-shadow: 10px 10px 14px 3px rgba(0, 0, 0, 0.34);
  -moz-box-shadow: 10px 10px 14px 3px rgba(0, 0, 0, 0.34);
}

/*
===============================
ABS POM
===============================
*/
.POM-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 10%;
}

.POM-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 2em;
}
@media screen and (max-width: 600px) {
  .POM-grid {
    grid-template-columns: 1fr;
    grid-gap: 0;
  }
}

.POM-item img {
  max-width: 100%;
  max-height: 100%;
}
.POM-item p {
  font-size: 1.25em;
  text-align: center;
}
.POM-item a {
  color: #0e0e0e;
  text-decoration: none;
}

/*
===============================
MORE ABS LINKS
===============================
*/
.ABS-links {
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  margin-bottom: 60px;
}
@media screen and (max-width: 600px) {
  .ABS-links {
    flex-direction: column;
  }
}
.ABS-links .link-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media screen and (max-width: 600px) {
  .ABS-links .link-wrapper {
    margin-bottom: 20px;
  }
}
.ABS-links .link-wrapper a {
  font-size: 1.75em;
  color: inherit;
  text-decoration: none;
  --c:black; /* the border color */
  --b: 3px; /* the border thickness*/
  --g: 15px; /* the gap on hover */
  padding: calc(var(--g) + var(--b));
  --_g: #0000 25%,var(--c) 0;
  background: conic-gradient(from 180deg at top var(--b) right var(--b), var(--_g)) var(--_i, 200%) 0/200% var(--_i, var(--b)) no-repeat, conic-gradient(at bottom var(--b) left var(--b), var(--_g)) 0 var(--_i, 200%)/var(--_i, var(--b)) 200% no-repeat;
  transition: 0.3s, background-position 0.3s 0.3s;
  cursor: pointer;
}
.ABS-links .link-wrapper a:hover {
  --_i: 100%;
  transition: 0.3s, background-size 0.3s 0.3s;
}
@media screen and (max-width: 820px) {
  .ABS-links .link-wrapper a {
    font-size: 1.5em;
  }
}
.ABS-links .link-wrapper svg {
  width: 80px;
  stroke: #EF3E33;
  stroke-width: 1;
  margin-bottom: 15px;
}
@media screen and (max-width: 820px) {
  .ABS-links .link-wrapper svg {
    width: 65px;
  }
}

/*
===============================
ABS STORY
===============================
*/
.ABS-story {
  background-color: #0e0e0e;
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 60% 40%;
  align-items: center;
  padding: 20px 60px;
}
@media screen and (max-width: 820px) {
  .ABS-story {
    grid-auto-flow: row;
    grid-auto-columns: 100%;
  }
}
.ABS-story svg {
  position: absolute;
  width: 80px;
}
.ABS-story p {
  color: #DBDBDB;
  line-height: 25px;
  font-size: 1.25em;
  padding: 0 30px;
}
@media screen and (max-width: 820px) {
  .ABS-story p {
    padding: 0;
  }
}
.ABS-story .ABS-story-left {
  padding: 0 30px 0 0;
}
@media screen and (max-width: 820px) {
  .ABS-story .ABS-story-left {
    padding: 0;
  }
}
.ABS-story .ABS-story-right p {
  border-top: 4px solid #EF3E33;
  padding: 20px 0 0 0;
}

/*
===============================
DOORMERICA INFO
===============================
*/
.doormerica {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 60% 40%;
  align-items: center;
  padding: 0 75px;
  margin: 100px 0;
}
@media screen and (max-width: 820px) {
  .doormerica {
    grid-auto-columns: 100%;
  }
}
@media screen and (max-width: 750px) {
  .doormerica {
    padding: 0;
  }
}
.doormerica .doormerica-left {
  display: grid;
  grid-auto-flow: row;
  border-top: 6px solid black;
  padding-right: 50px;
}
@media screen and (max-width: 750px) {
  .doormerica .doormerica-left {
    padding: 0;
  }
}
@media screen and (max-width: 750px) {
  .doormerica .doormerica-left p {
    text-align: center;
  }
}
.doormerica .doormerica-left .left-grid-top-wrapper {
  display: flex;
  flex-direction: row;
}
@media screen and (max-width: 750px) {
  .doormerica .doormerica-left .left-grid-top-wrapper {
    justify-content: center;
  }
}
.doormerica .doormerica-left .left-grid-top-wrapper a {
  color: inherit;
  text-decoration: none;
}
.doormerica .doormerica-left .left-grid-top-wrapper svg {
  width: 45px;
  margin-left: 25px;
  stroke: #EF3E33;
  stroke-width: 1px;
}
@media screen and (max-width: 600px) {
  .doormerica .doormerica-left .left-grid-top-wrapper svg {
    display: none;
  }
}
.doormerica .doormerica-left .left-grid-bottom {
  display: grid;
  grid-auto-flow: column;
  grid-gap: 20px;
}
@media screen and (max-width: 750px) {
  .doormerica .doormerica-left .left-grid-bottom {
    justify-items: center;
    grid-gap: 0;
  }
}
@media screen and (max-width: 600px) {
  .doormerica .doormerica-left .left-grid-bottom {
    grid-auto-flow: row;
    grid-gap: 20px;
  }
}
.doormerica .doormerica-left .left-grid-bottom img {
  width: 300px;
  height: 250px;
}

/*
===============================
HERO
===============================
*/
.hero.hero-products {
  height: 30vh;
}
.hero.hero-products .hero-image {
  display: none;
}
.hero.hero-products .hero-contents-container {
  width: 100%;
  align-items: center;
}
.hero.hero-products .hero-separator {
  width: 100%;
}

/*
===============================
LINKS GRID
===============================
*/
.links-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 0.8em;
  padding: 0 10%;
  margin: 100px 0;
}
@media screen and (max-width: 1000px) {
  .links-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (max-width: 820px) {
  .links-grid {
    grid-template-columns: 1fr;
    padding: 0 20px;
  }
}

.link-card {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 300px;
  border-radius: 10px;
  background-size: cover;
}
.link-card:hover {
  transform: scale(1.025);
}
.link-card:nth-of-type(1) {
  background-image: url("../../images/product_grid_JW.webp");
}
.link-card:nth-of-type(2) {
  background-image: url("../../images/product_grid_Fiberglass.webp");
}
.link-card:nth-of-type(3) {
  background-image: url("../../images/product_grid_Hardware.JPG");
}
.link-card:nth-of-type(4) {
  background-image: url("../../images/product_grid_Simpson.webp");
}
.link-card:nth-of-type(5) {
  background-image: url("../../images/product_grid_Timely.webp");
}
.link-card:nth-of-type(6) {
  background-image: url("../../images/product_grid_Millennium.webp");
}
.link-card:nth-of-type(7) {
  background-image: url("../../images/product_grid_Architectural.webp");
}
.link-card:nth-of-type(8) {
  background-image: url("../../images/product_grid_Deco.webp");
}
.link-card:nth-of-type(9) {
  background-image: url("../../images/product_grid_Pocket.PNG");
}
.link-card:nth-of-type(10) {
  background-image: url("../../images/product_grid_Mirror.webp");
}
.link-card:nth-of-type(11) {
  background-image: url("../../images/product_grid_Residential.webp");
}
.link-card:nth-of-type(12) {
  background-image: url("../../images/product_grid_Steel.webp");
}
.link-card:nth-of-type(13) {
  background-image: url("../../images/product_grid_Steelcraft.webp");
}
.link-card:nth-of-type(14) {
  background-image: url("../../images/product_grid_JELDWEN.webp");
}
.link-card:nth-of-type(15) {
  background-image: url("../../images/product_grid_15.webp");
}
.link-card:nth-of-type(16) {
  background-image: url("../../images/product_grid_16.webp");
}
.link-card p {
  -webkit-box-shadow: -25px -25px 0px 0px rgba(0, 0, 0, 0.25);
  -moz-box-shadow: -25px -25px 0px 0px rgba(0, 0, 0, 0.25);
  box-shadow: -25px -25px 0px 0px rgba(0, 0, 0, 0.25);
  background: rgba(0, 83, 161, 0.5960784314);
  color: white;
  font-size: 1.25em;
  font-weight: 300;
  padding: 1em;
  cursor: pointer;
}

#products-overlayButton {
  float: right;
}
#products-overlayButton svg {
  height: 40px;
  fill: white;
  stroke: #EF3E33;
  margin-right: 25px;
}
#products-overlayButton svg:hover {
  transform: scale(1.05);
}

#overLayTable {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 110px;
}
#overLayTable a {
  margin-bottom: 25px;
  font-size: 1.25em;
  font-weight: 300;
  letter-spacing: 1px;
  cursor: pointer;
  color: white;
}
#overLayTable a:hover {
  border-bottom: 2px solid #EF3E33;
  transform: scale(1.05);
}

#products-overLay {
  position: fixed;
  z-index: 12;
  top: 18%;
  right: 25%;
  left: 25%;
  height: 500px;
  visibility: hidden;
  background: #191919;
}
@media screen and (max-width: 600px) {
  #products-overLay {
    right: 10%;
    left: 10%;
  }
}

#products-overlayBackground {
  background: rgba(0, 0, 0, 0.6);
  width: 100%;
  height: 100%;
  z-index: 11;
  top: 0;
  left: 0;
  position: fixed;
  visibility: hidden;
}

/*
===============================
HERO
===============================
*/
.hero.hero-hardware {
  height: 30vh;
}
.hero.hero-hardware .hero-image {
  display: none;
}
.hero.hero-hardware .hero-contents-container {
  width: 100%;
  align-items: center;
}
.hero.hero-hardware .hero-separator {
  width: 100%;
}

.Talon-CTA.hardware {
  padding: 100px 0 75px 0;
}

.selector-container {
  display: flex;
  flex-direction: row;
  padding: 0 10%;
  margin: 100px 0;
}
@media screen and (max-width: 820px) {
  .selector-container {
    flex-direction: column;
  }
}

.form-wrapper h3 {
  margin: 0;
  margin-bottom: 30px;
  font-size: 1.5em;
}
@media screen and (max-width: 820px) {
  .form-wrapper h3 {
    text-align: center;
  }
}

#productSelector {
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 820px) {
  #productSelector {
    margin-bottom: 50px;
  }
}

.vendor-dropdown {
  font-weight: 600;
  letter-spacing: 1px;
  height: 4rem;
  font-size: 1.1rem;
  padding: 1rem;
  background-color: #FAFCFD;
  border: 3px solid rgba(0, 0, 0, 0.3411764706);
  transition: 0.3s ease-in-out;
  list-style: none;
  margin-bottom: 5px;
}
.vendor-dropdown::-webkit-input-placeholder {
  color: #333;
}
.vendor-dropdown:hover {
  cursor: pointer;
}
.vendor-dropdown:hover::-webkit-input-placeholder {
  color: #333;
}
.vendor-dropdown:focus, .vendor-dropdown.open {
  box-shadow: 0px 5px 8px 0px rgba(0, 0, 0, 0.2);
  outline: 0;
  color: #000;
}

#overLay {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  overflow-y: scroll;
  height: 275px;
}
#overLay > span {
  font-size: 1.5em;
  font-weight: 700;
  border-bottom: 3px solid #EF3E33;
  padding-bottom: 5px;
}
#overLay table a {
  color: black;
  text-decoration: none;
}
#overLay td:hover {
  transform: scale(1.05);
}
#overLay .suppliers {
  margin-top: 65px;
}
#overLay .suppliers td {
  font-size: 1.25em;
  padding-right: 15px;
}
#overLay .products {
  margin-top: 65px;
}
#overLay .products td {
  font-size: 1.2em;
  padding-right: 15px;
}
#overLay .templates tbody {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.leed {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 50% 50%;
  align-items: center;
  padding: 0 10%;
  margin-bottom: 100px;
}
@media screen and (max-width: 820px) {
  .leed {
    grid-auto-flow: row;
    grid-auto-columns: auto;
    grid-gap: 60px;
  }
}
@media screen and (max-width: 820px) {
  .leed .leed-info {
    text-align: center;
  }
}
.leed .leed-info p {
  margin-bottom: 50px;
}
.leed a {
  font-weight: 600;
  padding: 11px 13px;
  border-radius: 10px;
  background-color: white;
  color: #EF3E33;
  border: 1px solid rgba(128, 128, 128, 0.5);
  text-decoration: none;
}
.leed a:hover {
  color: white;
  background-color: #EF3E33;
}
.leed .leed-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 0.8em;
  margin-left: 20px;
}

.cards-and-catalogs {
  padding: 0 10%;
  margin-bottom: 100px;
}
.cards-and-catalogs h3 {
  margin-bottom: 25px;
}
@media screen and (max-width: 820px) {
  .cards-and-catalogs h3 {
    text-align: center;
  }
}
.cards-and-catalogs a {
  color: black;
  text-decoration: none;
  font-size: 1.1em;
  padding-bottom: 20px;
  border-bottom: 2px solid black;
  margin-bottom: 15px;
}
.cards-and-catalogs .cc-link-wrapper {
  display: flex;
  flex-direction: column;
}

.link-wrapper svg, .talon-video-header svg {
  width: 80px;
  stroke: #EF3E33;
  stroke-width: 1;
  margin-bottom: 15px;
  margin-top: 50px;
}
@media screen and (max-width: 820px) {
  .link-wrapper svg, .talon-video-header svg {
    width: 65px;
  }
}

.link-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media screen and (max-width: 600px) {
  .link-wrapper {
    margin-bottom: 40px;
  }
}
.link-wrapper .talon-how-to-document-header {
  border-bottom: 2px solid #EF3E33;
  padding-bottom: 5px;
}

.talon-document-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.talon-document-container .talon-documents {
  margin-bottom: 35px;
}
.talon-document-container .talon-documents a {
  color: black;
  text-decoration: none;
  font-size: 1.5em;
}

.talon-video-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 35px;
}

.talon-how-to-video-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  justify-items: center;
  grid-gap: 20px;
  padding: 0 10%;
  margin-bottom: 50px;
}
@media screen and (max-width: 1000px) {
  .talon-how-to-video-container {
    grid-template-columns: 1fr;
  }
}

.talon-how-to-video-iframe {
  width: 400px;
  height: 300px;
}
@media screen and (max-width: 600px) {
  .talon-how-to-video-iframe {
    width: auto;
  }
}

/*
===============================
HERO
===============================
*/
.hero.hero-catalogs {
  height: 30vh;
}
.hero.hero-catalogs .hero-image {
  display: none;
}
.hero.hero-catalogs .hero-contents-container {
  width: 100%;
  align-items: center;
}
.hero.hero-catalogs .hero-separator {
  width: 100%;
}

/*
===============================
CATALOGS
===============================
*/
.catalog-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 10%;
  margin: 100px 0;
}

.catalog-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 2em;
}

.catalog-item {
  text-align: center;
}
.catalog-item img {
  max-width: 100%;
  max-height: 100%;
  margin-bottom: 15px;
}
.catalog-item a {
  font-size: 1.25em;
  font-weight: 500;
  text-decoration: none;
  color: black;
}
.catalog-item a:hover {
  color: #EF3E33;
}

/*
===============================
HERO
===============================
*/
.hero.hero-contact {
  height: 30vh;
}
.hero.hero-contact .hero-image {
  display: none;
}
.hero.hero-contact .hero-contents-container {
  width: 100%;
  align-items: center;
}
.hero.hero-contact .hero-separator {
  width: 100%;
}

.contacts {
  padding: 0 10%;
  margin: 100px 0;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 45px;
}
@media screen and (max-width: 1000px) {
  .contacts {
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (max-width: 820px) {
  .contacts {
    grid-template-columns: 1fr;
    padding: 0 20px;
    justify-items: center;
  }
}

.contact-card h3 {
  font-weight: 700;
  font-size: 1.25em;
  border-bottom: 4px solid #EF3E33;
  border-right: 4px solid #EF3E33;
  margin-top: 0.2em;
  padding: 0 0.3em 0.2em 0;
  width: 250px;
}
.contact-card p {
  font-weight: 500;
}

.pricebook-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 10%;
  margin: 50px 0;
}

.pricebook-title {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 300px;
  height: 150px;
}

.pricebook-label h2 {
  color: #191919;
  font-size: 2.5em;
  letter-spacing: 1px;
}
.pricebook-label .separator {
  border-bottom: 2px solid #EF3E33;
  margin-bottom: 35px;
}

.pricebook-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 10px;
  margin-top: 10px;
}
.pricebook-links a {
  font-weight: 600;
  padding: 11px 13px;
  border-radius: 10px;
  background-color: white;
  color: #EF3E33;
  border: 1px solid rgba(128, 128, 128, 0.5);
  text-decoration: none;
}

.message {
  background-color: hsl(0, 0%, 96%);
  border-radius: 4px;
  font-size: 1rem;
}
.message strong {
  color: currentColor;
}
.message a:not(.button):not(.tag):not(.dropdown-item) {
  color: currentColor;
  text-decoration: underline;
}
.message.is-small {
  font-size: 0.75rem;
}
.message.is-medium {
  font-size: 1.25rem;
}
.message.is-large {
  font-size: 1.5rem;
}
.message.is-white {
  background-color: hsl(0, 0%, 100%);
}
.message.is-white .message-header {
  background-color: hsl(0, 0%, 100%);
  color: hsl(0, 0%, 4%);
}
.message.is-white .message-body {
  border-color: hsl(0, 0%, 100%);
}
.message.is-black {
  background-color: hsl(0, 0%, 98%);
}
.message.is-black .message-header {
  background-color: hsl(0, 0%, 4%);
  color: hsl(0, 0%, 100%);
}
.message.is-black .message-body {
  border-color: hsl(0, 0%, 4%);
}
.message.is-light {
  background-color: hsl(0, 0%, 98%);
}
.message.is-light .message-header {
  background-color: hsl(0, 0%, 96%);
  color: rgba(0, 0, 0, 0.7);
}
.message.is-light .message-body {
  border-color: hsl(0, 0%, 96%);
}
.message.is-dark {
  background-color: hsl(0, 0%, 98%);
}
.message.is-dark .message-header {
  background-color: hsl(0, 0%, 21%);
  color: #fff;
}
.message.is-dark .message-body {
  border-color: hsl(0, 0%, 21%);
}
.message.is-primary {
  background-color: hsl(171, 100%, 96%);
}
.message.is-primary .message-header {
  background-color: hsl(171, 100%, 41%);
  color: #fff;
}
.message.is-primary .message-body {
  border-color: hsl(171, 100%, 41%);
  color: hsl(171, 100%, 29%);
}
.message.is-link {
  background-color: hsl(229, 53%, 96%);
}
.message.is-link .message-header {
  background-color: hsl(229, 53%, 53%);
  color: #fff;
}
.message.is-link .message-body {
  border-color: hsl(229, 53%, 53%);
  color: hsl(229, 53%, 47%);
}
.message.is-info {
  background-color: hsl(207, 61%, 96%);
}
.message.is-info .message-header {
  background-color: hsl(207, 61%, 53%);
  color: #fff;
}
.message.is-info .message-body {
  border-color: hsl(207, 61%, 53%);
  color: hsl(207, 61%, 41%);
}
.message.is-success {
  background-color: hsl(153, 53%, 96%);
}
.message.is-success .message-header {
  background-color: hsl(153, 53%, 53%);
  color: #fff;
}
.message.is-success .message-body {
  border-color: hsl(153, 53%, 53%);
  color: hsl(153, 53%, 31%);
}
.message.is-warning {
  background-color: hsl(44, 100%, 96%);
}
.message.is-warning .message-header {
  background-color: hsl(44, 100%, 77%);
  color: rgba(0, 0, 0, 0.7);
}
.message.is-warning .message-body {
  border-color: hsl(44, 100%, 77%);
  color: hsl(44, 100%, 29%);
}
.message.is-danger {
  background-color: hsl(348, 86%, 96%);
}
.message.is-danger .message-header {
  background-color: hsl(348, 86%, 61%);
  color: #fff;
}
.message.is-danger .message-body {
  border-color: hsl(348, 86%, 61%);
  color: hsl(348, 86%, 43%);
}

.message-header {
  align-items: center;
  background-color: hsl(0, 0%, 29%);
  border-radius: 4px 4px 0 0;
  color: #fff;
  display: flex;
  font-weight: 700;
  justify-content: space-between;
  line-height: 1.25;
  padding: 0.75em 1em;
  position: relative;
}
.message-header .delete {
  flex-grow: 0;
  flex-shrink: 0;
  margin-left: 0.75em;
}
.message-header + .message-body {
  border-width: 0;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.message-body {
  border-color: hsl(0, 0%, 86%);
  border-radius: 4px;
  border-style: solid;
  border-width: 0 0 0 4px;
  color: hsl(0, 0%, 29%);
  padding: 1.25em 1.5em;
}
.message-body code,
.message-body pre {
  background-color: hsl(0, 0%, 100%);
}
.message-body pre code {
  background-color: transparent;
}

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