/* Global
-------------------------*/
html {
  box-sizing: border-box;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  margin: 0;
  font-family: 'Libre Baskerville', serif;
  line-height: 1.9em;
  color: #444;
}

ol,ul {
	list-style:none;
}
h1 {
  font-size: 1.6em;
  line-height: 1.5em;
  letter-spacing: .2em;
  margin: 0px;
  text-transform: uppercase;
}

h2, h3 {
  font-size: .6em;
  letter-spacing: .1em;
  text-transform: uppercase;
  font-weight: lighter;
}
.wrap {
  width: 90%;
  max-width: 2000px;
  margin: 0 auto;
  overflow: hidden;
  padding-bottom: 100px;
}
b {
  font-size: 1.2em;
}
p {
  margin: .2em 0;
}

input, select { font-size: 100%; }

input{
-webkit-border-radius: 0px;
-moz-border-radius: 0px;
border-radius: 0px;
}
textarea {
-webkit-border-radius: 0px;
-moz-border-radius: 0px;
border-radius: 0px;
}


.button {
  background-color: #c7b5a7;
  border: none;
  color: white;
  padding: 10px 30px;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  display: inline-block;
  font-size: .7em;
  letter-spacing: .15em;
  margin: 4px 2px;
  cursor: pointer;
  -webkit-appearance: none;
}


.white {
  color: #fff;
}
.white a{
  color: #fff;
}
.black {
  color: #444;
}
.black a{
  color: #444;
}

/* Header
-------------------------*/
#home {
  height: 100vh;
}
header {
  position: relative;
  width: 85%;
  max-width: 2000px;
  margin: 0 auto;

}
.heading {
  display: inline-block;
  width: 100%;
  padding-top: 50px;
}
.logo {
  max-width: 350px;
  height: 88px;
  margin: 0 auto;
}
.logo img {
  width: 100%;
}

.pageheading {
  text-align: center;
  padding: 100px 0;
}

/* About Section
-------------------------*/
#about {
  min-height: 100vh;
  display: block;
  position: relative;
}

.aboutphoto {
  width: 100%;
  float: right;
  padding-bottom: 40px;
}

.aboutphotofull {
  display: none;
}

.abouttext {
  font-size: 0.9em;
  line-height: 1.7em;
  margin-top: -1em;
}

.contact-link {
  text-align: center;
  padding: 60px 0px;
}

/* FAQ Section
-------------------------*/
#info {
  max-width: 1200px;
  width: 90%;
}
#info h1 {
  letter-spacing: 0.1em;
}

#faq {
  max-width: 900px;
}
#faq h2 {
  text-align: center;
  padding-bottom: 35px;
  letter-spacing: 0.3em;
}

/* Contact Section
-------------------------*/
#contact {
  max-width: 900px;
  text-align: center;
}

/* Footer
-------------------------*/









/* The sidebar menu */
.sidenav {
 position: fixed; /* Fixed Sidebar (stay in place on scroll) */
 z-index: 1; /* Stay on top */
 left: 0%;
 top: 50%;
 -webkit-transform: translateX(-0%) translateY(-50%);
 transform: translateX(-0%) translateY(-50%);
 overflow-x: hidden; /* Disable horizontal scroll */
 padding-left: 20px;
}

/* The navigation menu links */
.sidenav a {
 text-decoration: none;
 display: block;
 line-height: 4em;
 text-transform: uppercase;
 font-size: 1.1em;
}

/* When you mouse over the navigation links, change their color */
.sidenav a:hover {
 opacity: 0.7;
}









/* contact form
-------------------------*/
.contact-form {
  width: 500px;
  text-align: center;
  margin: 0 auto;
}

.contact-form input {
  width: 100%;
  text-align: center;
  font-style: italic;
  font-size: .8em;
  font-family: 'Libre Baskerville', serif;
  border: 0px;
  border-bottom: 1px solid #444;
  padding: 1rem;
  margin-bottom: 1.4em;
  line-height: 1em;
}
.contact-form textarea {
  width: 100%;
  text-align: center;
  font-style: italic;
  font-size: .8em;
  font-family: 'Libre Baskerville', serif;
  border: 0px;
  border-bottom: 1px solid #444;
  padding: 1rem;
  margin-bottom: 2.4em;
  line-height: 1em;
}


