/*  Syntax Quick Reference
  --------------------------
  column($ratios: 1, $offset: 0, $cycle: 0, $uncycle: 0, $gutter: $jeet-gutter)
  span($ratio: 1, $offset: 0)
  shift($ratios: 0, $col_or_span: column, $gutter: $jeet-gutter)
  unshift()
  edit()
  center($max_width: 1410px, $pad: 0)
  stack($pad: 0, $align: false)
  unstack()
  align($direction: both)
  cf()
*/
/**
 * Grid settings.
 * All values are defaults and can therefore be easily overidden.
 */
/**
 * List functions courtesy of the wonderful folks at Team Sass.
 * Check out their awesome grid: Singularity.
 */
/**
 * Get  percentage from a given ratio.
 * @param {number} [$ratio=1] - The column ratio of the element.
 * @returns {number} - The percentage value.
 */
/**
 * Work out the column widths based on the ratio and gutter sizes.
 * @param {number} [$ratios=1] - The column ratio of the element.
 * @param {number} [$gutter=$jeet-gutter] - The gutter for the column.
 * @returns {list} $width $gutter - A list containing the with and gutter for the element.
 */
/**
 * Get the set layout direction for the project.
 * @returns {string} $direction - The layout direction.
 */
/**
 * Replace a specified list value with a new value (uses built in set-nth() if available)
 * @param {list} $list - The list of values you want to alter.
 * @param {number} $index - The index of the list item you want to replace.
 * @param {*} $value - The value you want to replace $index with.
 * @returns {list} $list - The list with the value replaced or removed.
 * @warn if an invalid index is supplied.
 */
/**
 * Reverse a list (progressively enhanced for Sass 3.3)
 * @param {list} $list - The list of values you want to reverse.
 * @returns {list} $result - The reversed list.
 */
/**
 * Get the opposite direction to a given value.
 * @param {string} $dir - The direction you want the opposite of.
 * @returns {string} - The opposite direction to $dir.
 * @warn if an incorrect string is provided.
 */
/**
 * Style an element as a column with a gutter.
 * @param {number} [$ratios=1] - A width relative to its container as a fraction.
 * @param {number} [$offset=0] - A offset specified as a fraction (see $ratios).
 * @param {number} [$cycle=0] - Easily create an nth column grid where $cycle equals the number of columns.
 * @param {number} [$uncycle=0] - Undo a previous cycle value to allow for a new one.
 * @param {number} [$gutter=$jeet-gutter] - Specify the gutter width as a percentage of the containers width.
 */
/**
 * An alias for the column mixin.
 * @param [$args...] - All arguments get passed through to column().
 */
/**
 * Get the width of a column and nothing else.
 * @param {number} [$ratios=1] - A width relative to its container as a fraction.
 * @param {number} [$gutter=$jeet-gutter] - Specify the gutter width as a percentage of the containers width.
 */
/**
 * Get the gutter size of a column and nothing else.
 * @param {number} [ratios=1] - A width relative to its container as a fraction.
 * @param {number} [gutter=jeet.gutter] - Specify the gutter width as a percentage of the containers width.
 */
/**
 * An alias for the column-width function.
 * @param [$args...] - All arguments get passed through to column().
 */
/**
 * An alias for the column-gutter function.
 * @param [$args...] - All arguments get passed through to column().
 */
/**
 * Style an element as a column without any gutters for a seamless row.
 * @param {number} [$ratios=1] - A width relative to its container as a fraction.
 * @param {number} [$offset=0] - A offset specified as a fraction (see $ratios).
 * @param {number} [cycle=0] - Easily create an nth column grid where cycle equals the number of columns.
 * @param {number} [uncycle=0] - Undo a previous cycle value to allow for a new one.
 */
/**
 * Reorder columns without altering the HTML.
 * @param {number} [$ratios=0] - Specify how far along you want the element to move.
 * @param {string} [$col-or-span=column] - Specify whether the element has a gutter or not.
 * @param {number} [$gutter=$jeet-gutter] - Specify the gutter width as a percentage of the containers width.
 */
/**
 * Reset an element that has had shift() applied to it.
 */
