@font-face {
  font-family: "Signature";
  src: url("../fonts/aAccountantSignature.woff2") format("woff2"),
    url("../fonts/aAccountantSignature.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Bebas";
  src: url("../fonts/subset-BebasNeueRegular.woff2") format("woff2"),
    url("../fonts/subset-BebasNeueRegular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Helvetica";
  font-display: auto;
  font-weight: 400;
  src: url("../fonts/subset-HelveticaNeueLTPro-Roman.woff2") format("woff2"),
    url("../fonts/subset-HelveticaNeueLTPro-Roman.woff") format("woff");
}
@font-face {
  font-family: "Helvetica";
  font-display: auto;
  font-weight: 700;
  src: url("../fonts/subset-HelveticaNeueLTPro-Bd.woff2") format("woff2"),
    url("../fonts/subset-HelveticaNeueLTPro-Bd.woff") format("woff");
}

* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

::selection {
  background-color: #ad8264;
  color: #fff;
}
::-moz-selection {
  background-color: #ad8264;
  color: #fff;
}

html {
  overflow-x: hidden;
}
body {
  font-size: 16px;
  font-family: "Helvetica";
  color: #2f251f;
}

.bebas {
  font-family: "Bebas" !important;
}
.container {
  width: 880px;
  max-width: 95%;
  margin: 0 auto;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
  line-height: 1;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Bebas";
  font-weight: bold;
  line-height: 1.2;
}

h1 {
  font-size: 3rem;
}
h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}
h3 {
  font-size: 1.8rem;
}
h6 {
  font-size: 1rem;
  font-weight: bold;
}

input:focus,
textarea:focus {
  outline: none;
}

a {
  color: #000;
  text-decoration: none;
  transition: all 0.3s ease;
}
a:hover {
  color: #000;
}

li {
  list-style-type: none;
}

p {
  color: #2f251f;
  line-height: 1.4;
}
p + p {
  margin-top: 1rem;
}
p a {
  color: #000;
  font-weight: bold;
}
p a:hover {
  color: #b9967e;
}

.list {
  display: grid;
  align-items: center;
  margin-top: 3rem;
  grid-gap: 2rem;
}
.list-3 {
  grid-template-columns: repeat(3, 1fr);
}
.list-4 {
  grid-template-columns: repeat(4, 1fr);
}
.list-5 {
  grid-template-columns: repeat(5, 1fr);
}
.list-5 h6 {
  margin-top: 1rem;
}
.subtitle {
  font-weight: bold;
  font-size: 15px;
  font-family: "Helvetica";
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

hr {
  background-color: #ad8264;
  height: 2px;
  width: 30%;
  margin: 2rem 0;
  border: 0;
}

.signature {
  font-family: "Signature";
}
.site-header {
  background-repeat: no-repeat;
  background-size: cover;
  color: #fff;
  padding-bottom: 1rem;
}
.site-header section {
  padding: 0;
}
.site-header a {
  display: inline-block;
  color: #fff;
}
#site-header-home {
  background-image: url("../img/header-home.jpg");
}
#site-header-istorie {
  background-image: url("../img/header-companie.jpg");
}
#site-header-produse {
  background-image: url("../img/header-produse.jpg");
}
#site-header-calitate {
  background-image: url("../img/header-calitate.jpg");
}
#site-header-galerie {
  background-image: url("../img/header-galerie.jpg");
}

#site-header-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

#site-header-top {
  position: fixed;
  left: 50%;
  width: 880px;
  max-width: 95%;
  transform: translateX(-50%);
  z-index: 999;
  padding: 1rem 0;
}
#site-header-top.header_fixed_hidden::before,
#site-header-top.header_fixed_hidden::after {
  content: "";
  background: rgba(0, 0, 0, 0.85);
  width: 100vw;
  left: -100vw;
  top: 0;
  height: 100%;
  display: block;
  position: absolute;
}
#site-header-top.header_fixed_hidden::after {
  left: initial;
  right: -100vw;
}

#site-header-logo {
  width: 8rem;
  transition: all 0.3s ease-out;
}
#site-header-logo img {
  width: 100%;
  height: auto;
  transition: all 0.3s ease-out;
}
#site-header-top.header_fixed_hidden #site-header-logo {
  width: 4rem;
  transition: all 0.3s ease-out;
}