.contact-form .button {
  width: auto;
  border-bottom: none;
  font-style: normal;
}

/* Homepage Slideshow
-------------------------*/

.cb-slideshow,
.cb-slideshow:after {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
    z-index: 0;
    margin: 0;
}
.cb-slideshow:after {
    content: '';
    background: linear-gradient(to right, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3));
}
.cb-slideshow li span {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0px;
    left: 0px;
    color: transparent;
    background-size: cover;
    background-position: 50% 50%;
    background-repeat: none;
    opacity: 0;
    z-index: 0;
	-webkit-backface-visibility: hidden;
    -webkit-animation: imageAnimation 42s linear infinite 0s;
    -moz-animation: imageAnimation 42s linear infinite 0s;
    -o-animation: imageAnimation 42s linear infinite 0s;
    -ms-animation: imageAnimation 42s linear infinite 0s;
    animation: imageAnimation 42s linear infinite 0s;
}
.cb-slideshow li div {
    z-index: 1000;
    position: absolute;
    bottom: 30px;
    left: 0px;
    width: 100%;
    text-align: center;
    opacity: 0;
    color: #fff;
    -webkit-animation: titleAnimation 42s linear infinite 0s;
    -moz-animation: titleAnimation 42s linear infinite 0s;
    -o-animation: titleAnimation 42s linear infinite 0s;
    -ms-animation: titleAnimation 42s linear infinite 0s;
    animation: titleAnimation 42s linear infinite 0s;
}
.cb-slideshow li div h3 {
    padding: 0 60px;
    float: right;
    font-size: 1.2em;
    letter-spacing: 0;
}
.cb-slideshow li:nth-child(1) span {
    background-image: url(../images/1-Mattis-Wedding.jpg)
}
.cb-slideshow li:nth-child(2) span {
    background-image: url(/images/2-Curtis-Wedding.jpg);
    -webkit-animation-delay: 6s;
    -moz-animation-delay: 6s;
    -o-animation-delay: 6s;
    -ms-animation-delay: 6s;
    animation-delay: 6s;
}
.cb-slideshow li:nth-child(3) span {
    background-image: url(../images/3-Topal-Engagement.jpg);
    -webkit-animation-delay: 12s;
    -moz-animation-delay: 12s;
    -o-animation-delay: 12s;
    -ms-animation-delay: 12s;
    animation-delay: 12s;
}
.cb-slideshow li:nth-child(4) span {
    background-image: url(../images/4-Gentile-Wedding.jpg);
    -webkit-animation-delay: 18s;
    -moz-animation-delay: 18s;
    -o-animation-delay: 18s;
    -ms-animation-delay: 18s;
    animation-delay: 18s;
}
.cb-slideshow li:nth-child(5) span {
    background-image: url(../images/5-Sterk-Wedding.jpg);
    -webkit-animation-delay: 24s;
    -moz-animation-delay: 24s;
    -o-animation-delay: 24s;
    -ms-animation-delay: 24s;
    animation-delay: 24s;
}
.cb-slideshow li:nth-child(6) span {
    background-image: url(../images/6-Hansen-Wedding.jpg);
    -webkit-animation-delay: 30s;
    -moz-animation-delay: 30s;
    -o-animation-delay: 30s;
    -ms-animation-delay: 30s;
    animation-delay: 30s;
}
.cb-slideshow li:nth-child(7) span {
    background-image: url(../images/7-Repko-Wedding.jpg);
    -webkit-animation-delay: 36s;
    -moz-animation-delay: 36s;
    -o-animation-delay: 36s;
    -ms-animation-delay: 36s;
    animation-delay: 36s;
}

