/*
* Add all custom, self hosted, fonts in this file.
*/
@font-face {
  font-family: "Lato";
  src: url("../fonts/Lato/Lato-Regular.ttf") format("truetype-variations");
}
@font-face {
  font-family: "LatoBold";
  src: url("../fonts/Lato/Lato-Bold.ttf") format("truetype-variations");
}
/**************************************************
* COLOR PALETTE
* This is the main color palette used for the project
**************************************************/
/**************************************************
* Global
**************************************************/
/**************************************************
* FONTS
**************************************************/
/**************************************************
* HEADER
**************************************************/
/**************************************************
* NAVIGATION
**************************************************/
/**************************************************
* BUTTONS
**************************************************/
/**************************************************
* FORMS
**************************************************/
/**************************************************
* LINKS
**************************************************/
/**************************************************
* FOOTER
**************************************************/
@media (min-width: 960px) {
  .small-only {
    display: none !important;
  }
}

body.full-width-content .site-inner {
  max-width: 100%;
  padding: 0px;
  min-height: 10vh;
}
body.full-width-content .site-inner .content {
  width: 100%;
}

body .site-header {
  position: sticky;
  z-index: 999;
  top: 0;
  background-color: #fff;
  box-shadow: none;
  transition: height 0.2s ease, box-shadow 0.2s ease;
}
@media (min-width: 960px) {
  body .site-header {
    height: 80px;
  }
}
@media (max-width: 959px) {
  body .site-header {
    height: 70px;
  }
}
body .site-header .wrap {
  height: 100%;
}
body .site-header .site-header-content {
  height: 100%;
  flex-direction: row;
  display: flex;
  align-items: center;
  justify-content: center;
}
body .site-header .site-header-inner {
  height: 100%;
  width: 100%;
  max-width: 1100px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  margin: 0px 20px;
}
@media (max-width: 959px) {
  body .site-header .site-header-inner {
    margin: 0;
  }
}

body.scrolled .site-header {
  box-shadow: 0px 5px 10px 4px rgba(0, 0, 0, 0.05);
}
@media (min-width: 960px) {
  body.scrolled .site-header {
    height: 60px;
  }
}
@media (max-width: 959px) {
  body.scrolled .site-header {
    height: 50px;
  }
}

/**************************************************
* ADMIN
**************************************************/
@media (min-width: 781px) {
  body.admin-bar .site-header {
    top: 32px;
  }
}
@media (max-width: 959px) {
  body:not(.scrolled).admin-bar .site-header {
    top: 32px;
  }
  body.menu-open.admin-bar #wpadminbar {
    display: none;
  }
  body.menu-open.admin-bar .site-header {
    top: 0;
  }
}
@media (max-width: 781px) and (min-width: 600px) {
  body.admin-bar .site-header {
    top: 46px;
  }
}
.logo-container {
  height: 100%;
  transition: padding 0.2s ease;
}
@media (min-width: 960px) {
  .logo-container {
    padding: 15px 0;
  }
}
@media (max-width: 959px) {
  .logo-container {
    padding: 15px 0;
  }
}
.logo-container .logo-image {
  height: 100%;
  width: auto;
}

@media (min-width: 960px) {
  body.scrolled .logo-container {
    padding: 15px 0;
  }
}
@media (max-width: 959px) {
  body.scrolled .logo-container {
    padding: 15px 0;
  }
}

nav, nav * {
  user-select: none;
  -moz-user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
}

