@charset "UTF-8";
/*-----------------------------------------------------------------------------------------------------
    [Master Stylesheet]

    Version : 1.0

    Projet :
    Website : 
  
-------------------------------------------------------------------------------------------------------*/
/*-----------------------------------------------------------------------------------------------------
    [variables]
    
    + Neat
    + Breackpoint
    + Typo

-------------------------------------------------------------------------------------------------------*/
/* Neat Overrides */
/* Breackpoint */
/* Typo */
/*-----------------------------------------------------------------------------------------------------
    [mixins]

-------------------------------------------------------------------------------------------------------*/
/*-----------------------------------------------------------------------------------------------------
    [settings]

-------------------------------------------------------------------------------------------------------*/
html {
  box-sizing: border-box;
}

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

/*-----------------------------------------------------------------------------------------------------
    [Reset]

    http://meyerweb.com/eric/tools/css/reset/ 
    v2.0 | 20110126
    License: none (public domain)    
-------------------------------------------------------------------------------------------------------*/
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, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  /*font: inherit;
  vertical-align: baseline;*/
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  /*list-style: none;*/
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* quick print reset */
@media print {
  p,
  blockquote {
    orphans: 2;
    widows: 2;
  }
  blockquote,
  ul,
  ol {
    page-break-inside: avoid;
  }
  h1,
  h2,
  h3,
  caption {
    page-break-after: avoid;
  }
  * {
    background: transparent !important;
    color: black !important;
    text-shadow: none !important;
    -webkit-filter: none !important;
            filter: none !important;
    -ms-filter: none !important;
  }
  /* Black prints faster: h5bp.com/s */
  a, a:visited {
    text-decoration: underline;
  }
  a[href]:after {
    content: " (" attr(href) ")";
  }
  abbr[title]:after {
    content: " (" attr(title) ")";
  }
  .ir a:after, a[href^="javascript:"]:after, a[href^="#"]:after {
    content: "";
  }
  /* Don't show links for images, or javascript/internal links */
  pre, blockquote {
    border: 1px solid #999;
    page-break-inside: avoid;
  }
  thead {
    display: table-header-group;
  }
  /* h5bp.com/t */
  tr, img {
    page-break-inside: avoid;
  }
  img {
    max-width: 100% !important;
  }
  @page {
    margin: 0.5cm;
  }
  p, h2, h3 {
    orphans: 3;
    widows: 3;
  }
  h2, h3 {
    page-break-after: avoid;
  }
}

/* orientation iOS font-size fix */
@media (orientation: landscape) and (max-device-width: 767px) {
  html,
  body {
    -webkit-text-size-adjust: 100%;
  }
}

/*-----------------------------------------------------------------------------------------------------
    [colors]

-------------------------------------------------------------------------------------------------------*/
/* Application colors */
/* Typography colors */
/* Shades of grey */
/* Alerts colors */
/* Social colors */
/*-----------------------------------------------------------------------------------------------------
    [typography]

-------------------------------------------------------------------------------------------------------*/
@font-face {
  font-family: 'snicklesregular';
  src: url("../fonts/Snickles-webfont.eot");
  src: url("../fonts/Snickles-webfont.eot?#iefix") format("embedded-opentype"), url("../fonts/Snickles-webfont.woff") format("woff"), url("../fonts/Snickles-webfont.ttf") format("truetype"), url("../fonts/Snickles-webfont.svg#snicklesregular") format("svg");
  font-weight: normal;
  font-style: normal;
}

body {
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  color: #000000;
  line-height: 140%;
  font-weight: 400;
}

h1, h2, h3, h4, h5, h6 {
  color: #57468d;
  margin: 0;
  line-height: 140%;
  font-family: "Open Sans", sans-serif;
  font-weight: 300;
}

h1, .h1-like {
  font-size: 20px;
}

@media only screen and (max-width: 767px) {
  h1, .h1-like {
    font-size: 20px;
  }
}

h2, .h2-like {
  font-size: 18px;
}

@media only screen and (max-width: 767px) {
  h2, .h2-like {
    font-size: 18px;
  }
}

h3, .h3-like {
  font-size: 16px;
}

@media only screen and (max-width: 767px) {
  h3, .h3-like {
    font-size: 16px;
  }
}

h4, .h4-like {
  font-size: 14px;
}

