html {
  background-color: #000032;
  background-image: url(/images/back.png);
  font-size: 18px;
  height: 100%;
}

body {
  margin: 0;
  min-height: 100%;
  display: grid;
  grid-template-rows: 75px 1fr auto;
}

iframe{
    max-width: 100%;
}

.divwrap {
  max-width: 1200px;
  width: 100%;
  padding: 0 15px;
  box-sizing: border-box;
  margin: auto;
  position: relative;
}

.header {
  width: 100%;
  background-color: #000032;
  background-color: #000032AA;
  position: sticky;
  -webkit-position: sticky;
  top: 0;
  text-align: right;
  z-index: 10;
}

.logo {
  margin: 0;
  position: absolute;
  left: 0;
  top: 0;
  cursor: pointer;
  max-width: 35%;
  z-index: 1;
}

.divmenu {
  padding: 20px 0;
}

.divsocial > a {
  color: #FFE;
  font-size: 2em;
  margin: 20px 0 20px 20px;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  display: inline-block;
  text-decoration: none;
  text-transform: uppercase;
  font-family: arial;
}

.divmenu a.fr {
  color: blue;
}

.divmenu a.en {
  color: red;
}

.fa-globe {
  background-color: #FFE;
  padding: 1px 1px 0 2px;
  border-radius: 5px;
}

.divsocial > a:hover {
  -webkit-transform: scale(1.2) translateZ(0);
  -moz-transform: scale(1.2) translateZ(0);
  transform: scale(1.2) translateZ(0);
}

.divmenu a {
  color: #FFE;
  font-family: 'Libre Baskerville', serif;
  text-decoration: none;
  font-size: 1.5em;
  margin-left: 25px;
  font-weight: bold;
  -webkit-transition: color .3s;
  -moz-transition: color .3s;
  transition: color .3s;
}

.divmenu a:not(.change-language):hover, .divmenu a.current {
  color: #FFa;
}

.change-language .fa-globe:hover {
  background-color: #FFa;
}

.banner {
  width: 100%;
  background-image: url(/images/banners/default.jpg);
  height: 50vw;
  max-height: 600px;
  background-size: cover;
  background-position: center;
  background-color: orangered;
  background-blend-mode: multiply;
  position: relative;
}

.banner::before {
    content: '';
}

.banner-content {
  font-family: 'Libre Baskerville', serif;
  width: 100%;
  text-align: center;
  font-size: 3.5vw;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: #FFE;
  text-shadow: 1px 1px 2px #000;
}

.banner-content h1 {
  text-transform: uppercase;
}

.banner-content  h2,
.banner-content p {
  font-size: calc(3px + 4vw);
}

footer.divwrap {
  position: relative;
  margin-top: 50px;
}

.footer-content {
  width: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-color: #67ff67;
  background-blend-mode: multiply;
  position: relative;
  padding: 15px;
  box-sizing: border-box;
  border-radius: 20px 20px 0 0;
  display: -ms-grid;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  -ms-grid-columns: 1fr 15px 1fr 15px 1fr;
  -ms-grid-rows: auto 15px auto;
  grid-template-rows: auto;
  grid-template-areas: "facebook event social" "facebook event copyright";
  grid-gap: 15px;
}

.fb-page {
  grid-area: facebook;
  align-self: center;
  -ms-grid-row: 1;
  -ms-grid-row-span: 2;
  -ms-grid-column: 1;
  -ms-grid-row-align: center;
}

.footer-content .divevent {
  grid-area: event;
  place-self: center;
  width: 100%;
  color: #ffe;
  text-align: center;
  -ms-grid-row: 1;
  -ms-grid-row-span: 2;
  -ms-grid-column: 3;
  -ms-grid-row-align: center;
  -ms-grid-column-align: center;
}

.footer-content .divevent > div {
  font-size: 1.3em;
  font-family: 'Libre Baskerville', serif;
  text-shadow: 2px 2px 4px #000;
}

.footer-content .divevent a {
  font-size: 1.3em;
  display: block;
  color: #ffe;
  text-decoration: none;
}

.footer-content .divevent a:hover {
  color: #FFa;
}

