html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video,
input,
button,
select,
textarea {
  background: none;
  outline: none;
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
menu,
nav,
section {
  display: block;
}
body {
  line-height: 1;
}
/* ol, ul {
	list-style: none;
} */
blockquote,
q {
  quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: '';
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
/* general
***********************************************************************************************************************/
html {
  height: 100%;
  font-size: 100%;
  overflow-y: scroll;
  font-variant-ligatures: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body {
  background: #0b3347;
  color: #000000;
  font-family: 'Poppins', Arial, Helvetica, Sans-Serif;
  font-weight: 300;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
h1,
.as-h1 {
  color: #0a9e50;
  font-size: 1.8em;
  font-weight: 500;
  line-height: 1.3em;
  padding-bottom: 0.5em;
}
h2,
.as-h2 {
  color: #0a9e50;
  font-weight: 500;
  font-size: 1.6em;
  line-height: 1.3em;
  padding-bottom: 0.5em;
}
h3,
.as-h3 {
  color: #0a9e50;
  font-size: 1.4em;
  font-weight: 500;
  line-height: 1.3em;
}
h4,
.as-h4 {
  font-weight: 500;
  line-height: 1.3em;
  padding-bottom: 1em;
}
a,
a:hover {
  color: #0a9e50;
  text-decoration: none;
}
p {
  line-height: 1.7em;
  padding-bottom: 1em;
}
p:last-child {
  padding-bottom: 0;
}
b,
strong {
  font-weight: 500;
}
i,
em {
  font-style: italic;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
ul,
ol {
  list-style: none;
}
button {
  cursor: pointer;
}
button:active,
button:focus {
  outline: none;
  border: none;
}
/* page
***********************************************************************************************************************/
.page .ordered-list,
.page .unordered-list {
  line-height: 1.8em;
}
/* alert
***********************************************************************************************************************/
.alert {
  border-radius: 3px;
  margin-bottom: 30px;
}
.alert-primary {
  background-color: #ffffff;
  border-color: rgba(0, 0, 0, 0.1);
  color: #000000;
}
/* link
***********************************************************************************************************************/
.link__content {
  display: inline-block;
  white-space: nowrap;
  position: relative;
}
.link__content:after {
  border-top: 1px solid #0a9e50;
  content: '';
  display: block;
  width: 100%;
  height: 0;
  opacity: 0.2;
  margin-top: 0.25em;
  position: absolute;
  top: 100%;
  left: 0;
  transition: opacity 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.link:hover .link__content:after,
.link--active .link__content:after {
  opacity: 1;
}
/* more link
***********************************************************************************************************************/
.more-link {
  display: inline-block;
  font-weight: 400;
  padding-right: 1.5em;
  position: relative;
}
.more-link:after {
  display: block;
  content: "\f178";
  font-family: 'FontAwesome';
  opacity: 0.5;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}
.more-link span {
  display: inline-block;
  padding-bottom: 4px;
  position: relative;
}
.more-link span:before {
  background: #0a9e50;
  content: '';
  display: block;
  width: 100%;
  height: 1px;
  opacity: 0.5;
  position: absolute;
  bottom: 0;
  left: 0;
}
.more-link--sm {
  font-size: 0.8125em;
}
.text-light .more-link {
  color: #ffffff;
}
.text-light .more-link:after {
  color: #ffffff;
}
.text-light .more-link span:before {
  background: #ffffff;
}
html.no-touch .more-link:after {
  transition-property: opacity, margin;
  transition-duration: 150ms;
  transition-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1);
}
html.no-touch .more-link span:before {
  transition-property: opacity, margin;
  transition-duration: 150ms;
  transition-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1);
}
html.no-touch .more-link:hover:after {
  opacity: 1;
  margin-right: -0.25em;
}
html.no-touch .more-link:hover span:before {
  opacity: 1;
}
/* bg primary
***********************************************************************************************************************/
.bg-primary {
  background-color: #0a9e50 !important;
}
.bg-primary--gradient {
  background: linear-gradient(0deg, rgba(10, 158, 80, 0) 0%, rgba(121, 199, 48, 0.95) 100%);
}
/* bg light
***********************************************************************************************************************/
.bg-light {
  background-color: #ffffff !important;
}
/* bg secondary
***********************************************************************************************************************/
.bg-secondary {
  background-color: #fafafa !important;
}
/* bg tertiary
***********************************************************************************************************************/
.bg-tertiary {
  background-color: #0b3347 !important;
}
.bg-tertiary--gradient {
  background: linear-gradient(180deg, rgba(11, 51, 71, 0) 0%, rgba(14, 66, 93, 0.95) 100%);
}
/* btn
***********************************************************************************************************************/
.btn .icon {
  font-size: 0.875em;
}
.btn .icon:first-child {
  margin-right: 0.25em;
}
.btn .icon:last-child {
  margin-left: 0.25em;
}
/* btn primary
***********************************************************************************************************************/
.btn-primary {
  background: #0a9e50;
  border-color: #0a9e50;
  color: #ffffff;
}
.btn-primary:hover {
  background: #0dce68;
  border-color: #0dce68;
}
/* btn outline primary
***********************************************************************************************************************/
.btn-outline-primary {
  border-color: #0a9e50;
  color: #0a9e50;
}
.btn-outline-primary:hover {
  background: #0a9e50;
  border-color: #0a9e50;
  color: #ffffff;
}
/* text light
***********************************************************************************************************************/
.text-light h1,
.text-light .as-h1,
.text-light h2,
.text-light .as-h2,
.text-light h3,
.text-light .as-h3,
.text-light h4,
.text-light .as-h4 {
  color: #ffffff;
}
.text-light a,
.text-light a:hover {
  color: #ffffff;
}
/* unordered list
***********************************************************************************************************************/
.unordered-list {
  list-style: none;
}
.unordered-list:last-child {
  padding-bottom: 0;
}
.unordered-list li {
  padding-left: 1.5em;
  position: relative;
}
.unordered-list li:before {
  background: rgba(0, 0, 0, 0.3);
  content: '';
  display: block;
  width: 0.5em;
  height: 1px;
  pointer-events: none;
  position: absolute;
  top: 0.75em;
  left: 0;
}
/* aspect
***********************************************************************************************************************/
.aspect {
  overflow: hidden;
  position: relative;
}
.aspect img {
  width: 100% !important;
  height: auto !important;
  margin: auto !important;
  position: absolute !important;
  top: 50% !important;
  left: 50% !important;
  transform: translate(-50%, -50%) !important;
}
.aspect iframe,
.aspect object {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.aspect.ratio--1x1 {
  padding-top: 100%;
}
.aspect.ratio--1x1 img {
  width: auto;
  max-width: none;
  height: 100%;
}
.aspect.ratio--3x4 {
  padding-top: 25%;
}
.aspect.ratio--4x3 {
  padding-top: 75%;
}
.aspect.ratio--4x3 img {
  width: auto;
  max-width: none;
  height: 100%;
}
.aspect.ratio--16x9 {
  padding-top: 56.25%;
}
.aspect.ratio--9x16 {
  padding-top: 177.77%;
}
.aspect.ratio--9x16 img {
  width: auto;
  height: 100%;
}
/* full height
***********************************************************************************************************************/
.full-height {
  min-height: calc(100vh - 110px);
}
/* header
***********************************************************************************************************************/
#header {
  background: #ffffff;
  position: relative;
  z-index: 99;
}
#header__logo {
  display: block;
  position: absolute;
  top: 15px;
  left: 15px;
}
#header__logo img {
  display: inline-block;
  width: auto;
  max-width: none;
  height: 80px;
}
#header__nav__items {
  display: flex;
  flex-direction: row;
  justify-content: center;
}
#header__nav__items .header__nav__item {
  position: relative;
}
#header__nav__items .header__nav__item a {
  display: block;
  font-weight: 500;
  white-space: nowrap;
  padding: 15px;
}
#header__nav__items .header__nav__item a span {
  display: block;
  position: relative;
}
#header__nav__items .header__nav__item:first-child {
  border-left: none;
}
#header__nav__items .header__nav__item--has-sub > a span {
  padding-right: 20px;
}
#header__nav__items .header__nav__item--has-sub > a span:before {
  border: 6px solid transparent;
  border-top-color: #0a9e50;
  content: '';
  display: block;
  width: 0;
  height: 0;
  margin-top: -3px;
  pointer-events: none;
  position: absolute;
  top: 50%;
  right: 0;
}
#header__nav-toggle {
  display: none;
  width: 36px;
  height: 36px;
  position: absolute;
  top: 15px;
  left: 15px;
  z-index: 99;
}
#header__nav-toggle span {
  background: #0a9e50;
  display: block;
  width: 32px;
  height: 2px;
  position: absolute;
  left: 2px;
  transition: all 300ms cubic-bezier(0.215, 0.61, 0.355, 1);
}
#header__nav-toggle span:nth-child(1) {
  top: 5px;
}
#header__nav-toggle span:nth-child(2) {
  top: 50%;
  margin-top: -1px;
}
#header__nav-toggle span:nth-child(3) {
  bottom: 5px;
}
#header__social {
  padding-right: 30px;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}
