.hamburgerMenu {
  display: flex;
  justify-content: center;
}
.hamburgerMenu__wrapper {
  background: #BCB99E;
  position: absolute;
  padding: 25px;
  border-radius: 0 0 50% 50%;
  z-index: 3;
  -webkit-box-shadow: 0px 6px 11px 0px rgba(0, 0, 0, 0.25);
  box-shadow: 0px 6px 11px 0px rgba(0, 0, 0, 0.25);
}
.hamburgerMenu__wrapper span {
  display: block;
  height: 1px;
  width: 56px;
  margin-bottom: 8px;
  background-color: white;
  transition: all 0.5s ease-in-out;
}
.hamburgerMenu__wrapper__fixed {
  display: none;
  position: fixed;
  transform: rotate(-90deg);
  left: -20px;
  bottom: 20%;
}
@media (min-width: 1024px) {
  .hamburgerMenu__wrapper__fixed--visible {
    display: block;
  }
}

.menuLink {
  display: flex;
  justify-content: center;
}
.menuLink a {
  display: inline-block;
  background: var(--color-primary);
  padding: 45px 35px 25px;
  color: white;
  border-radius: 50% 50% 0 0;
  text-transform: uppercase;
  text-decoration: none;
  font-size: 18px;
  box-shadow: 0px 6px 11px 0px rgba(0, 0, 0, 0.25);
}
.menuLink__fixed {
  display: none;
  position: fixed;
  transform: rotate(-90deg);
  right: -20px;
  bottom: 20%;
  z-index: 3;
}
@media (min-width: 1024px) {
  .menuLink__fixed--visible {
    display: block;
  }
}

.menuOpen {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: white;
  z-index: 4;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background: #bfbba0;
  width: 100vw;
  height: 100vh;
  transition: all 0.3s ease-in-out;
  transform: translate(0, -100%);
}
.menuOpen .closeMenu {
  cursor: pointer;
  position: absolute;
  top: 40px;
  right: 30px;
  height: 50px;
}
.menuOpen .closeMenu span {
  display: block;
  height: 1px;
  width: 56px;
  background-color: white;
  transition: all 0.5s ease-in-out;
}
.menuOpen .closeMenu span:nth-child(1) {
  transform: rotate(45deg) translate(18px, 18px);
}
.menuOpen .closeMenu span:nth-child(2) {
  transform: rotate(-45deg) translate(-17px, 18px);
}
.menuOpen .menu {
  padding: 0;
  margin: 0;
  list-style: none;
  text-align: center;
}
.menuOpen .menu li {
  padding: 24px;
}
.menuOpen .menu li a {
  display: block;
  font-family: var(--font-handtimes);
  color: var(--color-primary);
  text-transform: uppercase;
  text-decoration: none;
  font-size: 24px;
}
@media (min-width: 1024px) {
  .menuOpen .menu li a {
    font-size: 42px;
  }
}
.menuOpen__visible {
  transform: translate(0);
}