.footer-content .divsocial {
  grid-area: social;
  place-self: center;
  background-color: #000032;
  padding: 10px;
  border: 3px solid #ffe;
  text-align: center;
  /*border-radius: 20px;*/
  -ms-grid-row: 1;
  -ms-grid-column: 5;
  -ms-grid-row-align: center;
  -ms-grid-column-align: center;
  /*max-width: 180px;*/
  max-height: 100px;
}

.footer-content .divsocial > a {
  font-size: 2em;
  margin: 0px 7px 0px 7px;
}

.footer-content .divsocial .facebook {
  display: none;
}

.footer-content .divsocial .phone {
  display: block;
  padding: 5px;
}

.footer-content .divsocial .phone a {
  text-decoration: none;
  color: #ffe;
}

.footer-content .copyright {
  grid-area: copyright;
  text-align: center;
  color: #ffe;
  -ms-grid-row: 3;
  -ms-grid-column: 5;
}

.footer-content .copyright a {
  color: #FFE;
  font-weight: bold;
  -webkit-transition: color .3s;
  -moz-transition: color .3s;
  transition: color .3s;
}

.footer-content .copyright a:hover {
    color: #FFa;
}

.footer-logo {
  position: absolute;
  right: -48px;
  top: -30px;
  z-index: 1;
  transform: rotate(11deg);
  -moz-transform: rotate(11deg);
  -webkit-transform: rotate(11deg);
  transition: transform 0.3s;
  -moz-transition: transform 0.3s;
  -webkit-transition: transform 0.3s;
  width: 150px;
  height: auto;
}

footer:hover .footer-logo {
  transform: rotate(5deg);
  -moz-transform: rotate(51deg);
  -webkit-transform: rotate(5deg);
}

#nextdate-counter > span {
  display: none;
}

#nextdate-counter > span.day {
  display: block;
  font-family: 'Cabin', sans-serif;
  font-size: 1.4em;
  font-style: italic;
}

#nextdate-counter > span.hour {
  display: inline-block;
  font-family: 'digital-clock-font';
  color: #67ff67;
  font-size: 1.4em;
  padding: 2px 7px 0px 9px;
  background-color: #000;
  margin: 10px auto 0;
  border: 2px solid saddlebrown;
  box-shadow: 0 0 0 1px sandybrown;
  border-radius: 10px;
}

.content {
  background-color: #FFE;
  box-sizing: border-box;
  padding: 30px;
  width: 100%;
  margin: 30px auto;
  box-shadow: 5px 5px orangered;
  min-height: 100px;
  position: relative;
  font-family: 'Cabin', sans-serif;
}

.content .fa-thumb-tack {
  position: absolute;
  top: 10px;
  left: 10px;
  transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
}

.content:before {
  content: "\f08d";
  position: absolute;
    top: 10px;
    left: 10px;
    transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    line-height: .75em;
    vertical-align: -15%;
    font: normal normal normal 14px/1 FontAwesome;
    font-size: 1.33333333em;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
}

.content:after {
  content: '';
  position: absolute;
  right: 0;
  bottom: 0;
  border-right: 8px solid orangered;
  border-bottom: 8px solid orangered;
  border-left: 8px solid #cecebb;
  border-top: 8px solid #cecebb;
}

.content h2, .content h3 {
  text-align: center;
  margin-top: 5px;
}

.content img {
    max-width: 100%;
    height: auto;
}

.content iframe {
    max-width: 100%;
}

.template-shows .content {
  max-width: 800px;
  text-align: center;
}

.template-gallery {
  text-align: center;
}

.template-gallery label {
  display: inline-block;
  font-size: 2em;
  color: #ffe;
  margin: 40px 15px 15px;
  padding: 5px 15px;
  background-color: #000032;
  border: 3px solid #ffe;
}

.template-gallery label span {
  display: block;
  font-size: 18px;
  font-style: italic;
}

.template-contact {
  
}

.template-contact form {
  max-width: 800px;
  margin: auto;
  font-size: 2em;
}

.template-contact label {
  display: block;
  margin-bottom: 10px;
}

.template-contact input[type="text"] {
  width: 100%;
  box-sizing: border-box;
  margin-bottom: 40px;
  padding: 5px;
  outline: none;
  border: 1px solid orangered;
  font-size: 0.6em;
  display: block;
}

