* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  width: 100%;
  height: 100%;
  max-width: 1440px;
  margin: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow-x: hidden;
  color: #606060;
  position: relative;
  font-family: "Inter";
}

a {
  text-decoration: none;
  color: #7c7c7c;
}

button {
  cursor: pointer;
}

ul,
li {
  list-style: none;
}

.is-md-show {
  display: none;
}

.dir-reverse {
  flex-direction: row-reverse;
}

.arrow-white {
  padding-top: 1px;
  padding-left: 2px;
}
.arrow-white img {
  width: 10px !important;
  height: auto;
}

@media (max-width: 768px) {
  .is-md-show {
    display: block;
  }

  .is-md-hide {
    display: none;
  }
}
