@charset "UTF-8";
/**** Import bootstrap functions & variables ****/
/**** Import px to rem converter ****/
/********************
variables start
********************/
/********************
variables end
********************/
/**** Import bootstrap breakpoints ****/
/**** Import Compass Mixins ****/
/**** Import theme mixins ****/
/* ----------------------------------------------------------------------------- */
/* --- 1. SETUP
/* ----------------------------------------------------------------------------- */
html {
  font-size: 87.5%;
}
@media (max-width: 575.98px) {
  html {
    font-size: 81.6666666375%;
  }
}

body {
  position: relative;
  color: #4D4D4D;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  letter-spacing: 0.8px;
}

h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
  color: #0F1214;
  font-family: "Playfair Display", serif;
}

a {
  color: #0F1214;
  transition: color 0.3s ease-out;
}
a:focus, a:hover {
  color: #9A2121;
  text-decoration: none;
}
a .lnk-primary {
  color: #9A2121;
}
a .lnk-primary:focus, a .lnk-primary:hover {
  color: #0F1214;
}

p:last-child {
  margin-bottom: 0;
}

p:last-of-type {
  margin-bottom: 0;
}

/*
b, strong {
// 	font-weight: bold;
// 	font-weight: 500;
}
*/
.text-left hr {
  margin-left: 0;
}

.text-right hr {
  margin-right: 0;
}

ul {
  list-style-type: square;
}

/*
ol, ul {
	padding-left: 25px
}
ol ol, ul ul, ol ul, ul ol {
	padding-left: 30px;
}
*/
iframe {
  border: none;
}

img {
  max-width: 100%;
  height: auto;
  -webkit-backface-visibility: hidden;
}

audio::-internal-media-controls-download-button {
  display: none;
}

.color-global {
  color: #4D4D4D !important;
}

.custom-ul {
  padding-left: 25px;
  line-height: 2;
  font-weight: 300;
}

.custom-ul a,
p a {
  font-weight: 400;
}

.custom-title {
  padding-left: 40px;
  position: relative;
  margin-bottom: 2.2rem;
  text-transform: uppercase;
  font-style: normal;
}

.custom-title:after {
  content: "";
  position: absolute;
  top: 8px;
  left: 0;
  width: 30px;
  height: 1px;
  background-color: #4D4D4D;
}

/* ---------------------------------------------------------------------------- */
/* --- HEADER
/* ----------------------------------------------------------------------------- */
#header {
  color: #0F1214;
}
#header .row > div,
#header .row > nav {
  padding-top: 10px;
  padding-bottom: 10px;
}
#header .header-logo a {
  position: relative;
  z-index: 1032;
  display: inline-block;
  color: inherit;
  /*
          &:hover {
  			color: $color-primary;
  		}
  */
}
@media (max-width: 991.98px) {
  #header .header-logo a {
    margin-right: auto;
  }
}
#header .header-logo a img, #header .header-logo a svg {
  width: auto;
  height: 100%;
  max-width: inherit;
  max-height: inherit;
}
#header .header-widgets {
  display: flex;
  align-items: center;
  /*
  		.widget {
  		    p {
  			    margin-bottom: 0;
  		    }
  		}
  */
}
#header #header-search-btn {
  width: 44px;
  height: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
}
#header #header-search-btn svg {
  width: 34px;
  height: 34px;
}
#header .header-navigation-mobile {
  display: flex;
  justify-content: center;
  background-color: #9A2121;
  width: 44px;
  height: 44px;
  border-radius: 100%;
  margin-left: 20px;
}
#header .header-navigation {
  position: static;
  display: flex;
  align-items: center;
  padding-left: 0;
  padding-right: 0;
}
@media (max-width: 991.98px) {
  #header .header-navigation {
    position: fixed;
    top: 0;
    left: 0;
    overflow: auto;
    background-color: #fff;
    display: none;
    padding: 0;
    width: 100vw;
    height: 100vh;
    z-index: 1031;
    margin-top: calc(var(--header-navigation-height) - 1px);
    height: calc(100vh - (var(--header-navigation-height) - 1px));
  }
  #header .header-navigation > ul:first-child {
    padding-bottom: 25px;
  }
  #header .header-navigation > ul:last-child {
    padding-top: 25px;
  }
}
#header #nav-primary {
  flex-basis: 0;
  flex-grow: 1;
  max-width: 100%;
  align-items: stretch;
  justify-content: flex-end;
}
@media (max-width: 991.98px) {
  #header #nav-primary {
    flex-direction: column;
    margin: 0 auto;
    max-width: 720px;
  }
  #header #nav-primary img {
    display: none;
  }
}
@media (max-width: 767.98px) {
  #header #nav-primary {
    max-width: 540px;
  }
}
#header #nav-primary ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
#header #nav-primary .sub-menu a:before {
  content: "";
  position: absolute;
  top: 9px;
  left: 0;
  width: 10px;
  height: 1px;
  background-color: currentcolor;
  /*
  					content: '';
  					background-color: $color-primary;
  					width: 4px;
  					height: 4px;
  					display: inline-block;
  					vertical-align: middle;
  					margin-right: 10px;
  					margin-top: -1px;
  					@include media-breakpoint-up(lg) {
  					position: absolute;
  					top: 6px;
  					left: 0;
  					margin-top: 0;
  					}
  */
}
#header #nav-primary > li.menu-item-has-children > .sub-menu-wrap > .sub-menu {
  /*
  					@include media-breakpoint-up(lg) {
  						display: flex;
  						flex-wrap: wrap;
  						margin: 0 auto;
  						max-width: get-container-max-width(lg);
  					}
  					@include media-breakpoint-up(xl) {
  						max-width: get-container-max-width(xl);
  					}
  */
}
@media (min-width: 992px) {
  #header #nav-primary > li.menu-item-has-children > .sub-menu-wrap > .sub-menu > li {
    /*
    							flex-basis: 0;
    							flex-grow: 1;
    							width: 100%;
    							flex: 0 0 16.6666666667%;
    							max-width: 16.6666666667%;
    */
    padding: 10px 24px;
    white-space: nowrap;
  }
  #header #nav-primary > li.menu-item-has-children > .sub-menu-wrap > .sub-menu > li a {
    font-size: 1.0714285714rem;
    letter-spacing: 0;
    text-transform: none;
    font-weight: 500;
    padding: 0;
    padding-left: 20px !important;
    margin-top: 20px;
  }
  #header #nav-primary > li.menu-item-has-children > .sub-menu-wrap > .sub-menu > li a img {
    display: block;
    width: 100%;
    margin-bottom: 0.5rem;
    filter: grayscale(1);
    transition: all 0.3s ease-out;
  }
  #header #nav-primary > li.menu-item-has-children > .sub-menu-wrap > .sub-menu > li a:hover img {
    filter: grayscale(0);
  }
}
@media (min-width: 992px) {
  #header #nav-primary > li.menu-item-has-children > .sub-menu-wrap > .sub-menu > li > a {
    padding-left: 0 !important;
    margin-top: 0;
  }
}
#header #nav-primary > li.menu-item-has-children > .sub-menu-wrap > .sub-menu > li > a:before {
  display: none;
}
#header #nav-primary li {
  position: relative;
}
#header #nav-primary li a {
  padding: 0.8571428571rem 1.0714285714rem;
  color: inherit;
  position: relative;
  font-size: 1.0714285714rem;
  font-weight: 500;
  letter-spacing: 0;
}
#header #nav-primary li a:focus {
  color: inherit;
}
#header #nav-primary li a:hover, #header #nav-primary li a.active {
  color: #9A2121;
}
#header #nav-primary > li > a {
  letter-spacing: 0.1px;
  font-size: 1.0714285714rem;
  white-space: nowrap;
}
#header #nav-primary > li > a img {
  display: none;
}
@media (min-width: 992px) {
  #header #nav-primary li a {
    display: inline-block;
  }
  #header #nav-primary > li:not(.more-menu).menu-item-has-children {
    /*
    						> a {
    							svg {
    								margin-top: -2px;
    								margin-left: 2px;
    								fill: $color-secondary;
    								@include transition-svg-theme(fill);
    							}
    							&:hover {
    								svg {
    									fill: $color-primary;
    								}
    							}
    						}
    */
  }
  #header #nav-primary > li:not(.more-menu).menu-item-has-children > .sub-menu-wrap {
    z-index: 1033;
    position: absolute;
    right: 0;
    display: none;
    background-color: #f4f0ea;
    color: #4D4D4D;
    padding: 1rem 0;
  }
  #header #nav-primary > li:not(.more-menu).menu-item-has-children > .sub-menu-wrap .sub-menu-wrap:not([data-depth="1"]) {
    padding-left: 15px;
  }
  #header #nav-primary > li:not(.more-menu).menu-item-has-children:hover > a:before {
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
    margin-left: auto;
    margin-right: auto;
    content: "";
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-bottom: 6px solid #f4f0ea;
  }
  #header #nav-primary > li:not(.more-menu).menu-item-has-children:hover > .sub-menu-wrap {
    display: block;
  }
}
@media (max-width: 991.98px) {
  #header #nav-primary li {
    border-top: 1px solid #fff;
  }
  #header #nav-primary li a {
    display: block;
  }
  #header #nav-primary li li a {
    padding-left: 2rem;
  }
  #header #nav-primary li li li a {
    padding-left: 3rem;
  }
  #header #nav-primary li li li li a {
    padding-left: 4rem;
  }
  #header #nav-primary li li li li li a {
    padding-left: 5rem;
  }
  #header #nav-primary li li li li li li a {
    padding-left: 6rem;
  }
  #header #nav-primary > li {
    border-top: 1px solid #F9F8F5;
  }
  #header #nav-primary > li:first-child {
    border-top: 0;
  }
  #header #nav-primary li.menu-item-has-children > a {
    margin-right: 3.9285714286rem;
  }
  #header #nav-primary li.menu-item-has-children > span {
    position: absolute;
    top: 0;
    right: 0;
    width: 3.9285714286rem;
    height: 2.7414285714rem;
    cursor: pointer;
  }
  #header #nav-primary li.menu-item-has-children > span:after {
    content: "";
    position: absolute;
    right: 1.7857142857rem;
    top: 0.8571428571rem;
    border: solid #0F1214;
    border-width: 0 1px 1px 0;
    display: inline-block;
    padding: 4px;
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
  }
  #header #nav-primary li.menu-item-has-children.selected > span:after {
    transform: rotate(-135deg);
    -webkit-transform: rotate(-135deg);
    top: 1.2142857143rem;
  }
  #header #nav-primary li.menu-item-has-children > a[href="#"] + span {
    width: 100%;
  }
  #header #nav-primary .sub-menu-wrap {
    display: none;
    background-color: #F9F8F5;
  }
  #header #nav-primary .sub-menu-wrap[data-depth="4"] a {
    margin-right: 0;
  }
  #header #nav-primary .sub-menu-wrap[data-depth="4"] span {
    display: none;
  }
}
#header #nav-primary li.more-menu {
  display: none;
}
@media (min-width: 992px) {
  #header #nav-primary li.more-menu img {
    display: none;
  }
  #header #nav-primary li.more-menu ul, #header #nav-primary li.more-menu .sub-menu {
    list-style-type: none;
    padding-left: 0;
    background-color: #f4f0ea;
    padding: 0.3571428571rem 0;
    min-width: 200px;
  }
  #header #nav-primary li.more-menu li a {
    padding-left: 2rem;
    padding-right: 2rem;
    width: 100%;
    letter-spacing: 0;
    font-size: 1.0714285714rem;
    font-weight: 500;
    white-space: nowrap;
  }
  #header #nav-primary li.more-menu > a {
    padding: 0;
    padding-left: 15px;
    padding-right: 15px;
    display: flex !important;
    align-items: center;
    height: 100%;
  }
  #header #nav-primary li.more-menu > a svg {
    height: 20px;
    transition: fill 0.3s ease-out;
  }
  #header #nav-primary li.more-menu > a:hover svg {
    fill: #9A2121;
  }
  #header #nav-primary li.more-menu > ul {
    position: absolute;
    top: 100%;
    right: 0;
    z-index: 1035;
    display: none;
    box-shadow: 0 5px 20px 0 rgba(0, 0, 0, 0.15);
  }
  #header #nav-primary li.more-menu:hover > ul {
    display: block;
  }
  #header #nav-primary li.more-menu li.menu-item-has-children a:before {
    background: none;
    margin: 0;
  }
  #header #nav-primary li.more-menu li.menu-item-has-children > a:before {
    content: "";
    width: 0;
    height: 0;
    border-top: 4px solid transparent;
    border-right: 5px solid #0F1214;
    border-bottom: 4px solid transparent;
    display: inline-block;
    position: absolute;
    left: 0.9285714286rem;
    top: 50%;
    transform: translateY(-50%);
  }
  #header #nav-primary li.more-menu li.menu-item-has-children > a:hover:before {
    border-right-color: #9A2121;
  }
  #header #nav-primary li.more-menu li.menu-item-has-children > .sub-menu-wrap {
    display: none;
    position: absolute;
    right: 100%;
    top: -0.3571428571rem;
    margin-right: 1px;
  }
  #header #nav-primary li.more-menu li.menu-item-has-children:hover > .sub-menu-wrap {
    display: block;
  }
}