nav.evdy-menu-container {
  height: 100%;
}
nav.evdy-menu-container ul.evdy-nav-menu {
  height: 100%;
}
@media (max-width: 959px) {
  nav.evdy-menu-container ul.evdy-nav-menu {
    padding: 20px 0 0 20px;
  }
}
nav.evdy-menu-container ul.evdy-nav-menu ul {
  padding-left: 0.6em;
}
nav.evdy-menu-container ul.evdy-nav-menu li.nav-item div.nav-item-action {
  display: flex;
  flex-direction: row;
  height: 2.4em;
  border-bottom: 1px solid #F5F5F5;
}
nav.evdy-menu-container ul.evdy-nav-menu li.nav-item div.nav-item-action a {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  width: calc(100% - 70px);
  margin-right: 10px;
  color: #808080;
  display: block;
  line-height: 2.6666666667em;
}
nav.evdy-menu-container ul.evdy-nav-menu li.nav-item div.nav-item-action div.toggle-open {
  width: 60px;
  height: 100%;
  background-color: #F5F5F5;
  border: 2px solid #fff;
  border-radius: 0.4em;
}
nav.evdy-menu-container ul.evdy-nav-menu li.nav-item div.nav-item-action div.toggle-open .toggle-open-icon {
  pointer-events: none;
  width: 100%;
  height: 100%;
  background-image: url(../images/icon-collapse.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 10px;
  transition: transform 0.2s ease;
}
nav.evdy-menu-container ul.evdy-nav-menu li.nav-item:not(.has-children) > div.nav-item-action a {
  width: 100%;
  padding-right: 70px;
  margin-right: 0;
}
nav.evdy-menu-container ul.evdy-nav-menu li.nav-item.active-item div.nav-item-action a {
  color: #202020;
}
nav.evdy-menu-container ul.evdy-nav-menu li.nav-item:not(.collapsed) > div.nav-item-action div.toggle-open .toggle-open-icon {
  transform: rotateZ(90deg);
}
nav.evdy-menu-container ul.evdy-nav-menu ul.nav-child-items > li {
  transition: transform 0.4s ease, opacity 0.2s ease;
  opacity: 1;
  transform: translateX(0px);
}
nav.evdy-menu-container ul.evdy-nav-menu ul.nav-child-items > li a {
  font-size: 0.9em;
}
@media (max-width: 959px) {
  nav.evdy-menu-container ul.evdy-nav-menu li.nav-item.collapsed > ul.nav-child-items > li {
    overflow: hidden;
    height: 0;
    opacity: 0.5;
    transform: translateX(-3px);
  }
}
@media (min-width: 960px) {
  nav.evdy-menu-container ul.evdy-nav-menu {
    display: flex;
    flex-direction: row;
    width: 100%;
  }
  nav.evdy-menu-container ul.evdy-nav-menu .root-item > div.nav-item-action a {
    font-family: "Lato", sans-serif;
    font-weight: 400;
    font-size: 17.6px;
    text-transform: uppercase;
  }
  nav.evdy-menu-container ul.evdy-nav-menu li.nav-item.root-item:not(:hover) > ul.nav-child-items > li, nav.evdy-menu-container ul.evdy-nav-menu li.nav-item:not(.root-item).collapsed > ul.nav-child-items > li {
    overflow: hidden;
    height: 0;
    opacity: 0.5;
    transform: translateX(-3px);
  }
  nav.evdy-menu-container ul.evdy-nav-menu li.nav-item.root-item:not(:hover) > ul.nav-child-items, nav.evdy-menu-container ul.evdy-nav-menu li.nav-item:not(.root-item).collapsed > ul.nav-child-items {
    transform: translateX(0px);
  }
  nav.evdy-menu-container ul.evdy-nav-menu li.nav-item.root-item {
    position: relative;
    width: auto;
    height: 100%;
    cursor: pointer;
  }
  nav.evdy-menu-container ul.evdy-nav-menu li.nav-item.root-item > div.nav-item-action {
    width: auto;
    height: 100%;
    border: none;
    padding: 0 0.8em;
    display: flex;
    align-items: center;
  }
  nav.evdy-menu-container ul.evdy-nav-menu li.nav-item.root-item > div.nav-item-action a {
    padding-right: 0px;
    display: inline-block;
    width: auto;
    margin-right: 0;
  }
  nav.evdy-menu-container ul.evdy-nav-menu li.nav-item.root-item > div.nav-item-action div.toggle-open {
    width: 14px;
    background-color: transparent;
    padding-top: 4px;
    border: none;
  }
  nav.evdy-menu-container ul.evdy-nav-menu li.nav-item.root-item > div.nav-item-action div.toggle-open .toggle-open-icon {
    pointer-events: none;
    background-size: 8px;
    transform: rotate(90deg);
  }
  nav.evdy-menu-container ul.evdy-nav-menu li.nav-item.root-item > div.nav-item-action:hover a {
    text-decoration: none;
    color: #202020 !important;
  }
  nav.evdy-menu-container ul.evdy-nav-menu li.nav-item.root-item > ul.nav-child-items {
    position: absolute;
    transform: translateX(3px);
    transition: transform 0.2s ease;
    background-color: #fff;
    box-shadow: 0px 5px 10px 4px rgba(0, 0, 0, 0.05);
  }
  nav.evdy-menu-container ul.evdy-nav-menu li.nav-item.root-item > ul.nav-child-items li:hover > div.nav-item-action a {
    color: #202020;
    text-decoration: none;
  }
  nav.evdy-menu-container ul.evdy-nav-menu li.nav-item.root-item.has-active-child > div.nav-item-action a {
    color: #202020;
  }
  nav.evdy-menu-container ul.evdy-nav-menu ul.nav-child-items {
    max-width: 256px;
  }
  nav.evdy-menu-container ul.evdy-nav-menu ul.nav-child-items li .nav-item-action {
    font-family: "Lato", sans-serif;
    font-weight: 400;
    text-transform: auto;
    font-size: 16px;
    color: #808080;
  }
}

/*
* Layout for mobile.
*/
@media (max-width: 959px) {
  nav.evdy-menu-container {
    width: 0;
    height: 0;
    overflow: hidden;
    background-color: rgba(0, 0, 0, 0);
    transition: background-color 0.4s ease;
  }
  nav.evdy-menu-container > ul.evdy-nav-menu {
    position: fixed;
    width: 0;
    height: 100%;
    left: 100%;
    opacity: 0;
    padding-bottom: 220px;
    overflow-y: scroll;
    transition: left 0.2s ease;
    background-color: #fff;
  }
  body.menu-open nav.evdy-menu-container {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
  }
  body.menu-open nav.evdy-menu-container > ul.evdy-nav-menu {
    left: 15%;
    opacity: 1;
    width: 85%;
  }
  li > .nav-item-action a {
    font-family: "Lato", sans-serif;
    font-size: 17.6px;
  }
  .root-item ul li {
    font-size: 17.6px;
  }
}
body li.root-item:hover > ul.nav-child-items {
  transition: top 0.2s ease;
  right: 0;
  top: 80px;
}

body.scrolled li.root-item:hover > ul.nav-child-items {
  top: 60px;
}

body.menu-open nav.evdy-menu-container {
  top: 70px;
}

body.scrolled.menu-open nav.evdy-menu-container {
  top: 50px;
}

.main-menu-button-container {
  height: 100%;
  aspect-ratio: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
.main-menu-button-container .main-menu-button-inner {
  height: 20px;
  width: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.main-menu-button-container .main-menu-button-inner div {
  width: 100%;
  height: 3px;
  background-color: #000;
  transition: opacity 0.2s ease, transform 0.3s ease;
  border-radius: 2px;
}
.main-menu-button-container .main-menu-button-inner div:nth-child(1) {
  width: 80%;
}

body.menu-open .main-menu-button-inner div:nth-child(1) {
  transform: translateY(8.5px) rotate(45deg);
  width: 100%;
}
body.menu-open .main-menu-button-inner div:nth-child(2) {
  opacity: 0;
}
body.menu-open .main-menu-button-inner div:nth-child(3) {
  transform: translateY(-8.5px) rotate(-45deg);
}

.post-template-default main.content {
  display: flex;
  align-content: center;
}
.post-template-default main.content .entry-header {
  width: 100%;
}

body .site-inner .fl-button-wrap a.fl-button {
  border-radius: 0px;
  border: none;
  background-color: #fc8823;
}
body .site-inner .fl-button-wrap a.fl-button .fl-button-icon, body .site-inner .fl-button-wrap a.fl-button span {
  color: #fff;
}
body .site-inner .fl-button-wrap a.fl-button:hover {
  opacity: 0.6;
}
body .site-inner .fl-button-wrap a.fl-button:hover span {
  color: #fff;
}
body .site-inner input[type=submit] {
  background-color: #fc8823;
  border: none;
  height: 3em;
  padding: 0 2em;
  color: #fff;
  cursor: pointer;
}
body .site-inner input[type=submit]:hover {
  opacity: 0.6;
}

@media (min-width: 960px) {
  .header-logo-wrapper {
    height: 70%;
  }
  .header-logo-wrapper:hover {
    cursor: pointer;
  }
  .header-logo-wrapper .header-logo-inner {
    height: 100%;
  }
  .header-logo-wrapper .header-logo-inner .header-logo-img {
    height: 100%;
  }
}
@media (max-width: 959px) {
  .header-logo-wrapper {
    position: fixed;
    left: 0px;
    top: 0px;
    height: 70px;
    padding-top: 12px;
    padding-left: 10px;
  }
}
@media (max-width: 959px) and (max-width: 959px) {
  .header-logo-wrapper {
    padding-top: 7px;
  }
}
@media (max-width: 959px) {
  .header-logo-wrapper .header-logo-inner {
    height: 56px;
    width: auto;
  }
}
@media (max-width: 959px) and (max-width: 959px) {
  .header-logo-wrapper .header-logo-inner {
    height: 56px;
  }
}
@media (max-width: 959px) {
  .header-logo-wrapper .header-logo-inner .header-logo-img {
    height: 100%;
  }
}
.hero-container {
  width: 100%;
  height: 70vh;
  max-height: 60vw;
}
.hero-container .hero-background {
  width: 100%;
  height: 100%;
}

ul.evdy-contact-list {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 3%;
  padding: 0px;
  --items_per_row: 4;
}
@media (min-width: 960px) {
  ul.evdy-contact-list.c1 {
    --items_per_row: 1;
  }
  ul.evdy-contact-list.c2 {
    --items_per_row: 2;
  }
  ul.evdy-contact-list.c3 {
    --items_per_row: 3;
  }
  ul.evdy-contact-list.c4 {
    --items_per_row: 4;
  }
  ul.evdy-contact-list.c5 {
    --items_per_row: 5;
  }
}
@media (max-width: 959px) {
  ul.evdy-contact-list.m-c1 {
    --items_per_row: 1;
  }
  ul.evdy-contact-list.m-c2 {
    --items_per_row: 2;
  }
}
ul.evdy-contact-list li.evdy-contact-item {
  display: flex;
  flex-direction: column;
  max-width: calc(100% / var(--items_per_row) - 3% * (var(--items_per_row) - 1) / var(--items_per_row));
  width: 100%;
}
ul.evdy-contact-list li.evdy-contact-item img {
  width: 100%;
  object-fit: cover;
  object-position: center;
}
ul.evdy-contact-list li.evdy-contact-item img.img-1-1 {
  aspect-ratio: 1/1;
}
ul.evdy-contact-list li.evdy-contact-item img.img-1-1-c {
  aspect-ratio: 1/1;
  border-radius: 100%;
}
ul.evdy-contact-list li.evdy-contact-item img.img-3-4 {
  aspect-ratio: 3/4;
}
ul.evdy-contact-list li.evdy-contact-item img.img-3-4-c {
  aspect-ratio: 3/4;
  border-radius: 100%;
}
ul.evdy-contact-list li.evdy-contact-item img.img-4-3 {
  aspect-ratio: 4/3;
}
ul.evdy-contact-list li.evdy-contact-item img.img-16-9 {
  aspect-ratio: 16/9;
}
ul.evdy-contact-list li.evdy-contact-item .evdy-contact-details.align-left {
  text-align: left;
}
ul.evdy-contact-list li.evdy-contact-item .evdy-contact-details.align-center {
  text-align: center;
}
ul.evdy-contact-list li.evdy-contact-item .evdy-contact-details.align-right {
  text-align: right;
}
ul.evdy-contact-list li.evdy-contact-item .evdy-contact-details h3 {
  margin-bottom: 0;
  font-size: 1.4em;
}
@media (max-width: 959px) {
  ul.evdy-contact-list li.evdy-contact-item .evdy-contact-details h3 {
    font-size: 1.1em;
  }
}
ul.evdy-contact-list li.evdy-contact-item .evdy-contact-details span {
  display: block;
  margin-bottom: 0.6180469716em;
}
@media (max-width: 959px) {
  ul.evdy-contact-list li.evdy-contact-item .evdy-contact-details span {
    font-size: 0.8em;
  }
}
ul.evdy-contact-list li.evdy-contact-item .evdy-contact-details a {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
}
@media (max-width: 959px) {
  ul.evdy-contact-list li.evdy-contact-item .evdy-contact-details a {
    font-size: 0.8em;
  }
}
ul.evdy-contact-list li.evdy-contact-item .evdy-contact-details p {
  margin-top: 0.6180469716em;
  margin-bottom: 2.4721878863em;
  font-size: 0.9em;
  font-style: italic;
  opacity: 0.8;
}
@media (max-width: 959px) {
  ul.evdy-contact-list li.evdy-contact-item .evdy-contact-details p {
    font-size: 0.6em;
  }
}

input, textarea {
  min-height: 3em;
  padding: 0 10px;
  border: 1px solid #D3D3D3;
  width: 100%;
}

.wpcf7 input.wpcf7-submit {
  text-align: center !important;
  padding-top: 0.4em !important;
}
.wpcf7 .wpcf7-spinner {
  transform: translate(-10px, -35px);
}

.custom-single .site-inner {
  display: flex;
  justify-content: center;
}
.custom-single .site-inner .content-sidebar-wrap {
  width: 100%;
  max-width: 1100px;
  display: flex;
  flex-direction: row;
}
@media (max-width: 959px) {
  .custom-single .site-inner .content-sidebar-wrap {
    flex-direction: column;
  }
}
.custom-single .site-inner .content-sidebar-wrap main.content {
  width: 70%;
  margin-bottom: 60px;
}
@media (max-width: 959px) {
  .custom-single .site-inner .content-sidebar-wrap main.content {
    width: 100%;
  }
}
.custom-single .site-inner .content-sidebar-wrap main.content article > :not(img) {
  padding: 0 20px;
}
.custom-single .site-inner .content-sidebar-wrap main.content .entry-header {
  margin-top: 40px;
}
@media (min-width: 960px) {
  .custom-single .site-inner .content-sidebar-wrap main.content .entry-header h1 {
    font-size: 42.24px;
  }
}
@media (max-width: 959px) {
  .custom-single .site-inner .content-sidebar-wrap main.content .entry-header h1 {
    font-size: 34.56px;
  }
}
.custom-single .site-inner .content-sidebar-wrap aside.sidebar {
  width: 30%;
  padding: 0 20px;
}
@media (max-width: 959px) {
  .custom-single .site-inner .content-sidebar-wrap aside.sidebar {
    width: 100%;
  }
}

html body {
  font-family: "Lato", sans-serif;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
html body.no-scroll {
  overflow: hidden;
}
html body p, html body li, html body label, html body input {
  font-family: "Lato", sans-serif;
  line-height: 1.7;
  font-weight: 300;
}
@media (min-width: 960px) {
  html body p, html body li, html body label, html body input {
    font-size: 19px;
  }
}
@media (max-width: 959px) {
  html body p, html body li, html body label, html body input {
    font-size: 19px;
  }
}
html body h1, html body h2, html body h3, html body h4, html body h5, html body h6 {
  font-family: "Lato", sans-serif;
  color: #202020;
  line-height: 1.1;
  margin: 0 0 0.4em 0;
  text-transform: auto;
  font-weight: 400;
}
html body p + h2, html body p + h3, html body p + h4, html body p + h5, html body p + h6, html body ul + h2, html body ul + h3, html body ul + h4, html body ul + h5, html body ul + h6, html body ol h2, html body ol h3, html body ol h4, html body ol h5, html body ol h6 {
  margin-top: 2em;
}
html body h1 {
  font-weight: 450;
}
@media (min-width: 960px) {
  html body h1 {
    font-size: 57.6px;
  }
  html body h2 {
    font-size: 35.2px;
  }
  html body h3 {
    font-size: 22.4px;
  }
  html body h4 {
    font-size: 17.6px;
  }
  html body h5 {
    font-size: 17.6px;
  }
  html body h6 {
    font-size: 17.6px;
  }
}
@media (max-width: 959px) {
  html body h1 {
    font-size: 41.6px;
  }
  html body h2 {
    font-size: 28.8px;
  }
  html body h3 {
    font-size: 22.4px;
  }
  html body h4 {
    font-size: 19.2px;
  }
  html body h5 {
    font-size: 19.2px;
  }
  html body h6 {
    font-size: 19.2px;
  }
}
html body span.ingress {
  font-weight: 500;
}

body:not(.fl-builder-edit) .anim-fadeup {
  transform: translateY(40px);
  opacity: 0;
  transition: transform 0.8s ease, opacity 0.8s ease;
}
body:not(.fl-builder-edit) .anim-fadeup.visible {
  transform: translateY(0);
  opacity: 1;
}

body:not(.fl-builder-edit) .anim-img-ken {
  opacity: 0.2;
  transition: opacity 0.8s ease;
}
body:not(.fl-builder-edit) .anim-img-ken.visible {
  opacity: 1;
}

.fl-accordion {
  border-top: 1px solid #D3D3D3;
}
.fl-accordion .fl-accordion-item {
  border: none;
  border-bottom: 1px solid #D3D3D3;
  margin-bottom: 0;
}
.fl-accordion .fl-accordion-item *:focus, .fl-accordion .fl-accordion-item *:active {
  outline: none !important;
  outline-style: none;
}
.fl-accordion .fl-accordion-item .fl-accordion-button {
  border: none;
  padding: 1em 0em;
}
.fl-accordion .fl-accordion-item .fl-accordion-button a {
  font-weight: 600;
  font-size: 1.1em;
}
.fl-accordion .fl-accordion-item .fl-accordion-button .fl-accordion-button-icon {
  font-size: 0.8em;
  color: #202020;
  opacity: 1;
}

.footer-widget-area a {
  color: #fff;
}
.footer-widget-area a:hover {
  color: #fff;
}

.evdy-credit-wrapper {
  width: 100%;
  height: 30px;
  font-size: 12px;
  color: white;
  background-color: #000;
  text-align: center;
  line-height: 30px;
}

.evdy-credit-wrapper a {
  color: white;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.evdy-credit-wrapper a:hover {
  opacity: 1;
}
