@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wdth,wght@75..100,300..800&display=swap");
html * {
  max-height: 999999px;
}

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,
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 {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

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;
}

.flex {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: flex-start;
}

.flex.column {
  flex-direction: column;
}

.flex.nowrap {
  flex-wrap: nowrap;
}

.flex.align-center {
  align-items: center;
}

.flex.align-stretch {
  align-items: stretch;
}

.flex.align-start {
  align-items: flex-start;
}

.flex.align-end {
  align-items: flex-end;
}

.flex.justify-center {
  justify-content: center;
}

.flex.justify-start {
  justify-content: flex-start;
}

.flex.justify-end {
  justify-content: flex-end;
}

.flex.justify-around {
  justify-content: space-around;
}

body {
  background-color: #fff;
}

.container {
  max-width: 1280px !important;
  width: 96% !important;
  margin: 0 auto !important;
  padding: 0 15px !important;
}

.text-center {
  text-align: center;
}

a {
  text-decoration: none;
}

.custom-list ul li {
  list-style: none;
  position: relative;
  padding: 5px 0;
  padding-left: 20px;
  line-height: 1.5;
  font-weight: 200;
  font-size: 17px;
  color: #282828;
}

.custom-list ul li::before {
  position: absolute;
  content: "";
  background-color: #574733;
  width: 8px;
  height: 8px;
  left: 0;
  top: 13px;
  border-radius: 100%;
}

.custom-button {
  width: 100%;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #798c5e;
  margin: 10px 0;
  font-size: 17px;
  border: none;
  cursor: pointer;
  transition: 0.3s;
  outline: none;
  color: #fff;
  font-family: "Open Sans", sans-serif;
  -webkit-appearance: none;
  box-shadow: 5px 10px 35px rgba(139, 165, 146, 0.3);
  border-radius: 10px;
}
.custom-button:hover {
  background-color: #574733;
  box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.215);
}

/********************************************************/
button.open-menu {
  width: 50px;
  height: 50px;
  justify-content: center;
  align-items: center;
  background-color: #798c5e;
  border-radius: 0;
  margin: 0;
  font-size: 17px;
  border: none;
  cursor: pointer;
  transition: 0.3s;
  outline: none;
  color: #fff;
  font-family: "Open Sans", sans-serif;
  -webkit-appearance: none;
  display: none;
}
button.open-menu .icon {
  fill: #fff;
  position: absolute;
}
button.open-menu .icon.is-active {
  opacity: 0;
}
button.open-menu.is-active {
  background-color: #af0000;
}
button.open-menu.is-active .icon.is-active {
  opacity: 1;
}
button.open-menu.is-active .icon.no-active {
  opacity: 0;
}

@media only screen and (max-width: 768px) {
  button.open-menu {
    display: flex;
  }
}
.back-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 9999;
  height: 40px;
  width: 40px;
  transition: 0.3s;
  background-color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
}
.back-top.active {
  opacity: 0.7;
  pointer-events: all;
}
.back-top:hover {
  opacity: 1;
}
.back-top i {
  font-size: 20px;
  color: #fff;
}

@media only screen and (max-width: 1140px) {
  .back-top {
    display: none;
  }
}
.header-menu li a,
.header-second-menu li a {
  font-weight: 500;
}

