/*
sLess v 2.00

normalize.less
 - normalize css

reference.less
 - position
 - display
 - margin
 - shadow
 - animation
 - transform
 - responsive

style.less
 - main style

fonts.less
 - fonts style

popup.less
 - popup style

grid.less
 - grid size and configuration

animate.less
 - animation using keyframe style
*/
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
font,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
textarea,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
input,
header,
figure,
footer,
main,
figcaption,
nav,
section {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
  text-decoration: none;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -moz-box-sizing: border-box;
}
figure {
  -webkit-margin-before: 0;
  -webkit-margin-after: 0;
  -webkit-margin-start: 0;
  -webkit-margin-end: 0;
}
body {
  line-height: 100%;
  height: 100%;
}
body u {
  text-decoration: underline;
}
ol,
ul {
  list-style: none;
}
blockquote,
q {
  quotes: none;
}
:focus {
  outline: 0;
}
ins {
  text-decoration: none;
}
del {
  text-decoration: line-through;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
.clear {
  clear: both;
}
/* FILE NAVIGATION */
#file-nav {
  position: fixed;
  bottom: 30px;
  left: 30px;
  z-index: 1000000;
  color: white;
  -webkit-transition: all 100ms;
  -o-transition: all 100ms;
  transition: all 100ms;
  -webkit-transition-timing-function: ease-out;
  -o-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
#file-nav .page-list {
  padding: 20px 10px 0;
  position: absolute;
  left: 0;
  bottom: 0;
  display: none;
  background: #323A47;
  width: 250px;
  height: 400px;
}
#file-nav .page-list #scroll-nav {
  height: 280px;
  overflow: hidden;
}
#file-nav .page-list h3 {
  text-transform: uppercase;
  font-size: 16px;
  font-weight: 300;
  letter-spacing: 3px;
  margin-bottom: 10px;
  text-align: center;
}
#file-nav .page-list a {
  display: block;
  line-height: 140%;
  padding: 0 10px;
  letter-spacing: 2px;
  font-size: 10px;
  text-transform: capitalize;
  color: white;
  opacity: 0.4;
  margin-bottom: 20px;
}
#file-nav .page-list a:hover {
  opacity: 1;
}
#file-nav .page-list .mCSB_scrollTools .mCSB_draggerRail {
  background: white;
  opacity: 0.1;
  width: 4px;
}
#file-nav .page-list .mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
  background: #8593A9;
  width: 6px;
}
#file-nav #file-nav-toggle {
  width: 60px;
  height: 60px;
  display: block;
  text-transform: uppercase;
  font-weight: 800;
  line-height: 100%;
  border-radius: 50%;
  background: #2A313D;
  font-size: 12px;
  letter-spacing: 3px;
  padding: 10px 0 0 4px;
  text-align: center;
  position: relative;
  overflow: hidden;
  z-index: 1;
  -webkit-transition: all 200ms;
  -o-transition: all 200ms;
  transition: all 200ms;
  -webkit-transition-timing-function: ease-out;
  -o-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
  color: white;
}
#file-nav #file-nav-toggle span {
  font-size: 7px;
  letter-spacing: 1px;
  display: block;
  position: relative;
  left: -2px;
  font-weight: 400;
}
#file-nav #file-nav-toggle small {
  display: block;
  width: 17px;
  margin: 0 auto 7px auto;
  -webkit-transition: all 200ms;
  -o-transition: all 200ms;
  transition: all 200ms;
  -webkit-transition-timing-function: ease-out;
  -o-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