@media only screen and (max-width: 767px) {
  h4, .h4-like {
    font-size: 14px;
  }
}

h5, .h5-like {
  font-size: 14px;
}

h6, .h6-like {
  font-size: 14px;
}

/*-----------------------------------------------------------------------------------------------------
    [helpers]

-------------------------------------------------------------------------------------------------------*/
.clear {
  clear: both;
}

.clearfix:after {
  content: " ";
  visibility: hidden;
  display: block;
  height: 0;
  clear: both;
}

@media only screen and (max-width: 767px) {
  .desktop-only {
    display: none !important;
  }
}

.mobile-only {
  display: none !important;
}

@media only screen and (max-width: 767px) {
  .mobile-only {
    display: block !important;
  }
}

/*-----------------------------------------------------------------------------------------------------
    [Grid]
    
    A grid with NEAT
    DOC : http://thoughtbot.github.io/neat-docs/latest/

-------------------------------------------------------------------------------------------------------*/
.container {
  padding: 0 10px;
  max-width: 1180px;
  margin-left: auto;
  margin-right: auto;
}

.container::after {
  clear: both;
  content: "";
  display: table;
}

.row {
  display: block;
}

.row::after {
  clear: both;
  content: "";
  display: table;
}

.omega {
  margin-right: 0;
}

@media only screen and (max-width: 767px) {
  .grid_1 {
    float: left;
    display: block;
    margin-right: 1.9356%;
    width: 6.55904%;
  }
  .grid_1:last-child {
    margin-right: 0;
  }
  .grid_2 {
    float: left;
    display: block;
    margin-right: 1.9356%;
    width: 15.05367%;
  }
  .grid_2:last-child {
    margin-right: 0;
  }
  .grid_3 {
    float: left;
    display: block;
    margin-right: 1.9356%;
    width: 23.5483%;
  }
  .grid_3:last-child {
    margin-right: 0;
  }
  .grid_4 {
    float: left;
    display: block;
    margin-right: 1.9356%;
    width: 32.04294%;
  }
  .grid_4:last-child {
    margin-right: 0;
  }
  .grid_5 {
    float: left;
    display: block;
    margin-right: 1.9356%;
    width: 40.53757%;
  }
  .grid_5:last-child {
    margin-right: 0;
  }
  .grid_6 {
    float: left;
    display: block;
    margin-right: 1.9356%;
    width: 49.0322%;
  }
  .grid_6:last-child {
    margin-right: 0;
  }
  .grid_7 {
    float: left;
    display: block;
    margin-right: 1.9356%;
    width: 57.52684%;
  }
  .grid_7:last-child {
    margin-right: 0;
  }
  .grid_8 {
    float: left;
    display: block;
    margin-right: 1.9356%;
    width: 66.02147%;
  }
  .grid_8:last-child {
    margin-right: 0;
  }
  .grid_9 {
    float: left;
    display: block;
    margin-right: 1.9356%;
    width: 74.5161%;
  }
  .grid_9:last-child {
    margin-right: 0;
  }
  .grid_10 {
    float: left;
    display: block;
    margin-right: 1.9356%;
    width: 83.01073%;
  }
  .grid_10:last-child {
    margin-right: 0;
  }
  .grid_11 {
    float: left;
    display: block;
    margin-right: 1.9356%;
    width: 91.50537%;
  }
  .grid_11:last-child {
    margin-right: 0;
  }
  .grid_12 {
    float: left;
    display: block;
    margin-right: 1.9356%;
    width: 100%;
  }
  .grid_12:last-child {
    margin-right: 0;
  }
}

/*-----------------------------------------------------------------------------------------------------
    [commons]

-------------------------------------------------------------------------------------------------------*/
* {
  box-sizing: border-box;
}

/*
::-webkit-selection { background : #ccc; }
::-moz-selection { background : #ccc; }
::selection { background : #ccc; }
*/
body {
  background: url("../img/bg.png") #5d4892 no-repeat center 0;
  background-size: 100% auto;
}

@media only screen and (max-width: 1200px) {
  body {
    background-position: center 0;
    background-size: 1200px auto;
  }
}

@media only screen and (max-width: 767px) {
  body {
    background-size: 2000px auto;
  }
}

a {
  text-decoration: none;
  color: #f26a31;
}