.template-contact input[type="button"] {
  margin: auto;
  padding: 7px 15px;
  outline: none;
  font-size: 0.6em;
  display: block;
  color: #ffe;
  background-color: #000032;
  border-radius: 10px;
  cursor: pointer;
  -webkit-transition: color .3s, background-color .3s;
  -moz-transition: color .3s, background-color .3s;
  transition: color .3s, background-color .3s;
}

.template-contact input[type="submit"]:hover {
  color: #000;
  background-color: orangered;
}

.template-contact textarea {
  width: 100%;
  box-sizing: border-box;
  margin-bottom: 40px;
  padding: 5px;
  outline: none;
  border: 1px solid orangered;
  font-size: 0.4em;
  display: block;
  min-height: 120px;
}

.template-contact .message {
    margin: 15px 40px;
    padding: 15px;
    background-color: #ccc;
    font-family: 'Libre Baskerville', serif;
}

.g-recaptcha > div {
    margin: 0 auto 20px;
}

.template-blog h1 {
    text-align: center;
    text-transform: uppercase;
    font-size: 1.7em;
}

.blog-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 20px;
    margin: 30px 0;
}

.blog-item {
    background-color: #FFE;
    box-sizing: border-box;
    padding: 30px;
    width: 100%;
    box-shadow: 5px 5px orangered;
    min-height: 100px;
    position: relative;
    font-family: 'Cabin', sans-serif;
}

.blog-item img {
    max-width: 100%;
}

.blog-item .date {
    font-size: 0.8em;
    display: block;
    margin-bottom: 10px;
}

.blog-item h2 a {
    text-decoration: none;
    
}

.menu-trigger, .mobile-menu {
  display: none;
}

.mobile-menu {
  background-color: #000000DD;
}

.mobile-menu ul, .mobile-menu li {
  margin: 0;
  padding: 0;
  list-style: none;
}

.mobile-menu li a {
  text-transform: uppercase;
  text-decoration: none;
  color: #000;
  padding: 8px 10px;
  text-align: left;
  background-color: #FFE;
  background: -webkit-linear-gradient(#FFE, #EED);
  background: -moz-linear-gradient(#FFE, #EED);
  background: linear-gradient(#FFE, #EED);
  display: block;
  border-bottom: 1px solid #000;
}

.mobile-menu .divsocial {
  text-align: center;
}

.mobile-menu .divsocial a {
  /*float: left;*/
  width: calc(20% - 4px);
  margin: 0;
  box-sizing: border-box;
  padding: 10px 0;
}

.mobile-menu .divsocial .phone {
  display: block;
  padding: 5px;
}

.mobile-menu .divsocial .phone a {
  text-decoration: none;
  color: #ffe;
  float: none;
}

.ug-gallery-wrapper .ug-preloader-trans{
  background-image: url(/plugins/unitegallery/images/loader-black7.gif) !important;
}

@media screen and (min-width : 0px) and (max-width: 1300px) {
  .footer-logo {
    right: 0;
  }
}

@media screen and (min-width : 0px) and (max-width: 975px) {
  body {
    display: block;
  }
  
  .header {
    display: none;
  }
  
  .banner {
    margin-top: 0;
  }
  
  .menu-trigger {
    display: block;
    position: absolute;
    top: 5px;
    left: 10px;
    color: #FFE;
    z-index: 100;
    cursor: pointer;
  }
  
  .footer-content {
    grid-template-columns: repeat(2, 1fr);
    grid-template-areas: "facebook event" "copyright copyright";
  }
  
  .footer-content .divsocial {
    display: none;
  }
  
  .footer-logo {
    top: -22px;
    width: 90px;
  }
  
  .blog-content {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .template-blog {
      padding-top: 45px;
  }
  
  .template-blog .content {
      margin: 0;
  }
}



@media screen and (min-width : 0px) and (max-width: 600px) {
  .footer-content {
    grid-template-columns: auto;
    grid-template-areas: "event" "facebook" "copyright";
  }
  
  .fb-page {
    text-align: center;
  }
  
  .blog-content {
    grid-template-columns: repeat(1, 1fr);
  }
  
  .template-gallery label {
    font-size: 1.5em;
  }
}

@font-face{
 font-family:'digital-clock-font';
 src: url('/fonts/Digital Dismay.otf');
}