/* == GENERAL == */
@import url('https://fonts.googleapis.com/css2?family=Source+Sans+Pro:wght@200;300;400;700;900&display=swap');

html,
body {
  overflow-x: hidden;
  scroll-behavior: smooth;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Source Sans Pro', sans-serif !important;
}

.show-desk {
  display: block !important;
}

.show-mob {
  display: none !important;
}

:focus-visible {
  outline: none !important;
  box-shadow: none !important;
}

p {
  color: #7a7a7a;
  font-size: 16px;
}

a:hover {
  text-decoration: none !important;
}

ul li {
  text-decoration: none;
  list-style: none;
}



/* === PAGE TITLE CSS ===  */

#top{
    padding: 3rem 0;
    background-color: #0aacf5;
}

#top h2{
    font-size: 70px;
    line-height: 80px;
    margin: 1rem 0;
    font-weight: 300;
    color: #fff;
}

#top h2 span{
    font-weight: 700;
}

/* === SECTION01 CSS ===  */

#section01 {
    padding: 3rem 0;
  }
  
  .features_meta h3 {
    font-size: 44px;
    line-height: 54px;
    font-weight: 800;
    color: #3f3f3f;
    display: inline;
    border-bottom: 2px solid #3f3f3f;
  }
  
  .features_meta02 h5 {
    font-size: 25px;
    line-height: 33px;
    margin: 2rem 0;
    font-weight: 500;
    color: #3f3f3f;
  }

  /* === RESPONSIVE CSS ===  */

  @media only screen and (max-width: 1200px) {

    a.nav-link {
      font-size: 18px;
      font-weight: 500;
      padding: 0.5rem 1.5rem 0.5rem 0 !important;
    }
  
    .nav-item i {
      font-size: 18px;
      margin-right: 4px;
    }
}

  @media only screen and (max-width: 900px) {

    .show-desk {
      display: none !important;
    }
  
    .show-mob {
      display: block !important;
    }
  }  


  @media only screen and (max-width: 600px) {

    h1,
    h2{
        font-size: 33px !important;
        line-height: 40px !important;  
    }

    h3 {
      font-size: 26px !important;
      line-height: 34px !important;
    }
  
    h4,
    h5 {
      font-size: 20px !important;
      line-height: 26px !important;
    }
  
    p,
    h6 {
      font-size: 17px !important;
      line-height: 24px !important;
    }
}
@media only screen and (max-width: 423px) {

    .features_meta02 h5 {
        margin: 1rem 0;
    }
    #section01 {
        padding: 1px !important;
    }
    #top {
        padding: 1rem 0 !important;
    }
}