/********************
sticky menu
********************/
/*
@keyframes slideDown{
	from {
		transform: translateY(-100%);
	}
	to {
		transform: translateY(0);
	}
}
*/
.header-menu {
  transition: top 0.5s;
  -webkit-transition: top 0.5s;
  -moz-transition: top 0.5s;
  -ms-transition: top 0.5s;
  -o-transition: top 0.5s;
}

body.sticky-menu #content {
  padding-top: var(--header-menu);
}

/********************
sticky menu admin bar
********************/
body.admin-bar .header-menu.sticky-top,
body.admin-bar .header-menu.fixed-top {
  top: 46px;
}

@media screen and (min-width: 783px) {
  body.admin-bar .header-menu.sticky-top,
body.admin-bar .header-menu.fixed-top {
    top: 32px;
  }
}
#wpadminbar {
  position: fixed !important;
}

/********************
menu toggle
********************/
/*
.header-navigation-mobile {
	@include media-breakpoint-up(lg) {
	display: none;
}
}
*/
body .menu-toggle {
  display: flex;
  align-items: center;
  cursor: pointer;
  padding: 8px 10px;
}
body .menu-toggle span {
  color: inherit;
  padding-left: 12px;
  text-transform: uppercase;
}
body .menu-toggle .bar-icon {
  width: 24px;
  height: 25px;
  padding: 0 !important;
  position: relative;
}
body .menu-toggle .bar-icon .bar,
body .menu-toggle .bar-icon .bar:before,
body .menu-toggle .bar-icon .bar:after {
  transition: transform 0.25s, width 0.25s;
  content: "";
  height: 2px;
  width: 24px;
  background-color: #fff;
  position: absolute;
  right: 0;
}
body .menu-toggle .bar-icon .bar {
  width: 24px;
  top: 6px;
}
body .menu-toggle .bar-icon .bar:before {
  width: 24px;
  top: 6px;
  transition: transform 0.25s, opacity 0.15s;
}
body .menu-toggle .bar-icon .bar:after {
  width: 24px;
  top: 12px;
}
body.open-sidenav, body.navigation-open {
  height: 100vh;
  overflow: hidden;
}
body.open-sidenav .menu-toggle .bar-icon, body.navigation-open .menu-toggle .bar-icon {
  transform: scale(0.85);
  transition: transform 0.25s;
}
body.open-sidenav .menu-toggle .bar-icon .bar, body.navigation-open .menu-toggle .bar-icon .bar {
  transform: translate3d(0, 6px, 0) rotate(45deg);
  width: 23px;
}
body.open-sidenav .menu-toggle .bar-icon .bar:before, body.navigation-open .menu-toggle .bar-icon .bar:before {
  transform: rotate(-45deg) translate3d(-6px, -5.7px, 0);
  opacity: 0;
}
body.open-sidenav .menu-toggle .bar-icon .bar:after, body.navigation-open .menu-toggle .bar-icon .bar:after {
  transform: translate3d(0, -12px, 0) rotate(-90deg);
  width: 23px;
}

/********************
menu toggle open
********************/
@media (max-width: 991.98px) {
  .navigation-open {
    overflow: hidden;
  }
  .navigation-open #header {
    background-color: #fff;
    color: #0F1214 !important;
  }
  .navigation-open #header .header-navigation {
    display: block;
    visibility: visible;
  }
  .navigation-open #header #nav-primary .sub-menu a:before {
    top: -4px;
    left: -12px;
    display: inline-block;
    position: relative;
  }
  .navigation-open.admin-bar #header .header-navigation {
    margin-top: calc(var(--header-navigation-height) + 32px);
    height: calc(100vh - (var(--header-navigation-height) + 32px));
  }
}
@media screen and (max-width: 782px) {
  .navigation-open.admin-bar #header .header-navigation {
    margin-top: calc(var(--header-navigation-height) + 46px);
    height: calc(100vh - (var(--header-navigation-height) + 46px));
  }
}
/*
#nav-sidenav {
	padding: 0;
	margin: 0;
}
*/
/*
#sidenav.open {
	width: 100% !important;
    right: 0px;
}
*/
/*
.noscroll { 
	overflow: hidden;
}
*/
/*
    position: absolute;
    left: -100px;
    width: 100px;
    height: 100px;
*/
/*
opacity: 0;
transform: translateX(100%);
*/
/*
-webkit-animation: slide 0.5s forwards;
	animation: slide 0.5s forwards;
*/
/*
	&.active {
	    opacity: 1;
	    transform: translateX(0);
    }
*/
/*
@-webkit-keyframes slide {
    100% { opacity: 1; transform: translateX(0); }
}

@keyframes slide {
    100% { opacity: 1; transform: translateX(0); }
}
*/
#sidenav-sub .sub-menu-wrap:not([data-depth="1"]) {
  margin-left: 16px;
}

/*
.slide-to-left {
    animation: example 5s ease-in-out forwards;
}

@keyframes example {
    from {transform: transition(100%,0)}
    to {transform: transition(0,0)}
}
*/
.nav-widgets {
  margin: 0 auto;
  max-width: 720px;
}

.header-search {
  background-color: #9A2121;
  padding: 40px 0;
  box-shadow: 0 15px 15px 0 rgba(0, 0, 0, 0.16);
  box-shadow: 0 20px 20px 0 rgba(0, 0, 0, 0.2);
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  max-width: 100vw;
  width: 100vw;
  z-index: 1033;
  display: none;
}
.header-search form {
  display: flex;
  align-items: center;
}
.header-search form button[type=submit] {
  position: relative !important;
  width: auto !important;
  height: auto !important;
  padding: 8px !important;
}
.header-search form button[type=submit] svg {
  fill: #fff !important;
  width: 28px;
  height: 28px;
}
.header-search form input {
  border: 0;
  color: #fff;
  padding: 0 20px 0 10px;
  font-size: 30px;
}
.header-search form input::-moz-placeholder {
  /* Mozilla Firefox 19+ */
  color: #fff;
  opacity: 1;
}
.header-search form input:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: #fff;
}
.header-search form input::placeholder {
  /* Most modern browsers support this now. */
  color: #fff;
}
.header-search #search-close-btn {
  display: block;
  padding: 4px;
}
.header-search #search-close-btn svg {
  fill: #fff;
  width: 36px;
  height: 36px;
}

/* ---------------------------------------------------------------------------- */
/* --- 4. CONTENT
/* ----------------------------------------------------------------------------- */
/*
#content {
	position: relative;
    overflow: hidden;
}
*/
/* ------------------------
	block map
------------------------ */
/*
.map {
	height: 400px;
}
*/
/* ------------------------
	strona 404
------------------------ */
.site-404 {
  text-align: center;
  padding-top: 5rem;
  padding-bottom: 7rem;
  /*
      @include media-breakpoint-up(md) {
  	    height: 100vh;
  	    display: flex;
  	    align-items: center;
  	    margin: 0;
      }
  */
}
.site-404 h1 {
  font-size: 6rem;
}

/*
.row.gutters-lg { 
    margin-left: -25px; 
    margin-right: -25px;
}
.row.gutters-lg > *[class^='col'], .row.gutters-lg > *[class*=' col'] { 
    padding-left: 25px; 
    padding-right: 25px; 
}
*/
/* Text meant only for screen readers. */
.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  -webkit-clip-path: inset(50%);
          clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute !important;
  width: 1px;
  word-wrap: normal !important;
  /* Many screen reader and browser combinations announce broken words as they would appear visually. */
}

.screen-reader-text:focus {
  background-color: #eee;
  clip: auto !important;
  -webkit-clip-path: none;
          clip-path: none;
  color: #444;
  display: block;
  font-size: 1em;
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000;
  /* Above WP toolbar. */
}

/*
.fadeInUpHome {
    @include animation(1.5s fadeInUpHome both);
    @include keyframes(fadeInUpHome) {
        0% { @include translateY(100%); @include opacity(0); }
        100% { @include translateY(0); @include opacity(1); }
    }
}

.fadeInLeftHome {
    @include animation(1.5s fadeInLeftHome both);
    @include keyframes(fadeInLeftHome) {
        0% { @include translateX(-50px); @include opacity(0); }
        100% { @include translateX(0); @include opacity(1); }
    }
}
*/
.no-results form[role=search] {
  max-width: 400px;
}

#content .col-12 .no-results {
  text-align: center;
}
#content .col-12 .no-results form[role=search] {
  margin: 3rem auto;
}