/**
 * View the grid and its layers for easy debugging.
 * @param {string} [$color=black] - The background tint applied.
 * @param {boolean} [$important=false] - Whether to apply the style as !important.
 */
/**
 *  Alias for edit().
 */
/**
 * Horizontally center an element.
 * @param {number} [$max-width=1410px] - The max width the element can be.
 * @param {number} [$pad=0] - Specify the element's left and right padding.
 */
/**
 * Uncenter an element.
 */
/**
 * Stack an element so that nothing is either side of it.
 * @param {number} [$pad=0] - Specify the element's left and right padding.
 * @param {boolean/string} [$align=false] - Specify the text align for the element.
 */
/**
 * Unstack an element.
 */
/**
 * Center an element on either or both axes.
 * @requires A parent container with relative positioning.
 * @param {string} [$direction=both] - Specify which axes to center the element on.
 */
/**
 * Apply a clearfix to an element.
 */
@import url(normalize.css);
body,
.cf {
  *zoom: 1;
}

body:before,
.cf:before,
body:after,
.cf:after {
  content: '';
  display: table;
}

body:after,
.cf:after {
  clear: both;
}

*,
*:before,
*:after,
*::before,
*::after {
  *behavior: url("js/boxsizing.htc");
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  overflow-y: scroll;
  overflow-x: hidden;
}

body {
  width: 100%;
}

img,
video,
audio,
embed,
object,
input,
iframe {
  max-width: 100%;
}

.browsehappy {
  width: 100%;
  padding: 15px;
  background: #222;
  color: #fff;
}

.browsehappy p {
  text-align: center;
}

.browsehappy a {
  color: #fff;
  font-weight: bold;
}

img {
  max-width: 100%;
}

.d {
  display: none;
}
@media only screen and (min-width: 768px) {
  .d {
    display: block;
  }
}

.m {
  display: block;
}
@media only screen and (min-width: 768px) {
  .m {
    display: none;
  }
}

div#header-wrap, div#row-wrap-2, div#nav-wrap, div.row-wrap, div#row-wrap-1, div#row-wrap-3, div#footer-wrap {
  width: 100%;
  position: relative;
  *zoom: 1;
}
div#header-wrap:before, div#row-wrap-2:before, div#header-wrap:after, div#row-wrap-2:after, div#nav-wrap:before, div#nav-wrap:after, div.row-wrap:before, div#row-wrap-1:before, div#row-wrap-3:before, div.row-wrap:after, div#row-wrap-1:after, div#row-wrap-3:after, div#footer-wrap:before, div#footer-wrap:after {
  content: '';
  display: table;
}
div#header-wrap:after, div#row-wrap-2:after, div#nav-wrap:after, div.row-wrap:after, div#row-wrap-1:after, div#row-wrap-3:after, div#footer-wrap:after {
  clear: both;
}

div#header, div.content-wrap, div#footer {
  position: relative;
  *zoom: 1;
  *zoom: 1;
  width: auto;
  max-width: 1400px;
  float: none;
  display: block;
  margin-right: auto;
  margin-left: auto;
  padding-left: 0;
  padding-right: 0;
}
div#header:before, div#header:after, div.content-wrap:before, div.content-wrap:after, div#footer:before, div#footer:after {
  content: '';
  display: table;
}
div#header:after, div.content-wrap:after, div#footer:after {
  clear: both;
}
div#header:before, div#header:after, div.content-wrap:before, div.content-wrap:after, div#footer:before, div#footer:after {
  content: '';
  display: table;
}
div#header:after, div.content-wrap:after, div#footer:after {
  clear: both;
}

@media only screen and (min-width: 768px) {
  div.row-wrap, div#row-wrap-1, div#row-wrap-3 {
    padding-top: 1em;
    padding-bottom: 1em;
  }
}

div#nav-wrap-sticky-wrapper.sticky-wrapper {
  max-height: 5px;
  display: none;
}
@media only screen and (min-width: 768px) {
  div#nav-wrap-sticky-wrapper.sticky-wrapper {
    display: block;
  }
}

