@import url('https://fonts.googleapis.com/css?family=Playfair+Display:400,700&subset=latin-ext');
/* ============================ HTML, BODY ======================================= */
html {
  height: 100%;
}
body {
  font-family: sans-serif;
  min-height: 100vh;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-direction: column;
  color: #333;
}
.main {
  flex: 1 0 auto;
  padding-top: 0;
}
@media (min-width:768px){
  .main {
    flex: 1 0 auto;
    padding-top: 55px;
  }
}
.button,button,input[type="submit"],input[type="reset"],input[type="button"]{
  background:#c70c0c;
  color: #fff;
  border-radius: 20px;
}
button:focus,.button:focus,button:active:focus,.button:active:focus,button.active:focus,.button.active:focus{
}
.button:hover,button:hover,input[type="submit"]:hover,input[type="reset"]:hover,input[type="button"]:hover,button:focus,.button:focus{
  color:#fff;
  background:#ff0000;
  text-decoration:none;
}
h1,h2,h3,h4,h5{
  padding: 40px 0;
  font-family: 'Playfair Display', serif;
  font-weight: bold;

}
p{
  padding: 15px 0;
}
.wp-block-quote {
  border-radius: 25px;
  border: 1px solid #eee;
  padding: 15px;
  font-family: 'Playfair Display', serif;
  font-weight: bold;
    color:#c70c0c;
}
.wp-block-cover {
  margin: 60px 0;
}
.layoutArea ul {
  list-style:disc;
  margin-left: 20px;
}
.layoutArea ul li{
  line-height: 1.8rem;
}
figure {
  box-shadow: 0 0 0.3em #eee;
}
.wp-block-media-text__media img, .wp-block-media-text__media video {
    max-width: unset;
    width: 100%;
    height: auto;
    vertical-align: middle;
  }