#content .col-lg-8 .no-results {
  text-align: left;
}
#content .col-lg-8 .no-results form[role=search] {
  margin: 3rem 0;
}

/*
.wp-block-embed.wp-embed-aspect-16-9 .wp-block-embed__wrapper {
  overflow: hidden;
  padding-top: 56.25%;
  position: relative;
}

.wp-block-embed.wp-embed-aspect-16-9 .wp-block-embed__wrapper iframe {
   border: 0;
   height: 100%;
   left: 0;
   position: absolute;
   top: 0;
   width: 100%;
}
*/
/* ------------------------
	section fast contact 
------------------------ */
/*
@font-face {
  font-family: 'icon_fast_contact';
  src:  url('../fonts/icon_fast_contact.eot?7twse6');
  src:  url('../fonts/icon_fast_contact.eot?7twse6#iefix') format('embedded-opentype'),
    	url('../fonts/icon_fast_contact.ttf?7twse6') format('truetype'),
		url('../fonts/icon_fast_contact.woff?7twse6') format('woff'),
		url('../fonts/icon_fast_contact.svg?7twse6icon_fast_contact') format('svg');
  font-weight: normal;
  font-style: normal;
  font-display: block;
}

[class^="icon_fast_contact-"], [class*=" icon_fast_contact-"] {
*/
/* .icon_fast_contact-email:before, .icon_fast_contact-phone:before { */
/* use !important to prevent issues with browser extensions that change fonts */
/*
  font-family: 'icon_fast_contact' !important;
  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;
*/
/*
display: inline-block;
text-decoration: inherit;
text-rendering: optimizeLegibility;
font-smoothing: antialiased;
*/
/*
.icon_fast_contact-email:before { content: "\f100"; }
.icon_fast_contact-phone:before { content: "\f101"; }

.section-contact {
	a {
		font-family: "Brandon", sans-serif;
	    font-style: normal;
	    margin-top: 0.5rem;
	}
	p.section-contact-content {
		margin-bottom: 0;
	}
	.section-contact-content {
		margin-bottom: 3rem !important;
		&:last-child {
			margin-bottom: 0 !important;
		}
	}
}
*/
/* ------------------------ 
	section social media 
------------------------ */
/*
.section-social-media {
	background-color: #f7f7f7;
	padding-top: 3rem;
	padding-bottom: 3rem;
	&:after {
		content: 'Śledź nas';
	    position: absolute;
	    color: #fff;
	    font-family: "Playfair Display", serif;
	    font-weight: 400;
	    font-style: italic;
	    font-size: 80px;
	    bottom: -7px;
	    right: 40px;
	    @include media-breakpoint-up(md) {
	    font-size: 120px;
	    bottom: -12px;
	    right: 40px;
	    }
	    line-height: 1;
	    text-align: right;
		white-space: nowrap;
	}
	a {
		color: #979797;
		&:hover {
			color: #000;
		}
	}
}
*/
/*
    &:before {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 20%;
        background-image: linear-gradient(to bottom, rgba(#000,0.7), rgba(#000,0));
        z-index: 2;
        content: ' ';
    }
*/
/*
    .section-content {
	    padding: 30px;
	    &.text-center {
		    img {
			    margin-left: auto;
			    margin-right: auto;
		    }
	    }
	    &.text-right {
		    img {
			    margin-left: auto;
		    }
	    }
*/
/*
        @include media("height<=screen-height-sm") {
            top: 0;
            @include translate3d(0,0,0);
        }
*/
/*
    }
}
*/
/* ---------------------------------------------------------------------------- */
/* --- FOOTER
/* ----------------------------------------------------------------------------- */
#footer {
  background: rgb(244, 240, 234);
  background: linear-gradient(180deg, rgb(244, 240, 234) 0%, rgb(232, 226, 217) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#f4f0ea",endColorstr="#e8e2d9",GradientType=1);
}
#footer a {
  color: #4D4D4D;
}
#footer a:hover {
  color: #9A2121;
}
#footer hr {
  margin-bottom: 0.8571428571rem;
  margin-top: 0.8571428571rem;
  border-color: rgba(77, 77, 77, 0.1);
}
#footer ul {
  list-style-type: none;
  padding: 0;
  margin-bottom: 0;
}
#footer ul li {
  display: block;
}
@media (min-width: 768px) {
  #footer ul li {
    display: inline-block;
  }
}
#footer .widgets .widget {
  font-size: 0.9285714286rem;
}
#footer .widgets .widget .widget-title {
  font-size: 1.2142857143rem;
  margin-bottom: 1rem;
}
#footer .footer-top .footer-logo a {
  font-family: "Playfair Display", serif;
  font-size: 30px;
  letter-spacing: 0;
  color: #0f1214;
}
#footer .footer-top ul.nav-footer-top li {
  margin-bottom: 1rem;
  padding-left: 1rem;
  padding-right: 1rem;
}
#footer .footer-top ul.nav-footer-top li:last-child {
  margin-bottom: 0;
}
#footer .footer-top ul.nav-footer-top li a {
  font-size: 1.0714285714rem;
  font-weight: 500;
}
#footer .footer-top ul.nav-footer-top li.current-menu-item a {
  color: #9A2121;
}
#footer .footer-bottom {
  font-size: 0.9285714286rem;
  color: rgba(77, 77, 77, 0.4);
  font-weight: 500;
  letter-spacing: 0.4px;
}
#footer .footer-bottom a {
  color: rgba(77, 77, 77, 0.4);
}
#footer .footer-bottom a:hover {
  color: #4D4D4D;
}
#footer .footer-bottom ul {
  font-size: 0;
}
#footer .footer-bottom ul li {
  margin-bottom: 1rem;
}
@media (min-width: 768px) {
  #footer .footer-bottom ul li::after {
    content: "|";
    font-size: 0.7857142857rem;
    padding-left: 1rem;
    padding-right: 1rem;
  }
  #footer .footer-bottom ul li:last-child::after {
    display: none;
  }
}
#footer .footer-bottom ul li a {
  display: inline-block;
  font-weight: 500;
  text-transform: uppercase;
  font-size: 0.7857142857rem;
  position: relative;
}

/* ---------------------------------------------------------------------------- */
/* --- 6. ELEMENTS
/* ----------------------------------------------------------------------------- */
/* Backgrounds
----------------------------------------------------------*/
/* Image */
/*
.bg-image-container {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-position: center center;
	background-size:  cover;
	background-repeat: no-repeat; 
	z-index: 0;
	@include opacity(0);
// 	@include transition-secondary;
	transition: all 0.6s ease-out;

	&.loaded {
		@include opacity(1);
	}

	&.bg-image-fixed {
		background-attachment: fixed;

// 		@include media("<=screen-lg") {
		@include media-breakpoint-down(lg) {
			background-attachment: scroll;
		}
	}
	&:before {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 20%;
        background-image: linear-gradient(to bottom, rgba(#000,0.7), rgba(#000,0));
        z-index: 2;
        content: ' ';
    }
}
*/
/* Colors */
/*
.bg-white { background-color: #fff; }
.bg-light { background-color: #f7f7f7 !important; } // $color-light; }
.bg-grey { background-color: $color-medium; }
.bg-black { background-color: #000; }
.bg-dark-light { background-color: $color-dark-light; }
*/
.bg-header {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  min-height: 350px;
  position: relative;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  opacity: 0;
  /*
  	&.bg-header-blog {
  		min-height: 600px;
  		color: #fff;
  		&:before {
  			background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.4));
  		}
  		> div {
  			z-index: 3;
  		}
  		h2 {
  			text-shadow: 2px 2px rgba(0, 0, 0, 0.1); // 1px 1px #5c5c5c;
  		}
  		.section-title {
  			text-align: inherit;
  		}
  		.text-left hr {
  			margin-left: 0;
  		}
  		.text-right hr {
  			margin-right: 0;
  		}
  	}
  */
  /*
  	&.bg-member {
  // 		height: 100vh;
  		&:before {
  			display: none;
  		}
  	}
  */
}
.bg-header.loaded {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
  opacity: 1;
}
.bg-header:before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.7));
  z-index: 2;
  content: "";
}
.bg-header > div {
  z-index: 3;
}
.bg-header .section-title {
  text-align: inherit;
}
.bg-header .section-title .maintitle {
  color: #fff;
  font-weight: 700;
  font-size: 3.5rem;
}
.bg-header .section-title .maintitle:after {
  content: "";
  position: absolute;
  left: 0;
  top: -10px;
  width: 30px;
  height: 4px;
  background-color: #9A2121;
}
.bg-header.bg-header-no-image {
  min-height: 400px;
}
.bg-header.bg-header-no-image:before {
  content: none;
}
.bg-header.bg-header-no-image > div {
  z-index: 3;
}
.bg-header.bg-header-no-image h2 {
  text-shadow: none;
}
.bg-header.bg-header-no-image .section-title {
  text-align: inherit;
}
.bg-header.bg-header-no-image .text-left hr {
  margin-left: 0;
}
.bg-header.bg-header-no-image .text-right hr {
  margin-right: 0;
}
.bg-header.bg-header-no-image .wordpress-breadcrumb a, .bg-header.bg-header-no-image .article-meta a {
  color: #979797 !important;
}

.header-page {
  overflow: hidden;
  position: relative;
  color: #0F1214;
  padding-top: 80px;
  padding-bottom: 20px;
}
.header-page .overlay-image {
  position: absolute;
  z-index: 1;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.7;
  background-color: #000;
}
.header-page .container {
  z-index: 2;
}
.header-page .header-page-content {
  /*
  		hr {
  			width: 40px;
  			height: 2px;
  			background-color: $color-primary;
  		}
  		.description {
  			font-size: rem(13px);
  		}
  */
}
.header-page .header-page-content .maintitle {
  font-weight: 400;
  font-size: 2.8571428571rem;
  letter-spacing: 1px;
  color: inherit;
  /*
  			&:before {
  				content: '';
  			    position: absolute;
  			    top: 3px;
  			    left: 0;
  			    width: 2px;
  			    height: calc(100% - 11px);
  			    background-color: #BD0003;
  			}
  */
}
.header-page .header-page-content .subtitle {
  font-family: "Raleway", sans-serif;
  font-weight: 400;
  letter-spacing: 1px;
  color: inherit;
}
.header-page.header-page-bg {
  color: #fff;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  /*
  		&.loaded {
  			@include opacity(1);
  		}
  */
  /*
  		.container {
  			padding-top: 0;
  		}
  */
  /*
  		&:before {
  			content: '';
  		    position: absolute;
  		    top: 0;
  		    left: 0;
  		    right: 0;
  		    bottom: 0;
  		    background-image: linear-gradient( to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.7) );
  		}
  */
  /*
  		.header-page-content {
  			.maintitle {
  				color: $color-white;
  // 				text-shadow: 2px 2px rgba(0, 0, 0, 0.1);
  			}
  		}
  */
  min-height: 0;
  padding-top: 40px;
  padding-bottom: 40px;
}
@media (min-width: 768px) {
  .header-page.header-page-bg {
    min-height: 350px;
  }
}
.header-page.header-page-bg::after {
  content: "";
  position: absolute;
  z-index: 1;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.65) 50%, rgba(255, 255, 255, 0) 100%);
}