#site-header-nav-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-end;
}

#site-header-lang {
  margin-bottom: 1rem;
  font-size: 0.7rem;
  text-transform: uppercase;
}
#site-header-lang a {
  padding: 0.5rem;
}
#site-header-lang a:hover {
  color: #b9967e;
}
#site-header-lang a:focus {
  color: #fff;
}
#site-header-lang .active {
  font-weight: bold;
}

#site-header-menu-close {
  display: none;
}
#site-header-nav {
  display: flex;
}

#site-header-menu {
  display: -webkit-box;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  flex-direction: row;
}
.menu {
  display: -webkit-box;
  display: flex;
  -webkit-align-items: stretch;
  align-items: stretch;
}

.menu li {
  margin-left: 0.5rem;
  line-height: 1;
  display: flex;
  align-items: center;
}
.menu li a {
  font-family: "Bebas";
  text-transform: uppercase;
  font-size: 1.2rem;
  line-height: 1;

  /* display: inline-block;
  vertical-align: middle; */
  display: flex;
  align-items: center;
}
#site-header .menu li a:hover {
  color: #b9967e;
}
.menu li:not(:first-of-type) a::before {
  content: "\2022";
  color: #b9967e;
  margin-right: 0.5rem;
  line-height: 0.75;
  display: inline-block;
  vertical-align: baseline;
}

#site-header-socials {
  display: -webkit-box;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}

#site-header-socials ul {
  display: flex;
  margin-left: 0.5rem;
}
#site-header-socials li {
  margin-left: 0.5rem;
}
#site-header-socials li img {
  vertical-align: baseline;
  width: auto;
  height: auto;
  height: intrinsic;
  display: inline-block;
}

#site-header-bottom {
  padding: 16rem 0 3rem 0;
}
#site-header-bottom p {
  font-size: 2rem;
  margin-top: 0.5rem;
}
#site-header-bottom button {
  margin-top: 1rem;
}

.text-black {
  color: #000;
}
.text-white {
  color: #fff;
}
.text-brown {
  color: #b9967e;
}
.text-bold {
  font-weight: bold;
}
.text-center {
  text-align: center;
}

button,
.button {
  display: inline-block;
  font-family: "Helvetica";
  background: transparent;
  border: 2px solid #fff;
  padding: 0.75rem 3rem;
  border-radius: 2rem;
  font-size: 0.8rem;
  text-transform: uppercase;
  color: #fff;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 2rem;
}
button + button,
.button + .button {
  margin-top: 1rem;
}

button:hover,
.button:hover {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
}
button.button-black,
.button.button-black {
  border-color: #000;
  color: #000;
}
button.button-black:hover,
.button.button-black:hover {
  background: rgba(0, 0, 0, 0.2);
}

.button-link {
  text-transform: uppercase;
  font-weight: bold;
  color: #2f251f;
  display: inline-block;
  margin-top: 1rem;
  font-size: 0.75rem;
}
.button-link:hover {
  color: #b9967e;
}

.owl-carousel,
.owl-carousel div:not(.owl-dots),
.owl-carousel img {
  min-height: 55vh !important;
}
.owl-carousel img {
  object-fit: cover;
}
.owl-dots {
  position: absolute;
  width: 100%;
  bottom: 2rem;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 0 3rem;
}
button.owl-dot {
  background: #fff !important;
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  display: inline-block;
  margin-top: 0;
}
button.owl-dot + button.owl-dot {
  margin-left: 1rem;
}
button.owl-dot.active {
  background: #b9967e !important;
}

section {
  padding: 5rem 0;
  position: relative;
  overflow: visible;
}

.columns-offset {
  position: relative;
  margin-bottom: 4rem;
}

#map-wrapper {
  position: absolute;
  top: 0;
  right: 0;
  width: 65%;
}
#map-wrapper img#map {
  width: 100%;
  height: auto;
}
#map-wrapper img:not(#map) {
  position: absolute;
  width: 3%;
  height: auto;
}
#map-wrapper #map-flag-1 {
  top: 33%;
  left: 52%;
}
#map-wrapper #map-flag-2 {
  top: 38%;
  left: 55.5%;
}
#map-wrapper #map-flag-3 {
  top: 38%;
  left: 63.5%;
}
#map-wrapper #map-flag-4 {
  top: 44%;
  left: 60%;
}
#map-wrapper #map-flag-5 {
  top: 47%;
  left: 64.5%;
}
#map-wrapper #map-flag-6 {
  top: 69%;
  left: 92.5%;
}