div#nav-wrap {
  display: none;
  z-index: 20;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
  margin: 0;
  padding: 5px 0 10px 0;
}
@media only screen and (min-width: 768px) {
  div#nav-wrap {
    display: block;
  }
}
div#nav-wrap div#nav {
  font-size: 1rem;
}
div#nav-wrap div#nav ul {
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  line-height: 1;
  margin: 0;
  padding: 0;
  letter-spacing: .08em;
}
@media only screen and (min-width: 768px) {
  div#nav-wrap div#nav ul {
    letter-spacing: .2em;
  }
}
@media only screen and (min-width: 1025px) {
  div#nav-wrap div#nav ul {
    letter-spacing: .3em;
  }
}
div#nav-wrap div#nav ul li {
  display: inline-block;
  font-size: 1em;
  margin: 0;
  padding: 0;
}
div#nav-wrap div#nav ul li a:link, div#nav-wrap div#nav ul li a:visited {
  padding: 0 3px;
  border-bottom: none;
  text-decoration: none;
  -webkit-transition: all 0.10s ease-in-out;
  transition: all 0.10s ease-in-out;
}
div#nav-wrap div#nav ul li a:hover {
  border-bottom: none;
  text-decoration: none;
  border-radius: 5px;
}

div#header-wrap, div#row-wrap-2 {
  background: #571B33;
}
div#header-wrap h1, div#row-wrap-2 h1 {
  font-size: 20px;
  font-family: "Alice", sans-serif;
  font-weight: 400;
  color: #CFA655;
  text-align: center;
  line-height: 1.3;
  margin: 10px;
}
@media only screen and (min-width: 480px) {
  div#header-wrap h1, div#row-wrap-2 h1 {
    font-size: 22px;
  }
}
@media only screen and (min-width: 640px) {
  div#header-wrap h1, div#row-wrap-2 h1 {
    font-size: 22px;
  }
}
@media only screen and (min-width: 1005px) {
  div#header-wrap h1, div#row-wrap-2 h1 {
    font-size: 22px;
  }
}
@media only screen and (min-width: 1090px) {
  div#header-wrap h1, div#row-wrap-2 h1 {
    font-size: 24px;
  }
}