#header.sticky + #content .header-page {
  min-height: 330px;
}
#header.sticky + #content .header-page .container {
  margin-top: 12rem;
}

body.single-post .header-page {
  min-height: 302px !important;
}
body.single-post .header-page .header-page-content .maintitle {
  font-family: "Playfair Display", serif;
  font-size: 2.5rem;
  border-left: 0;
  padding-left: 0;
}
body.single-post .header-page .header-page-content .maintitle:before {
  display: none;
}
body.single-post .header-page.header-page-bg {
  min-height: 402px !important;
}

body.single-post #header.sticky + #content .header-page {
  min-height: 400px !important;
}
body.single-post #header.sticky + #content .header-page.header-page-bg {
  min-height: 500px !important;
}

body.color-light .header-page {
  color: #fff;
}
body.color-dark .header-page {
  color: #0F1214;
}

/*
.has-bg-header #header {
	+ #content .header-page {
		.container {
			margin-top: 5rem;
		}
	}
}
*/
/*
.cat-parent {
	position: relative;
	overflow: hidden;
	min-height: 300px;
}
*/
/*

a.bg-cat {
	background-size:cover;
	background-position:center center;
	background-repeat:no-repeat;
// 	min-height: 350px;
	position: relative;
// 	overflow: hidden;
	height: 100%;

*/
/*
	img {
		transition: transform 1s;
		z-index: 1;
	}

	&:hover img {
	    transform: scale(1.1);
	}
*/
/*
// 	transition: background 1s;
	transition: all .5s;

	&:hover {
// 	    background-size: 110%;
	    transform: scale(1.1);
*/
/*
	    h2 {
		    transform: scale(1);
	    }
*/
/*
	}

	&:before {
	    position: absolute;
	    top: 0;
	    left: 0;
	    right: 0;
	    bottom: 0;
	    background: rgba(0, 0, 0, 0.4);
	    z-index: 2;
	    content: '';
	}
	h2 {
	    color: #fff;
	    z-index: 3;
	    margin-bottom: 0;
    }
    h2 {
	    color: #fff;
	    text-align: center;
	    margin-bottom: 0;
	    position: absolute;
	    top: 50%;
	    left: 50%;
	    z-index: 3;
	    transform: translate(-50%, -50%);
	    line-height: 0;
	}
}
*/
/*
.bg-light {
	background-color: $color-light !important;
	-webkit-animation-name: bglightcolorchange;
	-webkit-animation-duration: 4s;
	animation-name: bglightcolorchange;
	animation-duration: 4s;
}

@-webkit-keyframes bglightcolorchange {
	from {background-color: transparent;}
	to {background-color: $color-light;}
}

@keyframes bglightcolorchange {
	from {background-color: transparent;}
	to {background-color: $color-light;}
}
*/
/* Navs
----------------------------------------------------------*/
.nav-links li {
  padding: 0.5rem 1rem;
  text-transform: uppercase;
  font-size: 0.85rem;
}
.nav-links li a {
  color: #979797;
  display: block;
}
.nav-links li a:hover, .nav-links li a:focus {
  color: #4D4D4D;
}
.nav-links li.category-title {
  display: block;
  width: 100%;
  text-align: center;
  font-weight: bold;
}

/* Input
----------------------------------------------------------*/
/*
button, input {
    font-family: inherit;
}
*/
input,
textarea,
select {
  width: 100%;
  border: 1px solid #979797;
  padding: 10px;
  transition: all 0.3s ease-out;
  background-color: transparent;
}
input:focus,
textarea:focus,
select:focus {
  border-color: #979797;
}

input[type=radio], input[type=checkbox], input[type=submit], #submit {
  width: auto;
}

input[type=checkbox] {
  margin-right: 5px;
  margin-top: 5px;
}

textarea {
  resize: none;
  max-height: 133px;
  display: block;
  /*
  	&:focus {
  		border-color: $color-input-focus;
  	}
  */
}

textarea:focus, input:focus, a:focus, a:visited, *:focus, #submit:focus, button:focus {
  outline: none;
  box-shadow: none;
}

.comment-form-cookies-consent {
  margin-top: 1rem;
}

.form-submit {
  text-align: center;
  margin-top: 1.5rem;
  /*
  	#submit {
  		display: inline-block;
  		color: $color-primary;
  	    font-weight: 400;
  	    border: 1px solid $color-primary;
  	    padding: 0.6rem 1.2rem;
  	    text-transform: uppercase;
  	    outline: 0;
  	    &:hover {
  		    color: $color-white !important;
  			background-color: $color-primary;
  	    }
  	    &:focus, &.focus {
  		    box-shadow: none;
  	    }
  	}
  */
}

label {
  width: 100%;
  color: #4D4D4D;
  margin-bottom: 0;
}

/*
form[role='search'] {
    position: relative;
}
*/
/*
	width: 100%;
// 	border: 1px solid transparent;
// 	border-bottom: 1px solid #979797;
	padding: 10px;
	transition: all 0.3s ease-in-out;
	background-color: transparent;
*/
/*
	&:focus {
		border-color: #000;
	}
*/
input[type=date] {
  display: inline-block;
  cursor: text;
  height: 44px;
}

input[type=submit], button[type=submit], #submit {
  background-color: transparent;
  display: inline-block;
  color: #9A2121;
  font-weight: 400;
  border: 1px solid #9A2121;
  padding: 0.6rem 1.2rem;
  text-transform: uppercase;
  outline: 0;
  border-radius: 0;
  font-size: 0.9285714286rem;
  transition: all 0.3s ease-out;
}
input[type=submit]:hover, button[type=submit]:hover, #submit:hover {
  background-color: #9A2121;
  color: #fff;
  text-decoration: none;
}

form[role=search] {
  position: relative;
}
form[role=search] input[type=submit], form[role=search] button[type=submit] {
  position: absolute;
  top: 0;
  right: 0;
  font-size: 0;
  height: 100%;
  width: 38px;
  border: none;
  min-width: auto;
  cursor: pointer;
  padding: 0;
  line-height: unset;
  /*
  	    &:focus {
  		    outline: 0;
  	    }
  */
}
form[role=search] input[type=submit] svg, form[role=search] button[type=submit] svg {
  transition: fill 0.3s ease-out;
  fill: #979797;
}
form[role=search] input[type=submit]:hover, form[role=search] button[type=submit]:hover {
  background-color: transparent !important;
  color: #9A2121 !important;
}
form[role=search] input[type=submit]:hover svg, form[role=search] button[type=submit]:hover svg {
  fill: #9A2121;
}

select {
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  height: 44px;
  border-radius: 0;
  background-repeat: no-repeat;
  background-image: linear-gradient(45deg, transparent 50%, currentColor 50%), linear-gradient(135deg, currentColor 50%, transparent 50%);
  background-position: right 15px top 1.2em, right 10px top 1.2em;
  background-size: 5px 5px, 5px 5px;
}

select::-ms-expand {
  display: none;
}

div.wpcf7 .screen-reader-response {
  display: none !important;
}

/*
div.wpcf7-mail-sent-ok {
	border: 2px solid #398f14;
}

div.wpcf7-mail-sent-ng,
div.wpcf7-aborted {
	border: 2px solid #ff0000;
}

div.wpcf7-spam-blocked {
	border: 2px solid #ffa500;
}

div.wpcf7-validation-errors,
div.wpcf7-acceptance-missing {
	border: 2px solid #f7e700;
}
*/
.wpcf7-form-control-wrap {
  position: relative;
}

span.wpcf7-not-valid-tip {
  color: #f00;
  font-size: 1em;
  font-weight: normal;
  display: block;
}

/*
.use-floating-validation-tip span.wpcf7-not-valid-tip {
	position: absolute;
	top: 20%;
	left: 20%;
	z-index: 100;
	border: 1px solid #ff0000;
	background: #fff;
	padding: .2em .8em;
}
*/
span.wpcf7-list-item {
  display: inline-block;
  margin: 0 0 0 1em;
}

span.wpcf7-list-item-label::before,
span.wpcf7-list-item-label::after {
  content: " ";
}

.wpcf7-display-none {
  display: none;
}

/*
div.wpcf7 .ajax-loader {
	visibility: hidden;
	display: inline-block;
	background-image: url('../img/ajax-loader.gif');
	width: 16px;
	height: 16px;
	border: none;
	padding: 0;
	margin: 0 0 0 4px;
	vertical-align: middle;
}
*/
div.wpcf7 .ajax-loader {
  display: none !important;
}

div.wpcf7 .ajax-loader.is-active {
  visibility: visible;
}

div.wpcf7 div.ajax-error {
  display: none;
}

div.wpcf7 .placeheld {
  color: #888;
}

div.wpcf7 input[type=file] {
  cursor: pointer;
}

div.wpcf7 input[type=file]:disabled {
  cursor: default;
}

div.wpcf7 .wpcf7-submit:disabled {
  cursor: not-allowed;
}

div.wpcf7 input[type=file] {
  height: 41px;
  opacity: 0;
}

.file-label {
  position: relative;
  margin-top: 3rem;
  margin-bottom: 3.5rem;
  border-bottom: 1px solid #979797;
}

.file-label .file-name {
  position: absolute;
  left: 0;
  bottom: 0;
  height: 41px;
  line-height: 41px;
  padding: 0 14px;
}

.file-label .file-btn {
  position: absolute;
  right: 0;
  bottom: 0;
  height: 41px;
  line-height: 41px;
  padding: 0 14px;
  color: #FFF;
  font-size: 11px;
  font-weight: normal;
  text-transform: uppercase;
  background-color: #000;
}

.file-label .wpcf7-form-control-wrap {
  margin: 0;
}

.wpcf7-acceptance .wpcf7-list-item-label {
  font-size: 13px;
  font-weight: 300;
}

.wpcf7-form-control-wrap.acceptance-896 {
  margin-top: 0.5rem;
}

input::-webkit-calendar-picker-indicator {
  display: none !important;
}

input[type=date]::-webkit-input-placeholder {
  visibility: hidden !important;
}

input[type=date]::-webkit-inner-spin-button, input[type=date]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.ui-widget,
.ui-datepicker {
  border: 1px solid #ECECEC !important;
  border-radius: 0 !important;
}

.ui-datepicker {
  /* 	width: 20em !important; */
  width: 100% !important;
  max-width: 20em !important;
  padding: 0.2em 0.4em 0 !important;
}

.ui-widget-header,
.ui-datepicker .ui-datepicker-header {
  border: 0 !important;
  border-bottom: 1px solid #ECECEC !important;
  background: transparent !important;
  color: #000;
  font-weight: bold;
  border-radius: 0 !important;
}

