*{
    outline: none;
}
html{
    overflow-x: hidden;
}
body{
    background: #F7FCFF;
    overflow-x: hidden;
}
header{
    background: linear-gradient(180deg, #1995F0 0%, #0072C6 100%);
    padding: 20px 0;
    border-bottom: 1px solid #249ef7;
    position: fixed;
    width: 100%;
}
p, a, span, button, label, small, textarea, select, option, em, strong {
  font-family: 'Nunito Sans', sans-serif;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
}
.header-slogan{
    color: #FFF;
    font-size: 20px;
    font-weight: lighter;
    display: flex;
    gap: 0 10px;
}
#hero{
    background: url(/documentation/images/hero.jpg) top center repeat-x;
    height: 100vh;
    display: flex;
    overflow: hidden;
    background-size: cover;
}
#hero h1{
    color: #FFFFFF;
}
#hero h1 span{
    font-family: 'Montserrat', sans-serif;
    color: #D023E8;
    margin-bottom: 1em;
}
#hero p{
    font-size: 20px;
    color: #FFFFFF;
    margin-bottom: 1.5em;
}
#hero .btn{
    font-family: 'Montserrat', sans-serif;
    background: linear-gradient(180deg, #e33cff 0%, #9a0cb3 100%);
    border-radius: 6px;
    padding: 12px 1.5em;
    font-size: 18px;
    font-weight: bold;
    border:0;
    min-width: 300px;
}
#hero .btn:hover{
    box-shadow: 0px 1px 19px #c434dd;
}
.hero-call-action-img img{
    position: relative;
    bottom: -20px;    
}
.default-title{
    font-weight: bold;
    color: #0180DE;
}
.bg-jumbotron{
    background: #1f004ccc;
    padding: 1.5em;
    border-radius: 10px;
    border: 2px solid #4400a3;
    box-shadow: 2px 2px 22px 18px #610cd947;
}
/*/ Small devices (landscape phones, 576px and up)/*/
@media (max-width: 767px){
    header{
        position: inherit;
    }
    #hero{
        height: auto;
    }
    #hero h1{
        margin-top: 2em;
    }
    .bg-jumbotron{
        margin: 1em 0;
        height: auto !important;
    }
    #hero .btn{
        margin-left: 0 !important;
        width: 100%;
        margin-bottom: 1em;
    }
}