@font-face {
  font-family: "Montserrat";
  font-weight: 900;
  src: url("../fonts/Montserrat-Black.ttf") format("truetype");
}
@font-face {
  font-family: "Montserrat";
  font-weight: 800;
  src: url("../fonts/Montserrat-ExtraBold.ttf") format("truetype");
}
@font-face {
  font-family: "Montserrat";
  font-weight: 700;
  src: url("../fonts/Montserrat-Bold.ttf") format("truetype");
}
@font-face {
  font-family: "Montserrat";
  font-weight: 600;
  src: url("../fonts/Montserrat-SemiBold.ttf") format("truetype");
}
@font-face {
  font-family: "Montserrat";
  font-weight: 500;
  src: url("../fonts/Montserrat-Medium.ttf") format("truetype");
}
@font-face {
  font-family: "Montserrat";
  font-weight: 400;
  src: url("../fonts/Montserrat-Regular.ttf") format("truetype");
}
@font-face {
  font-family: "Montserrat";
  font-weight: 300;
  src: url("../fonts/Montserrat-Light.ttf") format("truetype");
}
@font-face {
  font-family: "Montserrat";
  font-weight: 200;
  src: url("../fonts/Montserrat-ExtraLight.ttf") format("truetype");
}
@font-face {
  font-family: "Montserrat";
  font-weight: 100;
  src: url("../fonts/Montserrat-Thin.ttf") format("truetype");
}
*,
*::before,
*::after {
  box-sizing: border-box;
}

*:focus {
  outline: 1px solid black !important;
}

body.using-mouse :focus {
  outline: none !important;
}

html {
  font-size: 14px;
  line-height: 18px;
  -webkit-text-size-adjust: 100%;
}

input,
select,
textarea {
  max-width: 100%;
}

body {
  margin: 0;
  font-weight: 400;
  color: black;
  font-family: "Montserrat", sans-serif;
  max-width: 2000px;
  margin: auto;
  position: relative;
}
body.no-scroll {
  overflow: hidden;
}

figure {
  margin: 0;
}

img,
svg {
  height: auto;
  max-width: 100%;
  vertical-align: middle;
}

nav ul {
  padding: 0;
  margin: 0;
  list-style: none;
}
nav li {
  display: inline-block;
}

.screen-reader-text {
  width: 1px;
  height: 1px;
  padding: 0;
  position: absolute;
  margin: -1px;
  word-wrap: normal !important;
  border: 0;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  -webkit-clip-path: inset(50%);
          clip-path: inset(50%);
}

a.skip-link {
  left: -999px;
  position: absolute;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
  z-index: -999;
}

a.skip-link:focus,
a.skip-link:active {
  color: #fff;
  background-color: #000;
  left: 20px;
  top: 20px;
  width: 150px;
  height: auto;
  overflow: auto;
  margin: 0;
  padding: 5px;
  border-radius: 8px;
  border: 2px solid #B8CD57;
  text-align: center;
  font-size: 16px;
  z-index: 999;
}

a {
  color: #B8CD57;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

.container,
.wp-block-group__inner-container {
  max-width: 1170px;
  margin: auto;
  padding: 0 15px;
}

.container-xl,
.wp-block-group__inner-container-xl {
  max-width: 1330px;
  margin: auto;
  padding: 0 15px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Montserrat", sans-serif;
  font-weight: normal;
  font-weight: 600;
  position: relative;
  z-index: 1;
}

h1 {
  font-size: 30px;
  line-height: 1.4;
}

h2 {
  font-size: 20px;
  line-height: 1.4;
}

h3 {
  font-size: 16px;
  font-weight: bold;
  line-height: 1.4;
}

h1.is-style-title-large,
h2.is-style-title-large,
h3.is-style-title-large,
h4.is-style-title-large,
h5.is-style-title-large,
h6.is-style-title-large {
  font-size: 25px;
  line-height: 30px;
  letter-spacing: 2px;
}
@media (min-width: 992px) {
  h1.is-style-title-large,
  h2.is-style-title-large,
  h3.is-style-title-large,
  h4.is-style-title-large,
  h5.is-style-title-large,
  h6.is-style-title-large {
    font-size: 45px;
    line-height: 55px;
    letter-spacing: 6.7px;
  }
}

.animation--fade {
  opacity: 0;
  transition: opacity 0.75s ease;
}
.animation--fade.animated {
  opacity: 1;
}
.animation--slideup {
  transform: translateY(30px);
  opacity: 0;
  transition: transform 0.75s ease, opacity 0.75s ease, top 0.75s ease;
}
.animation--slideup.animated {
  transform: translateY(0);
  opacity: 1;
}
.animation--slideup.n-trans {
  position: relative;
  top: 50px;
  transform: none;
  transition: opacity 0.75s ease, top 0.75s ease;
}
.animation--slideup.n-trans.animated {
  top: 0;
  transform: none;
}
.animation--slidedown {
  transform: translateY(-30px);
  opacity: 0;
  transition: transform 0.75s ease, opacity 0.75s ease;
}
.animation--slidedown.animated {
  transform: translateY(0);
  opacity: 1;
}
.animation--slidedown.n-trans {
  position: relative;
  top: -50px;
  transform: none;
  transition: opacity 0.75s ease, top 0.75s ease;
}
.animation--slidedown.n-trans.animated {
  top: 0;
  transform: none;
}
.animation--growth {
  width: 0;
  transition: width 1s ease;
}
.animation--growth.animated {
  width: 100%;
}
.animation--delay-def {
  transition-delay: 0.5s;
}
.animation--delay-1 {
  transition-delay: 1s;
}
.animation--delay-2 {
  transition-delay: 1.5s;
}/*# sourceMappingURL=style.css.map */