.ui-widget-content {
  color: #000 !important;
}

.ui-state-default, .ui-widget-content .ui-state-default, .ui-widget-header .ui-state-default, .ui-button, html .ui-button.ui-state-disabled:hover, html .ui-button.ui-state-disabled:active {
  border: 0 !important;
}

.ui-state-active, .ui-widget-content .ui-state-active, .ui-widget-header .ui-state-active, a.ui-button:active, .ui-button:active, .ui-button.ui-state-active:hover {
  border: 0 !important;
  background: #000 !important;
  color: #fff !important;
  /*     background: #D2B859 !important; */
}

.ui-datepicker .ui-datepicker-next,
.ui-datepicker .ui-datepicker-prev {
  top: 2px !important;
  cursor: pointer;
}

.ui-datepicker .ui-datepicker-next {
  right: 2px !important;
}

.ui-datepicker .ui-datepicker-prev {
  left: 2px !important;
}

.ui-datepicker .ui-datepicker-next:hover,
.ui-datepicker .ui-datepicker-prev:hover {
  border: 0 !important;
  background: transparent !important;
}

.ui-datepicker .ui-datepicker-prev span, .ui-datepicker .ui-datepicker-next span {
  display: none !important;
}

/*
.ui-datepicker .ui-datepicker-next:before,
.ui-datepicker .ui-datepicker-prev:before {
	font-family: 'Flaticon';
    font-size: 1rem;
    line-height: 1;
    font-weight: normal;
    color: #000;
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
    opacity: 1;
    transition: all 0.3s ease-out;
    display: inline-block;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;

    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}

.ui-datepicker .ui-datepicker-next:before {
    content: "";
}

.ui-datepicker .ui-datepicker-prev:before {
    content: "";
}

.ui-datepicker .ui-datepicker-next:hover:before,
.ui-datepicker .ui-datepicker-prev:hover:before,
.ui-datepicker .ui-datepicker-next:focus:before,
.ui-datepicker .ui-datepicker-prev:focus:before {
	color: #D2B859;
}
*/
.ui-datepicker .ui-datepicker-next:before,
.ui-datepicker .ui-datepicker-prev:before {
  transition: all 0.3s ease-out;
  display: inline-block;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  border: solid black;
  border-width: 0 1px 1px 0;
  padding: 5.25px;
  /*
      top: 50%;
      left: 50%;
  */
  /*
      top: 30%;
      left: 40%;
  */
  margin-top: 8px;
}

.ui-datepicker .ui-datepicker-prev:before {
  content: "";
  transform: rotate(135deg);
  -webkit-transform: rotate(135deg);
  margin-left: 12px;
}

.ui-datepicker .ui-datepicker-next:before {
  content: "";
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  margin-right: 12px;
}

.ui-datepicker .ui-datepicker-next:hover:before,
.ui-datepicker .ui-datepicker-prev:hover:before,
.ui-datepicker .ui-datepicker-next:focus:before,
.ui-datepicker .ui-datepicker-prev:focus:before {
  border-color: #D2B859;
}

/*
.ui-state-highlight, .ui-widget-content .ui-state-highlight, .ui-widget-header .ui-state-highlight {
    background: rgba(220, 53, 69, 0.5);
    color: #fff;
}
*/
label span.red {
  color: #f00;
  font-size: 12px;
}

span.wpcf7-list-item {
  margin: 0;
}

.ui-datepicker select {
  padding: 0;
  height: auto;
  border: 0;
  background-position: right 15px top 0.7em, right 10px top 0.7em;
  /*
  	text-align: center;
  	text-align-last: center;
  */
}

.ui-datepicker .ui-datepicker-title {
  display: flex;
}

.ui-datepicker .ui-datepicker-title .ui-datepicker-year,
.ui-datepicker .ui-datepicker-title .ui-datepicker-month {
  padding-left: calc(50% - 5em);
}

.ui-datepicker .ui-datepicker-title .ui-datepicker-month {
  order: 2;
}

.link-submit {
  font-weight: 500;
  text-transform: uppercase;
  font-size: 0.7857142857rem;
  padding: 10px 12px;
  background-color: #0F1214;
  color: #fff;
  transition: color 0.3s ease-out, background-color 0.3s ease-out;
}

.link-submit:hover {
  background-color: #9A2121;
  color: #fff;
}

/* widgets
----------------------------------------------------------*/
/*
.widget.acf-fast-contact-widget {
	.media {
		svg {
			fill: $color-primary;
		}
		.media-body {
			margin-left: 15px;
			h6, .h6, strong {
				font-size: 20px;
				font-weight: 500;
				margin-bottom: 0;
			}
			p {
// 				margin-bottom: 0;
				font-size: 11px;
			}
		}
	}
}
*/
.widget .wp-calendar-table {
  width: 100%;
}

/* =WordPress Core
-------------------------------------------------------------- */
/*
.alignnone {
    margin: 5px 20px 20px 0;
}

.aligncenter,
div.aligncenter {
    display: block;
    margin: 5px auto 5px auto;
}

.alignright {
    float:right;
    margin: 5px 0 20px 20px;
}

.alignleft {
    float: left;
    margin: 5px 20px 20px 0;
}
*/
a img.alignright {
  float: right;
  margin: 5px 0 20px 20px;
}

a img.alignnone {
  margin: 5px 20px 20px 0;
}

a img.alignleft {
  float: left;
  margin: 5px 20px 20px 0;
}

a img.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.wp-caption {
  background: #fff;
  border: 1px solid #f0f0f0;
  max-width: 96%;
  /* Image does not overflow the content area */
  padding: 5px 3px 10px;
  text-align: center;
}

.wp-caption.alignnone {
  margin: 5px 20px 20px 0;
}

.wp-caption.alignleft {
  margin: 5px 20px 20px 0;
}

.wp-caption.alignright {
  margin: 5px 0 20px 20px;
}

.wp-caption img {
  border: 0 none;
  height: auto;
  margin: 0;
  max-width: 98.5%;
  padding: 0;
  width: auto;
}

.wp-caption p.wp-caption-text {
  font-size: 11px;
  line-height: 17px;
  margin: 0;
  padding: 0 4px 5px;
}

.alignwide {
  --scrollbarWidthHalf: calc(var(--scrollbarWidth) / 2);
  margin-left: calc(25% - (25vw - var(--scrollbarWidthHalf)));
  margin-right: calc(25% - (25vw - var(--scrollbarWidthHalf)));
  max-width: calc(100vw - var(--scrollbarWidth));
}

.alignfull {
  --scrollbarWidthHalf: calc(var(--scrollbarWidth) / 2);
  margin-left: calc(50% - (50vw - var(--scrollbarWidthHalf)));
  margin-right: calc(50% - (50vw - var(--scrollbarWidthHalf)));
  max-width: calc(100vw - var(--scrollbarWidth));
  width: calc(100vw - var(--scrollbarWidth));
}

/*
@media (max-width: 920px) {
	.alignwide {
		margin: 32px calc( ( 767px - 920px ) / 2 );
		max-width: 920px;
		width: 920px;
	}
}
*/
/* =WordPress Blocks
-------------------------------------------------------------- */
.wp-block-columns {
  margin-bottom: 0;
}

/*
.wp-block-columns.has-background {
	padding: 0;
}
*/
/*
.wp-block-column {
	padding: 0 4%;
}
*/
/*
.wp-block-column:not(:first-child) {
	margin-left: 0 !important;
}
*/
.wp-block-latest-posts {
  margin-bottom: 0;
}

.wp-block-latest-posts.wp-block-latest-posts__list {
  padding-left: 0;
}

.wp-block-latest-posts.is-grid {
  display: flex;
  flex-wrap: wrap;
  padding: 0;
  margin-right: -15px;
  margin-left: -15px;
}

.wp-block-latest-posts.is-grid li {
  margin: 0;
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  display: flex;
  flex-direction: column;
}

@media (min-width: 600px) {
  .wp-block-latest-posts.columns-2 li {
    flex: 0 0 50%;
    max-width: 50%;
    width: auto;
  }

  .wp-block-latest-posts.columns-3 li {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
    width: auto;
  }

  .wp-block-latest-posts.columns-4 li {
    flex: 0 0 25%;
    max-width: 25%;
    width: auto;
  }

  .wp-block-latest-posts.columns-5 li {
    flex: 0 0 20%;
    max-width: 20%;
    width: auto;
  }

  .wp-block-latest-posts.columns-6 li {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
    width: auto;
  }
}
.wp-block-latest-posts.is-grid li .wp-block-latest-posts__featured-image img {
  width: 100%;
}

.wp-block-latest-posts.is-grid li .wp-block-latest-posts__featured-image {
  order: 0;
}

.wp-block-latest-posts.is-grid li .wp-block-latest-posts__post-date {
  order: 1;
}

.wp-block-latest-posts.is-grid li > a {
  order: 2;
}

.wp-block-latest-posts.is-grid li .wp-block-latest-posts__post-excerpt,
.wp-block-latest-posts.is-grid li .wp-block-latest-posts__post-full-content {
  order: 3;
}

.wp-block-social-links {
  padding-left: 0 !important;
  list-style-type: none;
  /*
  	&:not(.is-style-logos-only) {
  		.wp-social-link {
  			a {
  // 				color: #444 !important;
  			}
  		}
  	}
  */
}
.wp-block-social-links .wp-social-link {
  margin-top: 4px;
  margin-bottom: 4px;
  display: inline-block;
  margin-right: 10px;
  /*
  		a {
  			padding: 0;
  		}
  */
}
.wp-block-social-links .wp-social-link a, .wp-block-social-links .wp-social-link a:active, .wp-block-social-links .wp-social-link a:hover, .wp-block-social-links .wp-social-link a:visited {
  color: currentColor !important;
  display: block;
  line-height: 0;
}
.wp-block-social-links .wp-social-link svg {
  fill: currentColor;
}
.wp-block-social-links .wp-social-link:last-child {
  margin-right: 0;
}
.wp-block-social-links.is-style-default .wp-social-link {
  border-radius: 100%;
}
.wp-block-social-links.is-style-default-border .wp-social-link {
  border-radius: 100%;
}
.wp-block-social-links.is-style-pill-shape .wp-social-link {
  border-radius: 50px;
}
.wp-block-social-links.is-style-pill-shape-border .wp-social-link {
  border-radius: 50px;
}

.wp-block-social-links.is-style-logos-only .wp-social-link a {
  padding: 0;
}

.wp-block-post-featured-image a {
  display: block;
  overflow: hidden;
}

.wp-block-post-featured-image a img {
  width: 100%;
  transition: transform 1s ease;
}

.wp-block-post-featured-image a:hover img {
  transform: scale(1.1);
}

/* blog
----------------------------------------------------------*/
.grid-sizer,
.grid-item {
  width: 100%;
}