@font-face {
  font-family: "ralewaymedium";
  src: url("../fonts/raleway-medium-webfont.woff2") format("woff2"), url("../fonts/raleway-medium-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "handtimesregular";
  src: url("../fonts/handtimes-webfont.woff2") format("woff2"), url("../fonts/handtimes-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "never_let_goregular";
  src: url("../fonts/neverletgo-webfont.woff2") format("woff2"), url("../fonts/neverletgo-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
:root {
  --font-raleway: 'ralewaymedium';
  --font-handtimes: 'handtimesregular';
  --font-neverletgo: 'never_let_goregular';
  --color-primary: #8f4915;
  --color-secondary: #29270f;
  --color-tertiary: #8d6b33;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
}

img {
  max-width: 100%;
  height: auto;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

body {
  font-family: var(--font-raleway);
}

.noScroll {
  overflow: hidden;
}

.sectionTitle {
  font-family: var(--font-handtimes);
  font-size: 24px;
  font-weight: normal;
  margin-bottom: 8px;
}
.sectionTitle__underline {
  width: 200px;
  height: 4px;
  margin: 8px auto 16px;
}

.sectionSubTitle {
  font-family: var(--font-neverletgo);
  font-size: 48px;
  font-weight: normal;
  color: var(--color-tertiary);
  text-wrap: balance;
  margin-bottom: 24px;
  margin-top: 0;
  line-height: 1.2;
}
@media (min-width: 1024px) {
  .sectionSubTitle {
    font-size: 56px;
  }
}

.imageBgLine {
  position: relative;
}
.imageBgLine img {
  display: block;
}
.imageBgLine::after {
  content: "";
  position: absolute;
  border: var(--color-tertiary) 2px solid;
}
@media (max-width: 1023px) {
  .imageBgLine::after {
    width: 80%;
    height: 116%;
  }
}
@media (min-width: 1024px) {
  .imageBgLine::after {
    width: 80%;
    height: 80%;
    z-index: 0;
  }
}
.imageBgLine--right::after {
  right: -10%;
}
.imageBgLine--left::after {
  left: -10%;
}
.imageBgLine--top::after {
  top: -5%;
}
.imageBgLine--bottom::after {
  bottom: -5%;
}
.imageBgLine .imageAspectRatio {
  height: 100%;
}
@media (min-width: 1024px) {
  .imageBgLine .imageAspectRatio {
    z-index: 1;
  }
}

.headerLogo {
  padding: 24px 0 0 24px;
}
.headerLogo img {
  width: 50px;
  height: 62px;
}
@media (min-width: 1024px) {
  .headerLogo {
    padding: 68px 0 0 68px;
  }
}
@media (min-width: 1200px) {
  .headerLogo {
    padding: 68px 0 0 68px;
  }
  .headerLogo img {
    width: 97px;
    height: 120px;
  }
}

.btn {
  display: inline-block;
  border: none;
  padding: 12px 24px;
  font-family: var(--font-handtimes);
  font-size: 18px;
  cursor: pointer;
  font-weight: normal;
  text-transform: uppercase;
  text-decoration: none;
  text-align: center;
}

.btn--primary {
  background: var(--color-primary);
  color: white;
}

.btn--secondary {
  background: var(--color-secondary);
  color: white;
}

.btn--tertiary {
  background: var(--color-tertiary);
  color: white;
}

.btn--transparent-white {
  background: transparent;
  color: white;
  border: 1px solid white;
}

.footer {
  position: relative;
  background: url(../images/cover-bg.png) #bfbba0;
  background-size: cover;
  background-position: center center;
}
.footer .footerContent {
  text-align: center;
  margin-top: 42px;
}
@media (min-width: 768px) {
  .footer .footerContent {
    text-align: left;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 0 50px;
    justify-content: space-between;
  }
}
@media (min-width: 1024px) {
  .footer .footerContent {
    gap: 0;
    margin-top: 80px;
    margin-bottom: 50px;
  }
}
.footer__logo {
  margin-top: 42px;
  max-width: 95px;
  margin: 42px auto;
}
@media (min-width: 768px) {
  .footer__logo {
    width: 50%;
    order: 2;
    margin: 0;
    margin-right: auto;
  }
}
@media (min-width: 1024px) {
  .footer__logo {
    width: 20%;
    order: 3;
    margin: 0;
  }
}
@media (min-width: 1200px) {
  .footer__logo {
    max-width: 155px;
  }
}
.footer__copy {
  color: var(--color-primary);
  font-family: var(--font-neverletgo);
  font-size: 36px;
  line-height: 1;
  font-weight: normal;
  margin-bottom: 42px;
}
.footer__copy h2 {
  margin-top: 0;
}
.footer__copy .btn {
  display: block;
  width: 100%;
  max-width: 300px;
  margin: 24px auto;
}
@media (min-width: 768px) {
  .footer__copy .btn {
    margin: 0;
    margin-bottom: 24px;
  }
}
@media (min-width: 768px) {
  .footer__copy {
    width: 50%;
    order: 1;
  }
}
@media (min-width: 1024px) {
  .footer__copy {
    width: 25%;
    margin: 0;
  }
}
@media (min-width: 1200px) {
  .footer__copy {
    width: 30%;
  }
}
.footer__time {
  color: #2E2D11;
  font-size: 18px;
  text-align: left;
  padding: 0 24px;
  font-family: var(--font-raleway);
  margin-bottom: 32px;
}
.footer__time strong {
  font-size: 24px;
  text-transform: uppercase;
}
@media (min-width: 768px) {
  .footer__time {
    order: 3;
  }
}
@media (min-width: 1024px) {
  .footer__time {
    width: 25%;
    order: 2;
  }
}
.footer__address {
  color: #2E2D11;
  font-size: 18px;
  text-align: left;
  padding: 0 24px;
  font-family: var(--font-raleway);
}
@media (min-width: 768px) {
  .footer__address {
    order: 3;
  }
}
@media (min-width: 1024px) {
  .footer__address {
    width: 25%;
    order: 4;
  }
}
.footer__social {
  text-align: left;
  margin-top: 24px;
  margin-bottom: 56px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.footer__social a {
  width: 28px;
  height: 28px;
}
.footer__social a svg {
  fill: var(--color-tertiary);
}
.footer .hamburgerMenu__wrapper {
  position: relative;
}
.copyright {
	color: #2E2D11;
}

@media (min-width: 1024px) {
 	.copyright {
		order: 5;
		max-width: 380px;
		margin-left: auto;
	}
}