@font-face {
  font-family: 'Mulish';
  font-style: normal;
  font-weight: normal;
  src: url('fonts/Mulish-Regular.woff') format('woff');
}
@font-face {
  font-family: 'Mulish';
  font-style: italic;
  font-weight: normal;
  src: url('fonts/Mulish-Italic.woff') format('woff');
}
@font-face {
  font-family: 'Mulish';
  font-style: normal;
  font-weight: 500;
  src: url('fonts/Mulish-Medium.woff') format('woff');
}
@font-face {
  font-family: 'Mulish';
  font-style: italic;
  font-weight: 500;
  src: url('fonts/Mulish-MediumItalic.woff') format('woff');
}
@font-face {
  font-family: 'Mulish';
  font-style: normal;
  font-weight: bold;
  src: url('fonts/Mulish-Bold.woff') format('woff');
}
@font-face {
  font-family: 'Mulish';
  font-style: italic;
  font-weight: bold;
  src: url('fonts/Mulish-BoldItalic.woff') format('woff');
}
@font-face {
  font-family: 'Mulish';
  font-style: normal;
  font-weight: 900;
  src: url('fonts/Mulish-Black.woff') format('woff');
}
@font-face {
  font-family: 'Mulish';
  font-style: italic;
  font-weight: 900;
  src: url('fonts/Mulish-BlackItalic.woff') format('woff');
}
body, html {
  height: 100%; 
  scroll-behavior: smooth; 
}
body {
  font-family: 'Mulish', sans-serif;
  font-weight: normal;
  font-size: 16px;
  line-height: 1.8;
  background-color: #C8A46D;
  color: #2B2B2B;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
*, *::before, *::after {
  box-sizing: border-box;
}
* {
  margin: 0; 
  padding: 0; 
  scrollbar-width: thin;
  scrollbar-color: #664E2A #eccd9f;
}
::-webkit-scrollbar {
  width: 0.5rem;
}
::-webkit-scrollbar-track {
  background-color: #eccd9f;
}
::-webkit-scrollbar-thumb {
  background-color: #664E2A;
}
::-moz-selection,
::selection {
  background-color: #fff;
  color: #1E201E;
}
.text-center {
  text-align: center;
}
section {
  padding-top: 5rem;
  padding-bottom: 2rem;
}
.container {
  width: 50rem;
  max-width: 100%;
  margin: 0 auto;
  padding-left: 2rem;
  padding-right: 2rem;
}
.row {
  margin-left: -1rem;
  margin-right: -1rem;
}
.row:not(:last-of-type) {
  margin-bottom: 3rem;
}
.last-row {
  margin-top: 4rem;
}
.col {
  flex: 1 0 0%;
  width: 100%;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.subtitle {
  font-size: 1.125rem;
  line-height: 1.3;
  font-weight: bold;
  text-transform: uppercase;
  color: #fff;
  letter-spacing: 0.125rem;
  margin-top: 0;
  margin-bottom: 0.5rem;
}
.title {
  font-size: 2.5rem;
  line-height: 1.3;
  font-weight: 900;
  color: #1E201E;
  margin-top: 0;
  margin-bottom: 1rem;
}
.title.main-title {
  font-size: 3rem;
}
.mb-32 {
  margin-bottom: 2rem;
}
p {
  margin-top: 0;
  margin-bottom: 1rem;
}
p:last-of-type {
  margin-bottom: 0;
}
strong {
  font-weight: bold;
  color: #1E201E;
}
p.large {
  font-size: 1.125rem;
  font-weight: bold;
  color: #1E201E;
}
img {
  font-style: italic;
  width: 36rem;
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}
#logo {
  max-width: 12rem;
  mix-blend-mode: multiply;
}
article:not(:last-child) {
  padding-bottom: 2rem;
  margin-bottom: 2rem;
  border-bottom: 1px dashed rgba(0,0,0,.1);
}
article .title {
  font-size: 2rem;
}
article p a, .single-link {
  font-weight: bold;
  color: #252725;
  text-decoration: none;
  border-bottom: 1px dotted #1E201E;
}
article p a:hover, article p a:focus-visible, .single-link:hover, .single-link:focus-visible {
  border-bottom-style: solid;
}
article .expand-btn {
  font-size: 1.125rem;
  font-weight: bold;
  color: #252725;
  text-decoration: none;
  border: none;
  border-bottom: 2px dotted #1E201E;
  background-color: transparent;
  cursor: pointer;
}
article .expand-btn:hover, article .expand-btn:focus-visible {
  border-bottom: 2px solid #1E201E;
}
.toggle-btn {
  display: inline-flex;
  position: relative;
}
.toggle-btn input {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  opacity: 0;
  visibility: hidden;
}
.toggle-btn label {
  display: inline-flex;
  align-items: center;
  height: 2.625rem;
  width: 5rem;
  border-radius: 1.5rem;
  background-color: #1E201E;
  position: relative;
  cursor: pointer;
  transition: all ease .3s;
  overflow: hidden;
  border: 1px solid transparent;
  box-sizing: content-box;
}
.toggle-btn label::before {
  content: '';
  width: 2rem;
  height: 2rem;
  background-color: #fff;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 2.6875rem;
  transform: translateY(-50%);
  transition: all ease .3s;
}
.toggle-btn label::after {
  content: '';
  width: 1.75rem;
  height: 1.75rem;
  background-color: #1E201E;
  border-radius: 50%;
  position: absolute;
  top: 0.18755rem;
  left: 2.5rem;
  transition: all ease .3s;
}
.toggle-btn input:checked ~ label {
  background-color: #fff;
  border-color: #dedede;
}
.toggle-btn input:checked ~ label::before {
  left: 0.3125rem;
  background-color: #C8A46D;
}
.toggle-btn input:checked ~ label::after {
  left: -1.75rem;
  background-color: #fff;
}
article .text-wrapper {
  display: block;
  margin-bottom: 1rem;
}
article .text-wrapper:not(.expanded) {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media only screen and (max-width: 600px) {
  section {
    padding-top: 4rem;
    padding-bottom: 2rem;
  }
  .title {
    font-size: 2rem;
    line-height: 1.2;
  }
  .title.main-title {
    font-size: 2.5rem;
  }
}
@media only screen and (max-width: 419px) {
  section {
    padding-top: 3rem;
    padding-bottom: 2rem;
  }
  .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .title {
    font-size: 1.75rem;
  }
  .title.main-title {
    font-size: 2.25rem;
  }
}
body.light-theme {
  background: urL("images/pattern.png");
  background-repeat: repeat;
  background-position: center;
  background-color: #fff;
  color: #424242;
}
body.light-theme .subtitle {
  color: #1E201E;
}
body.light-theme .title {
  color: #C8A46D;;
}