@media (min-width: 768px) {
  .grid-sizer.grid-sizer1_3,
.grid-item.col-xl-4 {
    width: 50%;
  }
}
@media (min-width: 1200px) {
  .grid-sizer,
.grid-item {
    width: 50%;
  }

  .grid-sizer.grid-sizer1_3,
.grid-item.col-xl-4 {
    width: 33.3333333333%;
  }
}
.blog-post {
  transition: transform 1s ease;
  margin-bottom: 2rem;
}
.blog-post article {
  position: relative;
  overflow: hidden;
  background-color: #F9F8F5;
  /*
  		img {
  			width: 100%;
  */
}
.blog-post article .img-link {
  overflow: hidden;
  display: block;
  position: relative;
  width: 100%;
  min-height: 270px;
  /*
  			&:hover img {
  				transform: scale(1.1);
  			}
  */
}
.blog-post article .img-link img {
  width: 100%;
  transition: transform 1s ease;
  left: 50%;
  transform: translateX(-50%);
  position: absolute;
  -o-object-fit: cover;
     object-fit: cover;
  min-width: 100%;
  height: 100%;
}
.blog-post article .img-link:hover img {
  transform: translateX(-50%) scale(1.1);
}
.blog-post article .post-content {
  padding: 40px;
  /*
  			p {
  				font-size: rem(14px);
  			}
  */
}
.blog-post article .post-content .post-date {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.0285714286rem;
  font-weight: 500;
}
.blog-post article .post-content .post-category {
  font-size: 0.6428571429rem;
  font-weight: 500;
  text-transform: uppercase;
  margin-left: 20px;
  position: relative;
}
.blog-post article .post-content .post-title {
  position: relative;
  margin-bottom: 1rem;
  /*
  				&:before {
  					content: '';
  					position: absolute;
  					top: 6px;
  					left: 0;
  					width: 2px;
  					height: calc(100% - 8px);
  					background-color: $color-primary;
  				}
  */
}
.blog-post article .post-content .post-title a {
  font-size: 1.5714285714rem;
}
.blog-post article .post-content .post-summary {
  display: block;
  margin: 20px 0;
}
.blog-post article .post-content .post-link {
  font-weight: 500;
}
@media (min-width: 1200px) {
  .blog-post:nth-child(3) article a.img-link {
    min-height: 450px;
  }
}

/*
	.blog-post {
		article {
			height: 100%;
		}
		.blog-img {
			min-height: 250px;
			overflow: hidden;
			@include media-breakpoint-up(md) {
			min-height: 320px;
			}
			@include media-breakpoint-up(xl) {
			min-height: 350px;
			}
			img {
// 				@include media-breakpoint-between(lg, xl) {
// 				@media (min-width: 768px) and (max-width: 1199.98px) {
// 				@include media-breakpoint-up(md) {
				width: auto;
			    left: 50%;
			    right: auto;
			    -webkit-transform: translateX(-50%);
			    -moz-transform: translateX(-50%);
			    -ms-transform: translateX(-50%);
			    -o-transform: translateX(-50%);
			    transform: translateX(-50%);
			    position: absolute;
			    object-fit: cover;
			    min-width: 100%;
			    height: 100%;
// 			    }
			}
			.post-date {
				position: absolute;
				top: 0;
				right: 0;
				z-index: 2;
				background-color: #fff;
				padding: 10px 20px;
				.post-date-day {
					font-family: "Playfair Display", serif;
					font-style: italic !important;
					font-size: 3rem;
					line-height: 1;
				    margin-top: -10px;
				}
				.post-date-year {
					font-family: "Playfair Display", serif;
					font-style: italic !important;
				}
			}
		}
		.blog-content {
			overflow: hidden;
			.post-content {
				background-color: #fff;
				padding: 20px 30px;
				@include media-breakpoint-only(sm) {
				padding: 20px 50px;	
				}
				@include media-breakpoint-only(md) {
				padding: 20px 70px;
				}
				@include media-breakpoint-only(lg) {
				padding: 20px 30px;	
				}
				@include media-breakpoint-up(xl) {
				padding: 20px 70px;
				}
				.entry-title {
					font-size: 20px;
					@include media-breakpoint-up(xl) {
					font-size: 26px;
					}
					a {
						color: #000;
					}
				}
			}			
		}
	}
*/
/*
		@include media-breakpoint-down(md) {
		&:nth-child(2n) {
			.blog-img:first-child {
				order: 2;
				.post-date {
					left: 0;
					right: auto;
				}
			}
			.blog-content:last-child {
				order: 1;
			}
		}
		}
*/
/*
		@include media-breakpoint-down(md) {
		&:nth-child(2n) {
			.blog-img {
				order: 2;
				.post-date {
					left: 0;
					right: auto;
				}
			}
			.blog-content {
				order: 1;
			}
		}
		}
*/
/*
		@include media-breakpoint-up(lg) {
		&:nth-child(3n+0), &:nth-child(4n+0) {
			.blog-img:first-child {
				order: 2;
				.post-date {
					left: 0;
					right: auto;
				}
			}
			.blog-content:last-child {
				order: 1;
			}
		}
		}
*/
/*
		@include media-breakpoint-up(lg) {
		&:nth-child(4n+3), &:nth-child(4n) {
			.blog-img {
				order: 2;
				.post-date {
					left: 0;
					right: auto;
				}
			}
			.blog-content {
				order: 1;
			}
		}
		}

	}
}
*/
.wordpress-pagination {
  text-align: center;
  padding-top: 2rem;
}
.wordpress-pagination ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: center;
}
.wordpress-pagination ul li {
  margin: 0 5px;
}
.wordpress-pagination ul li span, .wordpress-pagination ul li .current {
  padding: 2px 10px;
  display: block;
}
.wordpress-pagination ul li .prev, .wordpress-pagination ul li .next {
  width: 29px;
  height: 26px;
  position: relative;
  font-size: 0;
  line-height: 0;
}
.wordpress-pagination ul li .prev:before, .wordpress-pagination ul li .next:before {
  content: "";
  position: absolute;
  top: 45%;
  left: 0;
  right: 0;
  font-size: 1rem;
}
.wordpress-pagination ul li .prev:before {
  content: "<";
}
.wordpress-pagination ul li .next:before {
  content: ">";
}
.wordpress-pagination ul li a {
  padding: 2px 10px;
  display: block;
  color: rgba(77, 77, 77, 0.4);
}
.wordpress-pagination ul li a:hover {
  color: #9A2121;
}

/* blog -> post
----------------------------------------------------------*/
/*
[class^="icon_search-"], [class*=" icon_search-"] {
  font-family: 'icon_search' !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon_search-awesome:before {
  content: "\e909";
}
.icon_search-material:before {
  content: "\e90a";
}
*/
/*
.bg-header {
	&.bg-header-blog {
		min-height: 500px;
		color: lighten($color-global, 15%);// rgba($color-global, 0.8);// $color-global;
		&:before {
			background-image: linear-gradient( to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.7) );
// 			background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.4));
		}
		> div {
			z-index: 3;
		}
		h2 {
			text-shadow: 2px 2px rgba(0, 0, 0, 0.1); // 1px 1px #5c5c5c;
		}
		.section-title {
			text-align: inherit;
			.maintitle {
				color: $color-white;
				font-weight: 700;
			}
		}
		.text-left hr {
			margin-left: 0;
		}
		.text-right hr {
			margin-right: 0;
		}
	}
}
*/
.blog-widgets .widget {
  background-color: #F9F8F5;
  padding: 2.5rem;
  margin-top: 2rem;
  margin-bottom: 2rem;
  font-size: 1rem;
}
.blog-widgets .widget:first-child {
  margin-top: 0;
}
.blog-widgets .widget:last-child {
  margin-bottom: 0;
}
.blog-widgets .widget .widget-title {
  margin-bottom: 2.2rem;
  font-size: 1.75rem;
  font-style: normal;
}
.blog-widgets .widget ul, .blog-widgets .widget ol {
  padding-left: 1rem;
  margin-bottom: 0;
}
.blog-widgets .widget a {
  font-size: inherit;
  /*
  			&:hover {
  				color: #D2B859;
  			}
  */
}
.blog-widgets .widget.widget_recent_entries, .blog-widgets .widget.widget_recent_entries_thumbnails, .blog-widgets .widget.widget_recent_comments {
  /*
  			.widget-post-image {
  				display: inline-block;
  			}
  			.widget-post-text {
  				display: inline-block;
  			}
  */
}
.blog-widgets .widget.widget_recent_entries ul, .blog-widgets .widget.widget_recent_entries ol, .blog-widgets .widget.widget_recent_entries_thumbnails ul, .blog-widgets .widget.widget_recent_entries_thumbnails ol, .blog-widgets .widget.widget_recent_comments ul, .blog-widgets .widget.widget_recent_comments ol {
  padding-left: 0;
  list-style-type: none;
}
.blog-widgets .widget.widget_recent_entries ul li, .blog-widgets .widget.widget_recent_entries ol li, .blog-widgets .widget.widget_recent_entries_thumbnails ul li, .blog-widgets .widget.widget_recent_entries_thumbnails ol li, .blog-widgets .widget.widget_recent_comments ul li, .blog-widgets .widget.widget_recent_comments ol li {
  margin-top: 1.5rem;
}
.blog-widgets .widget.widget_recent_entries a, .blog-widgets .widget.widget_recent_entries_thumbnails a, .blog-widgets .widget.widget_recent_comments a {
  display: block;
}
.blog-widgets .widget.widget_recent_entries .post-date, .blog-widgets .widget.widget_recent_entries_thumbnails .post-date, .blog-widgets .widget.widget_recent_comments .post-date {
  margin-top: 0.5rem;
  display: block;
  font-size: 0.7857142857rem;
}
.blog-widgets .widget.widget_recent_entries .widget-post-image img, .blog-widgets .widget.widget_recent_entries_thumbnails .widget-post-image img, .blog-widgets .widget.widget_recent_comments .widget-post-image img {
  max-width: 70px;
  margin-right: 15px;
}
.blog-widgets .widget.widget_recent_entries_thumbnails ul li {
  display: flex;
  align-items: flex-start;
}
.blog-widgets .widget.widget_recent_comments {
  /*
  			ul, ol {
  				padding-left: 0;
  				list-style-type: none;
  				li {
  					margin-top: 1.5rem;
  */
  /*
  					&:first-child {
  						margin-top: 1.5rem;
  					}
  */
}
.blog-widgets .widget.widget_recent_comments .comment-author-link {
  display: block;
}
.blog-widgets .widget.widget_tag_cloud {
  /*
  			a {
  				text-transform: none;
  				padding-right: 10px;
  				font-size: 0.85rem !important;
  */
  /*
  				&:after {
  					content: ','
  				}
  */
}
.blog-widgets .widget.widget_tag_cloud a {
  border: 1px solid #4D4D4D;
  margin-right: 6px;
  margin-top: 5px;
  margin-bottom: 5px;
  border-radius: 4px;
  padding: 2px 15px;
  display: inline-block;
  font-size: 0.8571428571rem !important;
  transition: all 0.3s ease-out;
}
.blog-widgets .widget.widget_tag_cloud a:hover {
  color: #fff;
  background-color: #9A2121;
  border-color: #9A2121;
}
.blog-widgets .widget.widget_calendar .calendar_wrap {
  text-align: center;
}
.blog-widgets .widget.widget_calendar .calendar_wrap table {
  width: 100%;
  /*
  					tfoot {
  						#prev, #next {
  							padding-top: 10px;
  						}
  					}
  */
}
.blog-widgets .widget.widget_calendar .calendar_wrap table caption {
  text-align: center;
  caption-side: top;
  padding-top: 0;
  color: inherit;
  border-bottom: 1px solid #4D4D4D;
  margin-bottom: 1rem;
}
.blog-widgets .widget.widget_calendar .calendar_wrap .wp-calendar-nav {
  border-top: 1px solid #4D4D4D;
  margin-top: 0.75rem;
  padding-top: 10px;
}