a:hover {
  color: #5d4892;
  text-decoration: underline;
}

ul li,
ol li {
  list-style: none;
}

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

@media only screen and (max-width: 767px) {
  img {
    width: 100%;
    max-width: 100%;
  }
}

blockquote {
  color: #000000;
  font-style: italic;
  font-family: Georgia, "Times New Roman", Times, serif;
  font-size: 18px;
  line-height: 170%;
}

blockquote p:before {
  content: " “ ";
  color: #F0F0F0;
}

blockquote p:after {
  content: " ” ";
  color: #F0F0F0;
}

hr {
  background: #F0F0F0;
  border: none;
  height: 1px;
}

hr.divider {
  background: url("../img/divider.png") no-repeat top center;
  background-size: 120px auto;
  height: 20px;
  width: 120px;
  margin: 30px auto;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

table th {
  border: 1px solid gray;
  padding: 0.2em;
  text-align: left;
}

table td {
  border: 1px solid gray;
  padding: 0.2em;
}

.txtleft {
  text-align: left;
}

.txtright {
  text-align: right;
}

.txtcenter {
  text-align: center;
}

.hidden {
  visibility: hidden;
}

/*-----------------------------------------------------------------------------------------------------
    [Buttons]


    + Primary
    + Secondary

-------------------------------------------------------------------------------------------------------*/
/* === Primary === */
.primary-btn {
  -webkit-transition: all 0.15s ease-out 0s;
  transition: all 0.15s ease-out 0s;
}

/* === Secondary === */
.secondary-btn {
  -webkit-transition: all 0.15s ease-out 0s;
  transition: all 0.15s ease-out 0s;
}

/* === Back top === */
.back-top {
  position: fixed;
  z-index: 999;
  bottom: 20px;
  right: 20px;
  width: 70px;
  height: auto;
  background: #5d4892;
  padding: 5px;
  color: #e6e754;
  text-align: center;
  border-radius: 5px;
  text-decoration: none;
  font-family: "Kalam", cursive;
  font-weight: 700;
  visibility: hidden;
  opacity: 0;
  -webkit-transform: translateY(20px);
      -ms-transform: translateY(20px);
          transform: translateY(20px);
  -webkit-transition: all 0.15s ease-out 0s;
  transition: all 0.15s ease-out 0s;
}

.back-top:hover {
  background: #e6e754;
  color: #5d4892;
  text-decoration: none;
}

.back-top.active {
  visibility: visible;
  opacity: 1;
  -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
          transform: translateY(0);
}

/* === more-infos === */
/* === Booking === */
.booking-btn {
  display: inline-block;
  font-family: "Kalam", cursive;
  font-weight: 700;
  color: #FFF;
  padding: 20px 40px;
  font-size: 20px;
  border-radius: 5px;
  background: #ef5ba1;
}

/*-----------------------------------------------------------------------------------------------------
    [Forms]

    + Basics
        _Error

    + Custom select
    + Custom Checkbox & Radio

-------------------------------------------------------------------------------------------------------*/
/* Basics
-------------------------------------------------------------------------------------------------------*/
form p {
  margin-bottom: 20px;
}

form label {
  font-weight: 600;
  color: #57468d;
  display: block;
  margin-bottom: 10px;
}

button,
input,
select,
textarea {
  font-family: Arial, Helvetica, Arial, sans-serif;
  font-size: 100%;
}

form input[type="text"],
form input[type="email"],
form input[type="date"],
form input[type="password"],
form textarea,
form select {
  border: 1px solid #DBDBDB;
  background: #FFF;
  padding: 0 10px;
  width: 100%;
  height: 40px;
  color: #554141;
  -webkit-border-radius: 0;
  -webkit-appearance: none !important;
}

form select[multiple="multiple"] {
  height: auto;
}

form input[type="radio"],
form input[type="checkbox"] {
  margin: 0 5px 0 0;
}

form input:disabled {
  background: #F0F0F0;
  box-shadow: none;
  font-style: italic;
}

form input[type="text"]:focus,
form input[type="email"]:focus,
form input[type="date"]:focus,
form input[type="password"]:focus,
form textarea:focus,
form select:focus {
  border: 1px solid #888888;
}

form textarea {
  padding: 10px;
  height: 150px;
  width: 100%;
  vertical-align: top;
}

form button,
form input[type="submit"] {
  padding-top: 0 !important;
  cursor: pointer;
}

/* === Error & Alert === */
form .error-field label {
  color: #FF4160;
}

form .error-field input[type="text"],
form .error-field input[type="email"],
form .error-field input[type="date"],
form .error-field input[type="password"],
form .error-field textarea,
form .error-field select,
form .error-field .customSelect {
  border: 1px solid #FF4160;
}

form .error-info {
  background: #FF4160;
  font-weight: 600;
  font-style: italic;
  color: #FFF;
  position: relative;
  padding: 10px;
  display: block;
  font-size: 14px;
  margin: 10px 0 0px 0;
  max-width: 470px;
}

form .valid-field input[type="text"],
form .valid-field input[type="email"],
form .valid-field input[type="date"],
form .valid-field input[type="password"],
form .valid-field textarea,
form .valid-field select,
form .valid-field .customSelect {
  border: 1px solid #0047BB;
}

/* Custom select pointer
/* DOC : Filament Group | Doc : https://github.com/filamentgroup/select-css/
-------------------------------------------------------------------------------------------------------*/
.custom-select {
  position: relative;
  display: block;
  border: 1px solid #DBDBDB;
  max-width: 470px;
}

.custom-select select {
  width: 100%;
  margin: 0;
  background: #FFF;
  border: 1px solid transparent;
  outline: none;
  box-sizing: border-box;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.custom-select:after {
  content: "";
  position: absolute;
  width: 8px;
  height: 4px;
  top: 50%;
  right: 1em;
  margin-top: -2px;
  background-image: url("../img/custom-select-pointer.png");
  background-repeat: no-repeat;
  background-size: 100%;
  z-index: 2;
  pointer-events: none;
}

.custom-select:hover {
  border-color: #888888;
}

.custom-select select:focus {
  outline: none;
  /*border-color: $grey-darker;*/
  border-color: #FFF;
}

.custom-select option {
  font-weight: normal;
}

/* START OF UGLY BROWSER-SPECIFIC HACKS */
x:-o-prefocus, .custom-select::after {
  display: none;
}

@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .custom-select select::-ms-expand {
    display: none;
  }
  .custom-select select:focus::-ms-value {
    background: transparent;
    color: #222;
  }
}

@-moz-document url-prefix() {
  .custom-select {
    overflow: hidden;
  }
  .custom-select select {
    width: 120%;
    width: calc(100% + em);
  }
}

.custom-select select:-moz-focusring {
  color: transparent;
  text-shadow: 0 0 0 #000;
}

/* Custom Checkbox & Radio
/* DOC : http://www.creativejuiz.fr/blog/tutoriels/personnaliser-aspect-boutons-radio-checkbox-css
-------------------------------------------------------------------------------------------------------*/
form .custom-checkbox,
form .custom-radio {
  line-height: 100%;
}

form .custom-radio input + label {
  margin-right: 20px;
  padding-top: 4px;
}

form .custom-checkbox input[type="checkbox"]:not(:checked),
form .custom-checkbox input[type="checkbox"]:checked,
form .custom-radio input[type="radio"]:not(:checked),
form .custom-radio input[type="radio"]:checked {
  position: absolute;
  left: -9999px;
}

form .custom-checkbox input[type="checkbox"]:not(:checked) + label,
form .custom-checkbox input[type="checkbox"]:checked + label,
form .custom-radio input[type="radio"]:not(:checked) + label,
form .custom-radio input[type="radio"]:checked + label {
  position: relative;
  padding-left: 30px;
  cursor: pointer;
}

form .custom-checkbox label {
  margin-bottom: 10px;
}

form .custom-checkbox input[type="checkbox"]:not(:checked) + label:before,
form .custom-checkbox input[type="checkbox"]:checked + label:before,
form .custom-radio input[type="radio"]:not(:checked) + label:before,
form .custom-radio input[type="radio"]:checked + label:before {
  content: '';
  position: absolute;
  left: 1px;
  top: 3px;
  width: 16px;
  height: 16px;
  border: 1px solid #DBDBDB;
  background: #FFF;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
}

form .custom-checkbox input[type="checkbox"]:not(:checked) + label:before,
form .custom-checkbox input[type="checkbox"]:checked + label:before {
  top: -1px;
  border-radius: 4px;
}

form .custom-radio input[type="radio"]:not(:checked) + label:before,
form .custom-radio input[type="radio"]:checked + label:before {
  border-radius: 20px;
}

form .custom-checkbox input[type="checkbox"]:checked + label:before,
form .custom-radio input[type="radio"]:checked + label:before {
  border: 1px solid #DBDBDB;
}

form .custom-checkbox input[type="checkbox"]:not(:checked) + label:after,
form .custom-checkbox input[type="checkbox"]:checked + label:after,
form .custom-radio input[type="radio"]:not(:checked) + label:after,
form .custom-radio input[type="radio"]:checked + label:after {
  content: '✔';
  position: absolute;
  top: 0px;
  left: 5px;
  font-size: 14px;
  color: #ef5ba1;
  -webkit-transition: all 0.15s ease-out 0s;
  transition: all 0.15s ease-out 0s;
}

form .custom-radio input[type="radio"]:not(:checked) + label:after,
form .custom-radio input[type="radio"]:checked + label:after {
  content: '';
  top: 8px;
  left: 6px;
  width: 8px;
  height: 8px;
  background: #ef5ba1;
  border-radius: 10px;
}

form .custom-checkbox input[type="checkbox"]:not(:checked) + label:after,
form .custom-radio input[type="radio"]:not(:checked) + label:after {
  opacity: 0;
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
}

form .custom-checkbox input[type="checkbox"]:checked + label:after,
form .custom-radio input[type="radio"]:checked + label:after {
  opacity: 1;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}

form .custom-checkbox input[type="checkbox"]:disabled:not(:checked) + label:before,
form input[type="checkbox"]:disabled:checked + label:before {
  box-shadow: none;
  border-color: #bbb;
  background-color: #ddd;
}

form .custom-checkbox input[type="checkbox"]:disabled:checked + label:after {
  color: #999;
}

form .custom-checkbox input[type="checkbox"]:disabled + label {
  color: #aaa;
}

form .custom-checkbox input[type="checkbox"]:checked:focus + label:before,
form .custom-checkbox input[type="checkbox"]:not(:checked):focus + label:before {
  /*border: 1px dotted blue; */
}

/*-----------------------------------------------------------------------------------------------------
    [icons]

-------------------------------------------------------------------------------------------------------*/
@font-face {
  font-family: 'icomoon';
  src: url("../fonts/icomoon.eot?251534");
  src: url("../fonts/icomoon.eot?251534#iefix") format("embedded-opentype"), url("../fonts/icomoon.ttf?251534") format("truetype"), url("../fonts/icomoon.woff?251534") format("woff"), url("../fonts/icomoon.svg?251534#icomoon") format("svg");
  font-weight: normal;
  font-style: normal;
}

[class^="icon-"], [class*=" icon-"] {
  font-family: 'icomoon';
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-arrow-avatar:before {
  content: "\e800";
}

.icon-arrow-down:before {
  content: "\e801";
}

.icon-arrow-left:before {
  content: "\e802";
}

.icon-arrow-right:before {
  content: "\e803";
}

.icon-arrow-up:before {
  content: "\e804";
}

.icon-bubble:before {
  content: "\e805";
}

.icon-check:before {
  content: "\e806";
}

.icon-email:before {
  content: "\e807";
}

.icon-infos:before {
  content: "\e808";
}

.icon-lock:before {
  content: "\e809";
}

.icon-phone:before {
  content: "\e80a";
}

/*-----------------------------------------------------------------------------------------------------
    [breadcrumb]

-------------------------------------------------------------------------------------------------------*/
/*-----------------------------------------------------------------------------------------------------
    [pagination]

-------------------------------------------------------------------------------------------------------*/
/*-----------------------------------------------------------------------------------------------------
    [event-block]

-------------------------------------------------------------------------------------------------------*/
.event-block a {
  display: block;
  background: #5d4892;
  -webkit-transition: all 0.15s ease-out 0s;
  transition: all 0.15s ease-out 0s;
}

.event-block a:hover {
  opacity: 0.8;
  background: #554141;
  text-decoration: none;
}

.event-block .intro {
  background: #5d4892;
}

.event-block .intro .title {
  font-family: "Kalam", cursive;
  font-weight: 700;
  font-size: 30px;
  background: #fff000;
  padding: 20px;
}

.event-block .intro p {
  font-size: 18px;
  padding: 20px;
  font-weight: bold;
}

.event-block .intro p span {
  font-size: 14px;
  font-weight: normal;
  display: block;
}

.event-block .intro p + p {
  padding-top: 0;
}

.event-block .intro .booking-btn {
  margin-left: 20px;
  display: inline-block;
  background: #ef5ba1;
}

.event-block .intro .booking-btn:hover {
  background: #ef5ba1;
  color: #FFF;
  opacity: 0.8;
}

.event-block .booking-btn {
  display: inline-block;
  background: #ef5ba1;
}

.event-block .booking-btn:hover {
  background: #5d4892;
  color: #FFF;
}

.event-block .more-info {
  background: none;
  display: inline-block;
  margin-bottom: 20px;
}

.event-block .more-info:hover {
  text-decoration: none;
}

.event-block.orange a {
  background: #ef5ba1;
}

.event-block.yellow a {
  background: #fff000;
}

.event-block .bar {
  padding: 5px 20px;
  font-size: 12px;
}

.event-block .bar strong {
  font-family: "Kalam", cursive;
  font-weight: 700;
  font-size: 18px;
}

.event-block .event-content {
  position: relative;
  background: #FFF;
  padding: 10px 20px 10px 10px;
}

.event-block .event-content .event-poster {
  float: left;
  margin-right: 20px;
}

.event-block .event-content .event-poster img {
  max-width: 180px;
}

.event-block .event-content h2 {
  margin-top: 10px;
  position: relative;
  display: inline-block;
  margin-bottom: 15px;
}

.event-block .event-content h2 img {
  max-height: 60px;
}

.event-block .event-content h2 .hidden {
  display: none;
}

.event-block .event-content h2 .subtitle {
  position: absolute;
  top: 15px;
  right: -60px;
  color: #be9a37;
}

@media only screen and (max-width: 767px) {
  .event-block .event-content h2 .subtitle {
    position: relative;
    top: auto;
    right: auto;
  }
}

.event-block .event-content p {
  color: #ef5ba1;
  margin-bottom: 5px;
}

.event-block .event-content p + p {
  color: #554141;
  margin-bottom: 20px;
}

.event-block .event-content .time {
  display: block;
  font-family: "Kalam", cursive;
  font-weight: 700;
  color: #be9a37;
  font-size: 24px;
}

/*-----------------------------------------------------------------------------------------------------
    [guest-block]

-------------------------------------------------------------------------------------------------------*/
/*-----------------------------------------------------------------------------------------------------
    [header]

-------------------------------------------------------------------------------------------------------*/
.header {
  padding: 20px 0 0 0;
  text-align: center;
}

.header .container {
  position: relative;
}

.header .logo {
  display: block;
  width: 500px;
  margin: 0 auto 20px auto;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

@media only screen and (max-width: 1600px) {
  .header .logo {
    width: auto;
    text-align: center;
  }
}

.header .logo img {
  display: inline-block;
}

@media only screen and (max-width: 1600px) {
  .header .logo img {
    max-width: 300px;
    width: auto;
  }
}

@media only screen and (max-width: 767px) {
  .header .logo img {
    max-width: 300px;
    width: 100%;
  }
}

.header .logo:hover {
  -webkit-transform: scale(1.1) rotate(-2deg);
      -ms-transform: scale(1.1) rotate(-2deg);
          transform: scale(1.1) rotate(-2deg);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.header .baseline {
  display: inline-block;
  margin-bottom: 20px;
}

.header .date {
  text-align: center;
  margin-bottom: 25px;
}

.header .date img {
  display: inline-block;
}

@media only screen and (max-width: 767px) {
  .header .date img {
    max-width: 350px;
  }
}

/*-----------------------------------------------------------------------------------------------------
    [footer]

-------------------------------------------------------------------------------------------------------*/
.social {
  margin-bottom: 20px;
}

.social .social_button {
  display: inline-block;
}

.footer {
  background: #000;
  padding: 30px 10px;
  margin-top: 0px;
  position: relative;
  z-index: 10;
}

.footer .legal {
  margin-top: 40px;
  color: #5d4892;
  text-align: center;
  font-size: 12px;
}

/*-----------------------------------------------------------------------------------------------------
    [nav]
-------------------------------------------------------------------------------------------------------*/
.main-menu {
  margin-bottom: 30px;
}

.main-menu ul {
  text-align: center;
}

.main-menu ul li {
  list-style: none;
  display: inline-block;
  margin: 0 20px;
}

@media only screen and (max-width: 767px) {
  .main-menu ul li {
    margin-bottom: 20px;
  }
}

.main-menu ul li a {
  font-family: "Kalam", cursive;
  font-weight: 700;
  font-size: 30px;
  color: #5d4892;
  text-decoration: none;
  display: block;
  text-shadow: -1px 1px 0 #ef5ba1;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

.main-menu ul li a:hover {
  text-shadow: -1px 1px 0 #ef5ba1, -2px 2px 0 #ef5ba1, -3px 3px 0 #ef5ba1, -4px 4px 0 #ef5ba1, -5px 5px 0 #ef5ba1;
  /*color: $secondary;*/
  /*transform: scale(1.1) rotate(-2deg);*/
  -webkit-transform: translate(5px, -5px);
      -ms-transform: translate(5px, -5px);
          transform: translate(5px, -5px);
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

/*-----------------------------------------------------------------------------------------------------
    [off-canvas]
    
    + off canvas
    + body & wrapper
    + overlay
-------------------------------------------------------------------------------------------------------*/
@media only screen and (max-width: 1200px) {
  .off-canvas {
    position: fixed;
    height: 100%;
    width: 280px;
    z-index: 999;
    -webkit-transform: translateX(-280px);
        -ms-transform: translateX(-280px);
            transform: translateX(-280px);
  }
}

@media only screen and (max-width: 1200px) {
  body.no-scroll {
    height: 100%;
    overflow: hidden;
    position: fixed;
  }
}

body.move-left .wrapper {
  -webkit-transform: translateX(280px);
      -ms-transform: translateX(280px);
          transform: translateX(280px);
}

body.move-right .wrapper {
  -webkit-transform: translateX(-280px);
      -ms-transform: translateX(-280px);
          transform: translateX(-280px);
}

body .wrapper {
  -webkit-transition: -webkit-transform 0.4s;
  transition: transform 0.4s;
}

.move-left body .wrapper {
  -webkit-transform: translateX(280px);
      -ms-transform: translateX(280px);
          transform: translateX(280px);
}

.move-right body .wrapper {
  -webkit-transform: translateX(-280px);
      -ms-transform: translateX(-280px);
          transform: translateX(-280px);
}

.overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.8);
  z-index: 990;
}

/*-----------------------------------------------------------------------------------------------------
    [partner-list]
-------------------------------------------------------------------------------------------------------*/
.partner-list li {
  list-style: none;
  display: inline-block;
  margin: 0 10px;
}

.partner-list li a {
  display: block;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

.partner-list li a:hover {
  -webkit-transform: scale(1.1) rotate(-2deg);
      -ms-transform: scale(1.1) rotate(-2deg);
          transform: scale(1.1) rotate(-2deg);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.partner-list li a img {
  width: auto;
  max-height: 45px;
}

/*-----------------------------------------------------------------------------------------------------
    [place-list]
-------------------------------------------------------------------------------------------------------*/
.place-list {
  margin-bottom: 40px;
}

.place-list li {
  list-style: none;
  display: inline-block;
  margin: 0 5px;
}

.place-list li a {
  display: block;
  color: #e6e754;
}

.place-list li a img {
  width: 100%;
  max-height: 60px;
}

/*-----------------------------------------------------------------------------------------------------
    [event-list]
-------------------------------------------------------------------------------------------------------*/
.event-list {
  position: relative;
  padding: 0px 0 0px 70px;
  margin-bottom: 40px;
}

@media only screen and (max-width: 767px) {
  .event-list {
    margin: 0 -30px 30px -30px;
  }
}

.event-list.first {
  padding-top: 0;
}

.event-list li.event-date {
  background: #be9a37;
  font-family: "Kalam", cursive;
  font-weight: 700;
  position: absolute;
  left: 0;
  top: 0;
  width: 70px;
  height: 100%;
}

.event-list li.event-date span {
  position: absolute;
  top: 10px;
  left: 10px;
  display: block;
  -webkit-transform: rotate(-90deg);
      -ms-transform: rotate(-90deg);
          transform: rotate(-90deg);
  -webkit-transform-origin: 60% 380% 0px;
      -ms-transform-origin: 60% 380% 0px;
          transform-origin: 60% 380% 0px;
  text-transform: uppercase;
  color: #000;
  text-align: right;
  width: 150px;
  font-size: 20px;
}

.event-list li.event-block {
  margin-bottom: 20px;
}

.event-list li:last-child {
  margin-bottom: 0;
}

/*-----------------------------------------------------------------------------------------------------
    [guest-list]
-------------------------------------------------------------------------------------------------------*/
.guest-list li {
  background: #5d4892;
  padding: 30px 0;
  margin-bottom: 20px;
}

.guest-list li a {
  display: block;
  position: relative;
  background: #FFF;
  padding: 10px 20px 10px 10px;
}

.guest-list li a:hover {
  text-decoration: none;
}

.guest-list li a .portrait {
  float: left;
  margin-right: 20px;
}

.guest-list li a .portrait img {
  max-width: 180px;
}

.guest-list li a h2 {
  font-family: "Kalam", cursive;
  font-weight: 700;
  font-size: 30px;
  color: #ef5ba1;
}

/*-----------------------------------------------------------------------------------------------------
    [anchor-list]
-------------------------------------------------------------------------------------------------------*/
.anchor-list {
  margin-bottom: 40px;
  text-align: center;
}

.anchor-list li {
  list-style: none;
  display: inline-block;
  margin: 0 5px;
}

.anchor-list li a {
  display: block;
  color: #5d4892;
}

.anchor-list li a img {
  width: 100%;
  max-height: 60px;
}

/*-----------------------------------------------------------------------------------------------------
    [page]
    
-------------------------------------------------------------------------------------------------------*/
.main .container {
  -webkit-transform: rotate(-2deg);
      -ms-transform: rotate(-2deg);
          transform: rotate(-2deg);
  background: #000000;
  box-shadow: 0 -3px 3px rgba(0, 0, 0, 0.2);
  border-radius: 10px 10px 0 0;
}

@media only screen and (max-width: 767px) {
  .main .container {
    -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
            transform: rotate(0deg);
  }
}

.main .page-content {
  -webkit-transform: rotate(2deg);
      -ms-transform: rotate(2deg);
          transform: rotate(2deg);
  padding: 30px 40px 80px 40px;
}

@media only screen and (max-width: 767px) {
  .main .page-content {
    -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
            transform: rotate(0deg);
    padding: 20px 10px 40px 10px;
  }
}

.home .main .page-content {
  padding-top: 60px;
  padding: 20px 10px 40px 10px;
}

.main .page-content h1 {
  color: #FFF;
  font-size: 40px;
  text-align: center;
}

.main .page-content .contact {
  color: #FFF;
  text-align: center;
  padding: 10px;
  margin-bottom: 10px;
}

.main .page-content .map {
  text-align: center;
}

.main .page-content .map img {
  display: inline-block;
}

/*-----------------------------------------------------------------------------------------------------
    [homepage]
    
-------------------------------------------------------------------------------------------------------*/
.home .main .page-content h1 {
  text-align: center;
  margin-bottom: 20px;
  color: #FFF;
  font-size: 16px;
}

.home .main .page-content h1 span {
  display: block;
  font-size: 30px;
  line-height: 150%;
}

.home .main .page-content h2 {
  text-align: center;
  margin-bottom: 20px;
  color: #FFF;
  font-size: 16px;
}

.home .main .page-content .video {
  border: 5px solid #ef5ba1;
  width: 900px;
  margin: 0 auto 40px auto;
}

@media only screen and (max-width: 1600px) {
  .home .main .page-content .video {
    width: auto;
  }
}

.home .main .page-content .video iframe {
  width: 100%;
  display: block;
}

@media only screen and (max-width: 960px) {
  .home .main .page-content .video iframe {
    height: 400px;
  }
}

@media only screen and (max-width: 767px) {
  .home .main .page-content .video iframe {
    height: 300px;
  }
}

@media only screen and (max-width: 450px) {
  .home .main .page-content .video iframe {
    height: 150px;
  }
}
