/*global block styles*/

.f {
  display: flex;
  flex-direction: row;
}
.f-sb {
  justify-content: space-between;
}
/*51 styles */

.feature-04 {
  --background-image: url('/uploads/media/v-638016403613941335/p9-b51-bg.jpg');
  --background-overlay: var(--accent-color);
  --gap: 1rem;
  position: relative;
  background-color: var(--accent-color);
  color: white;
  background-image: var(--background-image);
  background-size: cover;
  background-position: center;
}
.feature-04:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--background-overlay);
  opacity: .8;
}
.feature-04 .block-inner {
  display: flex;
  position: relative;
  z-index: 1;
  padding: 4rem 2rem;
  min-height: 400px;
}
.feature-04 .label {
  font-size: 1.2rem;
  font-weight: 600;
}
.feature-04 .contents {
  display: flex;
  flex-direction: column;
  gap: var(--gap);
  text-align: center;
  max-width: 1140px;
  margin: 0 auto;
  align-items: center;
  justify-content: center;
}
.feature-04 h1,
.feature-04 p {
  margin: 0;
  max-width: 640px;
}
@media screen and (min-width:768px) and (max-width:1024px) {
  .feature-01 {
    --gap: 4vw;
  }
}
@media screen and (max-width:767px) {
  .feature-01 {
    --gap: 1rem;
    padding: 0;
  }
  .feature-01 .contents {
    flex-wrap: wrap;
  }
  .feature-01 .title,
  .feature-01 .text {
    width: 100%;
  }
  .feature-01 .title {
    font-size: 2rem;
    letter-spacing: -0.1rem;
  }
  .feature-01 .text {
    font-size: 1.25rem;
  }
  .feature-01 .photos img {
    width: 30%;
  }
  .feature-01 .intro {
    flex-direction: column;
    text-align: center;
  }
  .feature-01 .cards {
    flex-direction: column;
  }
  .feature-01 .cards .card {
    max-width: 100%;
  }
}
/*checking for variables*/

/* PATTERN= \/\*(?<var>[a-zA-Z0-9\\_]+)\=(?<styles>.*)\*\/ */

/* MATCHES FOUND=4*/

/*59 styles */

.block-menu-01 {
  font-size: 1rem;
  line-height: 1.1;
  position: sticky;
  top: -2px;
  z-index: 10;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 2px rgba(0, 0, 0, 0.05);
  background: white;
}
.block-menu-01 .block-inner {
  color: #222222;
}
.block-menu-01 .menu {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1rem;
  justify-content: center;
  height: 80px;
}
.block-menu-01 .menu .menu-header {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: 1.5rem;
  font-weight: 700;
}
.block-menu-01 .menu ul {
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: row;
  list-style: none;
}
.block-menu-01 .menu ul > li a {
  display: flex;
  padding: 1rem;
  font-weight: 600;
  color: #222222;
  width: 100%;
  text-decoration: none;
  font-size: 125%;
}
.block-menu-01 .menu ul > li a:hover {
  color: var(--accent-color);
}
.block-menu-01 .menu .menu-buttons {
  display: flex;
  gap: 1rem;
  font-weight: 600;
}
.block-menu-01 .menu .menu-buttons > a {
  display: flex;
  gap: .5rem;
  padding: .5rem;
  border: 2px solid white;
  border-radius: 0.25rem;
  line-height: 1;
  font-size: 1rem;
  background: none;
  color: white;
}
@media screen and (max-width:767px) {
  .block-menu-01 .menu {
    height: 60px;
    overflow: auto;
    justify-content: normal;
  }
  .block-menu-01 .menu .menu-items {
    white-space: nowrap;
  }
  .block-menu-01 .menu ul {
    overflow: auto;
    white-space: nowrap;
  }
}
/*checking for variables*/

/* PATTERN= \/\*(?<var>[a-zA-Z0-9\\_]+)\=(?<styles>.*)\*\/ */

/* MATCHES FOUND=0*/

/*58 styles */

