/* ===== CSS RESET ===== */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    -webkit-tap-highlight-color: transparent;
  }
  
  html {
    font-size: 16px;
    scroll-behavior: smooth;
    scroll-padding-top: var(--iyeg-header-height);
  }
  
  body, html {
    font-family: "Open Sans", sans-serif;
    background-color: #000;
    color: #fff;
    overflow-x: hidden;
    line-height: 1.6;
  }


  /* about.php  */
  /* body {
    background-color: var(--iyeg-primary-black);
    color: #ffffff;
    font-family: "Inter", sans-serif;
    line-height: 1.6;
    width: 100%;
    position: relative;
    padding-top: 120px;
  } */

  /* html,
      body {
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
      } */


  img {
    max-width: 100%;
    height: auto;
  }

  a {
    text-decoration: none;
    color: inherit;
  }