body {
    font-size: 16px;
    font-family: 'Montserrat', sans-serif;
    color: white;
    background-color: #111111;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
a {
    font-family: 'Montserrat', sans-serif;
    color: white;
    font-weight: 300;
}

strong {
    font-weight: 600;
}

h1 {
    font-size: 5em;
}

h1.gradient {
    font-size: 5em;
    background: -webkit-gradient(linear, right top, left top, from(#52c9cb), color-stop(#006dff), to(#f44463));
    background: -o-linear-gradient(right, #52c9cb, #006dff, #f44463);
    background: linear-gradient(270deg, #52c9cb, #006dff, #f44463);
    background-size: 600% 600%;
    -webkit-animation: GradientAnimate 30s ease infinite;
    animation: GradientAnimate 30s ease infinite;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.page-hero {
    width: 100%;
    min-height: 100vh;
    padding: 0px;
    margin: 0px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.footer {
    text-align: center;
    padding: 1em;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: relative;

}

/* .page-hero {
    min-width: 100vw;
    min-height: 100vh;
    padding: 2em;
    margin: 0px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
} */

@-webkit-keyframes GradientAnimate {
    0% {
        background-position: 0% 50%
    }

    50% {
        background-position: 100% 50%
    }

    100% {
        background-position: 0% 50%
    }
}

@-moz-keyframes GradientAnimate {
    0% {
        background-position: 0% 50%
    }

    50% {
        background-position: 100% 50%
    }

    100% {
        background-position: 0% 50%
    }
}

@-o-keyframes GradientAnimate {
    0% {
        background-position: 0% 50%
    }

    50% {
        background-position: 100% 50%
    }

    100% {
        background-position: 0% 50%
    }
}

@keyframes GradientAnimate {
    0% {
        background-position: 0% 50%
    }

    50% {
        background-position: 100% 50%
    }

    100% {
        background-position: 0% 50%
    }
}

.container {
    text-align: center;
    max-width: 1000px;
    z-index: 5;
    padding: 2em;
}

.video-overlay {
    background-color: rgba(0,0,0,0.18);
    width: 100%;
    height: 100%;
    z-index: 4;
    position: absolute;
    top: 0;
    left: 0;
}

.video-container {
    width: auto;
    height: 100%;
    overflow: hidden;
    z-index: 3;
    position: absolute;
    top: 0;
    left: 0;
    margin: 0;
    padding: 0;
}

.video {
    width: auto;
    height: 100%;
    z-index: 3;
    padding: 0;
    margin: 0;
}

.pill {
    font-size: 1.3em;
    padding: 0.4em;
    margin: 1.5em;

}

h4 {
    font-size: 2em;
}


.btn-grad {background-image: linear-gradient(to right, #FF512F 0%, #DD2476  51%, #FF512F  100%)}
.btn-grad {
   margin: 1em;
   padding: 15px 45px;
   text-align: center;
   text-transform: uppercase;
   transition: 0.5s;
   background-size: 200% auto;
   color: white;            
   border-radius: 5px;
   display: block;
   text-decoration: none;
   width: auto;
   display: inline-block;
 }

 .btn-grad:hover {
   background-position: right center; /* change the direction of the change here */
   color: #fff;
   text-decoration: none;
 }


 .btn-grad2 {background-image: linear-gradient(to right, #02AAB0 0%, #00CDAC  51%, #02AAB0  100%)}
 .btn-grad2 {
    margin: 1em;
    padding: 15px 45px;
    text-align: center;
    text-transform: uppercase;
    transition: 0.5s;
    background-size: 200% auto;
    color: white;            
    border-radius: 5px;
    display: inline-block;
    text-decoration: none;
  }

  .btn-grad2:hover {
    background-position: right center; /* change the direction of the change here */
    color: #fff;
    text-decoration: none;
  }

  img.logo {
      width: 100%;
      max-width: 400px;
      height: auto;
      margin-left: 3em;
      margin-right: 3em;
      margin-bottom: 1em;
  }
  
 


