*,
*::after,
*::before {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
  border: none;
}
* {
  position: relative;
}
html {
  position: relative;
  scroll-behavior: smooth;
  overflow-x: hidden;
}
svg {
  width: auto;
  height: auto;
  display: block;
}
body,
html {
  height: 100%;
  display: block;
  box-sizing: border-box;
  /* background-color: #666666; */
  background-color: #1c1513;
  font-size: 18px;
  font-smooth: always;
  -webkit-font-smoothing: antialiased;
  font-family: 'Gotham', sans-serif;
}
textarea {
  font-family: 'Gotham', sans-serif;
}
body {
  display: flex;
  flex-direction: column;
  height: 100vh;
}

p,
a {
  font-family: 'Gotham', sans-serif;
  font-weight: 400;
  color: white;
  position: relative;
  transition: all 0.4s cubic-bezier(0.075, 0.82, 0.165, 1);
}

a {
  text-decoration: underline;
  cursor: pointer;
  color: inherit;
  word-break: break-all;
  white-space: normal;
}
p {
  margin-bottom: 16px;
}

img {
  border-radius: 12px;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

ul,
li {
  padding: 0;
  list-style: none;
  marker: none;
}
h1,
h2,
h3,
h4,
h5 {
  font-weight: 600 !important;
  font-family: 'Gotham', sans-serif;
  color: white;
  line-height: 120%;
  margin-bottom: 16px;
}
h1 {
  font-size: 40px;
}
h2 {
  font-size: 34px;
}
h3 {
  font-size: 28px;
}
h4 {
  font-size: 20px;
}
p {
  font-size: 16px;
  line-height: 140%;
}

.section-flex {
  margin: 24px 0;
  display: flex;
  flex-direction: row;
  align-items: stretch;
  gap: 24px;
  justify-content: space-between;
  flex-wrap: wrap;
}
.section-flex.start {
  align-items: start;
}

.section-flex > * {
  flex: 0 1 47%;
}
@media (max-width: 768px) {
  .section-flex > * {
    flex: 1 1 48.5%;
  }
  .section-flex.mobile-reverse {
    flex-direction: column-reverse;
  }
}
@media (min-width: 900px) {
  h1,
  h2,
  h3,
  h4,
  h5 {
    line-height: 110%;
  }
  h1 {
    font-size: 50px;
  }
  h2 {
    font-size: 40px;
  }
  h3 {
    font-size: 28px;
  }
  h4 {
    font-size: 24px;
  }
  p {
    font-size: 18px;
  }
  section {
    padding: 50px 0 80px 0;
  }
  .section {
    padding: 50px 0 80px 0;
  }
}
