.section-title {
  font-size: 34px;
  font-family: "Poiret One", cursive;
}
.section-title .highlight {
  color: var(--primary);
  font-style: italic;
}
@media only screen and (max-width: 600px) {
  .section-title {
    font-size: 28px;
  }
}

a:hover {
  text-decoration: none;
}

.paragraph-l-border {
  font-size: 22px;
  font-weight: 300;
  padding-left: 35px;
  border-left: 3px solid var(--gold);
  text-align: justify;
}
@media only screen and (max-width: 600px) {
  .paragraph-l-border {
    font-size: 18px;
    padding-left: 18px;
  }
}

.hover-text-gold.primary {
  color: var(--primary);
}
.hover-text-gold:hover {
  color: var(--gold);
}

.round-logo {
  margin-bottom: -30px;
  border-radius: 50%;
  padding: 10px;
  width: 110px;
}
@media (min-width: 760px) {
  .round-logo .nav-bar-content.web {
    display: grid;
  }
}

.nav-bar {
  height: 85px;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 9999;
}
.nav-bar .nav-bar-content {
  grid-template-columns: 1fr 1fr 120px 0.66fr 0.66fr 0.66fr;
  display: grid;
  justify-content: center;
  justify-items: center;
  align-items: center;
  display: none;
}
@media (min-width: 760px) {
  .nav-bar {
    height: auto;
  }
  .nav-bar .nav-bar-content.web {
    display: grid;
  }
}
@media (max-width: 759px) {
  .nav-bar .nav-bar-content.mobile {
    display: block;
  }
  .nav-bar .nav-bar-content.mobile .round-logo {
    margin: 0 auto 0;
  }
}

.nav-bar div a, .nav-bar div button {
  text-decoration: none;
  color: black;
  font-weight: 400;
  font-family: "Poiret One", cursive;
  font-size: 18px;
  padding: 29px 0;
}

.mobile-menu-toggle {
  position: fixed;
  top: 33px;
  right: 30px;
  z-index: 999;
  font-size: 30px;
  color: white;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  cursor: pointer;
}
.mobile-menu-toggle .menu-toggle-container {
  position: relative;
}

.mobile-menu {
  width: 80%;
  min-width: 200px;
  max-width: 400px;
  padding: 30px;
  position: fixed;
  height: 100vh;
  right: -100%;
  background-color: #F2EFE8;
  z-index: 998;
  transition: right 0.2s ease;
  top: 0;
}
.mobile-menu .mobile-menu-item {
  padding: 5px 0;
  display: block;
}
.mobile-menu .mobile-menu-container {
  position: relative;
  width: 100%;
  height: 100%;
}
.mobile-menu .mobile-menu-container .nav-logo {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
.mobile-menu.active {
  right: 0;
}

#menuToggle input {
  display: block;
  width: 40px;
  height: 32px;
  position: absolute;
  top: -7px;
  left: -5px;
  cursor: pointer;
  opacity: 0;
  /* hide this */
  z-index: 2;
  /* and place it over the hamburger */
  -webkit-touch-callout: none;
}

.hamburger {
  position: relative;
}

/*
 * Just a quick hamburger
 */
.hamburger span {
  display: block;
  width: 33px;
  height: 4px;
  margin-bottom: 5px;
  position: relative;
  background: #aaa;
  border-radius: 3px;
  z-index: 9999;
  transform-origin: 4px 0px;
  transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1), background 0.5s cubic-bezier(0.77, 0.2, 0.05, 1), opacity 0.55s ease;
}

.hamburger span:first-child {
  transform-origin: 0% 0%;
}

.hamburger span:nth-last-child(2) {
  transform-origin: 0% 100%;
}

.hamburger.open span {
  opacity: 1;
  transform: rotate(-45deg) translate(-3px, -1px);
}
.hamburger.open span:nth-last-child(3) {
  transform: rotate(45deg) translate(0, -2px);
}
.hamburger.open span:nth-last-child(2) {
  opacity: 0;
  transform: rotate(0deg) scale(0.2, 0.2);
}