div.row-wrap img.logo, div#row-wrap-1 img.logo, div#row-wrap-3 img.logo {
  z-index: 1000;
  max-width: 75%;
  margin: -20px auto 10px auto;
  display: block;
}
@media only screen and (min-width: 480px) {
  div.row-wrap img.logo, div#row-wrap-1 img.logo, div#row-wrap-3 img.logo {
    margin: -20px auto 10px auto;
    max-width: 60%;
  }
}
@media only screen and (min-width: 640px) {
  div.row-wrap img.logo, div#row-wrap-1 img.logo, div#row-wrap-3 img.logo {
    max-width: 60%;
  }
}
@media only screen and (min-width: 768px) {
  div.row-wrap img.logo, div#row-wrap-1 img.logo, div#row-wrap-3 img.logo {
    margin: -35px auto 10px auto;
    max-width: 350px;
  }
}
div.row-wrap div.content-wrap, div#row-wrap-1 div.content-wrap, div#row-wrap-3 div.content-wrap {
  position: relative;
  *zoom: 1;
  *zoom: 1;
  width: auto;
  max-width: 1400px;
  float: none;
  display: block;
  margin-right: auto;
  margin-left: auto;
  padding-left: 20px;
  padding-right: 20px;
}
div.row-wrap div.content-wrap:before, div#row-wrap-1 div.content-wrap:before, div#row-wrap-3 div.content-wrap:before, div.row-wrap div.content-wrap:after, div#row-wrap-1 div.content-wrap:after, div#row-wrap-3 div.content-wrap:after {
  content: '';
  display: table;
}
div.row-wrap div.content-wrap:after, div#row-wrap-1 div.content-wrap:after, div#row-wrap-3 div.content-wrap:after {
  clear: both;
}
div.row-wrap div.content-wrap:before, div#row-wrap-1 div.content-wrap:before, div#row-wrap-3 div.content-wrap:before, div.row-wrap div.content-wrap:after, div#row-wrap-1 div.content-wrap:after, div#row-wrap-3 div.content-wrap:after {
  content: '';
  display: table;
}
div.row-wrap div.content-wrap:after, div#row-wrap-1 div.content-wrap:after, div#row-wrap-3 div.content-wrap:after {
  clear: both;
}
div.row-wrap div.content-wrap ul, div#row-wrap-1 div.content-wrap ul, div#row-wrap-3 div.content-wrap ul {
  margin-left: 40px;
}
div.row-wrap div.content-wrap li, div#row-wrap-1 div.content-wrap li, div#row-wrap-3 div.content-wrap li {
  margin-bottom: 5px;
}
div.row-wrap div.content-wrap a:link, div#row-wrap-1 div.content-wrap a:link, div#row-wrap-3 div.content-wrap a:link, div.row-wrap div.content-wrap a:visited, div#row-wrap-1 div.content-wrap a:visited, div#row-wrap-3 div.content-wrap a:visited {
  color: #571B33;
  text-decoration: none;
  border-bottom: 1px dotted #571B33;
  padding-bottom: 3px;
}
div.row-wrap div.content-wrap a:hover, div#row-wrap-1 div.content-wrap a:hover, div#row-wrap-3 div.content-wrap a:hover {
  color: #CFA655;
  text-decoration: none;
  border-bottom: 1px solid #CFA655;
  padding-bottom: 3px;
}
div.row-wrap div.content-wrap a:link, div#row-wrap-1 div.content-wrap a:link, div#row-wrap-3 div.content-wrap a:link, div.row-wrap div.content-wrap a:visited, div#row-wrap-1 div.content-wrap a:visited, div#row-wrap-3 div.content-wrap a:visited {
  text-decoration: none;
  -webkit-transition: all 0.15s ease-in-out;
  transition: all 0.15s ease-in-out;
}
@media only screen and (min-width: 768px) {
  div.row-wrap div.content-wrap, div#row-wrap-1 div.content-wrap, div#row-wrap-3 div.content-wrap {
    overflow: hidden;
  }
}
div.row-wrap div.content-wrap div.col-1of1, div#row-wrap-1 div.content-wrap div.col-1of1, div#row-wrap-3 div.content-wrap div.col-1of1 {
  position: relative;
  *zoom: 1;
  *zoom: 1;
  width: auto;
  max-width: 800px;
  float: none;
  display: block;
  margin-right: auto;
  margin-left: auto;
  padding-left: 0;
  padding-right: 0;
}
div.row-wrap div.content-wrap div.col-1of1:before, div#row-wrap-1 div.content-wrap div.col-1of1:before, div#row-wrap-3 div.content-wrap div.col-1of1:before, div.row-wrap div.content-wrap div.col-1of1:after, div#row-wrap-1 div.content-wrap div.col-1of1:after, div#row-wrap-3 div.content-wrap div.col-1of1:after {
  content: '';
  display: table;
}
div.row-wrap div.content-wrap div.col-1of1:after, div#row-wrap-1 div.content-wrap div.col-1of1:after, div#row-wrap-3 div.content-wrap div.col-1of1:after {
  clear: both;
}
div.row-wrap div.content-wrap div.col-1of1:before, div#row-wrap-1 div.content-wrap div.col-1of1:before, div#row-wrap-3 div.content-wrap div.col-1of1:before, div.row-wrap div.content-wrap div.col-1of1:after, div#row-wrap-1 div.content-wrap div.col-1of1:after, div#row-wrap-3 div.content-wrap div.col-1of1:after {
  content: '';
  display: table;
}
div.row-wrap div.content-wrap div.col-1of1:after, div#row-wrap-1 div.content-wrap div.col-1of1:after, div#row-wrap-3 div.content-wrap div.col-1of1:after {
  clear: both;
}
div.row-wrap div.content-wrap div.col-1of1 h1, div#row-wrap-1 div.content-wrap div.col-1of1 h1, div#row-wrap-3 div.content-wrap div.col-1of1 h1 {
  font-size: 22px;
  font-family: "Playfair Display", serif;
  font-weight: 700;
  color: #5C142E;
  text-align: center;
  line-height: 1.3;
  margin: 20px;
}
@media only screen and (min-width: 640px) {
  div.row-wrap div.content-wrap div.col-1of1 h1, div#row-wrap-1 div.content-wrap div.col-1of1 h1, div#row-wrap-3 div.content-wrap div.col-1of1 h1 {
    font-size: 24px;
  }
}
@media only screen and (min-width: 768px) {
  div.row-wrap div.content-wrap div.col-1of1 h1, div#row-wrap-1 div.content-wrap div.col-1of1 h1, div#row-wrap-3 div.content-wrap div.col-1of1 h1 {
    font-size: 28px;
    margin: 20px 50px;
  }
}
@media only screen and (min-width: 1025px) {
  div.row-wrap div.content-wrap div.col-1of1 h1, div#row-wrap-1 div.content-wrap div.col-1of1 h1, div#row-wrap-3 div.content-wrap div.col-1of1 h1 {
    font-size: 32px;
  }
}
div.row-wrap div.content-wrap div.col-1of1 h2, div#row-wrap-1 div.content-wrap div.col-1of1 h2, div#row-wrap-3 div.content-wrap div.col-1of1 h2, div.row-wrap div.content-wrap div.col-1of1 h3, div#row-wrap-1 div.content-wrap div.col-1of1 h3, div#row-wrap-3 div.content-wrap div.col-1of1 h3, div.row-wrap div.content-wrap div.col-1of1 h4, div#row-wrap-1 div.content-wrap div.col-1of1 h4, div#row-wrap-3 div.content-wrap div.col-1of1 h4, div.row-wrap div.content-wrap div.col-1of1 h5, div#row-wrap-1 div.content-wrap div.col-1of1 h5, div#row-wrap-3 div.content-wrap div.col-1of1 h5, div.row-wrap div.content-wrap div.col-1of1 h6, div#row-wrap-1 div.content-wrap div.col-1of1 h6, div#row-wrap-3 div.content-wrap div.col-1of1 h6 {
  font-family: "Playfair Display", serif;
  font-weight: 700;
  color: #5C142E;
  margin-bottom: 15px;
  line-height: 1.2;
  text-align: center;
}
div.row-wrap div.content-wrap div.col-1of1 h2, div#row-wrap-1 div.content-wrap div.col-1of1 h2, div#row-wrap-3 div.content-wrap div.col-1of1 h2 {
  font-size: 20px;
}
@media only screen and (min-width: 640px) {
  div.row-wrap div.content-wrap div.col-1of1 h2, div#row-wrap-1 div.content-wrap div.col-1of1 h2, div#row-wrap-3 div.content-wrap div.col-1of1 h2 {
    font-size: 22px;
  }
}
@media only screen and (min-width: 768px) {
  div.row-wrap div.content-wrap div.col-1of1 h2, div#row-wrap-1 div.content-wrap div.col-1of1 h2, div#row-wrap-3 div.content-wrap div.col-1of1 h2 {
    font-size: 24px;
  }
}
@media only screen and (min-width: 1025px) {
  div.row-wrap div.content-wrap div.col-1of1 h2, div#row-wrap-1 div.content-wrap div.col-1of1 h2, div#row-wrap-3 div.content-wrap div.col-1of1 h2 {
    font-size: 26px;
  }
}
div.row-wrap div.content-wrap div.col-1of1 p, div#row-wrap-1 div.content-wrap div.col-1of1 p, div#row-wrap-3 div.content-wrap div.col-1of1 p, div.row-wrap div.content-wrap div.col-1of1 ul, div#row-wrap-1 div.content-wrap div.col-1of1 ul, div#row-wrap-3 div.content-wrap div.col-1of1 ul, div.row-wrap div.content-wrap div.col-1of1 li, div#row-wrap-1 div.content-wrap div.col-1of1 li, div#row-wrap-3 div.content-wrap div.col-1of1 li {
  font-size: 16px;
  font-family: "Alice", sans-serif;
  line-height: 1.4;
  font-weight: 400;
}
@media only screen and (min-width: 768px) {
  div.row-wrap div.content-wrap div.col-1of1 p, div#row-wrap-1 div.content-wrap div.col-1of1 p, div#row-wrap-3 div.content-wrap div.col-1of1 p, div.row-wrap div.content-wrap div.col-1of1 ul, div#row-wrap-1 div.content-wrap div.col-1of1 ul, div#row-wrap-3 div.content-wrap div.col-1of1 ul, div.row-wrap div.content-wrap div.col-1of1 li, div#row-wrap-1 div.content-wrap div.col-1of1 li, div#row-wrap-3 div.content-wrap div.col-1of1 li {
    font-size: 18px;
    line-height: 1.6;
  }
}
div.row-wrap div.content-wrap div.col-1of1 p, div#row-wrap-1 div.content-wrap div.col-1of1 p, div#row-wrap-3 div.content-wrap div.col-1of1 p {
  margin-bottom: 16px;
}

