/* TABLE OF CONTENTS */
/* 00. Global Styles */
/* 01. Header */
/* 02. Hero */
/* 03. Scroller */
/* 04. Footer */
/* =========================== */
/* =========================== */
/* 00. Global Styles */
/* =========================== */
body {
  font-size: 1rem;
  font-family: "Open Sans", sans-serif;
  color: #222;
}

h1,
.h1,
h2,
.h2,
h3,
.h3 {
  font-family: "Bebas Neue", sans-serif;
  font-weight: 400;
  letter-spacing: 8px;
}

h1,
.h1 {
  font-size: 4.5rem;
}

h2,
.h2 {
  font-size: 3rem;
}

h3,
.h3 {
  font-size: 2rem;
}

section {
  padding: 80px 0;
}
section h2 {
  text-align: center;
}

.btn {
  border-radius: 30px;
  padding: 12px 30px;
}
.btn.btn-white {
  background-color: white;
  color: #222;
}
.btn.btn-white:hover {
  background-color: transparent;
  color: white;
  border: 1px solid white;
}
.btn:focus-visible {
  outline: 2px solid #999;
}

/* ===========================  */
/* 01. Header                   */
/* ===========================  */
header .brand {
  max-width: 270px;
}

/* ===========================  */
/* 02. Hero                     */
/* ===========================  */
section.hero {
  padding: 0;
}

.hero {
  text-align: center;
  position: relative;
}

.hero-bg {
  background-image: url(../images/bg-hero.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}

.hero-main {
  position: relative;
  z-index: 3;
}
.hero-main h1 {
  color: white;
  padding-top: 90px;
  padding-bottom: 50px;
}
.hero-main .blank-tool {
  margin-bottom: -90px;
  -webkit-transform: translateX(10px);
          transform: translateX(10px);
}

.hero-divider {
  background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDBweCIgdmlld0JveD0iMCAwIDEyODAgMTQwIiBwcmVzZXJ2ZUFzcGVjdFJhdGlvPSJub25lIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPjxnIGZpbGw9IiNmZmZmZmYiPjxwYXRoIGQ9Ik02NDAgMTM5TDAgMHYxNDBoMTI4MFYwTDY0MCAxMzl6Ii8+PC9nPjwvc3ZnPg==);
  background-size: 100% 100px;
  bottom: 0;
  height: 100px;
  z-index: 2;
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
  display: block;
  position: absolute;
  pointer-events: none;
  width: 100%;
  left: 0;
  right: 0;
}

/* ===========================  */
/* 03. Scroller                 */
/* ===========================  */
#toggleButton {
  border: 2px solid #999;
  background-color: #777;
  width: 40px;
  height: 40px;
  border-radius: 40px;
  font-size: 21px;
  text-align: center;
  padding-top: 0;
}
#toggleButton:focus-visible {
  outline: 2px solid rgb(0, 89, 172);
}

#scroller {
  width: 100%;
  height: min(20em, 100vh);
  display: inline-block;
  white-space: nowrap;
  overflow: hidden;
  position: relative;
}
#scroller img {
  height: 100%;
  width: auto;
  display: inline-block;
}

#scroller #tag {
  height: 100%;
  -webkit-animation: scroll 40s linear infinite;
          animation: scroll 40s linear infinite;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  display: inline-block;
  font-size: 0;
}

@-webkit-keyframes scroll {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}

@keyframes scroll {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
/* ===========================  */
/* 04. Features                 */
/* ===========================  */
.features {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.features .item-small, .features .item-large {
  border: 1px solid #222;
  padding: 20px;
  -ms-flex-preferred-size: 100%;
      flex-basis: 100%;
}
.features .item-small:not(:last-child) {
  border-right-width: 0;
}
.features .item-small p {
  margin-bottom: 0;
  text-align: center;
}
.features .checkmark p {
  background-image: url(../images/icon-check.svg);
  background-repeat: no-repeat;
  background-position: left top 5px;
  padding-left: 30px;
  margin-bottom: 0;
  text-align: left;
}
.features .item-large {
  -ms-flex-preferred-size: 100%;
      flex-basis: 100%;
  margin-top: -1px;
}
.features .item-large p {
  text-align: center;
  margin-bottom: 0;
}

@media (max-width: 991px) {
  .row .features {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .row .features div.item-small {
    -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
    border-right-width: 1px;
    border-bottom-width: 0;
  }
  .row .features div.item-small.has-border {
    border-bottom: 1px solid #222;
  }
  .row .features .item-small:last-child {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
  }
}
.divider {
  height: 10px;
  background-color: #222;
  width: 160px;
  margin: 0 auto;
}

/* ===========================   */
/* 05. CTA                       */
/* ===========================   */
.cta {
  background-color: #222;
  color: #fff;
  text-align: center;
}

/* ===========================   */
/* 06. Footer                    */
/* ===========================   */
footer {
  padding: 40px 0;
}

/* ===========================   */
/* 06. Animations                */
/* ===========================   */
@-webkit-keyframes fadeInUp {
  0% {
    -webkit-transform: translateY(10%) translateX(10px);
            transform: translateY(10%) translateX(10px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0%) translateX(10px);
            transform: translateY(0%) translateX(10px);
    opacity: 1;
  }
}
@keyframes fadeInUp {
  0% {
    -webkit-transform: translateY(10%) translateX(10px);
            transform: translateY(10%) translateX(10px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0%) translateX(10px);
            transform: translateY(0%) translateX(10px);
    opacity: 1;
  }
}
.fadeInUp-animation {
  -webkit-animation: 1.5s fadeInUp;
          animation: 1.5s fadeInUp;
}

@-webkit-keyframes fadeText {
  0% {
    letter-spacing: -5px;
    opacity: 0;
  }
  100% {
    letter-spacing: 8px;
    opacity: 1;
  }
}

@keyframes fadeText {
  0% {
    letter-spacing: -5px;
    opacity: 0;
  }
  100% {
    letter-spacing: 8px;
    opacity: 1;
  }
}
@media (min-width: 999px) {
  .fadeText-animation {
    -webkit-animation: 1.5s fadeText;
            animation: 1.5s fadeText;
  }
}