.grid-auto-width {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  grid-gap: 2rem;
  align-items: center;
  margin: 2rem 0;
}
.grid {
  display: grid;
  grid-gap: 2rem;
  align-items: center;
  margin: 2rem 0;
  text-align: center;
}
.grid h6 {
  margin-top: 1.5rem;
}

.grid-2 {
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 0;
}
.grid-3 {
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 1rem;
}
.grid-4 {
  grid-template-columns: repeat(4, 1fr);
}
.grid-5 {
  grid-template-columns: repeat(5, 1fr);
}
.grid-6 {
  grid-template-columns: repeat(6, 1fr);
}

.video-absolute {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.text-absolute {
  position: absolute;
  bottom: 20%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.text-absolute span {
  display: inline-block;
  color: #fff;
  margin: 0.1rem 0;
  padding: 0 0.5rem;
}
#home-carousel-section .text-absolute span {
  background-color: rgba(173, 130, 100, 0.75);
}

.p-0 {
  padding: 0;
}

#site-menu-trigger {
  display: none;
}

.show_on_mobile {
  display: none;
}
.hide_on_mobile {
  display: block;
}

#site-footer {
  background: url("../img/footer-bg.jpg") no-repeat;
  background-size: cover;
  padding: 5rem 0;
}
#site-footer .grid {
  grid-gap: 1rem;
  align-items: stretch;
}
#site-footer .grid > * {
  background-color: #fff;
  padding: 2rem;
  position: relative;
}
#site-footer .grid h6 {
  margin-top: 1rem;
}
#site-footer .grid p {
  font-size: 0.75rem;
  margin-top: 1rem;
}
#site-footer .grid-2 {
  grid-gap: 0;
}
.gmap_canvas {
  overflow: hidden;
  background: none !important;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  padding: 0 !important;
}
.bg-black {
  background-color: #000 !important;
  color: #fff;
}
.bg-black h3 {
  color: #fff;
}
.bg-brown {
  background-color: #ad8264 !important;
  color: #100707;
}
.bg-light-brown {
  background-color: #f5efef !important;
  color: #100707;
}

.align-left {
  text-align: left;
}
#site-footer form label {
  color: #fff;
  font-weight: bold;
  font-size: 0.75rem;
}
#site-footer form input::placeholder {
  color: #777;
}
#site-footer form input,
#site-footer form textarea {
  background-color: transparent;
  color: #fff;
  font-weight: normal;
  padding: 0.5rem;
  border: 0;
  border-bottom: 2px solid #fff;
  font-family: "Helvetica";
  width: 100%;
  font-size: 0.75rem;
  border-radius: 0;
}

#site-footer form input:focus,
#site-footer form textarea:focus {
  border-bottom-color: #b9967e;
}
#site-footer form .grid-2 {
  grid-gap: 1rem;
  text-align: left;
  font-size: 0.75rem;
}
#site-footer form .grid > * {
  background-color: transparent;
  padding: 0;
}
#site-footer form fieldset {
  border: 0;
}
#site-footer form button[type="submit"] {
  background-color: #fff;
  color: #2f251f;
  text-transform: uppercase;
  text-align: center;
  padding: 0.75rem;
  width: 100%;
  display: inline-block;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: "Helvetica";
  margin-top: 1rem;
  border: 0;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
#site-footer form button[type="submit"]:hover {
  background-color: #b9967e;
}

/* Keyframes Spin */
@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
#site-footer form button[type="submit"] .icon-spinner {
  display: none;
  width: 15px !important;
  border: 2px solid #2f251f;
  border-top-color: transparent;
  aspect-ratio: 1/1;
  border-radius: 50%;
  animation: spin 1s infinite linear;
  margin-left: 0.5rem;
}

#site-footer-bottom {
  background: #444;
  color: #888;
}
#site-footer-bottom p {
  color: #888;
  font-size: 0.75rem;
}
#site-footer-bottom p {
  color: #888;
  font-size: 0.75rem;
}

