/* GLOBAL STYLES */

:root {
  --black: #090706;
  --red: #e54b37;
  --cyan: #85c0c6;
  --yellow: #ef8903;
}

html {
  font-feature-settings: "kern"; /* turns on kerning */
  text-rendering: optimizeLegibility; /* emphasise on legibility when rendering, turns on ligatures and kerning */
  -webkit-font-smoothing: antialiased; /* apply font anti-aliasing for Webkit on OSX */
  -moz-osx-font-smoothing: grayscale; /* apply font anti-aliasing for Firefox on OSX */
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  box-sizing: border-box;
  scroll-behavior: smooth;
  min-height: 100%;
  min-height: -webkit-fill-available;
  /* -ms-overflow-style: none; /* IE 10+ */
  /* scrollbar-width: none; /*Firefox */
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  line-height: inherit;
}

body {
  font-size: 14px;
  font-weight: 400;
  color: var(--black);
  line-height: normal;
  line-height: 1;
  min-height: inherit;
  font-family: var(--font-body);
  letter-spacing: -0.05em;
  --head-padding: 25px;
  --side-padding: 27px;
  --font-body: "BC", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.wrapper {
  min-height: inherit;
  min-height: 100vh;
  min-height: 100svh;
}

.wrapper > section,
.wrapper > * {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.sub-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 0 var(--side-padding);
}

.boxed {
  max-width: 1125px;
}

.first-section {
  padding-top: var(--head-padding);
}

.title {
  font-size: 16px;
}

@media (min-width: 600px) {
  body {
    font-size: 21px;
  }

  .title {
    font-size: 39px;
  }
}

svg {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  fill: inherit;
}

.icon {
  display: flex;
  justify-content: center;
  align-items: center;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.5s ease;
}

.full,
img.full,
video.full {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.full.contain {
  object-fit: contain;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
}

.all-caps {
  text-transform: uppercase;
}