div.row-wrap, div#row-wrap-1, div#row-wrap-3 {
  background-color: #EBDDC0;
  background: url(../img-png/row-wrap-bg-yellow-v2.png);
}

div#row-wrap-1 {
  background-color: #D6DFF0;
  background: url(../img-png/row-wrap-bg-blue-v2.png);
}

div#row-wrap-2 {
  background: #571B33;
}

div#row-wrap-3 {
  background-color: #D6DFF0;
  background: url(../img-png/row-wrap-bg-blue-v2.png);
  padding-top: 20px;
}

div#footer-wrap {
  background: #571B33;
}
div#footer-wrap div#footer {
  padding: 15px;
}
div#footer-wrap div#footer p {
  text-align: center;
  font-size: 21px;
  margin-bottom: 5px;
  line-height: 1.2;
  font-family: "Alice", sans-serif;
  color: #CFA655;
  padding: 0 3px;
}
div#footer-wrap div#footer p a:link, div#footer-wrap div#footer p a:visited {
  border-bottom: none;
  text-decoration: none;
  color: #CFA655;
  padding: 0 3px;
  -webkit-transition: all 0.10s ease-in-out;
  transition: all 0.10s ease-in-out;
}
div#footer-wrap div#footer p a:hover {
  padding: 0 3px;
  color: #5C142E;
  background: #CFA655;
  border-radius: 5px;
  border-bottom: none;
  text-decoration: none;
}