#file-nav #file-nav-toggle small span {
  display: block;
  height: 2px;
  background: white;
  margin-bottom: 2px;
}
#file-nav #file-nav-toggle:hover {
  opacity: 1;
}
#file-nav #file-nav-toggle.active {
  border-radius: 0;
}
#file-nav #file-nav-toggle.active small {
  width: 3px;
}
#file-nav .status {
  color: white;
  font-size: 12px;
  position: absolute;
  right: 10px;
  bottom: 7px;
  width: 170px;
  text-align: center;
  text-transform: uppercase;
}
#file-nav .status .single {
  width: 50%;
  float: left;
  font-size: 32px;
  line-height: 100%;
  font-weight: 800;
  letter-spacing: 3px;
}
#file-nav .status .single span {
  display: block;
  font-size: 10px;
  letter-spacing: 2px;
  font-weight: 300;
  line-height: 18px;
}
/* MARGIN */
/*LINE CLAMP*/
/* DISPLAY*/
.block {
  display: block;
}
.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.inline {
  display: inline !lteIE7;
  display: inline-block;
}
.none {
  display: none;
}
.flex-center {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-align: center;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
/* POSITION */
.absolute {
  position: absolute;
}
.relative {
  position: relative;
}
.fixed {
  position: fixed;
}
/* SHADOW */
.shadow {
  -webkit-box-shadow: 0px 1px 10px 1px rgba(0, 0, 0, 0.35);
  box-shadow: 0px 1px 10px 1px rgba(0, 0, 0, 0.35);
}
.shadow-none {
  -webkit-box-shadow: 0px 1px 10px 1px rgba(0, 0, 0, 0);
  box-shadow: 0px 1px 10px 1px rgba(0, 0, 0, 0);
}
.shadow-white {
  -webkit-box-shadow: 1px 1px 1px 1px #ffffff;
  box-shadow: 1px 1px 1px 1px #ffffff;
}
.shadow-inset {
  -webkit-box-shadow: inset 1px 1px 1px 1px rgba(0, 0, 0, 0.5);
  box-shadow: inset 1px 1px 1px 1px rgba(0, 0, 0, 0.5);
}
.text-shadow {
  text-shadow: 0px 1px 3px rgba(0, 0, 0, 0.5);
  -webkit-filter: dropshadow(color=#000000, offx=1, offy=1);
          filter: dropshadow(color=#000000, offx=1, offy=1);
}
.text-shadow-none {
  text-shadow: 0px 0px 0px rgba(0, 0, 0, 0);
  -webkit-filter: dropshadow(color=#000000, offx=0, offy=0);
          filter: dropshadow(color=#000000, offx=0, offy=0);
}
.text-shadow-inset {
  text-shadow: 1px 1px 0px rgba(255, 255, 255, 0.1), 0px -1px 0px rgba(0, 0, 0, 0.5);
  -webkit-filter: dropshadow(color=#ffffff, offx=1, offy=0);
          filter: dropshadow(color=#ffffff, offx=1, offy=0);
}
.text-shadow-white {
  text-shadow: 1.5px 1.5px 1px #ffffff;
  -webkit-filter: dropshadow(color=#ffffff, offx=1, offy=0);
          filter: dropshadow(color=#ffffff, offx=1, offy=0);
}
.text-shadow-white-2 {
  text-shadow: 0px 1px 1px rgba(255, 255, 255, 0.2);
  -webkit-filter: dropshadow(color=#ffffff, offx=1, offy=0);
          filter: dropshadow(color=#ffffff, offx=1, offy=0);
}
/* ANIMATION */
/* BORDER RADIUS */
.cover-it {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  overflow: hidden;
}
.br {
  border: solid 1px red;
}
/* FLOAT */
.left-side {
  float: left;
}
.right-side {
  float: right;
}
/* RESPONSIVE */
.block-mobile {
  display: none;
}
@media screen and (max-width: 1024px) {
  .block-mobile {
    display: block !important;
  }
}
.inline-mobile {
  display: none;
}
@media screen and (max-width: 1024px) {
  .inline-mobile {
    display: inline-block !important;
  }
}
@media screen and (max-width: 1024px) {
  .desktop-only {
    display: none;
  }
}
/* COLOR */
/* INVTE */
.by {
  font-size: 12px;
  font-size: 14px;
  margin: 32px 0;
}
.by span {
  color: #FF3E9E;
  font-weight: 700;
}
.by img {
  width: 100%;
}
.by a {
  display: block;
  width: 80px;
  margin: 10px auto 0;
  color: black;
}
.by small {
  font-size: 12px;
}
/* CONTAINER */
.container {
  width: 1170px;
  padding: 0 16px;
  margin: 0 auto 0 auto;
  position: relative;
}
@media screen and (max-width: 1170px) {
  .container {
    width: 992px;
  }
}
@media screen and (max-width: 1024px) {
  .container {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .container {
    width: 100%;
  }
}
.row {
  margin: 0 -16px;
}
.row::after,
.row::before {
  display: table;
  content: ' ';
  clear: both;
}
.dc1,
.dc2,
.dc3,
.dc4,
.dc5,
.dc6,
.dc7,
.dc8,
.dc9,
.dc10,
.dc11,
.dc12,
.tc1,
.tc2,
.tc3,
.tc4,
.tc5,
.tc6,
.tc7,
.tc8,
.tc9,
.tc10,
.tc11,
.tc12,
.mc1,
.mc2,
.mc3,
.mc4,
.mc5,
.mc6,
.mc7,
.mc8,
.mc9,
.mc10,
.mc11,
.mc12 {
  padding: 0 16px;
  float: left;
}
.dc1.auto,
.dc2.auto,
.dc3.auto,
.dc4.auto,
.dc5.auto,
.dc6.auto,
.dc7.auto,
.dc8.auto,
.dc9.auto,
.dc10.auto,
.dc11.auto,
.dc12.auto,
.tc1.auto,
.tc2.auto,
.tc3.auto,
.tc4.auto,
.tc5.auto,
.tc6.auto,
.tc7.auto,
.tc8.auto,
.tc9.auto,
.tc10.auto,
.tc11.auto,
.tc12.auto,
.mc1.auto,
.mc2.auto,
.mc3.auto,
.mc4.auto,
.mc5.auto,
.mc6.auto,
.mc7.auto,
.mc8.auto,
.mc9.auto,
.mc10.auto,
.mc11.auto,
.mc12.auto {
  float: none;
  margin: 0 auto 0 auto;
}
.dc1.inline,
.dc2.inline,
.dc3.inline,
.dc4.inline,
.dc5.inline,
.dc6.inline,
.dc7.inline,
.dc8.inline,
.dc9.inline,
.dc10.inline,
.dc11.inline,
.dc12.inline,
.tc1.inline,
.tc2.inline,
.tc3.inline,
.tc4.inline,
.tc5.inline,
.tc6.inline,
.tc7.inline,
.tc8.inline,
.tc9.inline,
.tc10.inline,
.tc11.inline,
.tc12.inline,
.mc1.inline,
.mc2.inline,
.mc3.inline,
.mc4.inline,
.mc5.inline,
.mc6.inline,
.mc7.inline,
.mc8.inline,
.mc9.inline,
.mc10.inline,
.mc11.inline,
.mc12.inline {
  display: inline-block;
  margin: 0 -2px;
  float: none;
}
.dc1 {
  width: 8.3%;
}
.dc2 {
  width: 16.6%;
}
.dc3 {
  width: 25%;
}
.dc4 {
  width: 33.3%;
}
.dc5 {
  width: 41.6%;
}
.dc6 {
  width: 50%;
}
.dc7 {
  width: 58.3%;
}
.dc8 {
  width: 66.6%;
}
.dc9 {
  width: 75%;
}
.dc10 {
  width: 83.3%;
}
.dc11 {
  width: 91.6%;
}
.dc12 {
  width: 100%;
}
@media screen and (max-width: 768px) {
  .tc1 {
    width: 8.3%;
  }
  .tc2 {
    width: 16.6%;
  }
  .tc3 {
    width: 25%;
  }
  .tc4 {
    width: 33.3%;
  }
  .tc5 {
    width: 41.6%;
  }
  .tc6 {
    width: 50%;
  }
  .tc7 {
    width: 58.3%;
  }
  .tc8 {
    width: 66.6%;
  }
  .tc9 {
    width: 75%;
  }
  .tc10 {
    width: 83.3%;
  }
  .tc11 {
    width: 91.6%;
  }
  .tc12 {
    width: 100%;
  }
}
@media screen and (max-width: 480px) {
  .mc1 {
    width: 8.3%;
  }
  .mc2 {
    width: 16.6%;
  }
  .mc3 {
    width: 25%;
  }
  .mdc4 {
    width: 33.3%;
  }
  .mc5 {
    width: 41.6%;
  }
  .mc6 {
    width: 50%;
  }
  .mc7 {
    width: 58.3%;
  }
  .mc8 {
    width: 66.6%;
  }
  .mc9 {
    width: 75%;
  }
  .mc10 {
    width: 83.3%;
  }
  .mc11 {
    width: 91.6%;
  }
  .mc12 {
    width: 100%;
  }
}
input.radio,
input.check {
  float: left;
  opacity: 0;
  height: 16px;
  width: 16px;
  display: inline-block;
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -8px;
  z-index: 100;
}
input.radio:hover,
input.check:hover {
  cursor: pointer;
}
input.radio + label {
  background: url("../img/icon-radio.png") no-repeat scroll 0 0;
  clear: none;
  display: block;
  height: 16px;
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -8px;
  width: 16px;
}
input.check + label {
  background: url("../img/icon-check.png") no-repeat scroll 0 0;
  clear: none;
  display: block;
  height: 16px;
  position: absolute;
  width: 16px;
  left: 0;
  top: 0;
}
input.radio:hover + label,
input.check:hover + label {
  background-position: -16px 0;
}
input.radio:checked + label,
input.check:checked + label {
  background-position: -32px 0;
}
input.radio:disabled + label,
input.check:disabled + label {
  background-position: -48px 0;
}
/* FONTS */
@font-face {
  font-family: 'eastlibertysignature';
  src: url('eastlibertysignature.eot');
  src: url('eastlibertysignature.eot') format('embedded-opentype'), url('eastlibertysignature.woff2') format('woff2'), url('eastlibertysignature.woff') format('woff'), url('eastlibertysignature.ttf') format('truetype'), url('eastlibertysignature.svg#eastlibertysignature') format('svg');
}
@font-face {
  font-family: 'foglihtenno07regular';
  src: url('foglihtenno07-webfont.eot');
  src: url('foglihtenno07-webfont.eot?#iefix') format('embedded-opentype'), url('foglihtenno07-webfont.woff2') format('woff2'), url('foglihtenno07-webfont.woff') format('woff'), url('foglihtenno07-webfont.ttf') format('truetype'), url('foglihtenno07-webfont.svg#foglihtenno07regular') format('svg');
}
/* TYPOGRAPHY */
body,
html {
  font-size: 20px;
}
@media screen and (max-width: 1440px) {
  body,
  html {
    font-size: 16px;
  }
}
@media screen and (max-width: 1024px) {
  body,
  html {
    font-size: 14px;
  }
}
h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
li,
span {
  line-height: 1.65;
}
@media screen and (max-width: 768px) {
  h1,
  h2,
  h3,
  h4,
  h5,
  h6,
  .h1,
  .h2,
  .h3,
  .h4,
  .h5,
  .h6,
  li,
  span {
    line-height: 1.4;
  }
}
p {
  line-height: 1.65;
}
h1,
.h1 {
  font-size: 3.052rem;
  margin-bottom: 32px;
}
h1.banner,
.h1.banner {
  font-size: 96px;
}
h1.title,
.h1.title {
  font-family: 'eastlibertysignature', cursive;
  font-size: 96px;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
h1 small,
.h1 small {
  font-size: 24px;
}
h1 .right-side,
.h1 .right-side {
  margin-top: 16px;
}
@media screen and (max-width: 1024px) {
  h1.banner,
  .h1.banner {
    font-size: 48px;
  }
}
@media screen and (max-width: 480px) {
  h1,
  .h1 {
    margin-bottom: 16px;
    font-size: 37px;
  }
  h1.banner,
  .h1.banner {
    font-size: 32px;
  }
}
@media screen and (max-width: 768px) {
  h1,
  .h1 {
    font-size: 1.802rem;
    margin-bottom: 16px;
  }
}
h2,
.h2 {
  font-size: 2.441rem;
  margin-bottom: 32px;
}
@media screen and (max-width: 768px) {
  h2,
  .h2 {
    font-size: 1.602rem;
    margin-bottom: 16px;
  }
}
h3,
.h3 {
  font-size: 1.953rem;
  margin-bottom: 16px;
}
@media screen and (max-width: 768px) {
  h3,
  .h3 {
    font-size: 1.424rem;
  }
}
h4,
.h4 {
  font-size: 1.563rem;
  margin-bottom: 16px;
}
@media screen and (max-width: 768px) {
  h4,
  .h4 {
    font-size: 1.266rem;
    margin-bottom: 8px;
  }
}
h5,
.h5 {
  font-size: 1.25rem;
  margin-bottom: 8px;
}
@media screen and (max-width: 768px) {
  h5,
  .h5 {
    font-size: 1.125rem;
  }
}
h6,
.h6 {
  font-size: 1rem;
  margin-bottom: 8px;
}
li,
p {
  font-size: 1rem;
  margin-bottom: 16px;
}
li.large,
p.large {
  font-size: 1.25rem;
}
li small,
p small,
li.small,
p.small {
  font-size: 0.8em;
  line-height: 1.2 !important;
  display: inline !lteIE7;
  display: inline-block;
}
li.error,
p.error {
  color: red;
}
ul,
ol {
  margin: 0 0 15px;
}
ul {
  padding-left: 16px;
}
ul.disc > li {
  position: relative;
  list-style: disc;
  padding-left: 8px;
  margin-left: 8px;
}
ol {
  padding-left: 16px;
}
ol.decimal > li {
  list-style: decimal;
  padding-left: 8px;
  margin-left: 8px;
}
.brush {
  position: relative;
  text-align: center;
  margin-bottom: 40px;
}
.brush span {
  font-size: inherit;
  position: relative;
  z-index: 1;
}
.brush:before {
  content: '';
  position: absolute;
  width: 281px;
  height: 86px;
  background: url("../img/brush.png") left top no-repeat transparent;
  z-index: 0;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media screen and (max-width: 480px) {
  .brush:before {
    width: 140px;
    height: 43px;
    background-size: 100%;
  }
}
a {
  color: black;
  text-decoration: none;
}
.lt {
  text-align: left;
}
.rt {
  text-align: right;
}
.ct {
  text-align: center;
}
.cycle-slideshow {
  width: 100%;
}
.cycle-slideshow img {
  width: 100% !important;
}
body,
html {
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  height: 100%;
  color: #222222;
}
@media screen and (max-width: 768px) {
  body,
  html {
    height: auto;
    overflow: auto !important;
  }
}
#top-wrapper {
  margin-bottom: 0px;
  overflow: hidden;
  position: relative;
  min-height: 100%;
}
.push {
  height: 0px;
}
.frame {
  height: 100vh;
  min-height: 550px;
  overflow: hidden;
}
.frame > .container {
  height: 100%;
}
@media screen and (max-width: 768px) {
  .frame {
    height: auto !important;
    min-height: 480px;
  }
  .frame > .container {
    height: auto;
  }
}
nav {
  position: fixed;
  bottom: 0;
  padding-bottom: 20px;
  right: 85px;
  z-index: 10;
}
nav .text {
  display: block;
  margin-bottom: 20px;
  text-align: center;
  color: #FFBF00;
  font-style: 14px;
}
nav a {
  position: relative;
}
nav a:before {
  display: block;
  position: absolute;
  width: 48px;
  height: 13px;
  background: url("../img/underline.png") left top no-repeat transparent;
  left: 10px;
  bottom: -10px;
  content: '';
  opacity: 0;
  -webkit-transition: all 200ms;
  -o-transition: all 200ms;
  transition: all 200ms;
  -webkit-transition-timing-function: ease-out;
  -o-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
nav a.active:before {
  opacity: 1;
}
nav .nav-icon {
  position: relative;
  margin: 0 10px;
}
nav .nav-icon:before {
  display: block;
  width: 36px;
  height: 36px;
  border: solid 2px #FFBF00;
  content: '';
  z-index: -1;
  position: absolute;
  left: 5px;
  top: 6px;
  border-radius: 50%;
  -webkit-transition: all 200ms;
  -o-transition: all 200ms;
  transition: all 200ms;
  -webkit-transition-timing-function: ease-out;
  -o-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
nav .nav-icon:hover:before {
  -webkit-transform: rotate(0) scale(0.9, 1) translate(0, 0);
  -ms-transform: rotate(0) scale(0.9, 1) translate(0, 0);
  transform: rotate(0) scale(0.9, 1) translate(0, 0);
}
@media screen and (max-width: 768px) {
  nav {
    right: 0;
    width: 100%;
    background: black;
    padding-top: 10px;
    text-align: center;
  }
}
@media screen and (max-width: 480px) {
  nav {
    padding-bottom: 10px;
  }
  nav .text {
    margin-bottom: 5px;
  }
  nav a {
    width: 60px;
    display: inline !lteIE7;
    display: inline-block;
  }
  nav a:before {
    bottom: 0;
  }
  nav .nav-icon {
    -webkit-transform: rotate(0) scale(0.7, 0.7) translate(0, 0);
    -ms-transform: rotate(0) scale(0.7, 0.7) translate(0, 0);
    transform: rotate(0) scale(0.7, 0.7) translate(0, 0);
  }
}
.nav-icon {
  width: 50px;
  height: 50px;
  background: url("../img/navigation.png") left top no-repeat transparent;
  display: inline !lteIE7;
  display: inline-block;
}
.nav-icon.love {
  background-position: 15px 0;
}
.nav-icon.place {
  background-position: -54px 0;
}
.nav-icon.schedule {
  background-position: -122px 0;
}
.nav-icon.gallery {
  background-position: -189px 0;
}
.nav-icon.home {
  background-position: -255px 0;
}
main .banner {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  overflow: hidden;
}
main #frame1 .container {
  width: 100%;
}
main #frame1 .text {
  z-index: 1;
  width: 50%;
  position: absolute;
  text-align: center;
  left: 0;
  bottom: 50px;
}
main #frame1 .text img {
  display: block;
  margin: 0 auto 20px auto;
}
main #frame1 .text h1 {
  font-family: 'foglihtenno07regular';
  font-size: 48px;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 100%;
}
main #frame1 .text h1 span {
  display: block;
  font-family: 'Open Sans', sans-serif;
  font-size: 18px;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  height: 25px;
  line-height: 25px;
  padding-left: 50%;
  position: relative;
}
main #frame1 .text h1 span:before {
  content: '';
  height: 2px;
  display: block;
  width: 90px;
  background: black;
  position: absolute;
  left: 50%;
  margin-left: -20px;
  top: 12px;
}
@media screen and (max-width: 768px) {
  main #frame1 .container {
    height: 100vh;
    min-height: 480px;
  }
  main #frame1 .text {
    bottom: 120px;
    left: 0;
    width: 100%;
  }
  main #frame1 .text h1 {
    font-size: 20px;
  }
  main #frame1 .text h1 span {
    padding: 10px 0 0;
    font-size: 14px;
    margin-top: 10px;
  }
  main #frame1 .text h1 span:before {
    top: 0;
    margin-left: -45px;
    height: 1px;
  }
  main #frame1 .text img {
    width: 150px;
    margin-bottom: 10px;
  }
}
main #frame2 {
  background: black;
  color: #FFBF00;
}
main #frame2 .container {
  width: 100%;
  height: 100%;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-align: center;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
main #frame2 .left-side,
main #frame2 .right-side {
  width: 50%;
  text-align: center;
}
main #frame2 .name {
  font-family: 'foglihtenno07regular';
  font-size: 36px;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: block;
  line-height: 100%;
}
main #frame2 .parents {
  display: block;
  font-family: 'Open Sans', sans-serif;
  font-size: 18px;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin-top: 10px;
}
main #frame2 .and {
  margin: 35px 0;
  font-family: 'foglihtenno07regular';
  font-size: 72px;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 100%;
}
main #frame2 .couple-photo {
  width: 100%;
  height: 25vw;
  background: url(../img/collage.jpg) no-repeat;
  background-size: 100% auto;
  position: relative;
}
main #frame2 .couple-photo .span1:before {
  width: 100%;
  height: 1px;
  content: '';
  display: block;
  background: #222222;
  position: absolute;
  left: 0;
  top: 5px;
}
main #frame2 .couple-photo .span1:after {
  width: 100%;
  height: 1px;
  content: '';
  display: block;
  background: #222222;
  position: absolute;
  left: 0;
  bottom: 5px;
}
main #frame2 .couple-photo .span2:before {
  height: 100%;
  width: 1px;
  content: '';
  display: block;
  background: #222222;
  position: absolute;
  top: 0;
  right: 5px;
}
main #frame2 .couple-photo .span2:after {
  height: 100%;
  width: 1px;
  content: '';
  display: block;
  background: #222222;
  position: absolute;
  bottom: 0;
  left: 5px;
}
@media screen and (max-width: 768px) {
  main #frame2 {
    height: auto !important;
  }
  main #frame2 .container {
    display: block;
    height: auto;
  }
  main #frame2 .left-side,
  main #frame2 .right-side {
    width: 100%;
    height: auto;
  }
  main #frame2 .left-side {
    padding: 50px 0;
  }
  main #frame2 .couple-photo {
    height: 50vw;
  }
}
@media screen and (max-width: 480px) {
  main #frame2 .left-side {
    padding: 20px 0;
  }
  main #frame2 .name {
    font-size: 20px;
  }
  main #frame2 .parents {
    font-size: 11px;
    margin-top: 0;
  }
  main #frame2 .and {
    font-size: 48px;
    margin: 20px 0;
  }
  main #frame2 .couple-photo {
    height: 45vw;
  }
}
main #frame3 {
  background: black;
  color: #FFBF00;
}
main #frame3 a {
  color: #FFBF00;
  font-weight: 800;
}
main #frame3 hr {
  width: 294px;
  height: 41px;
  background: url("../img/love-line.png") left top no-repeat transparent;
  display: block;
  margin: 30px auto 0 auto;
  border: none;
}
main #frame3 .left-side {
  width: 50%;
  height: 100%;
  padding: 20px;
  position: relative;
}
main #frame3 .wedding-place {
  border: solid 1px #FFBF00;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-align: center;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 100%;
  text-align: center;
}
main #frame3 .wedding-place > .inner {
  width: 100%;
}
main #frame3 p {
  font-family: 'Open Sans', sans-serif;
  font-size: 16px;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 140%;
  margin: 10px 0;
}
main #frame3 .name {
  font-family: 'foglihtenno07regular';
  font-size: 36px;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin: 20px 0;
}
main #frame3 .bold {
  font-weight: 800;
  font-size: 18px;
  letter-spacing: 2px;
}
main #frame3 .fog {
  font-family: 'foglihtenno07regular';
  font-size: 21px;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin: 20px 0;
}
main #frame3 .map {
  height: 80%;
  width: 500px;
  margin-top: 10%;
  position: relative;
  left: -100px;
}
main #frame3 .map #map {
  width: 100%;
  height: 100%;
}
main #frame3 .map:after {
  width: 1px;
  background: #FFBF00;
  height: 240px;
  content: '';
  display: block;
  position: absolute;
  right: -30px;
  top: 50%;
  margin-top: -120px;
}
main #frame3 .google-link {
  display: block;
  width: 200px;
  height: 60px;
  border: solid 1px #FFBF00;
  text-align: center;
  line-height: 20px;
  padding-top: 7px;
  position: absolute;
  top: 50%;
  margin-top: -30px;
  left: 440px;
}
@media screen and (max-width: 1024px) {
  main #frame3 .left-side {
    width: 40%;
  }
  main #frame3 .map {
    width: 400px;
    left: -70px;
  }
  main #frame3 .google-link {
    left: 370px;
  }
}
@media screen and (max-width: 768px) {
  main #frame3 .left-side {
    width: 100%;
  }
  main #frame3 .wedding-place {
    padding: 40px 0;
  }
  main #frame3 .map {
    width: 96%;
    left: 0;
    margin: -60px 0 0 2%;
    height: 300px;
  }
  main #frame3 .map:after {
    display: none;
  }
  main #frame3 .google-link {
    right: auto;
    position: relative;
    left: 0;
    margin: 20px auto 0 auto;
  }
}
@media screen and (max-width: 480px) {
  main #frame3 p {
    font-size: 14px;
  }
  main #frame3 p a {
    display: none;
  }
  main #frame3 .name {
    font-size: 24px;
    margin: 10px 0;
  }
  main #frame3 .bold {
    font-size: 14px;
  }
  main #frame3 .fog {
    font-size: 16px;
    margin: 20px 0;
  }
  main #frame3 hr {
    -webkit-transform: rotate(0) scale(0.8, 1) translate(0, 0);
    -ms-transform: rotate(0) scale(0.8, 1) translate(0, 0);
    transform: rotate(0) scale(0.8, 1) translate(0, 0);
    position: relative;
    left: 50%;
    margin-left: -145px;
  }
}
main #frame4 {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-align: center;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: url('../img/gallery-2.jpg') no-repeat;
  background-size: cover;
}
main #frame4 .container {
  height: auto;
  width: 100%;
  padding: 0 30px;
}
main #frame4 .row-container {
  height: 300px;
  width: 100%;
}
main #frame4 .inner {
  background: white;
  padding: 20px;
}
main #frame4 .single-schedule {
  height: 100%;
  text-transform: uppercase;
  position: relative;
}
main #frame4 .single-schedule h3 {
  position: absolute;
  left: 20px;
  top: -35px;
  font-family: 'foglihtenno07regular';
  font-size: 24px;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin-bottom: 10px;
  line-height: 100%;
}
main #frame4 .single-schedule p,
main #frame4 .single-schedule li {
  line-height: 24px;
  font-size: 14px;
}
main #frame4 .single-schedule ul {
  margin-top: 20px;
}
main #frame4 .single-schedule li {
  list-style: circle;
  margin-left: 15px;
  margin-bottom: 15px;
}
main #frame4 .groom {
  text-align: center;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  margin-top: 40px;
}
@media screen and (max-width: 1024px) {
  main #frame4 .inner {
    padding: 10px;
  }
  main #frame4 .single-schedule h3 {
    font-size: 14px;
  }
  main #frame4 .single-schedule p,
  main #frame4 .single-schedule li {
    font-size: 12px;
  }
}
@media screen and (max-width: 768px) {
  main #frame4 .container {
    padding: 0 30px;
  }
  main #frame4 .single-schedule {
    margin: 20px 0 40px;
    height: 250px;
  }
  main #frame4 .single-schedule h3 {
    position: relative;
    top: 0;
    left: 0;
  }
}
@media screen and (max-width: 480px) {
  main #frame4 .single-schedule {
    height: auto;
    padding-bottom: 0px;
    margin-bottom: 20px;
  }
}
main #frame5 {
  background: white;
}
main #frame5 .photo-gallery {
  height: 400px;
}
main #frame5 .photo-gallery .swiper-wrapper {
  height: 100%;
}
main #frame5 .photo-gallery .swiper-slide {
  text-align: center;
  font-size: 18px;
  width: auto;
  -webkit-flex-shrink: 0;
  -ms-flex: 0 0 auto;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  height: 100%;
  position: relative;
}
main #frame5 .photo-gallery .swiper-slide img {
  height: 100%;
}
main #frame5 h2 {
  color: #FFBF00;
  font-family: 'foglihtenno07regular';
  font-size: 36px;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin-top: 50px;
  line-height: 100%;
  margin-bottom: 20px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  main #frame5 {
    padding-bottom: 200px;
  }
}
@media screen and (max-width: 480px) {
  main #frame5 h2 {
    font-size: 24px;
    margin-top: 30px;
  }
  main #frame5 .photo-gallery {
    height: 200px;
  }
}
main footer {
  text-align: center;
  line-height: 24px;
}
main footer h3 {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 7px;
  margin: 40px 0 20px;
  line-height: 100%;
}
main footer img {
  position: relative;
  top: 3px;
}
@media screen and (max-width: 480px) {
  main footer {
    font-size: 12px;
    line-height: 18px;
  }
  main footer h3 {
    font-size: 16px;
    letter-spacing: 4px;
    margin: 20px 10px;
  }
}
/*MIDDLE*/
/*FOOTER*/
.popup {
  width: 100%;
  height: 100%;
  position: fixed;
  left: 0;
  top: 0;
  display: none;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.7);
}
.popup .popup-wrapper {
  position: relative;
  min-height: 100%;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-align: center;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.popup .popup-full {
  height: 100vh;
  width: 100%;
  padding: 40px 0;
  overflow-y: scroll;
}
.popup .inner {
  margin: 0 auto 0 auto;
  position: relative;
  width: 1000px;
  background: white;
  padding: 0 20px;
  max-width: 90%;
}
/*POPUP*/
@-webkit-keyframes c-i1 {
0% {
  -webkit-transform: rotate(0) scale(1, 1) translate(0, 0);
  -ms-transform: rotate(0) scale(1, 1) translate(0, 0);
  transform: rotate(0) scale(1, 1) translate(0, 0);
}
50% {
  -webkit-transform: rotate(0) scale(1, 1) translate(0, -800px);
  -ms-transform: rotate(0) scale(1, 1) translate(0, -800px);
  transform: rotate(0) scale(1, 1) translate(0, -800px);
  opacity: 1;
}
100% {
  -webkit-transform: rotate(0) scale(1, 1) translate(0, -800px);
  -ms-transform: rotate(0) scale(1, 1) translate(0, -800px);
  transform: rotate(0) scale(1, 1) translate(0, -800px);
}
}
@keyframes c-i1 {
0% {
  -webkit-transform: rotate(0) scale(1, 1) translate(0, 0);
  -ms-transform: rotate(0) scale(1, 1) translate(0, 0);
  transform: rotate(0) scale(1, 1) translate(0, 0);
}
50% {
  -webkit-transform: rotate(0) scale(1, 1) translate(0, -800px);
  -ms-transform: rotate(0) scale(1, 1) translate(0, -800px);
  transform: rotate(0) scale(1, 1) translate(0, -800px);
  opacity: 1;
}
100% {
  -webkit-transform: rotate(0) scale(1, 1) translate(0, -800px);
  -ms-transform: rotate(0) scale(1, 1) translate(0, -800px);
  transform: rotate(0) scale(1, 1) translate(0, -800px);
}
}
.images-frame .i1 {
  -webkit-animation: c-i1 60s infinite linear;
  animation: c-i1 60s infinite linear;
}
@-webkit-keyframes c-i2 {
0% {
  -webkit-transform: rotate(0) scale(1, 1) translate(0, 0);
  -ms-transform: rotate(0) scale(1, 1) translate(0, 0);
  transform: rotate(0) scale(1, 1) translate(0, 0);
}
30% {
  -webkit-transform: rotate(0) scale(1, 1) translate(0, 0);
  -ms-transform: rotate(0) scale(1, 1) translate(0, 0);
  transform: rotate(0) scale(1, 1) translate(0, 0);
}
100% {
  -webkit-transform: rotate(0) scale(1, 1) translate(0, -1120px);
  -ms-transform: rotate(0) scale(1, 1) translate(0, -1120px);
  transform: rotate(0) scale(1, 1) translate(0, -1120px);
}
}
@keyframes c-i2 {
0% {
  -webkit-transform: rotate(0) scale(1, 1) translate(0, 0);
  -ms-transform: rotate(0) scale(1, 1) translate(0, 0);
  transform: rotate(0) scale(1, 1) translate(0, 0);
}
30% {
  -webkit-transform: rotate(0) scale(1, 1) translate(0, 0);
  -ms-transform: rotate(0) scale(1, 1) translate(0, 0);
  transform: rotate(0) scale(1, 1) translate(0, 0);
}
100% {
  -webkit-transform: rotate(0) scale(1, 1) translate(0, -1120px);
  -ms-transform: rotate(0) scale(1, 1) translate(0, -1120px);
  transform: rotate(0) scale(1, 1) translate(0, -1120px);
}
}
.images-frame .i2 {
  -webkit-animation: c-i2 60s infinite linear;
  animation: c-i2 60s infinite linear;
}
@-webkit-keyframes trst-1 {
0% {
  -webkit-transform: skew(-0.06turn, 18deg);
          transform: skew(-0.06turn, 18deg);
}
30% {
  -webkit-transform: skew(-0.07turn, 14deg);
          transform: skew(-0.07turn, 14deg);
}
60% {
  -webkit-transform: skew(-0.05turn, 16deg);
          transform: skew(-0.05turn, 16deg);
}
100% {
  -webkit-transform: skew(-0.06turn, 18deg);
          transform: skew(-0.06turn, 18deg);
}
}
@keyframes trst-1 {
0% {
  -webkit-transform: skew(-0.06turn, 18deg);
          transform: skew(-0.06turn, 18deg);
}
30% {
  -webkit-transform: skew(-0.07turn, 14deg);
          transform: skew(-0.07turn, 14deg);
}
60% {
  -webkit-transform: skew(-0.05turn, 16deg);
          transform: skew(-0.05turn, 16deg);
}
100% {
  -webkit-transform: skew(-0.06turn, 18deg);
          transform: skew(-0.06turn, 18deg);
}
}
.rst-top {
  -webkit-animation: trst-1 8s infinite linear;
  animation: trst-1 8s infinite linear;
}
@-webkit-keyframes trst-2 {
0% {
  -webkit-transform: skew(-0.06turn, 18deg);
          transform: skew(-0.06turn, 18deg);
}
30% {
  -webkit-transform: skew(-0.07turn, 14deg);
          transform: skew(-0.07turn, 14deg);
}
60% {
  -webkit-transform: skew(-0.05turn, 18deg);
          transform: skew(-0.05turn, 18deg);
}
100% {
  -webkit-transform: skew(-0.06turn, 18deg);
          transform: skew(-0.06turn, 18deg);
}
}
@keyframes trst-2 {
0% {
  -webkit-transform: skew(-0.06turn, 18deg);
          transform: skew(-0.06turn, 18deg);
}
30% {
  -webkit-transform: skew(-0.07turn, 14deg);
          transform: skew(-0.07turn, 14deg);
}
60% {
  -webkit-transform: skew(-0.05turn, 18deg);
          transform: skew(-0.05turn, 18deg);
}
100% {
  -webkit-transform: skew(-0.06turn, 18deg);
          transform: skew(-0.06turn, 18deg);
}
}
.rst-left-bot {
  -webkit-animation: trst-2 6s infinite linear;
  animation: trst-2 6s infinite linear;
}
@-webkit-keyframes trst-3 {
0% {
  -webkit-transform: skew(-0.06turn, 18deg);
          transform: skew(-0.06turn, 18deg);
}
30% {
  -webkit-transform: skew(-0.07turn, 14deg);
          transform: skew(-0.07turn, 14deg);
}
60% {
  -webkit-transform: skew(-0.05turn, 18deg);
          transform: skew(-0.05turn, 18deg);
}
100% {
  -webkit-transform: skew(-0.06turn, 18deg);
          transform: skew(-0.06turn, 18deg);
}
}
@keyframes trst-3 {
0% {
  -webkit-transform: skew(-0.06turn, 18deg);
          transform: skew(-0.06turn, 18deg);
}
30% {
  -webkit-transform: skew(-0.07turn, 14deg);
          transform: skew(-0.07turn, 14deg);
}
60% {
  -webkit-transform: skew(-0.05turn, 18deg);
          transform: skew(-0.05turn, 18deg);
}
100% {
  -webkit-transform: skew(-0.06turn, 18deg);
          transform: skew(-0.06turn, 18deg);
}
}
.rst-right-bot {
  -webkit-animation: trst-3 6s infinite linear;
  animation: trst-3 6s infinite linear;
}