#header__social ul {
  display: flex;
  flex-direction: row;
}
#header__social ul li {
  padding-left: 10px;
}
#header__social ul li a {
  display: block;
  width: 32px;
  height: 32px;
  position: relative;
}
#header__social ul li a .icon {
  font-size: 1.4em;
  margin: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
html.nav-open #header__nav-toggle span {
  background-color: #ffffff;
}
html.nav-open #header__nav-toggle span:nth-child(1) {
  top: 17px;
  transform: rotate(45deg);
}
html.nav-open #header__nav-toggle span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
html.nav-open #header__nav-toggle span:nth-child(3) {
  bottom: 17px;
  transform: rotate(-45deg);
}
/* main
***********************************************************************************************************************/
.main {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.main__section {
  padding: 90px 0;
}
/* slideshow
***********************************************************************************************************************/
.slideshow {
  background: #000000;
  display: block;
  padding: 0 !important;
}
.slideshow .owl-carousel {
  padding: 0;
}
.slideshow .owl-carousel .owl-nav .owl-prev,
.slideshow .owl-carousel .owl-nav .owl-next {
  width: 64px;
  height: 64px;
  z-index: 98;
}
.slideshow .owl-carousel .owl-nav .owl-prev span,
.slideshow .owl-carousel .owl-nav .owl-next span {
  font-size: 2.5em;
}
.slideshow .owl-carousel .owl-nav .owl-prev {
  margin-left: 60px;
}
.slideshow .owl-carousel .owl-nav .owl-next {
  margin-right: 60px;
}
.slideshow .owl-carousel .owl-dots {
  padding: 60px;
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 98;
}
.slideshow .owl-carousel .owl-dots .owl-dot {
  width: 16px;
  height: 16px;
  margin: 0 10px;
}
.slideshow__item {
  width: 100%;
  height: calc(100vh - 110px);
  padding: 0 !important;
  position: relative;
}
.slideshow__item__caption {
  font-size: 2.25em;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
}
.slideshow__item__caption__title {
  color: #ffffff;
  text-shadow: 0 0 0.5em rgba(0, 0, 0, 0.3);
}
.slideshow__item__image {
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
  object-fit: cover;
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
}
.slideshow__scroll {
  background: #ffffff;
  content: '';
  display: none;
  width: 2px;
  height: 50%;
  pointer-events: none;
  position: absolute;
  bottom: 0;
  left: 30px;
  z-index: 1;
}
.slideshow__scroll span {
  color: #ffffff;
  display: block;
  font-size: 1.2rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  transform: rotate(-90deg);
  transform-origin: 100% 0;
  position: absolute;
  top: 0;
  right: -15px;
}
/* home
***********************************************************************************************************************/
.home__intro {
  position: relative;
  z-index: 1;
}
.home__intro__image {
  transform: translateY(-50%);
}
.home__intro__image img {
  width: 100%;
}
.home__intro__text {
  background: #ffffff;
  padding: 60px;
  transform: translateY(-50%);
}
.home__intro .ambiance {
  position: absolute;
  bottom: 0;
  left: 0;
}
/* ambiance
***********************************************************************************************************************/
.ambiance {
  background: url('img/ambiance.svg') 50% 100% no-repeat;
  background-size: contain;
  pointer-events: none;
  width: 100%;
  padding-top: 15.6097561%;
}
/* owl carousel
***********************************************************************************************************************/
.owl-carousel {
  overflow: hidden;
  position: relative;
  padding: 0 71px;
}
.owl-carousel__item {
  padding: 0 7px;
}
.owl-carousel__item__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.owl-carousel__item__caption {
  border-left: 1px solid rgba(255, 255, 255, 0.5);
  padding: 15px 0 0 15px;
}
.owl-carousel .owl-dots {
  display: flex;
  flex-direction: row;
  justify-content: center;
  padding-top: 30px;
}
.owl-carousel .owl-dots .owl-dot {
  background: #0a9e50;
  border-radius: 50%;
  opacity: 0.5;
  width: 10px;
  height: 10px;
  margin: 0 5px;
}
.owl-carousel .owl-dots .owl-dot:first-child {
  margin-left: 0;
}
.owl-carousel .owl-dots .owl-dot:last-child {
  margin-right: 0;
}
.owl-carousel .owl-dots .owl-dot.active {
  opacity: 1;
}
.owl-carousel .owl-nav .owl-prev,
.owl-carousel .owl-nav .owl-next {
  background: #0a9e50 !important;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  overflow: hidden;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.owl-carousel .owl-nav .owl-prev span,
.owl-carousel .owl-nav .owl-next span {
  color: #ffffff;
  display: block;
  font-size: 2em;
  line-height: 1em;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.owl-carousel .owl-nav .owl-prev {
  left: 0;
}
.owl-carousel .owl-nav .owl-next {
  right: 0;
}
html.no-touch .owl-carousel .owl-dots .owl-dot {
  transition: opacity 100ms cubic-bezier(0.645, 0.045, 0.355, 1);
}
html.no-touch .owl-carousel .owl-dots .owl-dot:hover {
  opacity: 1;
}
html.no-touch .owl-carousel .owl-nav .owl-prev,
html.no-touch .owl-carousel .owl-nav .owl-next {
  transition-property: margin, opacity, transform;
  transition-duration: 250ms;
  transition-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1);
}
html.no-touch .owl-carousel .owl-nav .owl-prev span,
html.no-touch .owl-carousel .owl-nav .owl-next span {
  transition-property: margin;
  transition-duration: 250ms;
  transition-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1);
}
html.no-touch .owl-carousel .owl-nav .owl-prev.disabled,
html.no-touch .owl-carousel .owl-nav .owl-next.disabled {
  opacity: 0;
}
html.no-touch .owl-carousel .owl-nav .owl-prev:hover span {
  margin-left: -5px;
}
html.no-touch .owl-carousel .owl-nav .owl-prev.disabled {
  transform: translate(-100%, -50%);
}
html.no-touch .owl-carousel .owl-nav .owl-next:hover span {
  margin-left: 5px;
}
html.no-touch .owl-carousel .owl-nav .owl-next.disabled {
  transform: translate(100%, -50%);
}
.bg-primary .owl-carousel .owl-nav .owl-prev,
.bg-tertiary .owl-carousel .owl-nav .owl-prev,
.bg-primary .owl-carousel .owl-nav .owl-next,
.bg-tertiary .owl-carousel .owl-nav .owl-next {
  background: #ffffff !important;
}
.bg-primary .owl-carousel .owl-nav .owl-prev span,
.bg-tertiary .owl-carousel .owl-nav .owl-prev span,
.bg-primary .owl-carousel .owl-nav .owl-next span,
.bg-tertiary .owl-carousel .owl-nav .owl-next span {
  color: #0a9e50;
}
.bg-primary .owl-carousel .owl-dots .owl-dot,
.bg-tertiary .owl-carousel .owl-dots .owl-dot {
  background: #ffffff;
}
/* media thumb
***********************************************************************************************************************/
.media-thumb {
  box-shadow: 0 0.56em 1em 0 rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}
.media-thumb a {
  cursor: zoom-in;
}
.media-thumb__image {
  background-size: cover;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  padding-top: 100%;
  z-index: 1;
}
.media-thumb__meta {
  background: #000000;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.50326068) 0%, rgba(0, 0, 0, 0) 100%);
  text-shadow: 0 0.06em 0.17em rgba(0, 0, 0, 0.4);
  width: 100%;
  padding: 30px;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 2;
}
.media-thumb__meta__details {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding-bottom: 10px;
}
.media-thumb__meta__details > span {
  border-right: 1px solid rgba(255, 255, 255, 0.5);
  margin-right: 10px;
  padding-right: 10px;
}
.media-thumb__meta__details > span:last-child {
  border-right: none;
  margin-right: 0;
  padding-right: 0;
}
.media-thumb__meta__details .icon {
  font-size: 0.75em;
}
.media-thumb__enlarge {
  background: rgba(0, 0, 0, 0.5);
  border-radius: 50%;
  display: block;
  width: 48px;
  height: 48px;
  opacity: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all 100ms cubic-bezier(0.645, 0.045, 0.355, 1);
}
.media-thumb__enlarge__icon {
  color: #ffffff;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
html.no-touch .media-thumb {
  transition: transform 300ms cubic-bezier(0.645, 0.045, 0.355, 1);
}
html.no-touch .media-thumb__enlarge:hover {
  background: rgba(0, 0, 0, 0.8);
}
html.no-touch .media-thumb:hover {
  transform: scale(1.05);
}
html.no-touch .media-thumb:hover .media-thumb__enlarge {
  opacity: 1;
}
/* product
***********************************************************************************************************************/
.product__media {
  padding-bottom: 30px;
}
.product__aside {
  background: #fafafa;
  border-radius: 15px;
}
.product__aside--sticky {
  position: sticky;
  top: 48px;
}
.product__aside__block__header {
  padding: 15px;
}
.product__aside__block__header__title {
  padding: 0;
}
.product__properties th,
.product__properties td {
  font-size: 0.875em;
  line-height: 1.8em;
  padding: 15px;
}
.product__properties th {
  color: #666666;
  width: 1px;
  white-space: nowrap;
  padding-right: 0;
}
.product__properties td {
  vertical-align: middle;
}
.product__properties__property__value .icon {
  margin-right: 0.5em;
}
.product__related {
  padding-top: 30px;
}
/* project
***********************************************************************************************************************/
.project__content {
  padding-bottom: 30px;
}
/* map
***********************************************************************************************************************/
.map {
  position: relative;
  /* Canvas */
  /* Type controls */
  /* Zoom controls */
  /* Markers */
  /* Loader */
}
.map .map__canvas {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
.map .map__canvas img {
  width: auto;
  max-width: none;
  height: auto;
  position: static;
  -webkit-transform: none;
  -ms-transform: none;
  transform: none;
}
.map .map__type-controls {
  background: #ffffff;
  opacity: 0;
  visibility: hidden;
  position: absolute;
  top: 30px;
  right: 30px;
  z-index: 2;
}
.map .map__type-controls .map__type-control__label {
  border-bottom: 2px solid #cccccc;
  cursor: pointer;
  color: #999999;
  float: left;
  line-height: 1.5em;
  margin-left: 2px;
  padding: 10px 20px;
  position: relative;
}
.map .map__type-controls .map__type-control__label .icon {
  margin-right: 0.2em;
}
.map .map__type-controls .map__type-control__label:after {
  background: #ffffff;
  content: '';
  display: block;
  width: 2px;
  height: calc(100% + 2px);
  position: absolute;
  top: 0;
  left: -2px;
}
.map .map__type-controls .map__type-control__label:first-of-type {
  margin-left: 0;
}
.map .map__type-controls .map__type-control__label:first-of-type:after {
  display: none;
}
.map .map__type-controls .map__type-control__radio {
  border: 0;
  clip: rect(0 0 0 0);
  width: 1px;
  height: 1px;
  overflow: hidden;
  margin: -1px;
  padding: 0;
  position: absolute;
}
.map .map__zoom-controls {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  top: 30px;
  left: 30px;
  z-index: 2;
}
.map .map__zoom-controls .map__zoom-control {
  background: #ffffff;
  border: 2px solid #cccccc;
  display: block;
  width: 42px;
  height: 42px;
  position: relative;
}
.map .map__zoom-controls .map__zoom-control .icon {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1.5rem;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.map .map__zoom-controls .map__zoom-control.map__zoom-control--zoom-out .icon {
  font-size: 1.75rem;
}
.map .map__zoom-controls .map__zoom-control:first-of-type {
  border-radius: 4px 4px 0 0;
}
.map .map__zoom-controls .map__zoom-control:last-of-type {
  border-radius: 0 0 4px 4px;
  border-top: none;
}
.map .map__markers {
  border: 0;
  clip: rect(0 0 0 0);
  width: 1px;
  height: 1px;
  overflow: hidden;
  margin: -1px;
  padding: 0;
  position: absolute;
}
.map .map__loader {
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 3;
}
.map .map__loader .loader-wrapper {
  width: 64px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.map.map--loading .map__type-controls,
.map.map--loading .map__zoom-controls {
  opacity: 0;
  visibility: hidden;
}
.map.map--loading .map__loader {
  opacity: 1;
  visibility: visible;
}
.map.map--loaded .map__type-controls,
.map.map--loaded .map__zoom-controls {
  opacity: 1;
  visibility: visible;
}
.map.map--loaded .map__loader {
  opacity: 0;
  visibility: hidden;
}
.map.map--street-view-visible .map__zoom-controls {
  opacity: 0;
  visibility: hidden;
}
.map__marker__wrap .map__marker__title {
  color: #000000;
}
.map__marker__wrap .map__marker__content {
  color: #000000;
  width: 300px;
}
.map__marker__wrap .map__marker__content p {
  color: #000000;
  font-size: 1rem;
}
html.no-touch .map {
  /* Zoom controls */
}
html.no-touch .map .map__zoom-controls .map__zoom-control:hover {
  background-color: #eeeeee;
}
/* alert
***********************************************************************************************************************/
.alert {
  background: #f4d947;
  border: none;
  border-radius: 0;
  margin: 0;
  padding: 0;
}
.alert__item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  padding: 30px 62px 30px 30px;
  position: relative;
}
.alert__item__title {
  padding-bottom: 0;
}
.alert__item__content {
  padding-top: 5px;
  padding-bottom: 0;
}
.alert__item__close {
  background: #ffffff;
  border-radius: 50%;
  color: #000000;
  display: block;
  width: 32px;
  height: 32px;
  overflow: hidden;
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
  transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.alert__item__close span {
  display: block;
  font-size: 1.65em;
  padding: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.alert__item:last-child {
  border-bottom: none;
}
html.no-touch .alert__item__close:hover {
  background: #000000;
  color: #ffffff;
}
/* ninja forms
***********************************************************************************************************************/
.nf-form-content label {
  font-size: 1em !important;
}
.nf-field-label label {
  font-weight: normal !important;
}
/* masonry
***********************************************************************************************************************/
.masonry {
  display: grid;
  grid-auto-rows: auto;
  grid-gap: 30px;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: masonry;
  width: 100%;
  padding: 30px 0;
}
.masonry--2 {
  grid-template-columns: repeat(2, 1fr);
}
.masonry--4 {
  grid-template-columns: repeat(4, 1fr);
}
.masonry__item {
  position: relative;
}
.masonry__item img {
  display: block;
}
/* masonry variable
***********************************************************************************************************************/
.masonry-variable {
  margin: -15px;
}
.masonry-variable:after {
  content: '';
  display: block;
  clear: both;
}
.masonry-variable__item {
  float: left;
  width: 33.333%;
  padding: 15px;
}
/* google image placeholder
***********************************************************************************************************************/
.google-image-placeholder {
  background: #e6e6e6;
  position: relative;
}
.google-image-placeholder__content {
  width: 100%;
  white-space: nowrap;
  text-align: center;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
/* not found
***********************************************************************************************************************/
#not-found {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  justify-content: center;
}
#not-found__content {
  padding-bottom: 30px;
}
/* pagination
***********************************************************************************************************************/
.pagination {
  justify-content: center;
}
.page-link {
  color: #0a9e50;
}
.page-link:hover {
  color: #0a9e50;
}
.page-item.active .page-link {
  background-color: #0a9e50;
  border-color: #0a9e50;
}
/* footer
***********************************************************************************************************************/
#footer {
  padding: 90px 0;
}
#footer .table {
  width: auto;
  margin-bottom: 0;
}
#footer .table th,
#footer .table td {
  border: none;
  color: #ffffff;
  width: 1px;
  white-space: nowrap;
  padding: 0 15px 15px 0;
}
#footer .table th:last-child,
#footer .table td:last-child {
  padding-right: 0;
}
/*# sourceMappingURL=global.css.map */