*,
*::after,
*::before {
    font-family: 'Hind', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    color: #0A4C67;
    font-size: 16px;
}

/* header{
    height: 0;
} */
.yellow-txt{
    color: #f4aa4a !important;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    font-size: inherit;
}
h4{
    margin-top: 10px;
    font-style: italic;
    color: hwb(197 4% 60% / 0.7);
}
/* START GLOBAL */
.d-flex{
  display: flex;
  align-items: center;
}
.d-none{
    display: none;
}
.d-block{
    display: block;
}
.j-center{
    justify-content: center;
}
.j-between{
    justify-content: space-between;
}
.top20{
    margin-top: 20px;
}
.center{
    text-align: center;
}

.my-50{
    margin: 50px 0;
}
.float{
    float: left;
}
p{
    text-rendering: optimizeLegibility;
}
strong{
    /* font-weight: 400; */
    font-size: inherit;
}
.w45{
    width: 45%;
}
.separator{
    width: 100%;
    height: 70px;
}
/* END GLOBAL */

/* START GOOGLE FONTS */
h1{
    font-family: 'Limelight', cursive;
    font-size: 3rem;
}
#subtitle{
    font-family: 'IM Fell Double Pica', serif !important; 
    font-size: 2rem;
}
h2{
    font-family: 'Limelight', cursive;
    font-size: 2rem;
    /* margin-bottom: 50px; */
}

/* END GOOGLE FONTS */




/* START BUTTON */
button{
    border-radius: 0px;
    padding: 18px 36px;
    display: inline-block;
    font-family: "Lucida Console", Monaco, monospace;
    font-size: 14px;
    letter-spacing: 1px;
    cursor: pointer;
    -webkit-transition: ease-out 0.4s;
    -moz-transition: ease-out 0.4s;
    transition: ease-out 0.4s; 
    color: #0A4C67;
    border: 2px solid #0A4C67;
    box-shadow: inset 0 0 0 0 #0A4C67;
}
#outer {
    width: 364px;
    margin: 50px auto 0 auto;
    text-align: center;
  }

button:hover{
    color: #fff;
    box-shadow: inset 400px 0 0 0 #0A4C67;
  }
/* START BUTTON */


/* START BANNER */
#particles-js{
    height: 100vh;
    background-image: url("../image/banner.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    position: relative;
    z-index: 5;
}
.text_banner{
  position: absolute;
  bottom: 20%;
  left: 20%;
}
/* END BANNER */


/* START BLOCK */
.all_block{
    margin-left: 10%;
    margin-right: 10%;
}
@media screen and (width >= 768px) {
    .all_block{
        margin-left: 15%;
        margin-right: 15%;
    }
    h1{
        font-size: 3rem;
    }
    #subtitle{
        font-size: 25px;
    }
}

@media screen and (width >= 992px) {
    .all_block{
        margin-left: 20%;
        margin-right: 20%;
    }
}
/* END BLOCK */