/* lily-script-one-regular - latin */
@font-face {
  font-display: swap;
  font-family: 'Lily Script One';
  font-style: normal;
  font-weight: 400;
  src: url('fonts/lily-script-one-v15-latin-regular.woff2') format('woff2');
}
/* josefin-slab-regular - latin */
@font-face {
  font-display: swap;
  font-family: 'Josefin Slab';
  font-style: normal;
  font-weight: 400;
  src: url('fonts/josefin-slab-v24-latin-regular.woff2') format('woff2');
}
/* josefin-slab-700 - latin */
@font-face {
  font-display: swap;
  font-family: 'Josefin Slab';
  font-style: normal;
  font-weight: 700;
  src: url('fonts/josefin-slab-v24-latin-700.woff2') format('woff2');
}

*, *:before, *:after {
  box-sizing: border-box;
}

body {
  font-family: "Josefin Slab", -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  font-size: 18px;
  background: #ffeeec;
  margin: auto;
}

.site-canvas {
  position: relative;
  width: 100%;
}

.logo {
  text-align: center;
  font-family: "Lily Script One";
  font-size: 2em;
  padding: 80px 0 40px;
}
@media (min-width: 500px) {
  .logo {
    padding: 80px 0 40px;
    font-size: 3em;
  }
}

.mobile-nav {
  position: fixed;
  top: 0;
  right: 0;
  margin: 10px;
  height: 50px;
  width: 50px;
  border-radius: 4px;
  border: 2px solid #111;
  background: #ffeeec;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  cursor: pointer;
  z-index: 110;
  display: flex;
}
.mobile-nav span {
  margin: 3px 0;
  background: #111;
  height: 3px;
  width: 28px;
  border-radius: 2px;
  display: block;
}
.mobile-nav.open-nav span {
  margin: -1.5px 0;
  transform: rotate(45deg);
}
.mobile-nav.open-nav span:last-child {
  transform: rotate(-45deg);
}
@media (min-width: 768px) {
  .mobile-nav {
    display: none;
  }
}

nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  text-align: center;
  font-size: 1.6em;
  font-weight: 700;
  background: #ffeeec;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  display: none;
  z-index: 100;
}
nav.open-nav {
  display: flex;
}
@media (min-width: 768px) {
  nav {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    text-align: center;
    padding: 10px 0;
    font-size: 1.1em;
    display: block;
  }
}
nav a {
  padding: 20px;
  text-decoration: none;
  display: inline-block;
  color: inherit;
}
@media (min-width: 768px) {
  nav a {
    padding: 12px 10px 10px;
    margin: 0 3px;
  }
}
@media (min-width: 920px) {
  nav a {
    padding: 12px 16px 10px;
    margin: 0 10px;
  }
}
nav a:hover {
  background: #ffc9c9;
  border-radius: 4px;
  border-color: transparent;
}

.cover {
  height: 50vh;
  background: #fff url(/2021/photos/banner.jpg) 50% 50%/cover no-repeat;
  margin: 40px 0 60px;
}

.divider {
  margin: 60px auto;
  width: 140px;
  height: 6px;
  background: rgba(0, 0, 0, 0.1);
  border-radius: 10px;
}

h2 {
  margin: 50px auto 30px;
  width: calc(100% - 30px);
  max-width: 740px;
  font-weight: 700;
  font-size: 1.4em;
  line-height: 1.4em;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  padding-bottom: 15px;
}

h2:before, .para:before {
  content: "";
  display: block;
  height: 130px;
  height: 6.5rem;
  margin: -6.5rem 0 0;
  position: static;
}

.para {
  font-size: 1.2em;
  line-height: 1.5em;
  margin: 0 auto 15px;
  width: calc(100% - 30px);
  max-width: 740px;
}
.para .b {
  font-size: 1.4em;
  font-weight: 700;
}
.para .bold {
  font-weight: 700;
}

.video {
  margin: 40px auto;
  width: calc(100% - 30px);
  max-width: 1200px;
}

.video video {
  margin: auto;
  max-width: 100%;
  display: block;
}

