/* Mixins
================================================== */
/* Breakpoints
================================================== */
.main-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9;
  padding: 2.75rem 2.25rem;
  justify-content: space-between;
  align-items: center;
  display: flex;
  flex-wrap: wrap;
}
.main-header .logo {
  filter: invert(10%) sepia(17%) saturate(4618%) hue-rotate(80deg) brightness(94%) contrast(96%);
}
@media (max-width: 768px) {
  .main-header {
    padding: 1rem 1rem;
  }
  .main-header .logo {
    width: 3.25em;
  }
}

.main-nav {
  position: fixed;
  top: 0;
  z-index: 11;
  width: 100%;
  height: 100%;
}
.main-nav .btn {
  position: absolute;
  position: absolute;
  top: 2.15rem;
  right: 1.1rem;
  color: #fff;
  z-index: 2;
}
.main-nav .main-menu {
  font-size: 3em;
  line-height: 1.55;
}
.main-nav .right {
  width: 100%;
  text-align: center;
  flex-wrap: wrap;
  align-items: center;
  align-content: center;
  justify-content: center;
  text-transform: uppercase;
  display: flex;
  height: 100%;
}
.main-nav .right ul, .main-nav .right li {
  margin: 0;
  padding: 0;
  list-style: none;
}
.main-nav .left {
  background: var(--color-beige);
  width: 50%;
  flex-wrap: wrap;
  align-items: center;
  align-content: center;
  justify-content: center;
  color: var(--color-green);
  display: none;
}
@media (min-width: 769px) {
  .main-nav {
    display: flex;
    flex-wrap: wrap;
  }
  .main-nav .left {
    display: flex;
  }
  .main-nav .btn {
    top: 4.35rem;
    right: 2.25rem;
  }
  .main-nav .right {
    width: 50%;
  }
  .main-nav .main-menu {
    font-size: 4.35em;
    line-height: 1;
  }
}

.menu_cta {
  font-family: "AdobeCaslonProItalic";
  max-width: 17em;
  margin: auto;
}

.main-nav {
  pointer-events: none;
}
.main-nav .left {
  transition: opacity 1.5s, transform 0.5s;
  opacity: 0;
  transform: translateY(100%);
}
.main-nav .right {
  transition: opacity 1.5s, transform 0.5s;
  opacity: 0;
  transform: translateY(-100%);
}
.main-nav .btn {
  opacity: 0;
}

.menu-open .main-nav {
  pointer-events: auto;
}
@media (max-width: 768px) {
  .menu-open .main-nav .logo {
    filter: invert(1);
  }
}
.menu-open .main-nav .btn {
  opacity: 1;
}
.menu-open .main-nav .left {
  opacity: 1;
  transform: translateY(0rem);
}
.menu-open .main-nav .right {
  opacity: 1;
  transform: translateY(0rem);
}

.section-bottom:after {
  display: none;
}
.section-bottom .footer-contacts {
  width: 18em;
}
@media (max-width: 768px) {
  .section-bottom > * {
    margin-bottom: 3em;
  }
  .section-bottom .logo {
    display: none;
  }
}
@media (min-width: 769px) {
  .section-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
}

.sm-menu {
  margin-right: 3em;
}

.footer-contact {
  font-family: "AdobeCaslonProItalic";
  font-size: 1.4em;
  line-height: 1.05;
  font-style: normal;
  margin-bottom: 0.95em;
}
.footer-contact a {
  display: block;
}

.contact-legal {
  font-family: "AdobeCaslonProItalic";
  font-size: 0.8em;
  line-height: 1.9;
}

.footer-nav {
  text-transform: uppercase;
  font-size: 1.4em;
  display: block;
  list-style: none;
  margin: 0 0 0.6em 0;
  padding: 0;
}
.footer-nav li {
  display: block;
  list-style: none;
  margin: 0 0 0.6em 0;
  padding: 0;
}

@media (max-width: 768px) {
  .footer-menu {
    display: none;
  }
}

.sm {
  margin: 0;
  padding: 0;
  list-style: none;
}
.sm li {
  margin: 0;
  padding: 0;
  list-style: none;
  display: inline-block;
  margin-right: 0.8em;
  margin-top: 0.15em;
}
.sm a {
  text-indent: -9999px;
  display: inline-block;
  overflow: hidden;
  position: relative;
  vertical-align: middle;
  width: 2.25em;
  height: 2.25em;
  transition: 0.2s;
}
.sm a:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
}
.sm a[href*=instagram]:before {
  background: url(../../images/footer-ig.svg) no-repeat center;
  background-size: contain;
}
.sm a[href*=linkedin]:before {
  background: url(../../images/footer-li.svg) no-repeat center;
  background-size: contain;
}
.sm a:hover {
  filter: invert(61%) sepia(24%) saturate(827%) hue-rotate(177deg) brightness(99%) contrast(92%);
}