/* =========================
   Base
========================= */

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, sans-serif;
  color: #222222;
  background: #ffffff;
}

body.mobile-menu-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

img,
svg {
  display: block;
}

.container {
  width: auto;
  max-width: none;
  margin-left: 60px;
  margin-right: 60px;
  padding-left: 18px;
  padding-right: 18px;
}

.placeholder-image,
.placeholder-logo {
  border: 1px dashed #d4d4d4;
  background: #ffffff;
  color: #9a9a9a;
  font-size: 12px;
  font-weight: 600;
  text-align: center;
}
