html {
  font-size: 16px;
}

body {
  font-family: "Josefin Sans", sans-serif;
  color: #000;
  background: #fff;
  font-size: 1rem;
  font-weight: 300;
  letter-spacing: 0em;
  line-height: 1.4;
}

.serif {
  font-family: "Jacques Francois";
  font-weight: 300;
  font-style: normal;
}

p {
  margin: auto 0;
}

.header__inner {
  padding-left: 30px;
  padding-right: 30px;
  width: 100%;
  height: 70px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #fff;
}
.header__title {
  width: 70px;
  padding: 0;
  position: relative;
  z-index: 1000;
}
.header__title img {
  width: 100%;
  margin: 0;
}

/**nav**/
/* overlay-styles.css */
.hamburger-overlay {
  position: fixed;
  top: 11px;
  right: 20px;
  z-index: 1000;
  width: 48px;
  height: 48px;
  border-radius: 30px;
  border: none;
  background: #fff;
  cursor: pointer;
}
.hamburger-overlay__line {
  position: absolute;
  left: 11px;
  width: 26px;
  height: 2px;
  background-color: #000;
  transition: all 0.6s;
}
.hamburger-overlay__line:nth-of-type(1) {
  top: 14px;
}
.hamburger-overlay__line:nth-of-type(2) {
  top: 23px;
}
.hamburger-overlay__line:nth-of-type(3) {
  top: 32px;
}
.hamburger-overlay.active .hamburger-overlay__line {
  background-color: #000;
}
.hamburger-overlay.active .hamburger-overlay__line:nth-of-type(1) {
  transform: translateY(9px) rotate(-45deg);
}
.hamburger-overlay.active .hamburger-overlay__line:nth-of-type(2) {
  opacity: 0;
}
.hamburger-overlay.active .hamburger-overlay__line:nth-of-type(3) {
  transform: translateY(-9px) rotate(45deg);
}

.nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(255, 255, 255, 0.95);
  visibility: hidden;
  opacity: 0;
  transition: all 0.6s;
  z-index: 900;
}
.nav-overlay.active {
  visibility: visible;
  opacity: 1;
}
.nav-overlay .nav-overlay__item {
  opacity: 1;
  transform: translateY(0);
}
.nav-overlay .nav-overlay__item:nth-child(1) {
  transition-delay: 0.1s;
}
.nav-overlay .nav-overlay__item:nth-child(2) {
  transition-delay: 0.2s;
}
.nav-overlay .nav-overlay__item:nth-child(3) {
  transition-delay: 0.3s;
}
.nav-overlay .nav-overlay__item:nth-child(4) {
  transition-delay: 0.4s;
}
.nav-overlay__content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  padding: 0 15px;
  text-align: left;
}
.nav-overlay__list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.nav-overlay__item {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s;
}
.nav-overlay__item.nav-overlay__conmandz {
  margin: 30px auto auto;
  text-align: center;
  width: 240px;
}
.nav-overlay__item.nav-overlay__conmandz a {
  font-size: 1rem;
  display: block;
  text-align: center;
  padding: 0;
  background: #000;
  color: #fff;
  border-radius: 25px;
  line-height: 50px;
}
@media (hover: hover) {
  .nav-overlay__item.nav-overlay__conmandz a:hover {
    background: #666;
  }
}
.nav-overlay__item.nav-overlay__instagram {
  margin-top: 15px;
  text-align: center;
}
.nav-overlay__item.nav-overlay__instagram a {
  font-size: 1rem;
  padding: 0;
}
.nav-overlay__item.nav-overlay__instagram span {
  background: url(../img/instagram.png) left 0 no-repeat;
  background-size: 22px;
  margin-right: 0.5em;
  padding: 4px 0 4px 26px;
}
.nav-overlay__link {
  display: inline-block;
  padding: 5px 0;
  color: #000;
  font-size: 1.25rem;
  text-decoration: none;
  transition: color 0.3s;
}
.nav-overlay__link:hover {
  color: #ffd000;
}

/**Accordion**/
.button.accordion {
  width: 100%;
}