.flex {
  display: flex;
  align-items: center;
}

#site-footer-bottom {
  padding: 1rem 0;
}
#site-footer-bottom .flex > *:first-of-type {
  flex: 1;
}
#site-footer-bottom .menu a {
  color: #ccc;
}
#site-footer-bottom .menu a:hover {
  color: #fff;
}
#site-footer-bottom .menu li {
  margin-left: 0;
  margin-right: 0.5rem;
}

#site-footer-bottom p {
  margin-top: 0.5rem;
}
.footer-socials li {
  margin-left: 0.5rem;
}
.footer-socials li img {
  width: 18px;
  height: auto;
}

.alert button.close {
  border: 0;
  border-radius: 0;
  font-size: 1.5rem;
  padding: 0;
  margin: 0;
  text-align: right;
}
.alert button.close:hover {
  background: transparent;
}
.alert button.close span {
  line-height: 1;
  margin-top: -0.5rem;
  display: block;
}

.alert {
  display: flex;
  align-items: center;
  margin-top: 1rem;
  padding: 0.5rem 1rem;
}
.alert p {
  margin: 0 !important;
  color: #fff;
}
.alert > *:first-child {
  flex: 1;
  padding-right: 1rem;
}

.alert-success {
  background-color: #779f7e;
}
.alert-error {
  background-color: #ca8f8f;
}
.alert-warning {
  background-color: #b9ae64;
}

.popup-overlay {
  background-color: rgba(0, 0, 0, 0.5);
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: 0.15s ease-in-out;
}

.popup-overlay.visible {
  opacity: 1;
  visibility: visible;
  transition: 0.15s ease-in-out;
}

.popup-container {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 600px;
  max-width: 95%;
  transform: translate(-50%, -50%);
  background-color: #fff;
  border-radius: 8px;
}
.popup-close {
  position: absolute;
  margin: 0;
  height: 26px;
  width: 26px;
  left: auto;
  right: 9px;
  bottom: auto;
  top: 4px;
  padding: 0px;
  color: #a8a8a8;
  font-family: inherit;
  font-weight: 400;
  font-size: 30px;
  line-height: 24px;
  border: 2px solid #ffffff;
  border-radius: 26px;
  box-shadow: 0px 0px 15px 1px rgba(2, 2, 2, 0);
  text-shadow: 0px 0px 0px rgba(0, 0, 0, 0.23);
  background-color: rgba(0, 0, 0, 0);
}
.popup-close:hover {
  color: #000;
}

.popup-container-header {
  padding: 33px 70px;
}
.popup-container-footer {
  padding: 20px 70px;
}
.popup-container-divider {
  border-top: 1px solid #e7e7e7;
}

.popup-container h4 {
  font-size: 24px;
  margin-bottom: 0;
  font-family: "Helvetica";
}
.popup-container h4 + p {
  margin-bottom: 2rem;
}
.popup-container fieldset {
  border: 0;
}
.popup-container fieldset:not(:first-of-type) {
  margin-top: 1rem;
}

.popup-container label {
  margin-bottom: 0.25rem;
  font-size: 0.75rem;
}
.popup-container select,
.popup-container textarea,
.popup-container input[type="text"],
.popup-container input[type="email"] {
  width: 100%;
  border: 1px solid #eee;
  color: #555;
  padding: 0.75rem 0.25rem;
  border-radius: 5px;
  font-family: "Helvetica";
  font-size: 0.75rem;
}
.popup-container textarea {
  min-height: 100px;
}
.popup-container input[type="checkbox"] {
  accent-color: #b9967e;
}
.popup-container button[type="submit"] {
  border-color: #b9967e;
  color: #b9967e;
  margin-top: 0;
}

.feature {
  margin-top: 3rem;
}
.gdpr li {
  margin-left: 1rem;
}
.gdpr a {
  color: #ccc;
  font-size: 0.75rem;
}
.gdpr a:hover {
  color: #fff;
}