.cb-slideshow li:nth-child(2) div {
    -webkit-animation-delay: 6s;
    -moz-animation-delay: 6s;
    -o-animation-delay: 6s;
    -ms-animation-delay: 6s;
    animation-delay: 6s;
}
.cb-slideshow li:nth-child(3) div {
    -webkit-animation-delay: 12s;
    -moz-animation-delay: 12s;
    -o-animation-delay: 12s;
    -ms-animation-delay: 12s;
    animation-delay: 12s;
}
.cb-slideshow li:nth-child(4) div {
    -webkit-animation-delay: 18s;
    -moz-animation-delay: 18s;
    -o-animation-delay: 18s;
    -ms-animation-delay: 18s;
    animation-delay: 18s;
}
.cb-slideshow li:nth-child(5) div {
    -webkit-animation-delay: 24s;
    -moz-animation-delay: 24s;
    -o-animation-delay: 24s;
    -ms-animation-delay: 24s;
    animation-delay: 24s;
}
.cb-slideshow li:nth-child(6) div {
    -webkit-animation-delay: 30s;
    -moz-animation-delay: 30s;
    -o-animation-delay: 30s;
    -ms-animation-delay: 30s;
    animation-delay: 30s;
}
.cb-slideshow li:nth-child(7) div {
    -webkit-animation-delay: 36s;
    -moz-animation-delay: 36s;
    -o-animation-delay: 36s;
    -ms-animation-delay: 36s;
    animation-delay: 36s;
}

/* Animation for the slideshow images */
@-webkit-keyframes imageAnimation {
    0% { opacity: 0;
    -webkit-animation-timing-function: ease-in; }
    3.5% { opacity: 1;
         -webkit-animation-timing-function: ease-out; }
    17% { opacity: 1 }
    25% { opacity: 0 }
    100% { opacity: 0 }
}
@-moz-keyframes imageAnimation {
    0% { opacity: 0;
    -moz-animation-timing-function: ease-in; }
    3.5% { opacity: 1;
         -moz-animation-timing-function: ease-out; }
    17% { opacity: 1 }
    25% { opacity: 0 }
    100% { opacity: 0 }
}
@-o-keyframes imageAnimation {
    0% { opacity: 0;
    -o-animation-timing-function: ease-in; }
    3.5% { opacity: 1;
         -o-animation-timing-function: ease-out; }
    17% { opacity: 1 }
    25% { opacity: 0 }
    100% { opacity: 0 }
}
@-ms-keyframes imageAnimation {
    0% { opacity: 0;
    -ms-animation-timing-function: ease-in; }
    3.5% { opacity: 1;
         -ms-animation-timing-function: ease-out; }
    17% { opacity: 1 }
    25% { opacity: 0 }
    100% { opacity: 0 }
}
@keyframes imageAnimation {
    0% { opacity: 0;
    animation-timing-function: ease-in; }
    3.5% { opacity: 1;
         animation-timing-function: ease-out; }
    17% { opacity: 1 }
    25% { opacity: 0 }
    100% { opacity: 0 }
}
/* Animation for the title */
@-webkit-keyframes titleAnimation {
    0% { opacity: 0 }
    3% { opacity: 1 }
    17% { opacity: 1 }
    18% { opacity: 0 }
    100% { opacity: 0 }
}
@-moz-keyframes titleAnimation {
    0% { opacity: 0 }
    3.5% { opacity: 1 }
    17% { opacity: 1 }
    19% { opacity: 0 }
    100% { opacity: 0 }
}
@-o-keyframes titleAnimation {
    0% { opacity: 0 }
    3.5% { opacity: 1 }
    17% { opacity: 1 }
    19% { opacity: 0 }
    100% { opacity: 0 }
}
@-ms-keyframes titleAnimation {
    0% { opacity: 0 }
    3.5% { opacity: 1 }
    17% { opacity: 1 }
    19% { opacity: 0 }
    100% { opacity: 0 }
}
@keyframes titleAnimation {
    0% { opacity: 0 }
    3.5% { opacity: 1 }
    17% { opacity: 1 }
    19% { opacity: 0 }
    100% { opacity: 0 }
}
/* Show at least something when animations not supported */
.no-cssanimations .cb-slideshow li span{
	opacity: 1;
}














.navover {
  display: block;
  padding-bottom: 20px;
}