div.row-gallery {
  *zoom: 1;
  position: relative;
  *zoom: 1;
  width: auto;
  max-width: 1400px;
  float: none;
  display: block;
  margin-right: auto;
  margin-left: auto;
  padding-left: 1em;
  padding-right: 1em;
}
div.row-gallery:before, div.row-gallery:after {
  content: '';
  display: table;
}
div.row-gallery:after {
  clear: both;
}
div.row-gallery:before, div.row-gallery:after {
  content: '';
  display: table;
}
div.row-gallery:after {
  clear: both;
}
@media only screen and (min-width: 768px) {
  div.row-gallery {
    padding: 1em;
  }
}
div.row-gallery ul.gallery li {
  *zoom: 1;
  float: left;
  clear: none;
  text-align: inherit;
  width: 100%;
  margin-left: 0%;
  margin-right: 3%;
  display: block;
  list-style-type: none;
}
div.row-gallery ul.gallery li:before, div.row-gallery ul.gallery li:after {
  content: '';
  display: table;
}
div.row-gallery ul.gallery li:after {
  clear: both;
}
div.row-gallery ul.gallery li:nth-child(1n) {
  margin-right: 0%;
  float: right;
}
div.row-gallery ul.gallery li:nth-child(1n + 1) {
  clear: both;
}
div.row-gallery ul.gallery li a:link, div.row-gallery ul.gallery li a:visited, div.row-gallery ul.gallery li a:hover {
  border: none;
  text-decoration: none;
}
@media only screen and (min-width: 641px) {
  div.row-gallery ul.gallery li {
    *zoom: 1;
    float: left;
    clear: none;
    text-align: inherit;
    width: 49%;
    margin-left: 0%;
    margin-right: 2%;
  }
  div.row-gallery ul.gallery li:before, div.row-gallery ul.gallery li:after {
    content: '';
    display: table;
  }
  div.row-gallery ul.gallery li:after {
    clear: both;
  }
  div.row-gallery ul.gallery li:nth-child(1n) {
    margin-right: 2%;
    float: left;
  }
  div.row-gallery ul.gallery li:nth-child(1n + 1) {
    clear: none;
  }
  div.row-gallery ul.gallery li:nth-child(2n) {
    margin-right: 0%;
    float: right;
  }
  div.row-gallery ul.gallery li:nth-child(2n + 1) {
    clear: both;
  }
}
@media only screen and (min-width: 768px) {
  div.row-gallery ul.gallery li {
    *zoom: 1;
    float: left;
    clear: none;
    text-align: inherit;
    width: 32.0%;
    margin-left: 0%;
    margin-right: 2%;
  }
  div.row-gallery ul.gallery li:before, div.row-gallery ul.gallery li:after {
    content: '';
    display: table;
  }
  div.row-gallery ul.gallery li:after {
    clear: both;
  }
  div.row-gallery ul.gallery li:nth-child(2n) {
    margin-right: 2%;
    float: left;
  }
  div.row-gallery ul.gallery li:nth-child(2n + 1) {
    clear: none;
  }
  div.row-gallery ul.gallery li:nth-child(3n) {
    margin-right: 0%;
    float: right;
  }
  div.row-gallery ul.gallery li:nth-child(3n + 1) {
    clear: both;
  }
}
@media only screen and (min-width: 1025px) {
  div.row-gallery ul.gallery li {
    *zoom: 1;
    float: left;
    clear: none;
    text-align: inherit;
    width: 23.5%;
    margin-left: 0%;
    margin-right: 2%;
  }
  div.row-gallery ul.gallery li:before, div.row-gallery ul.gallery li:after {
    content: '';
    display: table;
  }
  div.row-gallery ul.gallery li:after {
    clear: both;
  }
  div.row-gallery ul.gallery li:nth-child(3n) {
    margin-right: 2%;
    float: left;
  }
  div.row-gallery ul.gallery li:nth-child(3n + 1) {
    clear: none;
  }
  div.row-gallery ul.gallery li:nth-child(4n) {
    margin-right: 0%;
    float: right;
  }
  div.row-gallery ul.gallery li:nth-child(4n + 1) {
    clear: both;
  }
}
div.row-gallery ul.gallery li img {
  margin-top: 0;
  margin-right: auto;
  margin-left: auto;
  display: block;
  width: auto;
  margin-bottom: 1em;
}
@media only screen and (min-width: 641px) {
  div.row-gallery ul.gallery li img {
    margin-bottom: 1.25em;
  }
}
@media only screen and (min-width: 768px) {
  div.row-gallery ul.gallery li img {
    margin-bottom: 1.75em;
  }
}
@media only screen and (min-width: 1025px) {
  div.row-gallery ul.gallery li img {
    margin-bottom: 2em;
  }
}