/* popup */
.popup ::placeholder {
  color: #000;
}
.popup.visible {
  display: block;
  animation: homepage_popup 0.5s 1s forwards;
}
@keyframes homepage_popup {
  0% {
    bottom: -100%;
  }
  100% {
    bottom: 30px;
  }
}
.popup {
  display: none;
  z-index: 999;
  width: 400px;
  position: fixed;
  bottom: -100%;
  right: 30px;
  padding: 18px;
  border-radius: 0px;
  border: 1px solid #d8d8d8;
  box-shadow: 0px 0px 30px 0px rgba(2, 2, 2, 0);
  background-color: rgba(211, 204, 193, 1);
}
.popup input[type="text"] {
  background-color: transparent !important;
  border: 1px solid #000 !important;
  border-radius: 2px;
  color: #000;
  padding: 6px 10px;
  height: 38px;
  width: 100%;
  line-height: 1.3;
  font-size: 16px;
  margin-top: 1rem;
}
.popup input[type="submit"] {
  margin-top: 1rem;
}
.popup h3 {
  font-size: 26px;
}
.popup h4 {
  font-size: 18px;
  margin-bottom: 1rem;
}
.popup p {
  font-size: 14px;
}
.popup .close {
  position: absolute;
  height: 26px;
  width: 26px;
  left: auto;
  right: 7px;
  bottom: auto;
  top: 7px;
  padding: 0px;
  color: #0a0a0a;
  font-family: Arial;
  font-weight: 100;
  font-size: 24px;
  line-height: 24px;
  border: 0px solid #ffffff;
  border-radius: 26px;
  box-shadow: 0px 0px 15px 1px rgba(2, 2, 2, 0);
  text-shadow: 0px 0px 0px rgba(0, 0, 0, 0.23);
  background-color: rgba(255, 255, 255, 0);
  cursor: pointer;
}