.accordion {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  overflow: hidden;
}
.accordion__trigger {
  position: relative;
  width: 100%;
  max-width: 240px;
  margin: auto;
  text-align: center;
  font-size: 0.875rem;
  padding: 0 10px;
  background: #fff;
  border: none;
  cursor: pointer;
  border-radius: 25px;
  line-height: 50px;
  transition: 0.2s;
  border: 1px solid #000;
}
@media (hover: hover) {
  .accordion__trigger:hover {
    background: #000;
    color: #fff;
  }
}
.accordion__icon {
  position: absolute;
  right: 10px;
  top: 13px;
  transition: transform 0.2s;
  background: #fff;
  border-radius: 12px;
}
.accordion__trigger[aria-expanded=true] .accordion__icon {
  transform: rotate(180deg);
}
.accordion__content {
  max-height: 0;
  text-align: left;
  overflow: hidden;
  transition: max-height 0.4s ease-in-out;
}
.accordion__content.open {
  max-height: 900px;
}
.accordion__body {
  padding: 0;
}
.accordion__body .section__sub-title {
  text-align: left;
  font-size: 1.125rem;
  margin-top: 30px;
}
.accordion__list {
  margin-left: 1em;
}
.accordion__item {
  margin: auto auto 5px;
  list-style-type: disc;
  list-style-position: outside;
}
.accordion__item:last-child {
  margin-bottom: auto;
}

.footer {
  background: #000;
}
.footer__inner {
  padding-left: 30px;
  padding-right: 30px;
  padding-top: 30px;
  padding-bottom: 15px;
  width: 100%;
  margin: 0 auto;
}
.footer__logo {
  text-align: center;
  color: #fff;
  font-size: 1.75rem;
  margin-bottom: 30px;
}
.footer__nav {
  margin-bottom: 15px;
}
.footer__list {
  font-size: 0.75rem;
}
.footer__item a {
  color: #fff;
  padding: 3px 0;
}
.footer__item a:hover {
  color: #ffd000;
}
.footer__copyright {
  font-size: 0.75rem;
  text-align: center;
}

.top-fv {
  background: url(../img/top-fv.jpg) center 50% no-repeat;
  background-size: cover;
  position: relative;
  text-align: center;
  height: calc(100vh - 70px);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
.top-fv .ly__inner {
  width: 100%;
  position: relative;
  z-index: 2;
}
.top-fv__title {
  display: block;
  font-size: 1.675rem;
  color: #fff;
  width: 100%;
}
.top-fv__catch {
  display: block;
  margin-top: 10px;
  font-size: 1rem;
  color: #fff;
  width: 100%;
}
.top-fv__overlay {
  position: absolute;
  z-index: 1;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.6);
}

.ly__inner {
  width: 100%;
  max-width: 700px;
  margin: auto;
  padding: 0 30px;
}

.section {
  padding-top: 30px;
  padding-bottom: 30px;
}
.section__white {
  background: #fff;
}
.section__gray {
  background: #F5F9F6;
}
.section__title {
  font-size: 1.375rem;
  font-weight: 700;
  margin-bottom: 20px;
  text-align: center;
}
.section__sub-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 20px;
  text-align: center;
}
.section__note {
  display: block;
  font-size: 0.875rem;
  font-weight: 300;
}
.section img {
  width: 100%;
  max-width: 800px;
}
.section p {
  margin-bottom: 15px;
}
.section p:last-of-type {
  margin-bottom: auto;
}
.section strong {
  font-weight: 700;
}

.align__center {
  text-align: center;
}

.align__right {
  text-align: right;
}

.button {
  text-align: center;
  width: 240px;
  margin: 45px auto auto;
}
.button a {
  font-size: 0.875rem;
  display: block;
  text-align: center;
  padding: 0;
  background: #fff;
  color: #000;
  border-radius: 25px;
  border: 1px solid #000;
  line-height: 50px;
  transition: 0.2s;
}
@media (hover: hover) {
  .button a:hover {
    background: #000;
    color: #fff;
  }
}
.button__blk a {
  background: #000;
  color: #fff;
}
@media (hover: hover) {
  .button__blk a:hover {
    background: #fff;
    color: #000;
  }
}

.instagram {
  margin-top: 15px;
  text-align: center;
}
.instagram a {
  font-size: 1rem;
  padding: 0;
}
.instagram span {
  background: url(../img/instagram.png) left 0 no-repeat;
  background-size: 22px;
  margin-right: 0.5em;
  padding: 4px 0 4px 26px;
}

/**Floating**/
.floating {
  position: fixed;
  z-index: 10;
  bottom: 20px;
  right: 20px;
}
.floating a {
  display: block;
  background: #000;
  color: #fff;
  text-align: center;
  width: 80px;
  height: 80px;
  line-height: 80px;
  border-radius: 40px;
  font-size: 0.75rem;
  transition: 0.2s;
}
.floating a:hover {
  opacity: 0.8;
}

.cta {
  margin: auto;
}
.cta p {
  text-align: left;
}
@media (min-width: 768px) {
  .cta p {
    text-align: center;
  }
}

a.text-link {
  text-align: right;
  text-decoration: underline;
}