div.gallery-text {
  *zoom: 1;
  width: auto;
  max-width: 1000px;
  float: none;
  display: block;
  margin-right: auto;
  margin-left: auto;
  padding-left: 0;
  padding-right: 0;
}
div.gallery-text:before, div.gallery-text:after {
  content: '';
  display: table;
}
div.gallery-text:after {
  clear: both;
}
div.gallery-text h1 {
  font-family: "Playfair Display", serif;
  font-weight: 700;
  color: #5C142E;
  font-size: 20px;
  text-align: center;
  margin: 15px 0 15px 0;
}
@media only screen and (min-width: 768px) {
  div.gallery-text h1 {
    font-size: 24px;
    margin: 10px 0;
    font-size: 30px;
  }
}
div.gallery-text p {
  text-align: center;
  font-size: 16px;
  line-height: 1.7;
  color: #2D3A52;
  font-weight: 400;
  font-family: "Alice", sans-serif;
  margin-bottom: 15px;
}
@media only screen and (min-width: 768px) {
  div.gallery-text p {
    margin: 0 50px 15px 50px;
    font-size: 18px;
  }
}
div.gallery-text p.gallery-click {
  color: #5C142E;
}

div.cycle-slide-show-wrapper {
  *zoom: 1;
  *zoom: 1;
  width: auto;
  max-width: 50em;
  float: none;
  display: block;
  margin-right: auto;
  margin-left: auto;
  padding-left: 2em;
  padding-right: 2em;
  position: relative;
  font-size: 1rem;
  margin-top: 1em;
  z-index: 0;
}
div.cycle-slide-show-wrapper:before, div.cycle-slide-show-wrapper:after {
  content: '';
  display: table;
}
div.cycle-slide-show-wrapper:after {
  clear: both;
}
div.cycle-slide-show-wrapper:before, div.cycle-slide-show-wrapper:after {
  content: '';
  display: table;
}
div.cycle-slide-show-wrapper:after {
  clear: both;
}
@media only screen and (min-width: 1025px) {
  div.cycle-slide-show-wrapper {
    *zoom: 1;
    width: auto;
    max-width: 48em;
    float: none;
    display: block;
    margin-right: auto;
    margin-left: auto;
    padding-left: 1em;
    padding-right: 1em;
  }
  div.cycle-slide-show-wrapper:before, div.cycle-slide-show-wrapper:after {
    content: '';
    display: table;
  }
  div.cycle-slide-show-wrapper:after {
    clear: both;
  }
}
div.cycle-slide-show-wrapper div.slide-show img {
  margin-bottom: .05em;
  width: 100%;
  border: 1px #CFA655;
  box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}
