* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "Zen Kaku Gothic New", sans-serif;
  color: #4e4e4e;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* #### Generated By: http://font.download #### */

@font-face {
  font-family: 'Zen Kaku Gothic New Regular';
  font-style: normal;
  font-weight: normal;
  src: local('Zen Kaku Gothic New Regular'), url('../fonts/ZenKakuGothicNew-Regular.woff') format('woff');
}

@font-face {
  font-family: 'Zen Kaku Gothic New Light';
  font-style: normal;
  font-weight: normal;
  src: local('Zen Kaku Gothic New Light'), url('../fonts/ZenKakuGothicNew-Light.woff') format('woff');
}

@font-face {
  font-family: 'Zen Kaku Gothic New Medium';
  font-style: normal;
  font-weight: normal;
  src: local('Zen Kaku Gothic New Medium'), url('../fonts/ZenKakuGothicNew-Medium.woff') format('woff');
}

@font-face {
  font-family: 'Zen Kaku Gothic New Bold';
  font-style: normal;
  font-weight: normal;
  src: local('Zen Kaku Gothic New Bold'), url('../fonts/ZenKakuGothicNew-Bold.woff') format('woff');
}

@font-face {
  font-family: 'Zen Kaku Gothic New Black';
  font-style: normal;
  font-weight: normal;
  src: local('Zen Kaku Gothic New Black'), url('../fonts/ZenKakuGothicNew-Black.woff') format('woff');
}

/* Generic Family Definitions */
@font-face {
  font-family: 'Zen Kaku Gothic New';
  font-style: normal;
  font-weight: 300;
  src: local('Zen Kaku Gothic New Light'), url('../fonts/ZenKakuGothicNew-Light.woff') format('woff');
}

@font-face {
  font-family: 'Zen Kaku Gothic New';
  font-style: normal;
  font-weight: 400;
  src: local('Zen Kaku Gothic New Regular'), url('../fonts/ZenKakuGothicNew-Regular.woff') format('woff');
}

@font-face {
  font-family: 'Zen Kaku Gothic New';
  font-style: normal;
  font-weight: 500;
  src: local('Zen Kaku Gothic New Medium'), url('../fonts/ZenKakuGothicNew-Medium.woff') format('woff');
}

@font-face {
  font-family: 'Zen Kaku Gothic New';
  font-style: normal;
  font-weight: 700;
  src: local('Zen Kaku Gothic New Bold'), url('../fonts/ZenKakuGothicNew-Bold.woff') format('woff');
}

@font-face {
  font-family: 'Zen Kaku Gothic New';
  font-style: normal;
  font-weight: 900;
  src: local('Zen Kaku Gothic New Black'), url('../fonts/ZenKakuGothicNew-Black.woff') format('woff');
}

/* Outfit Definitions */
@font-face {
  font-family: 'Outfit';
  font-style: normal;
  font-weight: 500;
  src: url('../fonts/outfit-v15-latin-500.woff2') format('woff2');
}

@font-face {
  font-family: 'Outfit';
  font-style: normal;
  font-weight: 600;
  src: url('../fonts/outfit-v15-latin-600.woff2') format('woff2');
}

html {
  scroll-behavior: smooth;
}

img {
  width: 100%;
  height: auto;
}

a {
  text-decoration: none;
  color: #4e4e4e;
}

button {
  cursor: pointer;
  background-color: transparent;
  border: none;
}

.is-md-show {
  display: none;
}

header,
main,
section {
  width: 100%;
  position: relative;
  z-index: 1;
}

@media (max-width: 768px) {
  .is-md-show {
    display: block !important;
  }

  .is-md-hide {
    display: none !important;
  }
}

body {
  min-height: 100vh;
  background-image: url("./assets/img/bg.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}


.fixed-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-image: url("../img/gra-bg.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  z-index: -1;
  /* stays behind content */
}

.fixed-bg::after {
  content: "";
  position: absolute;
  inset: 0;
}

.fixed-bg {
  animation: fadeIn 1.5s ease forwards;
}


@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}