.gallery-container {
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-template-rows: 1fr;
  display: grid;
  justify-content: center;
  justify-items: center;
  align-items: center;
  margin: 0 auto;
}
.gallery-container::after {
  content: "";
  background-image: url("/images/backgrounds/pattern.svg");
  top: -50px;
  left: -50px;
}
@media (max-width: 759px) {
  .gallery-container {
    grid-template-columns: 1fr;
    grid-template-rows: 1fr 1fr 1fr;
  }
}

.gallery-item {
  height: 300px;
  width: 100%;
  background-size: cover;
  background-position: top;
  color: white;
  font-weight: bold;
  display: flex;
  justify-content: space-around;
  align-items: center;
  position: relative;
}
@media only screen and (max-width: 1279px) {
  .gallery-item {
    width: 300px;
    height: 300px;
  }
  .gallery-item .title {
    font-size: 24px !important;
  }
}
.gallery-item:hover .overlay {
  background-color: rgba(0, 0, 0, 0);
}
.gallery-item .overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  transition: all 0.2s ease;
  background-color: rgba(255, 255, 255, 0.1);
}
.gallery-item .title {
  position: relative;
  font-size: 30px;
  font-family: "Poiret One", cursive;
}

.cta-container {
  width: 300px;
  max-width: 95vw;
  padding: 20px;
  border: 2px solid var(--primary);
  text-align: center;
  color: var(--primary);
  cursor: pointer;
  background-color: var(--primary);
  color: white;
}
.cta-container:hover {
  background-color: #929481;
}
.cta-container.inversed {
  background-color: white;
  color: var(--primary);
}
.cta-container.inversed:hover {
  background-color: #f7f7f7;
}
.cta-container h6 {
  margin-bottom: 0;
}
.cta-container p {
  margin-bottom: 0;
  font-size: 12px;
}

footer {
  font-weight: 300;
  background-color: var(--primary-dark);
}
footer .footer-content {
  padding: 2.5rem 1rem;
}
footer b {
  font-weight: bold !important;
}
footer a {
  color: white;
}
footer hr {
  margin: 1.5rem 0;
  border-color: white;
}

body {
  position: relative;
  scroll-behavior: smooth;
  font-family: "Lato", sans-serif;
  --primary: #999b89;
  --primary-dark: #666759;
  --gold: #F2C83B;
  --creme: rgba(243,235,222,0.55);
}
body main {
  overflow: hidden;
}
body .body_overlay {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.6);
  width: 100%;
  height: 100%;
  z-index: 6;
  transition: all 0.2s ease;
  display: none;
}
body.noscroll {
  overflow: hidden;
}
body.noscroll .body_overlay {
  opacity: 1;
  display: block;
}
body .text-block {
  min-width: 300px;
  max-width: 85vw;
  margin: 0 auto;
  text-align: center;
  padding: 3rem 0.2rem;
  color: #4F4C4C;
}

.team-block {
  text-align: center;
  padding: 3rem 10%;
}

.team-section {
  /*max-width:1080px;*/
}

h5 {
  font-weight: bold;
  padding-bottom: 1rem;
}

h2 {
  font-weight: 400;
}

p {
  line-height: 1.7;
  font-size: 18px;
  font-weight: 300;
}

.login_button:hover {
  background-color: rgb(255, 255, 255);
  text-decoration: none;
  color: black;
}

.login_button {
  background-color: rgba(255, 255, 255, 0.75);
  border-radius: 15px;
  padding: 7px 15px;
  float: right;
  margin-top: 3rem;
  text-decoration: none;
  color: black;
}
@media (max-width: 759px) {
  .login_button {
    display: none;
  }
}

.divider {
  background-color: #57585A;
  width: 1px;
  margin: 3rem 0;
}

.bg-color {
  background-color: #F2EFE8;
}

.txt-color {
  color: #4F4C4C;
}