.images {
  margin: 40px auto;
  width: calc(100% - 30px);
  max-width: 1024px;
  overflow: hidden;
}
.images picture {
  margin: auto;
  max-width: 100%;
  display: block;
}

picture img {
  max-width: 100%;
  display: block;
}

.three-columns {
  margin: 40px auto 0;
  max-width: 1400px;
  width: calc(100% - 50px);
}
.three-columns .column picture {
  width: 100%;
  max-width: 100%;
  margin-bottom: 40px;
  display: block;
}
.three-columns .column picture img {
  width: 100%;
  max-width: 100%;
  display: block;
}

@media (min-width: 1024px) {
  .three-columns {
    width: calc(100% - 100px);
    grid-template-columns: repeat(2, 1fr);
    display: grid;
    gap: 50px;
  }
  .three-columns .column picture img.object-fit-cover {
    object-fit: cover;
  }
}



.rates {
  margin: 0 auto 60px;
  text-align: center;
  width: calc(100% - 30px);
  max-width: 740px;
  grid-gap: 15px;
  gap: 15px;
  grid-template-columns: repeat(1, 1fr);
  display: grid;
}
@media (min-width: 580px) {
  .rates {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 820px) {
  .rates {
    grid-gap: 40px;
    gap: 40px;
  }
}
@media (min-width: 1400px) {
  .rates {
    margin: 0 auto 0;
    max-width: 1400px;
    width: calc(100% - 80px);
    grid-template-columns: repeat(4, 1fr);
  }
}
.rates .rates-block {
  background: #fff;
  padding: 30px;
}
.rates .rates-block .title {
  font-size: 1.2em;
  font-weight: 700;
}
@media (min-width: 700px) {
  .rates .rates-block .title {
    font-size: 1.4em;
  }
}
@media (min-width: 1400px) {
  .rates .rates-block .title {
    font-size: 1.4em;
  }
}
.rates .rates-block .price {
  padding: 20px 0;
  color: #f26161;
}
@media (min-width: 700px) {
  .rates .rates-block .price {
    font-size: 1.6em;
    padding: 30px 0;
  }
}
.rates .rates-block .price span {
  padding-right: 8px;
  font-weight: 700;
  font-size: 2em;
}

.banner {
  margin: 0 auto;
  width: calc(100% - 30px);
  max-width: 740px;
  grid-gap: 15px;
  gap: 15px;
  grid-template-columns: repeat(1, 1fr);
  display: grid;
}
@media (min-width: 1400px) {
  .banner {
    padding: 50px 0;
    display: flex;
  }
}
@media (min-width: 1400px) {
  .banner {
    max-width: 1400px;
    width: calc(100% - 80px);
    grid-template-columns: repeat(4, 1fr);
  }
}
.banner__block {
  flex: 1;
  padding: 20px;
  align-items: center;
  background: #fff;
  flex-direction: row-reverse;
  display: flex;
}
@media (min-width: 1400px) {
  .banner__block {
    padding: 50px 15px 40px;
    text-align: center;
    display: block;
  }
}
.banner__block p {
  margin: 0;
  font-size: 1.1em;
  line-height: 1.4em;
  text-align: left;
  flex-grow: 1;
}
@media (min-width: 1400px) {
  .banner__block p {
    text-align: center;
  }
}
.banner__block i.icon {
  min-width: 40px;
  text-align: center;
  color: #f26161;
  justify-content: center;
  align-items: center;
  display: flex;
}
.banner__block i.icon svg {
  width: 40px;
}
@media (min-width: 1400px) {
  .banner__block i.icon {
    min-width: 0;
    margin-bottom: 20px;
  }
  .banner__block i.icon svg {
    width: 60px;
    height: 60px;
  }
}

footer {
  margin-top: 60px;
  padding: 100px 20px 100px;
  text-align: center;
  font-size: 1.1em;
  background: #fff;
}
footer a {
  padding: 10px 12px 8px;
  margin: 10px;
  text-decoration: none;
  color: inherit;
  display: inline-block;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
footer a:hover {
  background: rgba(0, 0, 0, 0.05);
  border-radius: 4px;
  border-color: transparent;
}
