@import "../fonts/fonts.css";
::-webkit-scrollbar {
  width: 1px;
  height: 1px;
}

::-webkit-scrollbar-button {
  width: 1px;
  height: 1px;
}

* {
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  text-rendering: optimizeLegibility;
  backface-visibility: hidden;
  border-radius: 0px;
  font-smoothing: subpixel-antialiased;
  -webkit-text-size-adjusment: none;
  -webkit-overflow-scrolling: touch;
  -webkit-padding-start: 0px;
  -webkit-tab-highlight-color: rgba 0, 0, 0, 0;
  line-height: 1.3;
}

*:focus, *:active, *:visited {
  outline: none;
  outline-width: 0;
}

strong {
  font-weight: bold;
}

a {
  color: #111111;
  text-decoration: none;
  display: block;
}

a:hover {
  cursor: pointer;
}

ul, li {
  padding: 0;
  margin: 0;
  list-style: none;
}

select, input {
  background: none;
  border: none;
  border-radius: 0px;
  -moz-appearance: none;
       appearance: none;
  -webkit-border-radius: 0;
  appearance: none;
  -webkit-appearance: none;
}

img {
  display: block;
  width: 100%;
  max-width: 100%;
  border: none;
}

.left {
  float: left;
}

.right {
  float: right;
}

.clear {
  clear: both;
}

.clear::after {
  display: block;
  width: 0px;
  height: 0px;
  content: "";
  clear: both;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: normal;
  margin: 0;
}

h5 {
  font-size: 1.2rem;
  color: #111111;
  margin-bottom: 10px;
  text-transform: uppercase;
  font-family: "Century Schoolbook", sans-serif;
  font-weight: bold;
}

h2 {
  font-size: 3.5rem;
  color: #9F7308;
  margin-bottom: 20px;
  position: relative;
  line-height: 1.2;
  font-family: "Century Schoolbook", sans-serif;
  font-weight: bold;
}

h2::after {
  position: absolute;
  top: 100%;
  width: 10%;
  height: 3px;
  background: #DAA054;
  left: 0;
  content: "";
}

h2.border-center::after {
  position: absolute;
  top: 100%;
  width: 10%;
  height: 3px;
  background: #DAA054;
  left: 50%;
  transform: translateX(-50%);
  content: "";
}

p {
  font-size: 1.2rem;
  color: #111111;
  line-height: 1.5;
  font-family: "avenirbook", sans-serif;
}

html, body {
  font: 14px "Century Schoolbook", sans-serif;
  margin: 0px;
  height: 100%;
  width: 100%;
  position: relative;
  background: #E8E6E1;
}

html.noscroll, body.noscroll {
  height: 100%;
  width: 100%;
  overflow: hidden;
}

.wrapper {
  width: 100%;
  max-width: 1200px;
  margin: 0px auto;
  box-sizing: border-box;
  padding: 0 20px;
}

header {
  width: 100%;
  padding: 20px 0px;
  box-sizing: border-box;
  position: fixed;
  top: 0px;
  left: 0px;
  z-index: 1000;
}
header .wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header .hleft .logo {
  width: 100px;
  display: block;
}
header .hright {
  display: flex;
  align-items: center;
}
header nav ul {
  display: flex;
  gap: 30px;
}
header nav ul li a {
  font-size: 1.2rem;
  color: #111111;
  font-family: "Century Schoolbook", sans-serif;
  font-weight: bold;
}

footer * {
  text-align: center;
}
footer img {
  max-width: 120px;
  margin: 20px auto;
}
footer .footbot {
  background: #9F7308;
  color: #fff;
  padding: 20px 0;
}

.cover {
  padding: 100px 0;
}

.m-close, .m-trigger {
  display: none;
}
.m-close svg, .m-trigger svg {
  width: 25px;
}

@media only screen and (min-width : 700px) and (max-width: 899px) {
  header {
    position: relative;
  }
  header .m-trigger, header .m-close {
    display: block;
    position: absolute;
    top: 30px;
    z-index: 999;
  }
  header .m-trigger {
    left: 20px;
  }
  header .m-close {
    right: 20px;
  }
  header .hleft {
    position: relative;
    z-index: 9999;
    margin: 0 auto;
  }
  header .hleft .logo {
    width: 70px;
  }
  header nav {
    position: fixed;
    background: rgba(219, 167, 98, 0.65);
    width: 100vw;
    bottom: 0;
    box-sizing: border-box;
    padding: 20px;
    left: 0;
    height: 100%;
    -webkit-backdrop-filter: blur(15px);
            backdrop-filter: blur(15px);
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    visibility: hidden;
    opacity: 0;
    transition: all linear 0.2s 0.2s;
  }
  header nav ul {
    flex-direction: column;
    margin-top: -20vh;
    transform: translate(0, -100%);
    transition: all linear 0.2s 0.2s;
  }
  header nav ul a {
    font-size: 1.5rem;
    text-align: center;
  }
  header .hright {
    display: none;
  }
  header nav.active {
    visibility: visible;
    opacity: 1;
  }
  header nav.active ul {
    transform: translate(0);
    transition: all linear 0.4s 0.4s;
  }
}
@media only screen and (max-width : 500px) {
  header {
    position: relative;
  }
  header .m-trigger, header .m-close {
    display: block;
    position: absolute;
    top: 30px;
    z-index: 999;
  }
  header .m-trigger {
    left: 20px;
  }
  header .m-close {
    right: 20px;
  }
  header .hleft {
    position: relative;
    z-index: 9999;
    margin: 0 auto;
  }
  header .hleft .logo {
    width: 70px;
  }
  header nav {
    position: fixed;
    background: rgba(219, 167, 98, 0.65);
    width: 100vw;
    bottom: 0;
    box-sizing: border-box;
    padding: 20px;
    left: 0;
    height: 100%;
    -webkit-backdrop-filter: blur(15px);
            backdrop-filter: blur(15px);
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    visibility: hidden;
    opacity: 0;
    transition: all linear 0.2s 0.2s;
  }
  header nav ul {
    flex-direction: column;
    margin-top: -20vh;
    transform: translate(0, -100%);
    transition: all linear 0.2s 0.2s;
  }
  header nav ul a {
    font-size: 1.5rem;
    text-align: center;
  }
  header .hright {
    display: none;
  }
  header nav.active {
    visibility: visible;
    opacity: 1;
  }
  header nav.active ul {
    transform: translate(0);
    transition: all linear 0.4s 0.4s;
  }
  footer .footbot {
    padding: 20px;
  }
}/*# sourceMappingURL=core.css.map */