/* ====================== TOP ======================= */
.header{
  background-color: #fff;
  z-index: 99;
  position: fixed;
  top:0;
  left: 0;
  right: 0;
  padding: 0;
}
.header .container{
  padding: 0;
  position: relative;
}
.navbar {
  display: flex;
  align-items: left center;
  font-size: 16px;
  color: #111;
}
.navbar_items,
.navbar_items ul,
.navbar_menus,
.navbar {
  flex-direction: column;
}
.navbar_brand {
  display: inline-block;
  padding: 10px;
}
.navbar_brand .logo img {
  width:120px;
}
.navbar_toggle {
  padding:5px 10px;
  margin: 0;
}
.navbar_toggle .icon {
  display: block;
  font-family: Verdana;
  font-size: 30px;
  padding:0 10px;
}
.navbar_menus{
  z-index: 999;
}
.navbar_mobile {
  max-height:0;
  overflow: hidden;
  transition: max-height 0.4s ease-out;
}
.navbar_mobile.open {
  max-height: 85vh;
  overflow: auto;
  transition: max-height 0.4s ease-in;
}
.navbar_mobile .sub-menu {
  max-height:0;
  overflow: hidden;
  transition: max-height 0.4s ease-out;
}
.navbar_mobile li.open > .sub-menu {
  max-height: 85vh;
  overflow: auto;
  transition: max-height 0.4s ease-in;
}
.navbar_items {
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
}
.navbar_items ul {
  display: flex;
  flex-direction: column;
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.navbar_items li {
  margin:0 1px;
  position: relative;
}
.navbar_items li.has_parent .openbut {
  position: absolute;
  top:0;
  right: 0;
  padding: 9px;
  border-left: 1px solid rgba(0,0,0,0.1);
  cursor: pointer;
  font-family: Verdana;
  font-weight: normal;
  font-size: 25px;
  width: 38px;
  height: 38px;
}
.navbar_items li > ul {
  background: #ddd;
}
.navbar_items li > ul li a{
  padding-left: 15px;
}
.navbar_items li li > ul {
  background: #eee;
}
.navbar_items li li > ul li a{
  padding-left: 20px;
}
.navbar_items li li li > ul {
  background: #fff;
}
.navbar_items li li li > ul li a{
  padding-left: 25px;
}
.navbar_items a {
  color: #222;
  text-decoration: none;
  text-transform: uppercase;
  display: block;
  padding: 10px;
}
.navbar_items a:hover {
  color: #555;
}
.navbar_items a.active {
  color: #c70c0c;
}
.navbar_items_center {
  margin:0;
}
.navbar_items_right {
  margin-left:0;
}
.navbar_toggle {
  align-self: flex-end;
  display: initial;
  position: absolute;
  cursor: pointer;
}
@media(max-width: 599px) {

}
@media(min-width: 600px) {

}
@media(min-width: 900px) {
  .header {
    background-color: #fff;
    z-index: 99;
    position: fixed;
    top:0;
    left: 0;
    right: 0;
    padding:10px;
    transition: all 0.5s;
    border-bottom: 1px solid #eee;
  }
  .header.bg{
    background-color: #fff;
    /* transform: translateY(-40px); */
  }
  .header .container {
    padding: 0px 0 0;
    position: relative;
  }
  .navbar {
    display: flex;
    align-items: left center;
    font-size: 14px;
    color: #000;
  }
  .navbar_items,
  .navbar_items ul,
  .navbar_menus,
  .navbar {
    flex-direction: row;
    border-bottom: 0;
  }
  .navbar_brand {
    display: inline-block;
    padding: 0px;
  }
  .navbar_brand .logo img {
    width:160px;
  }
  .navbar_toggle {
    padding:5px 10px;
    margin: 0;
  }
  .navbar_toggle .icon {
    display: block;
    font-family: Verdana;
    font-size: 30px;
    padding:0 10px;
  }
  .navbar_menus {
    display: flex;
    width: 100%;
  }
  .navbar_items {
    display: flex;
    border-top: none;
    width: auto;
  }
  .navbar_items_center {
    margin:0 auto;
  }
  .navbar_items_right {
    margin-left: auto;
    float: right;
  }
  .navbar_items > ul {
    display: flex;
    /* justify-content: flex-end; */
    list-style-type: none;
    align-items: center;
    margin: 0;
    padding: 0;
  }
  .navbar_items li {
    display: block;
    position:relative;
    margin:0;
    height: 100%;
  }
  .navbar_items li:hover > a {
    background: #eee;
  }
  .navbar_items li.current-menu-item > a{
    background: #c70c0c;
    color: #fff;
  }
  .navbar_items a {
    height: 100%;
    display: flex;
    display: -webkit-flex; /* Safari */
    align-items: center;
    -webkit-align-items: center; /* Safari 7.0+ */
    color: #222;
    text-decoration: none;
    text-transform: uppercase;
    padding: 10px;
  }
  .navbar_items li ul {
    display: none;
    position: absolute;
    left: -999px;
    top: 0;
    z-index: 100;
    min-width: 120px;
    transition: all 0.3s;
  }
  .navbar_items li:hover > ul,
  .navbar_items li:hover > ul:hover  {
    display: block;
    position:absolute;
    left:0;
    top:100%;
    transition: all 0.3s;
  }
  .navbar_items li li a {
    background: #fff;
    position: relative;
    z-index:100;
    border-top: 1px solid #eee;
    border-radius: 0px;
  }
  .navbar_items li li ul {
    display: none;
  }
  .navbar_items li li:hover > ul,
  .navbar_items li li:hover > ul:hover {
    left:100%;
    top:0;
  }
  .navbar_items li li li a {
    background:#eee;
    z-index:200;
    border-top: 1px solid #fff;
  }

  .navbar_items a:hover {
    color: #111;
  }
  .navbar_items a.active {
    color: #c70c0c;
  }
  .navbar_items li.current-menu-parent > a,
  .navbar_items li.current-page-parent > a{
    background: #c70c0c;
    color: #fff;
  }
  .navbar_items li.current-menu-parent > a:after,
  .navbar_items li.current-page-parent > a:after {
    color: #fff;
  }
  .navbar_items li.menu-item-has-children .openbut {
    display: none;
  }
  .navbar_items li.menu-item-has-children > a:after {
    color: #999;
    content: "\25BE";
    padding-left: 5px;
  }
  .navbar_socials {
    position: absolute;
    top: 0;
    left: 0;
    border-top: none;
    padding: 10px 10px 8px;
    color: #fff;
    background:#c70c0c;
    width: 100vw;
    text-align: right;
    border-bottom: 3px solid #111;
  }
  .navbar_socials a{
    font-size: 1.3rem;
    padding: 0 10px;
    color: #fff;
  }
  .navbar_socials a:hover{
    color: #fff;
  }
  .navbar_socials .mail{
    font-size: 1rem;
    padding: 0 10px;
    color: #fff;
  }
  .header.scrollUp {
    transform: translateY(-140px);
  }
  .navbar_toggle {
    display: none;
  }
}
@media(min-width: 1200px) {
}

/* ================================= FRONT ==================================== */


/* NEWS */
.list_news, {
  margin-bottom: 50px;
  text-align: center;
}
.news_button {
  width: 100%;
  margin: 20px 0 40px;
  text-align: center;
}
.news_button .button {
  margin: 0 auto;
  display: inline-block;
}
.list_news .simple-news-con{
  list-style: none;
  margin: 0;
  padding: 0;
  display: block;
}
.list_news .simple-news-item,
.post_news {
  display: flex;
  flex-grow: 1;
  align-items:stretch;
  padding:10px;
  margin:5px;
  position:relative;
  flex-direction: column;
  border: 0;

}
.simple-news-img-con,
.news_image,
.simple-news-text-con,
.news_text {
  display: flex;
  flex-direction: column;
  text-align: center;
  align-items: center;
  justify-content: center;
}
.simple-news-img-con img,
.news_image img {
  border-radius: 50%;
  overflow: hidden;
  border:5px solid #c70c0c;
  max-width: 100%;
  height: auto;
}
.simple-news-text-con h4,
.news_text h4 {
  font-family: 'Playfair Display', serif;
  color:#c70c0c;
  font-weight: bold;
  font-size: 2rem;
  display: block;
  width: 100%;
  margin-bottom: 20px;
}
.simple-news-text-con h4 a {
  color:#c70c0c;
}
.simple-news-text-con .simple-news-excerpt,
.news_text p {
  font-size: 1.2rem;
  line-height: 1.4rem;
  padding: 20px;
}

.news_date {
  font-weight: bold;
  display: block;
  background:#c70c0c;
  color: #fff;
  width: 100px;
  border-radius: 50%;
  padding: 41px 0 40px;
  position: absolute;
  top: 0;
  z-index: 2;
  text-align: center;
}
.simple-news-date {
  display: none;
}
.list_news .simple-news-item:nth-child(odd) .simple_news_date,
.news:nth-child(odd) .news_date {
  left: 0;
}
.list_news .simple-news-item:nth-child(even) .simple_news_date,
.news:nth-child(even) .news_date {
  right: 0;
}
@media (min-width:600px){
  .list_news .simple-news-item,
  .post_news,
  .post {
    display: flex;
    align-items:stretch;
    padding:10px;
    margin:5px;
    position:relative;
  }
  .simple-news-img-con img,
  .news_image img {
    height: auto;
    width: 100%;
  }
}
@media (min-width:900px){
  .list_news .simple-news-item,
  .post_news,
  .post {
    display: flex;
    align-items:stretch;
    padding:10px;
    margin:5px;
    position:relative;
    flex-direction: row;
  }
  .list_news .simple-news-item:nth-child(even),
  .news:nth-child(even) .post_news {
    flex-direction: row-reverse;
  }
  .simple-news-img-con,
  .news_image {
    width:30%;
    height: auto;
  }

  .simple-news-text-con,
  .news_text {
    width:70%;
  }
}
@media (min-width:1200px){
  .simple-news-img-con,
  .news_image {
    width:30%;
    height: auto;
  }
  .simple-news-text-con,
  .news_text {
    width:70%;
  }
}

/* INFO BOXES */
.flex_boxes {
  display: flex;
  width:100%;
  flex-grow: 1;
  align-items:stretch;
  flex-direction: column;
}
.flex_box {
  display: flex;
  width:100%;
  text-align: center;
  align-items: center;
  justify-content: center;
  padding: 60px 0;
}
.flex-box.image {
  overflow: hidden;
}
.full-figure {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  padding: 0;
  margin: 0;
}
.flex_box.tekst .info_content {
  width: 100%;
}
.flex_box.tekst .info_title {
  font-size: 2.4rem;
  padding-bottom: 20px;
  font-family: 'Playfair Display', serif;
  font-weight: bold;
  color: #fff;
}
.flex_box.tekst .info_text {
  font-size: 1.2rem;
  padding:0 60px 40px;
}
.flex_box.onastekst {
  background: #6d0606;
  color: #fff;
}
.flexvideo {
  background: #eee url('../media/videobg.jpg') center center repeat;
  color: #c70c0c;
  display: flex;
  width:100%;
  flex-grow: 1;
  align-items:stretch;
  flex-direction: column;
}
.flexvideo .flex_box {
  display: flex;
  width:100%;
  text-align: center;
  align-items: center;
  justify-content: center;
  min-height: 400px;
}
.flexvideo .video {
  position: relative;
}
.flexvideo iframe {
  width: calc(100vw - 80px);
  height: calc(60vw - 80px);
}
.flex_box.videotekst .info_title{
  color: #c70c0c;
}
@media (min-width:600px){
  .flex_boxes {
    display: flex;
    width:100%;
    flex-grow: 1;
    align-items:stretch;
    flex-direction: row;

  }
  .flex_box {
    display: flex;
    width:100%;
    text-align: center;
    align-items: center;
    justify-content: center;
    min-height: 500px;
    padding: 0;
  }
}
@media (min-width:900px){
  .flexvideo {
    flex-direction: row;
  }
  .flexvideo .video {
    position: relative;
  }
  .flexvideo iframe {
    width: calc(50vw - 80px);
    height: calc(30vw - 80px);
    padding: 40px;
  }
}
@media (min-width:1200px){
}
.osoba {
  margin: 40px 0;
}
.osoba .container{
  display: flex;
  flex-grow: 1;
  flex-direction: column;
}
.osoba .foto,
.osoba .tekst,{
  display: flex;
  width:100%;
  flex-grow: 1;
  align-items:stretch;
}
.osoba .foto {
  width: 100%;
}
.osoba .foto img{
  width:100%;
  border-radius: 50%;
  overflow: hidden;
  border:5px solid #c70c0c;
}
.osoba .tekst {
  width: 100%;
  padding: 20px;
  display: flex;
  text-align: center;
  align-items: center;
  justify-content: center;
  flex-direction: column;

}
.osoba .tekst i {
  margin-right: 10px;
  font-size: 1rem;
}
.osoba .space  {
  margin: 20px auto 10px;
  background: #c70c0c;
  display: block;
  width: 50%;
  height: 1px;
}
.osoba .tekst .imie_i_nazwisko {
  font-family: 'Playfair Display', serif;
  font-weight: bold;
  font-size: 1.4rem;
  padding-bottom: 10px;
  color: #c70c0c;
}
.osoba .tekst .telefon {
  font-size: 1.1rem;
  padding: 5px;
  color: #c70c0c;
}
.osoba .tekst .email {
  font-size: 1.1rem;
  padding: 05px;
  color: #c70c0c;
}
@media (min-width:600px){
  .osoba .container{
    display: flex;
    flex-direction: row;
  }
  .osoba .foto {
    width: 40%;
  }
  .osoba .tekst {
    width: 60%;
  }
  .osoba .tekst .imie_i_nazwisko {
    font-size: 2rem;
  }
  .osoba .tekst .telefon {
    font-size: 1.3rem;
  }
  .osoba .tekst .email {
    font-size: 1.3rem;
  }
}
@media (min-width:900px){
}
@media (min-width:1200px){
}
.blog {
  margin-bottom: 30px;
}
.carousel {
  margin: 30px 0 60px;
}
/* ================================ PAGE ========================================= */
.site_content {
  padding:60px 0;
}
.content {
  font-size: 1.1rem;
}
.content li{
  line-height: 1.5rem;
}
.content .data {
  padding: 20px;
  margin: 20px 0 0;
  background: #fafafa;
}
.postimg {
  display: none;
  width: 100%;
  height: auto;
}
.aligncenter {
  margin: 0 auto;
  display: block;
  float: none;
}
.content:after {
  clear: both;
}
.aside {
}
/* article img {
  display: inline-block;
  max-width: 100%;
  width: calc(100% - 20px);
  padding:10px;
  height: auto;
}
@media (min-width:600px){
  article img {
    width: calc(100% - 20px);
  }
}
@media (min-width:900px){
  article img {
    width: calc(50% - 20px);
  }
}
@media (min-width:1200px){
  article img {
    width: calc(33.33% - 20px);
  }
} */
.post_image img{
  padding:0;
  margin-bottom: 30px;
  width:100%;
  height: auto;
  border: 1px solid #eee;
}
/* PAGE HEADER */
.page_header {
  width: 100%;
  background: #111;
  overflow: hidden;
  position: relative;
  display: flex;
  text-align: center;
  align-items: center;
  justify-content: center;
}
.page_header .page_header_bg {
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height:100%;
  width:100%;
  z-index:0;
  margin: 0;
  opacity: 0.6;
}
.page_header .page_header_content {
  z-index:3;
  position: relative;
  display: block;
  width: 100%;
  padding: 100px 50px;
}
.page_header .title h1{
  font-family: 'Playfair Display', serif;
  font-weight: bold;
  color: #fff;
  padding:0 0 20px;
  margin: 0;
  font-size: 2rem;
  text-align: center;
  display: block;
}
.page_header .breadcrumb {
  width: 100%;
  height: 20px;
}
.page_header .breadcrumb ul{
  margin: 0 auto;
  padding: 0;
  position: absolute;
  left: 50%;
  transform: translatex(-50%);
}
.page_header .breadcrumb li{
  display: inline-block;
  float: left;
  color: #fff;
  margin-right: 10px;
}
.page_header .breadcrumb li a{
  color: #eee;
}
.page_header .breadcrumb li a:hover{
  color: #fff;
}
@media (min-width:600px){
  .page_header .title h1 {
    font-size: 4rem;
  }
}
@media (min-width:900px){
}
@media (min-width:1200px){
}
/* CONTENT HEADING */
.heading {
  padding: 50px 0;
  text-align: center;
  font-family: 'Playfair Display', serif;
  font-weight: bold;
}
.heading span {
  font-size: 2em;
}
.google-maps {
  position: relative;
  padding-bottom: 500px; // This is the aspect ratio
  height: 0;
  overflow: hidden;
}
.google-maps iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
}
.pagination {
  text-align: center;
  width: 100%;
}
.page-numbers { list-style:none; font-size:1.1rem; margin: 10px auto; display: inline-block;}
.page-numbers li{ display:inline; }
.page-numbers li a{ display:block; float:left; padding:12px 15px; margin-right:7px; border:2px solid #eee; border-radius: 25px; }
.page-numbers li a:hover{border:2px solid #c70c0c;}
.page-numbers li span.current { display:block; float:left; padding:12px 15px; margin-right:7px; border:2px solid #c70c0c; border-radius: 25px;  color: #fff; background-color:#c70c0c;  }
.page-numbers li span.dots { display:block; float:left; padding:12px 15px; margin-right:7px; border-radius: 25px;   }

.post-nav { list-style:none; font-size:1.1rem; margin: 0px auto 20px; padding-bottom: 30px; border-bottom:1px solid #eee; display: inline-block; width: 100%;}
.post-nav div{ display:inline; }
.post-nav a{ display:block; float:left; padding:8px 15px; margin-right:7px; border:2px solid #eee; border-radius: 25px; }
.post-nav a:hover{border:2px solid #c70c0c;}
.post-nav .nav-next{float: right;}
.post-nav span.current { display:block; float:left; padding:8px 15px; margin-right:7px; border:2px solid #c70c0c; border-radius: 25px;  color: #fff; background-color:#c70c0c;  }
.post-nav span.dots { display:block; float:left; padding:8px 15px; margin-right:7px; border-radius: 25px;   }
.comments {
  display: block;
  width: 100%;
  padding:40px 0 40px;
  border-top:1px solid #eee;
}
}
.comments::before {
  clear: both;
}
.comment-list {
  margin: 0;
  padding-inline-start: 20px;
}
.comment-author {
  padding: 5px;
  display: inline-block;
}
.comment-meta {
  padding: 20px 0;
  float: right;
  display: inline-block;
}
.comment-meta::after {
  clear: both;
}
.widget-area li {
  width: 100%;
  display: block;
  list-style: none;
}
.widget-area li a{
  display: block;
}

/* ============================= FOOTER ==================================================== */
.footer {
  text-align: center;
  color: #eee;
}
.footer h4{
  margin-bottom: 10px;
  font-family: 'Playfair Display', serif;
  font-weight: bold;
  font-size: 1.5rem;
  padding: 5px 0;
}
.footer a {
  color: #eee;
}
.footer .upper_footer {
  padding: 80px 0;
  display: block;
  background: #333 url('../media/footerbg.jpg') center center no-repeat;
}
.footer .upper_footer .footer_menu ul {
  display: block;
}
.footer .upper_footer .footer_menu ul, .footer .upper_footer .footer_menu ul li {
  margin: 0;
  padding: 0;
  text-decoration: none;
  text-transform: uppercase;
}
.footer .upper_footer .footer_menu ul li {
  display: inline-block;
  margin-right: 15px;
  font-size: 0.9rem;
}
.footer .upper_footer .social {
  font-size: 2.5rem;
  line-height: 1em;
}
.footer .upper_footer .social i {
  margin:0 5px;
  color: #c70c0c;
}
.footer .down_footer {
  padding: 20px 0;
  display: block;
  background: #111;
  color: #777;
}
.footer .down_footer a{
  color: #777;
}
.footer .newsletter .mc4wp-form-fields {
  /* display:flex; */
  flex-direction:row;
}
.footer .newsletter p,
.widget_mc4wp_form_widget p {
   display:flex;
  flex-direction:row;
}
.footer .newsletter input,
.widget_mc4wp_form_widget input {
  /* Tell the input to use all the available space */
  flex-grow:2;
  margin-bottom: 0;
}
.footer .newsletter input[type="submit"] {

}
.footer .newsletter input[type="checkbox"],
.widget_mc4wp_form_widget input[type="checkbox"] {
 display: inline-block;
 margin-right: 10px;
}
.widget_mc4wp_form_widget input[type="checkbox"] {
 text-align: left;
 float: left;
}
/* ================================ SLIDER ===================================== */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
  text-align:center;
}
.slick-list {
  position: relative;
  display: block;
  overflow: hidden;
  margin: 0;
  padding: 0;
}
.slick-list:focus {
  outline: none;
}
.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}
.slick-slider .slick-track, .slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.slick-track {
  position: relative;
  top: 0;
  left: 0;
  display: flex;
  text-align: center;
  align-items: center;
  justify-content: center;
  min-width: 100%;
  margin: 0 auto;
}
.slick-track:before, .slick-track:after {
  display: table;
  content: '';
}
.slick-track:after {
  clear: both;
}
.slick-loading .slick-track {
  visibility: hidden;
}
.slick-slide {
  display: none;
  float: left;
  height: 100%;
  min-height: 1px;
  margin: 0 auto;
  padding: 0 40px;
  text-align: center;
}
.slick-slide:focus {
  outline: none;
}
[dir='rtl'] .slick-slide {
  float: right;
}
.slick-slide img {
  display: inline-block;
  max-width: 100%;
  height: auto;
}
.slick-slide.slick-loading img {
  display: none;
}
.slick-slide.dragging img {
  pointer-events: none;
}
.slick-initialized .slick-slide {
  display: block;
}
.slick-loading .slick-slide {
  visibility: hidden;
}
.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}
.slick-arrow.slick-hidden {
  display: none;
}
/* Slider */
.slick-loading .slick-list
{
  background: #fff url('../media/ajax-loader.gif') center center no-repeat;
}

/* Icons */
@font-face
{
  font-family: 'slick';
  font-weight: normal;
  font-style: normal;
  src: url('../fonts/slick.eot');
  src: url('../fonts/slick.eot?#iefix') format('embedded-opentype'), url('../fonts/slick.woff') format('woff'), url('../fonts/slick.ttf') format('truetype'), url('../fonts/slick.svg#slick') format('svg');
}
/* Arrows */
.slick-prev,
.slick-next
{
  font-size: 0;
  line-height: 0;
  position: absolute;
  top: 50%;
  display: block;
  width: 40px;
  height: 40px;
  padding: 0px;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  cursor: pointer;
  color: #999;
  border: none;
  outline: none;
  background: #fff;
  border-radius: 50%;
  z-index: 3;
  border: 1px solid #999;
  cursor: pointer;
}
.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus
{
  color: transparent;
  outline: none;
  border: 1px solid #c70c0c;
  color: #c70c0c;
}
.slick-prev:hover:before,
.slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before
{
  opacity: 1;
  color: #fff;
}
.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before
{
  opacity: .25;
}

.slick-prev:before,
.slick-next:before
{
  font-size: 30px;
  /* padding: 0 0 3px; */
  display: block;
  line-height: 1;
  color: #999;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slick-prev
{
  left: 10px;
}
[dir='rtl'] .slick-prev
{
  right: 10px;
  left: auto;
}
.slick-prev:before
{
  content: '\276E';
}
[dir='rtl'] .slick-prev:before
{
  content: '\276F';
}
.slick-next
{
  right: 10px;
}
[dir='rtl'] .slick-next
{
  right: auto;
  left: 10px;
}
.slick-next:before
{
  content: '\276F';
}
[dir='rtl'] .slick-next:before
{
  content: '\276E';
}
@media (min-width:600px){
  .slick-prev
  {
    left: -25px;
  }
  [dir='rtl'] .slick-prev
  {
    right: -25px;
    left: auto;
  }
  .slick-next
  {
    right: -25px;
  }
  [dir='rtl'] .slick-next
  {
    right: auto;
    left: -25px;
  }
}
/* Dots */

.slick-dotted.slick-slider
{
  margin-bottom: 30px;
}

.slick-dots
{
  position: absolute;
  bottom: -25px;

  display: block;

  width: 100%;
  padding: 0;
  margin: 0;

  list-style: none;

  text-align: center;
}
.slick-dots li
{
  position: relative;

  display: inline-block;

  width: 20px;
  height: 20px;
  margin: 0 5px;
  padding: 0;

  cursor: pointer;
}
.slick-dots li button
{
  font-size: 0;
  line-height: 0;

  display: block;

  width: 20px;
  height: 20px;
  padding: 5px;

  cursor: pointer;

  color: transparent;
  border: 0;
  outline: none;
  background: transparent;
}
.slick-dots li button:hover,
.slick-dots li button:focus
{
  outline: none;
}
.slick-dots li button:hover:before,
.slick-dots li button:focus:before
{
  opacity: 1;
}
.slick-dots li button:before
{
  font-family: 'slick';
  font-size: 12px;
  line-height: 20px;
  position: absolute;
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
  content: '•';
  text-align: center;
  opacity: .25;
  color: black;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.slick-dots li.slick-active button:before
{
  opacity: .75;
  color: black;

}

/* --------------------------------

Hero Slider - by CodyHouse.co

-------------------------------- */
/* Main Header */
.cd-header {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  width: 100%;
  height: 50px;
  background-color: #21272c;
}
.cd-header img,.cd-header video {
  max-width: 100%;
}

@media only screen and (min-width: 900px) {
  .cd-header {
    height: 70px;
    background-color: transparent;
  }
}
.cd-header__logo {
  float: left;
  margin: 13px 0 0 5%;
}
.cd-header__logo img {
  display: block;
}
@media only screen and (min-width: 900px) {
  .cd-header__logo {
    margin: 23px 0 0 5%;
  }
}
.cd-header__nav {
  /* mobile first - navigation hidden by default, triggered by tap/click on navigation icon */
  float: right;
  margin-right: 5%;
  width: 44px;
  height: 100%;
  background: url("../assets/cd-icon-menu.svg") no-repeat center center;
}
.cd-header__nav ul {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  -webkit-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  transform: translateY(-100%);
}
.cd-header__nav ul.cd-is-visible {
  -webkit-box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
  -webkit-transform: translateY(50px);
  -ms-transform: translateY(50px);
  transform: translateY(50px);
}
.cd-header__nav a {
  display: block;
  height: 50px;
  line-height: 50px;
  padding-left: 5%;
  background: #21272c;
  border-top: 1px solid #333c44;
  color: #ffffff;
}
@media only screen and (min-width: 900px) {
  .cd-header__nav {
    /* reset navigation values */
    width: auto;
    height: auto;
    background: none;
  }
  .cd-header__nav ul {
    position: static;
    width: auto;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
    line-height: 70px;
  }
  .cd-header__nav ul.cd-is-visible {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
  .cd-header__nav li {
    display: inline-block;
    margin-left: 1em;
  }
  .cd-header__nav a {
    display: inline-block;
    height: auto;
    line-height: normal;
    background: transparent;
    padding: .6em 1em;
    border-top: none;
  }
}

/* Slider */
.cd-hero {
  position: relative;
  background: #000;
}
.cd-hero__slider {
  position: relative;
  height: 450px;
  width: 100%;
  overflow: hidden;
  margin: 0;
  padding: 0;
}
.cd-hero__slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* Force Hardware Acceleration */
  -webkit-transform: translateZ(0px);
  transform: translateZ(0px);
  will-change: transform;
  -webkit-transform: translateX(100%);
  -ms-transform: translateX(100%);
  transform: translateX(100%);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.cd-hero__slide.cd-hero__slide--selected {
  /* this is the visible slide */
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0);
}
.cd-hero__slide.cd-hero__slide--move-left {
  /* slide hidden on the left */
  -webkit-transform: translateX(-100%);
  -ms-transform: translateX(-100%);
  transform: translateX(-100%);
}
.cd-hero__slide.cd-hero__slide--is-moving,
.cd-hero__slide.cd-hero__slide--selected {
  /* the cd-hero__slide--is-moving class is assigned to the slide which is moving outside the viewport */
  -webkit-transition: -webkit-transform 0.5s;
  transition: -webkit-transform 0.5s;
  transition: transform 0.5s;
  transition: transform 0.5s, -webkit-transform 0.5s;
}
@media only screen and (min-width: 900px) {
  .cd-hero__slider {
    height: 500px;
  }
}
@media only screen and (min-width: 1200px) {
  .cd-hero__slider {
    height: 680px;
  }
}
/* Slide style */
.cd-hero__slide {
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}
.cd-hero__slide .cd-hero__bg {
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  margin:0;
  opacity: 0.6;
}
.cd-hero__content.cd-hero__content--full-width,
.cd-hero__content.cd-hero__content--half-width {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 1;
  left: 0;
  top: 0;
  /* this padding is used to align the text */
  padding-top: 100px;
  text-align: center;
  /* Force Hardware Acceleration */
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  will-change: transform;
}
.cd-hero__content h2, .cd-hero__content p, .cd-hero__btn, .cd-hero__content--img img {
  /* Force Hardware Acceleration */
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  will-change: transform;
}
.cd-hero__content.cd-hero__content--img {
  /* hide image on mobile device */
  display: none;
}
.cd-hero__content--img img {
  position: absolute;
  left: 50%;
  top: 50%;
  bottom: auto;
  right: auto;
  -webkit-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  opacity: 0;
}
.cd-hero__content.cd-hero__content--bg-video {
  /* hide video on mobile device */
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.cd-hero__content--bg-video video {
  /* you won't see this element in the html, but it will be injected using javascript */
  display: block;
  min-height: 100%;
  min-width: 100%;
  max-width: none;
  height: auto;
  width: auto;
  position: absolute;
  left: 50%;
  top: 50%;
  bottom: auto;
  right: auto;
  -webkit-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
}
.cd-hero__content h2, .cd-hero__content p {
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  line-height: 1.2;
  margin: 0 50px 14px;
  color: #ffffff;
}
.cd-hero__content h2 {
  font-size: 2rem;
  font-family: 'Playfair Display', serif;
  font-weight: bold;
}
.cd-hero__content p {
  font-size: 1.4rem;
  line-height: 1.4;
}
@media only screen and (min-width: 900px) {
  .cd-hero__slide:nth-of-type(2),
  .cd-hero__slide:nth-of-type(3),
  .cd-hero__slide:nth-of-type(4) {
    background-image: none;
  }
  .cd-hero__content.cd-hero__content--full-width,
  .cd-hero__content.cd-hero__content--half-width {
    padding-top: 150px;
  }
  .cd-hero__content.cd-hero__content--bg-video {
    display: block;
  }
  .cd-hero__content.cd-hero__content--half-width {
    width: 45%;
  }
  .cd-hero__content.cd-hero__content--half-width:first-of-type {
    left: 5%;
  }
  .cd-hero__content.cd-hero__content--half-width:nth-of-type(2) {
    right: 5%;
    left: auto;
  }
  .cd-hero__content.cd-hero__content--img {
    display: block;
  }

  .cd-hero__content h2 {
    font-size: 4.4rem;
    font-family: 'Playfair Display', serif;
    font-weight: bold;
  }
  .cd-hero__content p {
    font-size: 1.6rem;
  }
  .cd-hero__btn {
    font-size: 1.4rem;
  }
}

@media only screen and (min-width: 1200px) {
  .cd-hero__content.cd-hero__content--full-width,
  .cd-hero__content.cd-hero__content--half-width {
    padding-top: 220px;
  }
  .cd-hero__content h2, .cd-hero__content p {
    margin-bottom: 20px;
  }
  .cd-hero__content h2 {
    font-size: 5rem;
  }
  .cd-hero__content p {
    font-size: 1.6rem;
  }
}

/* Single slide animation */
@media only screen and (min-width: 900px) {
  .cd-hero__content.cd-hero__content--half-width {
    opacity: 0;
    -webkit-transform: translateX(40px);
    -ms-transform: translateX(40px);
    transform: translateX(40px);
  }
  .cd-hero__slide--move-left .cd-hero__content.cd-hero__content--half-width {
    -webkit-transform: translateX(-40px);
    -ms-transform: translateX(-40px);
    transform: translateX(-40px);
  }
  .cd-hero__slide--selected .cd-hero__content.cd-hero__content--half-width {
    /* this is the visible slide */
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
  .cd-hero__slide--is-moving .cd-hero__content.cd-hero__content--half-width {
    /* this is the slide moving outside the viewport
    wait for the end of the transition on the <li> parent before set opacity to 0 and translate to 40px/-40px */
    -webkit-transition: opacity 0s 0.5s, -webkit-transform 0s 0.5s;
    transition: opacity 0s 0.5s, -webkit-transform 0s 0.5s;
    transition: opacity 0s 0.5s, transform 0s 0.5s;
    transition: opacity 0s 0.5s, transform 0s 0.5s, -webkit-transform 0s 0.5s;
  }
  .cd-hero__slide--from-left.cd-hero__slide--selected .cd-hero__content.cd-hero__content--half-width:nth-of-type(2),
  .cd-hero__slide--from-right.cd-hero__slide--selected .cd-hero__content.cd-hero__content--half-width:first-of-type {
    /* this is the selected slide - different animation if it's entering from left or right */
    -webkit-transition: opacity 0.4s 0.2s, -webkit-transform 0.5s 0.2s;
    transition: opacity 0.4s 0.2s, -webkit-transform 0.5s 0.2s;
    transition: opacity 0.4s 0.2s, transform 0.5s 0.2s;
    transition: opacity 0.4s 0.2s, transform 0.5s 0.2s, -webkit-transform 0.5s 0.2s;
  }
  .cd-hero__slide--from-left.cd-hero__slide--selected .cd-hero__content.cd-hero__content--half-width:first-of-type,
  .cd-hero__slide--from-right.cd-hero__slide--selected .cd-hero__content.cd-hero__content--half-width:nth-of-type(2) {
    /* this is the selected slide - different animation if it's entering from left or right */
    -webkit-transition: opacity 0.4s 0.4s, -webkit-transform 0.5s 0.4s;
    transition: opacity 0.4s 0.4s, -webkit-transform 0.5s 0.4s;
    transition: opacity 0.4s 0.4s, transform 0.5s 0.4s;
    transition: opacity 0.4s 0.4s, transform 0.5s 0.4s, -webkit-transform 0.5s 0.4s;
  }
  .cd-hero__content--full-width h2,
  .cd-hero__content--full-width p,
  .cd-hero__content--full-width .cd-hero__btn {
    -webkit-transform: translateX(100px);
    -ms-transform: translateX(100px);
    transform: translateX(100px);
  }
  .cd-hero__slide--move-left .cd-hero__content--full-width h2,
  .cd-hero__slide--move-left .cd-hero__content--full-width p,
  .cd-hero__slide--move-left .cd-hero__content--full-width .cd-hero__btn {
    -webkit-transform: translateX(-100px);
    -ms-transform: translateX(-100px);
    transform: translateX(-100px);
  }
  .cd-hero__slide--selected .cd-hero__content--full-width h2,
  .cd-hero__slide--selected .cd-hero__content--full-width p,
  .cd-hero__slide--selected .cd-hero__content--full-width .cd-hero__btn {
    /* this is the visible slide */
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
  .cd-hero__slide--is-moving .cd-hero__content--full-width h2,
  .cd-hero__slide--is-moving .cd-hero__content--full-width p,
  .cd-hero__slide--is-moving .cd-hero__content--full-width .cd-hero__btn {
    /* this is the slide moving outside the viewport
    wait for the end of the transition on the li parent before set translate to 100px/-100px */
    -webkit-transition: -webkit-transform 0s 0.5s;
    transition: -webkit-transform 0s 0.5s;
    transition: transform 0s 0.5s;
    transition: transform 0s 0.5s, -webkit-transform 0s 0.5s;
  }
  .cd-hero__slide--selected h2 {
    -webkit-transition: -webkit-transform 0.5s 0.2s;
    transition: -webkit-transform 0.5s 0.2s;
    transition: transform 0.5s 0.2s;
    transition: transform 0.5s 0.2s, -webkit-transform 0.5s 0.2s;
  }
  .cd-hero__slide--selected p {
    -webkit-transition: -webkit-transform 0.8s 0.3s;
    transition: -webkit-transform 0.8s 0.3s;
    transition: transform 0.8s 0.3s;
    transition: transform 0.5s 0.3s, -webkit-transform 0.8s 0.3s;
  }
  .cd-hero__slide--selected .cd-hero__btn {
    -webkit-transition: background-color 0.2s 0s, -webkit-transform 0.5s 0.4s;
    transition: background-color 0.2s 0s, -webkit-transform 0.5s 0.4s;
    transition: transform 0.5s 0.4s, background-color 0.2s 0s;
    transition: transform 0.5s 0.4s, background-color 0.2s 0s, -webkit-transform 0.5s 0.4s;
  }
}

/* Slider navigation */
.cd-hero__nav {
  position: absolute;
  width: 100%;
  bottom: 10px;
  z-index: 2;
  text-align: center;
  height: 20px;
}
.cd-hero__nav nav, .cd-hero__nav ul, .cd-hero__nav li, .cd-hero__nav a {
  height: 100%;
}
.cd-hero__nav nav {
  display: inline-block;
  position: relative;
}
.cd-hero__marker {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 100%;
  color: #fff;
  background-color: #ffffff;
  -webkit-box-shadow: inset 0 2px 0 currentColor;
  box-shadow: inset 0 2px 0 currentColor;
  -webkit-transition: -webkit-transform 0.2s, -webkit-box-shadow 0.2s;
  transition: -webkit-transform 0.2s, -webkit-box-shadow 0.2s;
  transition: transform 0.2s, box-shadow 0.2s;
  transition: transform 0.2s, box-shadow 0.2s, -webkit-transform 0.2s, -webkit-box-shadow 0.2s;
  overflow: hidden;
  border-radius: 10px;
}
.cd-hero__marker.cd-hero__marker--item-2 {
  -webkit-transform: translateX(100%);
  -ms-transform: translateX(100%);
  transform: translateX(100%);
}
.cd-hero__marker.cd-hero__marker--item-3 {
  -webkit-transform: translateX(200%);
  -ms-transform: translateX(200%);
  transform: translateX(200%);
}
.cd-hero__marker.cd-hero__marker--item-4 {
  -webkit-transform: translateX(300%);
  -ms-transform: translateX(300%);
  transform: translateX(300%);
}
.cd-hero__marker.cd-hero__marker--item-5 {
  -webkit-transform: translateX(400%);
  -ms-transform: translateX(400%);
  transform: translateX(400%);
}
.cd-hero__nav ul {
  margin:0;
  background: #c70c0c;
  overflow: hidden;
  border-radius: 10px;
}
.cd-hero__nav ul::after {
  clear: both;
  content: "";
  display: table;
}
.cd-hero__nav li {
  display: inline-block;
  width: 60px;
  float: left;
  overflow: hidden;
  border-radius: 20px;
}
.cd-hero__nav .cd-selected a {
  color: #2c343b;
}
.cd-hero__nav .cd-selected a:hover {
  background-color: transparent;
}
.cd-hero__nav a {
  display: block;
  position: relative;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  -webkit-transition: background-color 0.2s;
  transition: background-color 0.2s;
  overflow: hidden;
  border-radius: 10px;
}
.cd-hero__nav a::before {
  content: '';
  position: absolute;
  width: 24px;
  height: 24px;
  top: 8px;
  left: 50%;
  right: auto;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  background: url(../assets/cd-icon-navigation.svg) no-repeat 0 0;
}
.cd-hero__nav a:hover {
  background-color: rgba(255, 255, 255, 0.5);
}
.cd-hero__nav li:first-of-type a::before {
  background-position: 0 0;
}
.cd-hero__nav li.cd-selected:first-of-type a::before {
  background-position: 0 -24px;
}
.cd-hero__nav li:nth-of-type(2) a::before {
  background-position: -24px 0;
}
.cd-hero__nav li.cd-selected:nth-of-type(2) a::before {
  background-position: -24px -24px;
}
.cd-hero__nav li:nth-of-type(3) a::before {
  background-position: -48px 0;
}
.cd-hero__nav li.cd-selected:nth-of-type(3) a::before {
  background-position: -48px -24px;
}
.cd-hero__nav li:nth-of-type(4) a::before {
  background-position: -72px 0;
}
.cd-hero__nav li.cd-selected:nth-of-type(4) a::before {
  background-position: -72px -24px;
}
.cd-hero__nav li:nth-of-type(5) a::before {
  background-position: -96px 0;
}
.cd-hero__nav li.cd-selected:nth-of-type(5) a::before {
  background-position: -96px -24px;
}
@media only screen and (min-width: 900px) {
  .cd-hero__nav {
    height: 20px;
  }
  .cd-hero__marker,
  .cd-hero__nav li {
    width: 80px;
  }
  .cd-hero__nav a {
    font-size: 1.1rem;
    text-transform: uppercase;
  }
  .cd-hero__nav a::before {
    top: 18px;
  }
}

/* Main Content */
.cd-main-content {
  width: 90%;
  max-width: 768px;
  margin: 0 auto;
  padding: 2em 0;
}
.cd-main-content p {
  font-size: 1.4rem;
  line-height: 1.8;
  color: #999999;
  margin: 2em 0;
}
@media only screen and (min-width: 1200px) {
  .cd-main-content {
    padding: 3em 0;
  }
  .cd-main-content p {
    font-size: 1.6rem;
  }
}

/* Javascript disabled */
.no-js .cd-hero__slide {
  display: none;
}
.no-js .cd-hero__slide.cd-hero__slide--selected {
  display: block;
}
.no-js .cd-hero__nav {
  display: none;
}
