/* Reset default styles */
html {
    box-sizing: border-box;
  }
  
  *,
  *::before,
  *::after {
    box-sizing: inherit;
    margin: 0;
    padding: 0;
    /* border: 0; */
    /* font-size: 100%; */
    font-family: inherit;
    vertical-align: baseline;
  }
  
  /* Apply global styles */
  body {
    font-family:'Poppins', 'Montserrat', sans-serif;
    font-size: 16px;
    line-height: 1.5;
    color: #25324B !important;
  }
  
  h1, h2, h3, h4, h5, h6 {
    font-weight: bold;
  }
  
  a {
    color: inherit;
    text-decoration: none;
  }
  
  img {
    display: block;
    max-width: 100%;
    height: auto;
  }
  
  ul, ol {
    list-style: none;
  }
  
  table {
    border-collapse: collapse;
  }
  
  button, input, select, textarea {
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
  }
  
  button {
    border: 0;
    background-color: transparent;
    cursor: pointer;
  }
  
  input, select, textarea {
    /* border: 0; */
    /* outline: 0; */
   	/* background-color: transparent; */
  }
  
  