@media (max-width: 768px) {
  .popup {
    left: 30px;
    width: auto;
  }
  .gdpr li {
    margin-left: 0rem;
  }
  .show_on_mobile {
    display: block;
  }
  .hide_on_mobile {
    display: none;
  }
  .copyright-wrapper {
    flex-direction: column-reverse !important;
  }
  .gdpr {
    margin: 1rem 0;
  }
  h1,
  h2 {
    font-size: 2rem;
  }
  .text-absolute h2 {
    margin: 0;
  }
  #site-menu-trigger {
    position: relative;
    display: block;
    width: 25px;
    height: 10px;
    line-height: 1;
    font-size: 10px;
    padding: 1rem;
    margin: -1rem;
    box-sizing: content-box;
  }
  #site-menu-trigger::before,
  #site-menu-trigger::after {
    content: "";
    position: relative;
    height: 3px;
    width: 100%;
    background-color: #fff;
    display: inline-block;
    top: 0;
    bottom: initial;
  }
  #site-menu-trigger::after {
    bottom: 0;
    top: initial;
  }
  #site-header-nav {
    flex-direction: column;
    align-items: flex-end;
  }
  #site-header-menu-overlay {
    z-index: 9998;
  }
  #site-header-menu-wrapper {
    display: block;
    position: fixed;
    width: 300px;
    top: 0;
    bottom: 0;
    left: auto;
    right: -10px !important;
    height: 100%;
    max-width: 100%;
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    -webkit-transform: translateX(50%) translateY(0);
    transform: translateX(50%) translateY(0);
    will-change: scroll-position;
    z-index: 9999;

    -webkit-overflow-scrolling: touch;
    -webkit-backface-visibility: hidden;

    /* transition: background-color 0.5s cubic-bezier(0.5, 0, 0, 0.75),
      opacity 0.5s cubic-bezier(0.5, 0, 0, 0.75),
      transform 0.5s cubic-bezier(0.5, 0, 0, 0.75), visibility 0s 0.5s,
      -webkit-transform 0.5s cubic-bezier(0.5, 0, 0, 0.75); */

    transition: opacity 0.5s cubic-bezier(0.5, 0, 0, 0.75), visibility 0s 0.5s,
      -webkit-transform 0.5s cubic-bezier(0.5, 0, 0, 0.75);
    transition: opacity 0.5s cubic-bezier(0.5, 0, 0, 0.75),
      transform 0.5s cubic-bezier(0.5, 0, 0, 0.75), visibility 0s 0.5s;
    transition: opacity 0.5s cubic-bezier(0.5, 0, 0, 0.75),
      transform 0.5s cubic-bezier(0.5, 0, 0, 0.75), visibility 0s 0.5s,
      -webkit-transform 0.5s cubic-bezier(0.5, 0, 0, 0.75);
  }
  #site-header-menu-wrapper.visible {
    opacity: 1;
    pointer-events: inherit;
    -webkit-transform: translateX(0) translateY(0);
    transform: translateX(0) translateY(0);
    visibility: inherit;

    /* transition: all 0.5s cubic-bezier(0.5, 0, 0, 0.75), visibility 0s 0.5s; */

    transition: opacity 0.5s cubic-bezier(0.5, 0, 0, 0.75), visibility 0s 0s,
      -webkit-transform 0.5s cubic-bezier(0.5, 0, 0, 0.75);
    transition: opacity 0.5s cubic-bezier(0.5, 0, 0, 0.75),
      transform 0.5s cubic-bezier(0.5, 0, 0, 0.75), visibility 0s 0s;
    transition: opacity 0.5s cubic-bezier(0.5, 0, 0, 0.75),
      transform 0.5s cubic-bezier(0.5, 0, 0, 0.75), visibility 0s 0s,
      -webkit-transform 0.5s cubic-bezier(0.5, 0, 0, 0.75);
  }
  #site-header-menu a {
    color: #2f251f;
  }
  #site-header-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
  }
  #site-header-menu-overlay.visible {
    display: block;
  }
  #site-header-menu > ul {
    flex-direction: column;
  }
  #site-header-menu {
    flex-direction: column;
    background-color: #000;
    color: #fff;
    padding: 2rem 1rem 2rem 2rem;
    height: 100vh;
  }

  #site-header-menu > ul li {
    margin-left: 0;
  }
  #site-header-menu > ul li a {
    font-size: 16px;
    font-weight: bold;
    padding: 0.5rem 0;
    display: inline-block;
    font-family: "Helvetica";
    text-transform: none;
    color: #fff;
  }
  #site-header-menu > ul li a::before {
    display: none;
  }
  #site-header-menu hr {
    background-color: #333;
    border: 0;
    width: 50%;
    height: 1px;
    margin: 2rem 0 4rem 0;
  }
  #site-header-menu p a {
    color: #fff;
  }

  #site-header-socials ul {
    margin: 2rem 0;
  }
  #site-header-socials li {
    margin-left: 0;
    margin-right: 0.5rem;
  }
  #site-header-socials img {
    width: 35px;
    height: auto;
  }

  #site-header-menu p {
    margin-bottom: 1rem;
    line-height: 1.6;
    font-size: 0.75rem;
    color: #aaa;
  }
  #site-header-menu,
  .menu {
    display: -webkit-flex;
    -webkit-align-items: flex-start;
    align-items: flex-start;
  }

  #site-header-menu-close {
    display: block;
    font-weight: bold;
    color: #fff;
    font-size: 2rem;
    align-self: flex-end;
  }
  .grid {
    grid-template-columns: 1fr 1fr;
  }
  .grid-5 > *:last-of-type {
    grid-column-start: 1;
    grid-column-end: 3;
  }

  .grid-3 {
    grid-template-columns: 1fr;
    grid-gap: 10px;
  }

  .list {
    grid-template-columns: repeat(2, 1fr);
  }
  #site-footer {
    padding-bottom: 0;
  }
  #site-footer .grid-2 {
    grid-template-columns: 1fr;
    margin-bottom: 0;
  }
  #site-footer form .grid-2 {
    grid-gap: 2rem;
    margin-bottom: 2rem;
  }

  .gmap_canvas {
    height: 40vh;
  }
  #site-footer-bottom .flex {
    align-items: flex-start;
    flex-direction: column;
  }
  #site-footer-bottom .menu a {
    display: block;
    font-size: 0.75rem;
  }
  .footer-socials {
    flex-direction: row !important;
    margin-top: 0.5rem;
  }
  .footer-socials li {
    margin: 0 0.5rem 0 0;
  }
  .popup-container {
    overflow-y: scroll;
    height: 80vh;
  }
  .popup-container-header,
  .popup-container-footer {
    padding-left: 20px;
    padding-right: 20px;
  }
  .grid h6 br {
    display: none;
  }
}