@media (min-width: 768px) {
  .blog-post-nav > .row {
    position: relative;
  }
  .blog-post-nav > .row:after {
    content: "";
    width: 1px;
    background-color: #F9F8F5;
    position: absolute;
    left: 50%;
    top: 2.6428571429rem;
    height: calc(100% - 2.4666666667rem);
  }
}
.blog-post-nav .post-nav-control .post-nav-sum {
  align-self: center;
}
.blog-post-nav .post-nav-control .post-nav-sum a.post-nav-link {
  color: #4D4D4D;
  text-transform: uppercase;
  font-size: 0.7142857143rem;
  margin-bottom: 1rem;
}
.blog-post-nav .post-nav-control .post-nav-sum a {
  font-size: 1rem;
  /*
  			    &:hover {
  					color: #D2B859;
  				}
  */
}
.blog-post-nav .post-nav-control .post-nav-thumb {
  flex: 0 0 90px;
  max-width: 90px;
  /*
  			.post-nav-sum {

  			}
  */
}
.blog-post-nav .post-nav-control .post-nav-thumb img {
  width: 100%;
}
.blog-post-nav .prev-post {
  position: relative;
  /*
  		.post-nav-thumb {
  			margin-right: 15px;
  		}
  */
}
.blog-post-nav .next-post {
  text-align: right;
  /*
  		.post-nav-thumb {
  			margin-left: 15px;
  		}
  */
}

.wordpress-breadcrumb {
  letter-spacing: 0.25px;
  font-size: 1.1428571429rem;
}
.wordpress-breadcrumb a {
  color: inherit;
}
.wordpress-breadcrumb a:hover {
  color: #9A2121;
}
.wordpress-breadcrumb .delimiter {
  width: 25px;
  display: inline-block;
  position: relative;
}
.wordpress-breadcrumb .delimiter:after {
  content: "";
  margin-left: 0;
  background: currentcolor;
  height: 1px;
  width: 16px;
  position: absolute;
  transform: rotate(-65deg);
  top: -5px;
  right: 4px;
}

.article-meta {
  font-size: 1rem;
  color: inherit;
  font-weight: 500;
  /*
  	.delimiter {
  		border-bottom: 1px solid lighten($color-global, 15%);;
  		width: 25px;
  		display: inline-block;
  	}
  */
  /*
  	.article-meta-cat {
  		a {
  			background-color: $color-primary;
  			padding: 5px 8px;
  			color: $color-white;
  			display: inline-block;
  			text-transform: uppercase;
  			font-size: rem(11px);
  		}
  	}
  */
}
.article-meta a {
  color: inherit;
  font-size: 1rem;
}
.article-meta a:hover {
  color: #9A2121;
}

.article-tags {
  font-size: 0.8571428571rem;
}
.article-tags a {
  border: 1px solid #4D4D4D;
  margin-right: 10px;
  border-radius: 4px;
  padding: 2px 15px;
  display: inline-block;
  font-size: 0.8571428571rem;
  transition: all 0.3s ease-out;
}
.article-tags a:first-child {
  margin-left: 10px;
}
.article-tags a:hover {
  color: #fff;
  background-color: #9A2121;
  border-color: #9A2121;
}

.post-content > div:not(.article-text):not(.article-tags) {
  border-top: 1px solid #F9F8F5;
  margin-top: 3rem;
  padding-top: 3rem;
}

.yasr-auto-insert-visitor {
  border-top: 1px solid #F9F8F5;
  margin-top: 3rem;
  padding-top: 3rem;
}

#comment-area {
  font-size: 1rem;
}
#comment-area #comments .comments-title {
  text-transform: uppercase;
  font-style: normal;
  text-align: center;
}
#comment-area #comments .comment-list {
  list-style: none;
  padding-left: 0;
  border-bottom: 1px solid #F9F8F5;
}
#comment-area #comments .comment-list li {
  padding-top: 1.5rem;
  border-top: 1px solid #F9F8F5;
}
#comment-area #comments .comment-list li:first-child {
  border-top: 0;
}
#comment-area #comments .comment-list li .comment_container .avatar {
  width: 50px;
  height: 50px;
  float: left;
}
#comment-area #comments .comment-list li .comment_container .comment-text.avatar-on {
  margin: 0 0 0 70px;
}
#comment-area #comments .comment-list li .comment_container .comment-text .comment-reply-link {
  color: #9A2121;
  font-size: 0.7142857143rem;
  font-weight: 400;
  border: 1px solid #9A2121;
  padding: 2px 6px;
  margin-left: 20px;
  float: right;
  text-transform: uppercase;
  transition: all 0.3s ease-in-out;
}
#comment-area #comments .comment-list li .comment_container .comment-text .comment-reply-link:hover {
  color: #fff !important;
  background-color: #9A2121;
}
#comment-area #comments .comment-list li .comment_container .comment-text .meta .comment-author-name {
  font-weight: normal;
  /*
  								a {
  									color: #000;
  									&:hover {
  										color: #D2B859;
  									}
  								}
  */
}
#comment-area #comments .comment-list li .comment_container .comment-text .comment-edit-link {
  margin-bottom: 1.5rem;
  display: inline-block;
  color: #9A2121;
  font-size: 0.7142857143rem;
  font-weight: 400;
  border: 1px solid #9A2121;
  padding: 2px 6px;
  text-transform: uppercase;
  transition: all 0.3s ease-in-out;
}
#comment-area #comments .comment-list li .comment_container .comment-text .comment-edit-link:hover {
  color: #fff !important;
  background-color: #9A2121;
}
#comment-area #comments .comment-list .children {
  list-style: none;
}
#comment-area #comments .comment-list .children li:first-child {
  border-top: 1px solid #F9F8F5;
}
#comment-area #comments .comment-list #respond #reply-title, #comment-area #comments .comment-list #respond .comment-reply-title {
  margin-top: 1rem !important;
}
#comment-area #comments .comment-list #respond #commentform .form-submit, #comment-area #comments .comment-list #respond .comment-form .form-submit {
  margin-bottom: 2.5rem;
}
#comment-area #respond #reply-title, #comment-area #respond .comment-reply-title {
  text-transform: uppercase;
  font-style: normal;
  text-align: center;
}
#comment-area #respond #reply-title small #cancel-comment-reply-link, #comment-area #respond .comment-reply-title small #cancel-comment-reply-link {
  display: block;
  margin-top: 1rem;
}
#comment-area #respond #commentform, #comment-area #respond .comment-form {
  /*
  			input {
  				width: 100%;
  				border: 1px solid transparent;
  				border-bottom: 1px solid #979797;
  				padding: 10px;
  				transition: all 0.3s ease-in-out;
  				&:focus {
  					border-color: #000;
  				}
  			}
  */
  /*
  			input[type="radio"], input[type="checkbox"], input[type="submit"] {
  				width: auto;
  			}
  */
  /*
  			input[type="checkbox"] {
  				margin-right: 5px;
  			}
  */
  /*
  			textarea {
  				width: 100%;
  				border: 1px solid transparent;
  				border-bottom: 1px solid #979797;
  				resize: none;
  				max-height: 100px;
  				padding: 10px;
  				transition: all 0.3s ease-in-out;
  				display: block;
  				&:focus {
  					border-color: #000;
  				}
  			}
  */
  /*
  			.form-submit {
  				text-align: center;
  				margin-top: 1.5rem;
  */
  /*
  				    &:hover {
  					    color: #fff !important;
  						background-color: #D2B859;
  				    }
  */
  /*
  				    &:focus, &.focus {
  					    box-shadow: none;
  				    }
  				}
  */
}
#comment-area #respond #commentform .logged-in-as, #comment-area #respond .comment-form .logged-in-as {
  text-align: center;
  /*
  				a {

  				}
  */
}
#comment-area #respond #commentform .comment-form-cookies-consent, #comment-area #respond .comment-form .comment-form-cookies-consent {
  margin-top: 1rem;
  display: flex;
}
#comment-area #respond #commentform .comment-form-cookies-consent label, #comment-area #respond .comment-form .comment-form-cookies-consent label {
  width: auto;
}

.header-page.header-page-bg::after {
  content: "";
  position: absolute;
  z-index: 1;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.65) 50%, rgba(255, 255, 255, 0) 100%);
}

/*
.author_box-inner {
	display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    justify-content: flex-start;
    flex-direction: row;
    -ms-flex-align: start;
    align-items: flex-start;
}
*/
.author_box .author_box-inner .author_img img {
  max-width: 70px;
  margin-right: 25px;
  border-radius: 50%;
}
.author_box .author_box-inner .author_img .author_links a {
  color: #4D4D4D;
  text-transform: uppercase;
  font-size: 0.7142857143rem;
  margin-bottom: 1rem;
}
.author_box .author_box-inner .author_name {
  margin-bottom: 0;
}

body.single-post .header-page.header-page-bg .article-meta a {
  color: inherit;
}