.love-stories {
  position: relative;
}
.love-stories .block-inner {
  position: relative;
  display: flex;
  align-items: center;
  flex-direction: column;
  flex-wrap: wrap;
  padding: 4rem 2rem;
  justify-content: center;
  gap: 1rem;
  z-index: 1;
}
.love-stories .title {
  display: flex;
  gap: var(--gap);
  align-items: center;
  flex-direction: row;
}
.love-stories .title ui-svg {
  max-width: 250px;
}
.love-stories .title ui-svg .cls-2 {
  fill: white;
}
.love-stories .title ui-svg .cls-1,
.love-stories .title ui-svg .cls-3 {
  fill: #252525;
}
.love-stories .title p {
  max-width: 620px;
  font-size: 1.5rem;
  text-align: center;
}
.love-stories h1 {
  max-width: 65%;
  text-align: center;
  margin: 0;
}
.love-stories h1 ui-icon {
  font-size: 40%;
  color: var(--accent-color);
  vertical-align: baseline;
  transform: rotate(-35deg);
}
.love-stories p {
  margin: 0;
}
.love-stories h1,
.love-stories p {
  max-width: 65%;
}
.love-stories .intro {
  width: 100%;
  text-align: center;
}
.love-stories .cards {
  margin-top: 2rem;
  display: grid;
  overflow: hidden;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 1fr;
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
}
.love-stories .card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  max-width: 320px;
  border: 1px solid #dddddd;
  gap: 1rem;
  background: white;
  border-radius: .25rem;
  padding: 1rem;
  box-shadow: 0 0 2px rgba(0, 0, 0, 0.1);
}
.love-stories .card figure {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 0;
}
.love-stories .card figure figcaption {
  display: flex;
  gap: 1rem;
  flex-direction: column;
}
.love-stories .card .title {
  font-size: 125%;
  color: var(--accent-color);
  font-weight: 700;
}
.love-stories .card .caption {
  font-size: 90%;
  color: #777777;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.love-stories .card ui-button {
  width: 100%;
  --background-color: var(--accent-color);
  --text-color: white;
}
.love-stories .story-dialog {
  z-index: 100;
  line-height: 1.5;
  font-weight: 300;
  width: 100%;
  height: 100%;
  overscroll-behavior: contain;
  position: fixed;
  top: 0;
  left: 0;
  display: none;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.85);
  border: 0;
  justify-content: center;
}
.love-stories .story-dialog[open] {
  display: flex;
}
.love-stories .story-dialog[open] .dialog-body {
  margin-top: 0;
}
.love-stories .story-dialog .dialog-title {
  display: flex;
  gap: 1rem;
  align-items: center;
}
.love-stories .story-dialog .dialog-title img {
  max-width: 100px;
  border-radius: 100%;
}
.love-stories .story-dialog .dialog-body {
  width: 100%;
  max-width: 840px;
  padding: 2rem;
  border: 4px solid black;
  background: white;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: 250ms margin-top ease-in-out;
  margin-top: -100%;
  flex: 1;
  overflow: hidden;
  overscroll-behavior: contain;
  max-height: 100%;
}
.love-stories .story-dialog .dialog-content {
  max-height: calc(-247%);
  overflow: auto;
}
.love-stories .story-dialog .dialog-content p {
  max-width: 100%;
}
.love-stories .story-dialog .dialog-content p + p {
  margin-top: 1rem;
}
.love-stories .story-dialog a[data-cmd="close-dialog"] {
  position: absolute;
  right: 1rem;
  top: 1rem;
  font-size: 1.5rem;
  cursor: pointer;
}
.love-stories .story-dialog h3 {
  font-size: 3rem;
  line-height: 1;
  margin: 0;
}
.love-stories .story-dialog h3 small {
  font-size: 1rem;
  display: block;
  color: #9f3968;
}
@media screen and (max-width:767px) {
  .love-stories .block-inner {
    padding: 2rem 1rem;
  }
  .love-stories .intro {
    padding-bottom: 0;
  }
  .love-stories .cards {
    grid-template-columns: repeat(1, 1fr);
  }
  .love-stories .cards .card {
    width: 100%;
    max-width: 90%;
    margin: 0 auto;
    border-radius: .5rem;
  }
  .love-stories .cards .card figure {
    flex-direction: row;
  }
  .love-stories .cards .card figure img {
    width: 30%;
  }
  .love-stories .story-dialog .dialog-title img {
    width: 30%;
  }
  .love-stories dialog {
    max-height: 100%;
  }
  .love-stories dialog .dialog-body {
    max-height: 100%;
  }
  .love-stories dialog .dialog-content {
    flex: 1;
    overflow: auto;
    overscroll-behavior: contain;
  }
}
/*checking for variables*/

/* PATTERN= \/\*(?<var>[a-zA-Z0-9\\_]+)\=(?<styles>.*)\*\/ */

/* MATCHES FOUND=0*/

/*60 styles */

.divider-01 {
  --accent-color: #eeeeee;
  --margin-top: 0rem;
  --margin-bottom: 0rem;
  --border-width: 1px;
  position: relative;
  overflow: hidden;
  margin: var(--margin-top) 0 var(--margin-bottom) 0;
}
.divider-01 hr {
  background: none;
  border: 0;
  border-top: var(--border-width) solid var(--accent-color);
  margin: 0;
}
@media screen and (min-width:768px) and (max-width:1024px) {
  
}
@media screen and (min-width:768px) and (max-width:1024px) and (orientation: landscape) {
  
}
@media screen and (max-width:767px) {
  
}
@media screen and (max-width:767px) and (orientation: landscape) {
  
}
/*checking for variables*/

/* PATTERN= \/\*(?<var>[a-zA-Z0-9\\_]+)\=(?<styles>.*)\*\/ */

/* MATCHES FOUND=4*/