div.cycle-slide-show-wrapper div#slideshow {
  width: 100%;
}
div.cycle-slide-show-wrapper div.single-slide {
  margin: 0 auto 1.25em auto;
}
div.cycle-slide-show-wrapper .is-cms .slide-show img {
  display: none;
}
div.cycle-slide-show-wrapper .is-cms .slide-show img:first-child {
  display: block;
}
div.cycle-slide-show-wrapper div.caption-pager-wrap {
  *zoom: 1;
  position: relative;
  width: 100%;
}
div.cycle-slide-show-wrapper div.caption-pager-wrap:before, div.cycle-slide-show-wrapper div.caption-pager-wrap:after {
  content: '';
  display: table;
}
div.cycle-slide-show-wrapper div.caption-pager-wrap:after {
  clear: both;
}
div.cycle-slide-show-wrapper div.caption-pager-wrap div.cycle-slide-caption {
  width: 100%;
  font-size: 1em;
  padding: 0;
}
div.cycle-slide-show-wrapper div.caption-pager-wrap div.cycle-slide-nav-wrap {
  *zoom: 1;
  position: relative;
  margin: .25em 0 0 0;
  padding: 0;
}
div.cycle-slide-show-wrapper div.caption-pager-wrap div.cycle-slide-nav-wrap:before, div.cycle-slide-show-wrapper div.caption-pager-wrap div.cycle-slide-nav-wrap:after {
  content: '';
  display: table;
}
div.cycle-slide-show-wrapper div.caption-pager-wrap div.cycle-slide-nav-wrap:after {
  clear: both;
}
div.cycle-slide-show-wrapper div.caption-pager-wrap div.cycle-slide-nav-wrap div.cycle-pager {
  text-align: center;
  cursor: pointer;
}
div.cycle-slide-show-wrapper div.caption-pager-wrap div.cycle-slide-nav-wrap div.cycle-pager span {
  font-size: 1.8em;
  width: .6em;
  font-family: arial;
  line-height: .8;
  display: inline-block;
  color: #ccc;
  cursor: pointer;
}
@media only screen and (min-width: 768px) {
  div.cycle-slide-show-wrapper div.caption-pager-wrap div.cycle-slide-nav-wrap div.cycle-pager span {
    font-size: 2em;
    width: .6em;
  }
}
div.cycle-slide-show-wrapper div.caption-pager-wrap div.cycle-slide-nav-wrap div.cycle-prev-icon, div.cycle-slide-show-wrapper div.caption-pager-wrap div.cycle-slide-nav-wrap div.cycle-next-icon {
  padding: .3em 0 0 0;
  margin: 0 1.1em 0 0;
  float: left;
  cursor: pointer;
}
@media only screen and (min-width: 768px) {
  div.cycle-slide-show-wrapper div.caption-pager-wrap div.cycle-slide-nav-wrap div.cycle-prev-icon, div.cycle-slide-show-wrapper div.caption-pager-wrap div.cycle-slide-nav-wrap div.cycle-next-icon {
    padding: .5em 0 0 0;
    margin: 0 1em 0 0;
  }
}
div.cycle-slide-show-wrapper div.caption-pager-wrap div.cycle-slide-nav-wrap div.cycle-prev-icon img, div.cycle-slide-show-wrapper div.caption-pager-wrap div.cycle-slide-nav-wrap div.cycle-next-icon img {
  border: none;
}