.header {
  /* DESCTOP MENU */
}
.header .site-logo {
  display: flex;
  max-width: 160px;
  position: relative;
}
.header .site-logo a {
  width: 100%;
  display: inline-flex;
}
.header .site-logo a img {
  width: 100%;
  max-width: 100%;
  height: auto;
}
@media only screen and (min-width: 980px) {
  .header .header-menu {
    padding-bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
  }
  .header .header-menu li {
    position: relative;
    list-style: none;
  }
  .header .header-menu li.mobile-only {
    display: none;
  }
  .header .header-menu li span {
    display: none;
  }
  .header .header-menu li a {
    padding: 12px 15px;
    color: #fff;
    transition: 0.3s;
    display: block;
    text-decoration: none;
    font-size: 18px;
    position: relative;
  }
  .header .header-menu li a:hover {
    background-color: #7c675e;
    color: #fff;
  }
  .header .header-menu li.current_page_item, .header .header-menu li.current-menu-item {
    position: relative;
  }
  .header .header-menu li.current_page_item > a, .header .header-menu li.current-menu-item > a {
    font-weight: 700;
  }
  .header .header-menu li.menu-item-has-children {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .header .header-menu li.menu-item-has-children a {
    padding-right: 25px;
  }
  .header .header-menu li.menu-item-has-children > span {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    width: 10px;
    height: 10px;
    right: 5px;
  }
  .header .header-menu li.menu-item-has-children > span i {
    color: #fff;
    font-size: 10px;
    transition: 0.3s;
  }
  .header .header-menu li.menu-item-has-children > span.active i {
    transform: rotate(-180deg);
  }
  .header .header-menu li.menu-item-has-children:hover > span i {
    transform: rotate(-180deg);
  }
  .header .header-menu > li {
    position: relative;
  }
  .header .header-menu > li > .sub-menu {
    position: absolute;
    top: 100%;
    box-shadow: 2px 2px 10px 0px rgba(0, 0, 0, 0.2);
    right: 0;
    background-color: #798c5e;
    padding: 0;
    opacity: 0;
    visibility: hidden;
    transition: 0.2s;
    display: flex;
    flex-direction: column;
    z-index: 99;
  }
  .header .header-menu > li > .sub-menu li {
    order: 2;
    font-weight: 400;
  }
  .header .header-menu > li > .sub-menu li a {
    white-space: nowrap;
    display: block;
    width: 100%;
  }
  .header .header-menu > li:hover > .sub-menu {
    opacity: 1;
    visibility: visible;
    top: 50px;
  }
}

/* TOGGLE MENU */
.cmn-toggle-switch {
  display: none;
  position: relative;
  overflow: hidden;
  margin: 0;
  padding: 0;
  width: 50px;
  min-width: 50px;
  height: 50px;
  font-size: 0;
  background-color: transparent;
  /* 	top: 0; */
  text-indent: -9999px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  box-shadow: none;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  -webkit-transition: 1s;
  transition: 1s;
  z-index: 9999;
  align-items: center;
}
.cmn-toggle-switch:focus {
  outline: none;
}
.cmn-toggle-switch span {
  display: block;
  position: absolute;
  left: 15%;
  right: 15%;
  height: 2px;
  background-color: #fff;
  -webkit-transition: background 0s 0.3s;
  transition: background 0s 0.3s;
}
.cmn-toggle-switch span::before, .cmn-toggle-switch span::after {
  position: absolute;
  display: block;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #fff;
  content: "";
  -webkit-transition-duration: 0.3s, 0.3s;
  transition-duration: 0.3s, 0.3s;
  -webkit-transition-delay: 0.3s, 0s;
  transition-delay: 0.3s, 0s;
}
.cmn-toggle-switch span::before {
  top: -10px;
  -webkit-transition-property: top, -webkit-transform;
  transition-property: top, transform;
}
.cmn-toggle-switch span::after {
  bottom: -10px;
  -webkit-transition-property: bottom, -webkit-transform;
  transition-property: bottom, transform;
}
.cmn-toggle-switch.active {
  background-color: #574733;
  position: fixed;
  top: 30px;
  right: 30px;
  transition: 0.3s;
}
.cmn-toggle-switch.active span {
  background: 0 0;
}
.cmn-toggle-switch.active span::before {
  top: 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transition-delay: 0s, 0.3s;
  transition-delay: 0s, 0.3s;
  background-color: #fff;
}
.cmn-toggle-switch.active span::after {
  bottom: 0;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-transition-delay: 0s, 0.3s;
  transition-delay: 0s, 0.3s;
  background-color: #fff;
}

/* MOBILE MENU */
@media only screen and (max-width: 980px) {
  .cmn-toggle-switch {
    display: flex;
  }
  .header .site-logo {
    max-width: 140px;
  }
  .header .navigation-wrap {
    margin: 0 0 0 auto;
  }
  .header .header-menu {
    position: fixed;
    top: -100%;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: #798c5e;
    z-index: 9998;
    -webkit-transition: top 0.3s;
    -moz-transition: top 0.3s;
    -o-transition: top 0.3s;
    transition: 0.3s;
    overflow-y: auto;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: column;
    flex-wrap: nowrap;
    box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.215) !important;
    padding: 70px 25px 25px 25px !important;
  }
  .header .header-menu li {
    position: relative;
    display: inline-flex;
    width: auto;
  }
  .header .header-menu li.mobile-only {
    display: inline-block;
  }
  .header .header-menu li a {
    font-weight: 500;
    padding: 10px;
    display: inline-block;
    width: auto;
    font-size: 18px;
    color: #fff;
  }
  .header .header-menu li .current-menu-item {
    background: none;
  }
  .header .header-menu li .current-menu-item > a {
    margin-bottom: 10px;
  }
  .header .header-menu > li {
    padding: 5px 10px;
    margin-bottom: 5px;
  }
  .header .header-menu > li span {
    display: none;
  }
  .header .header-menu > li.menu-item-has-children {
    width: 100%;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
  }
  .header .header-menu > li.menu-item-has-children > a {
    pointer-events: all;
  }
  .header .header-menu > li.menu-item-has-children > span {
    display: flex !important;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    width: 34px;
    height: 34px;
    z-index: 99;
    cursor: pointer;
    transition: 0.3s;
  }
  .header .header-menu > li.menu-item-has-children > span i {
    font-size: 18px;
    color: #282828;
    transition: 0.3s;
  }
  .header .header-menu > li.menu-item-has-children > span.active i {
    transform: rotate(180deg);
  }
  .header .header-menu > li > .sub-menu {
    display: none;
    width: 100%;
    position: relative;
    border: none;
    border-radius: 0;
    padding: 5px 20px;
    background-color: transparent;
    background-image: none;
    list-style: none;
    box-shadow: none;
    z-index: 10;
    visibility: visible;
    transition: 0.3s;
  }
  .header .header-menu > li > .sub-menu li {
    width: 100%;
  }
  .header .header-menu > li > .sub-menu li > a {
    border: none;
    font-weight: 300;
    width: auto;
    display: inline-block;
  }
  .header .header-menu > li .sub-menu {
    padding-left: 20px !important;
  }
  .header .header-menu > li .sub-menu > li.current-menu-item a {
    font-weight: 700;
  }
  .header .header-menu .site-logo {
    display: none !important;
  }
  .move {
    overflow: hidden;
  }
  .move .header-menu {
    top: 0;
  }
}