/*
.article-meta a {
	color: $color-white;
	&:hover {
		color: $color-white;
	}
}
*/
/*
a[href="#"]:not([href*="#"]) {
	cursor: default;
	&:hover {
		color: $color-secondary;
		text-decoration: none;
	}
}
*/
/*
a[href="#"] {
	cursor: default !important;
	&:hover {
		color: inherit !important;
		text-decoration: none !important;
	}
}
*/
/*
body.admin-bar .hide-txt {
// 	top: 46px;
	top: calc( 50% - 46px );
}
@media screen and (min-width: 783px) {
	body.admin-bar .hide-txt {
// 		top: 32px;
		top: calc( 50% - 32px );
	}
}
*/
/*
:root {
	--main-bg-color: brown;
}
*/
/*
$color-primary: #BD0003;
$color-secondary: #222222;
$color-global: #666666;
$color-dark: #444444;
$color-light: #F7F7F7;
$color-white: #fff;

$color-muted: #979797;  

$color-input: $color-light;
*/
/*
body {
	background-color: var(--main-bg-color);
}
*/
/*
@font-face {
    font-family: 'Brandon';
    src: url('../fonts/hvd_fonts_-_brandontext-black-webfont.woff2') format('woff2'),
         url('../fonts/hvd_fonts_-_brandontext-black-webfont.woff') format('woff');
    font-weight: 600;
    font-style: normal;
	font-display: swap;
}

@font-face {
    font-family: 'Brandon';
    src: url('../fonts/hvd_fonts_-_brandontext-bold-webfont.woff2') format('woff2'),
         url('../fonts/hvd_fonts_-_brandontext-bold-webfont.woff') format('woff');
    font-weight: 500;
    font-style: normal;
	font-display: swap;
}

@font-face {
    font-family: 'Brandon';
    src: url('../fonts/hvd_fonts_-_brandontext-regular-webfont.woff2') format('woff2'),
         url('../fonts/hvd_fonts_-_brandontext-regular-webfont.woff') format('woff');
    font-weight: 400;
    font-style: normal;
	font-display: swap;
}
*/
/*
// Import CSS3 Mixins 
@import "_dev/lib/compass-mixins/lib/compass/css3";
@import "_dev/lib/compass-mixins/lib/compass/utilities";
@import "_dev/lib/compass-mixins/lib/animation/core";

// Import Include Media
// @import "_dev/lib/include-media";

// Import menu burger
@import "_dev/lib/burger";

// Import bourbon
// @import "_dev/bourbon/bourbon";

// Import bootstrap breakpoints
@import "_dev/lib/bootstrap_mixins_breakpoints_helper";
@import "_dev/bootstrap/mixins/breakpoints";

// Import functions 
@import "_dev/lib/functions";


// Import Config 
// @import "_dev/_theme/_config/config";
*/
/*
@import "_dev/_block/block-testimonial";
@import "_dev/_block/block-contact_info";
@import "_dev/_block/block-members";
@import "_dev/_block/block-blog";
@import "_dev/_block/block-payment";
@import "_dev/_block/block-slider";
@import "_dev/_block/block-video";
@import "_dev/_block/block-services";
*/
/*
// Import Archive Style
@import "_dev/_archive/members";
@import "_dev/_archive/blog";
@import "_dev/_archive/services";

// Import Archive Single Style
@import "_dev/_archive/single-member";
@import "_dev/_archive/single-blog_post";
*/
/*
.pswp {
	display: none;
}
.pswp img {
	object-fit: contain;
}
*/
/*
.pswp .pswp__counter {
	display: none !important;
}
*/
/*
.pswp .pswp__caption__center {
	text-align: center !important;
}
*/
/*
a.module-logo {
	text-transform: uppercase;
	color: #fff;
	&:hover {
		color: #D2B859;
	}
}
*/
/*
%round {
	border-radius: 50%;
}
*/
/*
#grid-2 {
	display: none !important;
}
*/
/*
.lg-backdrop.in {
	opacity: 0.8;
}
*/
/*
p.old-naglowek {
    font-family: "Playfair Display",serif;
    color: #fff;
}
*/
/*
h1.new-naglowek{
	font-size: 1.45rem;
	font-family: "Playfair Display",serif;
  	font-weight: 400;
    font-style: italic;
}
*/
/*
.hidden-strong{
	font-weight: normal;
}
*/
p {
  font-weight: 300;
}

#footer .cookies p {
  font-weight: 500;
}

b, strong {
  font-weight: 500;
}

div.wpcf7-response-output {
  /* 	margin-top: 20px; */
  color: #9A2121;
  font-weight: 500;
  text-align: center;
}

span.wpcf7-not-valid-tip {
  margin-top: 2px;
  color: #9A2121;
}

input, textarea, select {
  padding: 10px 12px;
}

textarea#comment,
#searchform input {
  border: 1px solid #979797;
}

input:focus, textarea:focus, select:focus {
  border-color: #0F1214 !important;
}

.wpcf7-form-control-wrap {
  position: relative;
  display: block;
  margin-top: 1rem;
  margin-bottom: 1rem;
}

input[type=checkbox] {
  position: absolute;
  opacity: 0;
  visibility: hidden;
  margin: 0;
}

.checkmark {
  position: relative;
  top: 2px;
  width: 14px;
  height: 14px;
  border: 1px solid #979797;
  display: inline-block;
  cursor: pointer;
  margin-right: 6px;
}

input[type=checkbox]:checked + .checkmark {
  border-color: #0F1214;
}

input[type=checkbox]:checked + .checkmark:after {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  top: 1px;
  left: 1px;
  background: #0F1214;
}

/*
.link-submit {
	display: inline-block;
    font-weight: 500;
    text-transform: uppercase;
    font-size: .7857142857rem;
    position: relative;
    padding-left: 70px;
    -webkit-transition: padding-left .2s ease-out, color 0.3s ease-out;
    -o-transition: padding-left .2s ease-out, color 0.3s ease-out;
    transition: padding-left .2s ease-out, color 0.3s ease-out;
    color: #4D4D4D;
}
.link-submit:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    max-width: 50px;
    width: 70px;
    height: 1px;
    margin-top: -.5px;
    background-color: #4D4D4D;
    -webkit-transition: max-width .2s ease-out, background-color .2s ease-out;
    -o-transition: max-width .2s ease-out, background-color .2s ease-out;
    transition: max-width .2s ease-out, background-color .2s ease-out;
}
.link-submit:hover {
	padding-left: 90px;
	color: #9A2121;
}
.link-submit:hover:before {
	max-width: 70px;
    background-color: #9A2121;
}
*/
/*
textarea {
    max-height: 133px;
}
*/
/*
.wpcf7-form-control-wrap.acceptance-896 {
	margin-top: .5rem;
}
*/
.has-primary-color {
  color: #9A2121;
}

.has-primary-background-color {
  background-color: #9A2121;
}

.has-secondary-color {
  color: #0F1214;
}

.has-secondary-background-color {
  background-color: #0F1214;
}

.has-global-color {
  color: #4D4D4D;
}

.has-global-background-color {
  background-color: #4D4D4D;
}

.has-dark-color {
  color: #444444;
}

.has-dark-background-color {
  background-color: #444444;
}

.has-light-color {
  color: #F9F8F5;
}

.has-light-background-color {
  background-color: #F9F8F5;
}

.has-light-darker-color {
  color: #f4f0ea;
}

.has-light-darker-background-color {
  background-color: #f4f0ea;
}

.has-white-color {
  color: #ffffff;
}

.has-white-background-color {
  background-color: #ffffff;
}

.has-black-color {
  color: #000000;
}

.has-black-background-color {
  background-color: #000000;
}

#sidenav-sub {
  min-width: 100vw;
}

.overlay-menu .overlay-content {
  padding-left: 30px;
}

@media (min-width: 768px) {
  #sidenav-sub {
    min-width: 450px;
  }

  .overlay-menu .overlay-content {
    padding-left: 70px;
  }
}
body .no-js {
  display: none;
}
body.no-js .no-js {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.93);
  z-index: 9999;
  display: flex;
  align-items: center;
  text-align: center;
}
body.no-js .no-js span {
  width: 60%;
  margin: 0 auto;
  color: #fff;
}

@media (max-width: 991.98px) {
  .block-tabs .tabHeader {
    padding-right: 2rem;
  }
}
/*
@media (max-width: 575.98px) {
	.block-tabs .tabHeader ul li.active a {
		pointer-events: all;
	}
}
*/
@media (min-width: 768px) and (max-width: 1199.98px) {
  .block-tabs .tabHeader ul li.active a {
    pointer-events: none;
  }
}
/*
@media (min-width: 1200px) {
	.block-tabs .tabHeader ul li.active a {
		pointer-events: none;
	}
}
*/
/*
.block-tabs .tabHeader ul {
	line-height: normal;
}
*/
/*
.block-tabs .tabHeader ul li {
	margin-top: 27px;
	margin-bottom: 27px;
	cursor: pointer;
	pointer-events: all;
}
*/
.cookies-btn {
  border-radius: 0;
  background: #9A2121 !important;
}

.cookies-btn {
  padding: 6px 12px;
  font-weight: 500;
  text-transform: uppercase;
  font-size: 0.7857142857rem;
  color: #fff;
}

.cookies-btn:hover {
  background-color: #000 !important;
  color: #fff !important;
}

@media (min-width: 1200px) {
  .container {
    max-width: 1310px;
  }
}
#header .header-logo a {
  font-family: "Playfair Display", serif;
  font-size: 30px;
  letter-spacing: 0;
  line-height: 1;
}
@media (max-width: 299.98px) {
  #header .header-logo a {
    font-size: 22px;
  }
}
@media (min-width: 768px) {
  #header .header-logo a {
    font-size: 38px;
  }
}
@media (min-width: 992px) {
  #header .header-logo a {
    font-size: 54px;
  }
}

#header .header-logo a span {
  display: block;
  font-size: 12px;
  letter-spacing: 0.3px;
  line-height: 1.5;
  margin-top: 1rem;
}
@media (max-width: 299.98px) {
  #header .header-logo a span {
    display: none;
  }
}
@media (min-width: 768px) {
  #header .header-logo a span {
    font-size: 14px;
  }
}
@media (min-width: 992px) {
  #header .header-logo a span {
    font-size: 16px;
  }
}

#header #nav-primary li.current-menu-item > a {
  color: #9A2121;
}

#header .header-menu.fixed-top {
  background-color: #fff;
  box-shadow: 0 5px 20px 0 rgba(0, 0, 0, 0.15);
}

#header hr {
  border-top: 1px solid #f4f0ea;
  margin: 0;
}

#header .header-widgets ul {
  margin-bottom: 0;
}

.above-footer {
  background-color: #f9f8f5;
  padding-top: 80px;
  padding-bottom: 80px;
}

.posts-vertical .wp-block-post-template .wp-block-post:first-child .wp-block-kadence-spacer {
  padding-bottom: 30px;
}
@media (min-width: 1025px) {
  .posts-vertical .wp-block-post-template .wp-block-post:first-child .wp-block-kadence-spacer {
    display: none;
  }
}
.posts-vertical .wp-block-post-template .wp-block-post:first-child .wp-block-kadence-spacer .kt-block-spacer {
  height: auto;
}

.textarea-mh {
  max-height: 100px;
}

input, textarea, select, .wp-block-search__input {
  border-color: #d1d1d1;
}

body .menu-toggle {
  font-size: 24px;
}

.acceptance-box br {
  display: none;
}
.acceptance-box .wpcf7-form-control-wrap[data-name=acceptance-all] .wpcf7-list-item-label,
.acceptance-box .acceptance-all .wpcf7-list-item-label {
  font-weight: 600;
}

.wpcf7-acceptance .wpcf7-list-item-label {
  cursor: pointer;
}/*# sourceMappingURL=theme.css.map */