@media screen and (min-width: 1260px) {

  .wrap {
    width: 85%;
  }
  h2, h3 {
    font-size: 1em;
  }

  .logo {
    float: left;
}

  .navover {
    display: none;
  }

  .aboutphoto {
    display: none;
  }
  .aboutphotofull {
    display: block;
    width: 500px;
    float: right;
    margin-left: 100px;
  }


  nav {
    float: right;
    text-transform: uppercase;
    letter-spacing: .1em;
  }
  nav a {
    text-decoration: none;
  }
  .navigation ul {
    background: darkorange;
    list-style: none;
    margin: 0;
    padding-left: 0;
  }
  .navigation li {
      display: block;
      float: left;
      padding: 1.8rem 0rem;
      margin-left: 7rem;
      position: relative;
      text-decoration: none;
    transition-duration: 0.5s;
  }
  .navigation .white li a {
    color: #fff;
  }
  .navigation li:hover,
  .navigation li:focus-within {
      cursor: pointer;
  }

  .navigation li:focus-within a {
    outline: none;
  }
  .navigation ul li ul {
    color: #fff;
      background: #c7b5a7;
      visibility: hidden;
    opacity: 0;
    min-width: 5rem;
      position: absolute;
    transition: all 0.5s ease;
    margin-top: .5rem;
      left: 0;
    display: none;
  }
  .navigation ul li:hover > ul,
  .navigation ul li:focus-within > ul,
  .navigation ul li ul:hover,
  .navigation ul li ul:focus {
     visibility: visible;
     opacity: 1;
     display: block;
  }
  .navigation ul li ul li {
      clear: both;
      width: 200px;
      padding: 1rem;
      margin-left: 0px;
      text-align: center;
      font-size: .8em;
  }
  .navigation ul li ul li a {
    color: #fff;
  }
  .dropdown:before {
    position: absolute;
    top: -5px;
    left: 9px;
    display: inline-block;
    border-right: 7px solid transparent;
    border-bottom: 7px solid #c7b5a7;
    border-left: 7px solid transparent;
    border-bottom-color: #c7b5a7;
    content: '';
  }
  .dropdown:after {
    position: absolute;
    top: -3px;
    left: 10px;
    display: inline-block;
    border-right: 6px solid transparent;
    border-bottom: 6px solid #c7b5a7;
    border-left: 6px solid transparent;
    content: '';
  }


}

/* Responsive layout - makes a two column-layout instead of four columns */
@media screen and (max-width: 1260px) {


  .heading {
    padding-top: 20px;
  }
  .navfull {
    display: none;
  }


  .menu-link {
    text-transform: uppercase;
    cursor:pointer;
    text-align:center;
    display: block;
    float: right;
  }

  .dropdown-parent {
    font-size: 1.6em;
    text-transform: uppercase;
  }
  .dropdown-child {
    font-size: .7em;
    text-transform: capitalize;
    margin: 1em 0 -1em 0;
  }

  .navigation {
    padding: 0 10%;
  }
  .navigation li {
    padding: 2em 0;
    border-bottom: 1px solid #e9e2da;
  }
  .navigation li:last-child {
    border-bottom: none;
  }
  .navigation ul {
    padding: 0px;
  }

  }
  .dropdown {

  }
  .navigation ul li ul li {
    border-bottom: none;
    padding: 1em;
  }


  .navigation ul li ul {
    display: none;
  }



  /* The Overlay (background) */
  .overlay {
    height: 0%;
    width: 100%;
    position: fixed;
    z-index: 1;
    top: 0;
    left: 0;
    background-color: rgb(255, 255, 255);
    background-color: rgba(255, 255, 255);
    overflow-y: hidden;
    transition: 0.5s;
  }

  .overlay-content {
    position: relative;
    top: 10%;
    width: 100%;
    text-align: center;
    margin-top: 30px;
  }

  .overlay a {
    text-decoration: none;
    display: block;
    transition: 0.3s;
  }

  .overlay a:hover, .overlay a:focus {

  }

  .overlay .closebtn {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 1em;
    color: #444;
    text-transform: uppercase;
    font-style: italic;
  }

  .closebtn a{

  }

}


/* Responsive layout - makes the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 1000px) {


  body {
    font-size: .8em;
  }
  h1 {
    font-size: 1.3em;
  }

  h2, h3 {
    font-size: 1em;
  }
  .wrap {
    width: 90%;
    max-width: 90%;
  }



}

/* Responsive layout - makes the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 600px) {



  .contact-form {
    width: 100%;
  }
  .menu-link {
    float: none;
  }



}


@media screen and (max-height: 450px) {
  .overlay {overflow-y: auto;}
  .overlay a {font-size: 20px}
  .overlay .closebtn {
  top: 15px;
  right: 35px;
  }
}
