@import url('https://fonts.googleapis.com/css2?family=Lemon&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Comfortaa&display=swap');


/* reset default css */
html, body, div, span, applet, object, iframe,
 p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}


body {
    background-color: #F0F4FC;
  }

  .bold {
    font-weight: 900;
  }

  
.justify{
  text-align: justify;
  text-justify: inter-word;
}

/* vertical spacing  */

.azr5 {
    padding-top: 5px;
  }
  .azr10 {
    padding-top: 10px;
  }
  .azr15 {
    padding-top: 15px;
  }
  .azr20 {
    padding-top: 20px;
  }
  .azr25 {
    padding-top: 25px;
  }
  .azr30 {
    padding-top: 30px;
  }
  .azr40 {
    padding-top: 40px;
  }
  .azr100 {
    padding-top: 100px;
  }


  
  /* color */
  .primary-gradient{
    /* background-image: linear-gradient(90deg, rgba(0,82,212,1) 0%, rgba(101,199,247,1) 50%, rgba(156,236,251,1) 100%); */
        background-image: linear-gradient(90deg, #0A132A, #1F397D 25%);

  }


    /* font */   

    .primary-font{
      font-family: 'Lemon', serif;
    }
    .secondary-font{
        font-family: 'Comfortaa', sans-serif;
    }


/* mobile and destop views */
/*Hide in mobile screen*/
@media (max-width: 767px) {
  .hidden-mobile {
    display: none;
  }
}

/*Hide in desktop screen*/
@media (min-width: 960px) {
  .hidden-desktop {
    display: none;
  }
}

/*show in mobile screen*/
@media (max-width: 767px) {
  .show-mobile {
    display: block;
  }
}


/* mobile setup */
.mobile-body {
  margin: 0 auto;
  color: #555555;    
  text-decoration: none;
  max-width: 450px;
  text-align: center;
  background-color:#F8FAFD;
  box-shadow: 1px 1px 15px rgba(107, 128, 168, 0.2);
  }
  