/*
Embed fonts families:
-------------------
font-family: "Inter", sans-serif;
font-family: "Plus Jakarta Sans", sans-serif;


.inter-<uniquifier> {
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
}

.plus-jakarta-sans-<uniquifier> {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
}


possible weights:
-------------------
Inter: <weight>: Use a value from 100 to 900
Plus Jakarta Sans: <weight>: Use a value from 200 to 800

animation:
-------------------
transition: all 0.5s;

Content:
1. Main styles override
2. Contact form 7 
3. Navbar bootstrap
4. ACF elements
5. Theme styles  
6. Responsive fixes
*/

/* ============================================= */
/* 1. Main styles override                       */
/* ============================================= */

body {
	font-family: "Inter", sans-serif;
	font-optical-sizing: auto;
	font-weight: 400;
	line-height: 24px;
	font-size: 16px;
	font-style: normal;
}

body.admin-bar .navbar.fixed-top {
	margin-top: 32px;
}
html {
	scroll-behavior:smooth;
	font-display: swap
}
strong {
	font-weight: 700;
}
/* Links */
a {
	transition: all 0.5s;
	color:#101010;
	text-decoration: none;
}
a:focus, a:hover {
	color:#b8ac04;
	text-decoration: none;
	outline: 0;
}
a:focus {
	outline: 0;
	outline-offset: -2px;
}
button, button:focus, button:active {
	outline: 0;
	box-shadow: 0
}
/* /Links */

/* Image responsive fix */
img {
	width: initial;
	max-width: 100%;
	height: auto;
}
/* /Image responsive fix */



/* Headers */
h1, h2, h3, h4, h5 {
	font-family: "Plus Jakarta Sans", sans-serif;
	color:#000000;
	font-weight: 700;
}
h1 {
	font-size: 52px;
	margin-bottom: 35px;
}
h2 {
	font-size: 40px;
}
h3 {
	font-size: 24px;
	margin-top: 30px;
	margin-bottom: 20px;
}
h4 {
	font-size: 20px;
	margin-bottom: 20px;
}
h5 {
	font-size: 18px;
}
h6 {
	font-size: 16px;
}
h1 strong, h2 strong, h3 strong, h4 strong, h5 strong, h6 strong {
	color:#b8ac04;
}
@media only screen and (max-width : 1150px) {
	h1 {
		font-size: 34px;
		margin-bottom: 35px;
	}
	h2 {
		font-size: 32px;
	}
	h3 {
		font-size: 22px;
		margin-top: 30px;
		margin-bottom: 20px;
	}
	h4 {
		font-size: 19px;
		margin-bottom: 20px;
	}
	h5 {
		font-size: 18px;
	}
	h6 {
		font-size: 16px;
	}
}
/* /Headers */

/* Bootstrap extra spaces */
.pt-6,
.py-6 {
	padding-top: 5rem !important;
}

.pe-6,
.px-6 {
	padding-right: 5rem !important;
}

.pb-6,
.py-6 {
	padding-bottom: 5rem !important;
}

.ps-6,
.px-6 {
	padding-left: 5rem !important;
}
.mt-6,
.my-6 {
	margin-top: 5rem !important;
}

.mr-6,
.mx-6 {
	margin-right: 5rem !important;
}

.mb-6,
.my-6 {
	margin-bottom: 5rem !important;
}

.ms-6,
.mx-6 {
	margin-left: 5rem !important;
}
.py-6-fixed {
	padding-top: 4rem !important;
	padding-bottom: 7rem !important;
}
@media only screen and (max-width : 768px) {
	.py-6-fixed {
		padding-top: 4rem !important;
		padding-bottom: 7rem !important;
	}
	.pt-6,
	.py-6 {
		padding-top: 4rem !important;
	}

	.pr-6,
	.px-6 {
		padding-right: 4rem !important;
	}

	.pb-6,
	.py-6 {
		padding-bottom: 4rem !important;
	}

	.pl-6,
	.px-6 {
		padding-left: 4rem !important;
	}
	.mt-6,
	.my-6 {
		margin-top: 4rem !important;
	}

	.me-6,
	.mx-6 {
		margin-right: 4rem !important;
	}

	.mb-6,
	.my-6 {
		margin-bottom: 4rem !important;
	}

	.ms-6,
	.mx-6 {
		margin-left: 4rem !important;
	}
}
/* /Bootstrap extra spaces */
textarea:focus,
input[type="text"]:focus,
input[type="password"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="date"]:focus,
input[type="month"]:focus,
input[type="time"]:focus,
input[type="week"]:focus,
input[type="number"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="search"]:focus,
input[type="tel"]:focus,
input[type="color"]:focus,
.uneditable-input:focus {   
  border-color: transparent;
  box-shadow: none;
  outline: 0 none;
}
/* Buttons */
.btn-default {
	background-color: #b8ac04;
	border:1px solid #b8ac04;
	border-radius: 50px;
	font-size: 17px;
	font-weight: 700;
	color: #fff;
	font-family: "Inter", sans-serif;
	padding:10px 40px 10px 40px;
	transition: all 0.5s;
}
.btn-default:hover,
.btn-default:focus,
.btn-default:active {
	background-color:#b8ac04;
	color: #fff;
	transition: all 0.5s;
	-webkit-box-shadow: 0px 0px 16px -1px rgba(0,0,0,0.3);
	-moz-box-shadow: 0px 0px 16px -1px rgba(0,0,0,0.3);
	box-shadow: 0px 0px 16px -1px rgba(0,0,0,0.3);
}
.btn-small {
	font-size: 14px;
	padding:8px 20px 8px 20px;
}
.btn-white {
	background-color: #fff;
	border:1px solid #fff;
	border-radius: 50px;
	font-size: 17px;
	font-weight: 700;
	color: #101010;
	font-family: "Inter", sans-serif;
	padding:10px 25px 10px 10px;
	transition: all 0.5s;
}
.btn-white:hover,
.btn-white:focus,
.btn-white:active {
	background-color:#b8ac04;
	color: #fff;
	-webkit-box-shadow: 0px 0px 16px -1px rgba(0,0,0,0.3);
	-moz-box-shadow: 0px 0px 16px -1px rgba(0,0,0,0.3);
	box-shadow: 0px 0px 16px -1px rgba(0,0,0,0.3);
}
.btn-white:hover img,
.btn-white:focus img,
.btn-white:active img {
	filter: brightness(0) invert(1);
	transition: all 0.5s;
}
.btn-default.btn-search {
	border-top-left-radius: 0;
	border-bottom-left-radius: 0;
	padding-top: 16px;
	padding-bottom: 17px;
}
.cn-button.bootstrap {
	background-color: #b8ac04 !important;
	text-transform: uppercase !important;
}
.btn:focus, .btn:active {
  outline: none !important;
  box-shadow: none !important;
}
/* /Buttons */

section {
	position: relative;
}
.relative {
	position: relative;
}
.absolute {
	position: absolute;
}

/* Vertical align */
.vertical-a {
	display: flex;
	justify-content: center;
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
	/* IE10+ CSS styles go here */
	.vertical-align {
		display: block;
	}
}
.vertical-b {
	align-self: center;
	width: 100%;
}
/* /Vertical align */

/* Placeholder  */
::-webkit-input-placeholder {
	color:#888;
}
:-moz-placeholder {
	color:#888;
}
::-moz-placeholder {
	color:#888;
}
:-ms-input-placeholder {
	color:#888;
}
/* /Placeholder  */

/* Selection  */
::selection {
	background: #b8ac04; /* WebKit/Blink Browsers */
	color:#fff;
}
::-moz-selection {
	background: #b8ac04; /* Gecko Browsers */
	color:#fff;
}
/* /Selection */

/* Box links (often used)  */
.box-link {
	position:absolute;
	height:100%;
	width:100%;
	left:0px;
	top:0px;
}
/* /Box links (often used)  */

.bg-test {
	background-color: rgba(255,0,0,0.5);
}

.dark, .dark p, .dark a, .dark h1, .dark h2, .dark h3, .dark h4, .dark h5, .dark h6 {
	color: #fff;
}

/* Element single post box */
.post-box--img {
	width: 100%;
	height: 380px;
	position: relative;
}
.post-box--img img {
	width: 100%;
	height: 380px;
	object-fit: cover;
}
/* /Element single post box */

/* ============================================= */
/* 2. Contact form 7                             */
/* ============================================= */
.wpcf7 input[type="text"],
.wpcf7 input[type="date"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"],
.wpcf7-select,
.wpcf7 textarea {
	background-color: #fff;
	color: #101010;
	border-radius: 40px;
	border:1px solid #fff;
	padding: 13px 30px;
	font-size: 15px;
	width: 100% !important;
	color:#101010;
}
.wpcf7 input:focus,
.wpcf7 textarea:focus,
.wpcf7-select:focus {
	background-color: #fff;
	color: #101010;
	box-shadow: none;
	outline: 0 none;
}
.wpcf7-form select {
	padding: 0px;
	line-height: 40px;
}
.wpcf7-list-item {
	display: block;
}
.wpcf7-not-valid-tip {
	font-size: 14px;
	color:red;
	background-color: #eaeaea;
	text-align: center;
	width: 60%;
	margin-left: 20%;
	border-bottom-left-radius: 10px;
	border-bottom-right-radius: 10px;
}
.wpcf7-list-item-label {
	color:#fff; 
	font-size: 15px;
	margin-left: 20px;
}

.wpcf7-list-item-label a {
	color:#fff; 
	font-weight: 500;
}

.wpcf7-form-control.wpcf7-acceptance label {
    display: flex;
    line-height: 1.2;
}

.wpcf7-form-control.wpcf7-acceptance input[type="checkbox"] {
    width: auto;
    margin-top: 5px;
    margin-right: 5px;
    align-self: start;
}

.wpcf7-form-control.wpcf7-acceptance .wpcf7-list-item {
    margin-left: 0;
}
.wpcf7-submit {
	background-color: #b8ac04 !important;
	border:1px solid #b8ac04 !important;
	border-radius: 50px;
	font-size: 17px;
	font-weight: 700;
	color: #fff !important;
	font-family: "Inter", sans-serif;
	padding:20px 40px;
	transition: all 0.5s;
}
.wpcf7-submit:hover {
	background-color: #014468;
	border:1px solid #014468;
	border-radius: 50px;
	font-size: 17px;
	font-weight: 700;
	color: #fff;
	font-family: "Inter", sans-serif;
	padding:20px 40px;
	transition: all 0.5s;
}
.wpcf7-form.submitting .wpcf7-submit,
.wpcf7-form.invalid .wpcf7-submit {
	color: #fff !important;
}
.wpcf7-spinner {
	position: absolute;
	bottom:60px;
}
.wpcf7-submit:disabled {
	opacity:0.7;
}
/* Placeholder  */
::-webkit-input-placeholder {
 color:#101010;
 opacity: 0.7;
}
:-moz-placeholder {
 color:#101010;
 opacity: 0.7;
}
::-moz-placeholder {
 color:#101010;
 opacity: 0.7;
}
:-ms-input-placeholder {
 color:#101010;
 opacity: 0.7;
}
:active::-webkit-input-placeholder,
:focus::-webkit-input-placeholder {
 color:#101010;
 opacity: 1;
}
:active::-moz-placeholder,
:focus::-moz-placeholder {
 color:#101010;
 opacity: 1;
}
:active::-moz-placeholder,
:focus::-moz-placeholder {
 color:#101010;
 opacity: 1;
}
:active::-ms-input-placeholder,
:focus::-ms-input-placeholder {
 color:#101010;
 opacity: 1;
}
/* /Placeholder  */

/* ============================================= */
/* 3. Navbar (bootstrap)                         */
/* ============================================= */
.navbar {
	font-family: "Inter", sans-serif;
	padding-top: 0;
	padding-bottom: 0;
	background-color: transparent;
	padding-top:20px;
	padding-bottom:30px;
	z-index: 999;
}
.sticky.navbar {
	background: rgb(255,255,255);
	background: linear-gradient(180deg, rgba(255,255,255,1) 70%, rgba(255,255,255,0) 100%);
	padding-top:5px;
	padding-bottom:20px;
}

.navbar .navbar-nav {
	-webkit-box-shadow: 0px 0px 25px 0px rgba(0,0,0,0.1);
	-moz-box-shadow: 0px 0px 25px 0px rgba(0,0,0,0.1);
	box-shadow: 0px 0px 25px 0px rgba(0,0,0,0.1);
	padding:4px;
	border-radius: 50px;
	backdrop-filter: blur(10px);
}

.navbar-collapse .navbar-nav {
	margin-top:10px;
}
@media only screen and (max-width : 991px) {
	.navbar .navbar-nav {
		border-radius: 15px;
	}
}
.navbar-brand {
	padding-bottom: 0;
	padding-top: 0;
}
.navbar-brand img {
	transition: all linear 0.3s;
	width: 300px; 
}
@media only screen and (max-width : 1510px) {
	.navbar-brand img {
		transition: all linear 0.3s;
		width: 220px; 
	}
}
.navbar-nav .nav-link {
	color: #101010;
	font-weight:600;
	padding:14px 35px;
	transition: all 0.5s;
	border-radius: 30px;
}
.navbar-expand-lg .navbar-nav .nav-link {
	padding-left: 20px;
	padding-right: 20px; 
}

@media only screen and (max-width : 1200px) {
	.navbar-expand-lg .navbar-nav .nav-link {
		padding-left: 10px;
		padding-right: 10px; 
	}
}
.navbar-nav .nav-link.active,
.navbar-nav .nav-link:hover {
	color: #fff;
	background-color:#b8ac04;
}
.navbar-nav .current-menu-item .active > .nav-link,
.navbar-nav .current-menu-item .nav-link.active {
	color: #b8ac04;
}
.sticky .navbar-brand img {
		width: 220px; 
		height: auto;
	}
.navbar-toggler {
	border-radius: 30px;
	height: 50px;
	background-color: #b8ac04;
	transition: all 0.5s;
}
.navbar-toggler:focus,
.navbar-toggler:active,
.navbar-toggler-icon:focus {
    outline: none;
    box-shadow: none;
}
.navbar-toggler span {
	display: block;
	background-color: #fff;
	height: 2px;
	width: 24px;
	margin-top: 6px;
	margin-bottom: 6px;
	position: relative;
	left: 0;
	opacity: 1;
	transition: all 0.35s ease-out;
	transform-origin: center left;
}
.navbar-toggler span:nth-child(1) {
	transform: translate(0%, 0%) rotate(0deg);
}
 
.navbar-toggler span:nth-child(2) {
	opacity: 1;
}
 
.navbar-toggler span:nth-child(3) {
	transform: translate(0%, 0%) rotate(0deg);
}
.navbar-toggler span:nth-child(1) {
	margin-top: 0.3em;
}
 
.navbar-toggler:not(.collapsed) span:nth-child(1) {
	transform: translate(15%, -33%) rotate(45deg);
}
 
.navbar-toggler:not(.collapsed) span:nth-child(2) {
	opacity: 0;
}
.navbar-toggler:not(.collapsed) span:nth-child(3) {
	transform: translate(15%, 33%) rotate(-45deg);
}

.navbar .contact a.nav-link {
	background: #00465e;
	/*background: linear-gradient(0deg, rgba(33,37,41,1) 0%, rgba(0,62,83,1) 100%);*/
}
.search-activator {
	cursor: pointer;
}

.search-activator a.nav-link {
	text-indent: -9999px;
	background-image: url(../img/icon-main-menu-search.png);
	background-repeat: no-repeat;
	background-position: center;
}


/* Search window */
#search-container {
	display: none;
	position: fixed;
	height: 100%;
	width: 100%;
	background-color: rgba(0,0,0,0.9);
	top:0px;
	left:0px;
	max-height: 100vh;
	z-index: 999999999;
}
#search-container .d-flex {
	height: 100%;
}
#search-close {
	position: absolute;
	right: 40px;
	top:25px;
	background-image: url(../img/search-close.png);
	background-repeat: no-repeat;
	background-color: transparent;
	height: 41px;
	width: 41px;
	z-index: 100000;
	cursor: pointer;
}
#search-close span {
	position: absolute;
	right: 50px;
	top:10px;
	width: 100px;
	text-align: right;
	color: #fff
}
#search-container .vertical-align {
	height: 100%;
}
#title .form-control {
	border:0;
}
.search-btn {
	background-image: url(../img/icon-search.png);
	background-repeat: no-repeat;
	background-position: center;
	cursor: pointer;
}
.search-input {
	border-top-left-radius: 10px;
	border-bottom-left-radius: 10px;
	line-height: 56px;
	height: 56px;
	padding-left: 25px;
}
/* /Search window */

/* Open on hover for desktops only */
ul.nav li.dropdown:hover > ul.dropdown-menu {
	display: block;    
}
@media (min-width: 979px) {
	ul.nav li.dropdown:hover > ul.dropdown-menu {
		display: block;
	}
}
/* /Open on hover for desktops only */


/* ============================================= */
/* 4. ACF elements                               */
/* ============================================= */
.embed-container { 
    position: relative; 
    padding-bottom: 56.25%;
    overflow: hidden;
    max-width: 100%;
    height: auto;
} 
.embed-container iframe,
.embed-container object,
.embed-container embed { 
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.acf-map {
	width: 100%;
	height: 475px;
	margin-bottom: 0px;
}
/* fixes potential theme css conflict */
.acf-map img {
	max-width: inherit !important;
}
.gm-style iframe + div { border:none!important; }

/* ============================================= */
/* 5. Theme styles                               */
/* ============================================= */

/* Tiny Slider Banner */
.banner-slider-container .height-keeper {
	left: 12px;
	top: 0;
	width: 100%;
	min-height: 80vh;
	overflow:hidden;
	padding-bottom: 50px;
}
.slider-container .slider-controls {
	margin: 0;
    padding: 0;
    list-style: none;
    position: absolute;   
    top: 50%;
    transform: translatey(-50%);
    display: flex;
    align-items: center;    
    justify-content: space-between;
}
.banner-slider-container .slider-controls {
	left: 30px;
    right: 30px;
    z-index: 40;
}
.banner-slider-container .slider-item {
	padding: 0;
}
.arrow {
	height: 18px;
	width: 40px;
	background-image: url(../img/arrows.png);
	cursor: pointer;
}

.arrow.arrow-right {
	background-position: 40px 0;
}
.tns-nav {
	position: absolute;
	left: 50%;
	bottom: 10px;
	transform: translateX(-50%);
}
.tns-nav button {
	background-color: #cfcfcf;
	border:0;
	margin: auto 5px;
	border-radius: 50%;
	width: 12px;
	height: 12px;
}
.tns-nav button.tns-nav-active {
	background-color: #b8ac04;
	border:0;
	margin: auto 5px;
	border-radius: 50%;
	width: 12px;
	height: 12px;
}
/* /Tiny Slider Banner */


.vh-80 {
	min-height:80vh;
}
.bg-grey {
	background-color:#efefef;
}
.rounded-sb-200{
	border-bottom-left-radius: 200px;
}
.rounded-eb-50 {
	border-bottom-right-radius: 50px;
}
.rounded-et-200{
	border-top-right-radius: 200px;
}
.rounded-st-50{
	border-top-left-radius: 50px;
}
@media only screen and (max-width : 768px) {
	.rounded-sb-200{
		border-bottom-left-radius: 80px;
	}
	.rounded-eb-50 {
		border-bottom-right-radius: 20px;
	}
	.rounded-et-200{
		border-top-right-radius: 20px;
	}
	.rounded-st-50{
		border-top-left-radius: 80px;
	}
}
#hero {
	background-image: url(../img/bg-tire.webp);
	background-position: right top;
	background-repeat: no-repeat;
}
.hero-contact img {
	width: 50px;
	height: auto;
}
.hero-contact a {
	font-weight: 700;
}
.hero-contact-pos:hover a {
	color:#b8ac04;
}

.hero-contact .legend {
	font-size: 15px;
	color:#000000;
}
.bg-blue {
	background-color: rgb(184, 172, 4);
}
.bg-blue-transparent {
	background-color: rgba(0, 0, 0, 0.85);
}
.hero--home-form-shortcode {
	top:50%;
	left: 40%;
	backdrop-filter: blur(2px);
	width: 55%;
	font-size: 16px;
	z-index: 990;
	position: absolute;
}
@media only screen and (max-width : 1380px) {
	.hero--home-form-shortcode {
		width: 70%;
		left:25%;
	}
}
@media only screen and (max-width : 1150px) {
	.hero--home-form-shortcode {
		width: 100%;
		left: 0;
		position: relative;
		margin-top: -100px;
	}
}
#hero-footer .hero--home-form-shortcode {
	bottom:-70px;
	top:unset;
}

.hero--home-form-shortcode .wpcf7-checkbox {
	display:flex;
	justify-content: center;
	flex-wrap: wrap;
}
.hero--home-form-shortcode .wpcf7-checkbox .wpcf7-list-item {
	min-width:50%;
	margin-left: 0;
}
.btn-text {
	font-size: 15px;
	font-weight: 700;
	color:#b8ac04;
	cursor: pointer;
}
.protection-item {
	transition: all 0.5s;
	-webkit-box-shadow: 0px 0px 25px -1px rgba(0,0,0,0.07);
	-moz-box-shadow: 0px 0px 25px -1px rgba(0,0,0,0.07);
	box-shadow: 0px 0px 25px -1px rgba(0,0,0,0.07);
	
}
.protection-item .btn-text {
	display: none;
}
.protection-item .icon img {
	width: 50px;
	height:auto;
	transition: all 0.5s;
}
.protection-item:hover .icon img {
	filter: brightness(0) invert(1);
}
.protection-item:hover {
	background-color: #b8ac04;
	color:#fff;
	transition: all 0.5s;
}
.protection-item:hover .protection-item--bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height:  calc(100% + 80px);
	background-color: #b8ac04;
	background-image: url(../img/bg-protection.webp);
	background-repeat: no-repeat;
	color:#fff;
	padding-bottom: 50px !important;
	border-radius: 2rem;
}
.protection-item:hover .btn-text {
	display: inline-block;
}
.protection-item h3,
.protection-item a {
	transition: all 0.5s;
}
.protection-item:hover h3,
.protection-item:hover a,
.protection-item:hover .text-grey {
	color:#fff;
	transition: all 0.5s;
}
.cursor-pointer {
	cursor: pointer;
}
.text-grey {
	color:#575756;
}
.below-header-big {
	font-size:22px;
	line-height: 26px;
	color:#000000;
	font-weight:600;
}
@media only screen and (max-width : 768px) {
	.below-header-big {
		font-size:18px;
		line-height: 24px;
	}
}
.below-header-big strong {
	color:#b8ac04;
	font-weight:600;
}

/* Accordion readmore */
.accordions-readmore-wrapper .read-more-btn .accordion-hide {
	display:inline
}
.accordions-readmore-wrapper .read-more-btn:not(.collapsed) .accordion-show {
	display:none
}
.accordions-readmore-wrapper .read-more-btn.collapsed .accordion-hide {
	display:none
}
.accordions-readmore-wrapper .accordion-read-more {
	position: relative;
}

.accordions-readmore-wrapper .accordion-read-more .accordion-item,
#gallery .accordion-item,
.accordion-premises .accordion-item {
 background-color: transparent;
}
.accordions-readmore-wrapper .accordion-read-more .accordion-body,
#gallery .accordion-read-more .accordion-body,
.accordion-premises .accordion-body {
 padding-left: 0;
 padding-right: 0;
}
.accordions-readmore-wrapper .accordion-read-more .accordion-button.read-more-btn {
	background-color: transparent;
	padding:0;
	position: relative;
	border:0;
}

.accordions-readmore-wrapper .accordion-read-more .accordion-button.read-more-btn:not(.collapsed)::before {
	display: none;
}
.accordions-readmore-wrapper .accordion-read-more .accordion-button.read-more-btn::after {
	display: none;
}
.accordions-readmore-wrapper .accordion-read-more .accordion-button {
	color:#000 !important;
	padding:0;
	font-size: 18px;
	font-weight: 400;
	position: relative;
	display: inline-block;
	box-shadow: none !important;
    border-color: rgba(0,0,0,.125) !important;
}
.accordions-readmore-wrapper .accordion-read-more .accordion-button span {
	position: relative;
}
.accordions-readmore-wrapper .accordion-read-more .accordion-button span::after{
	content:"";
	position: absolute;
	right: -20px;
	top: 50%;
	transform: translateY(-50%);
	width: 11px;
	height: 11px;
	transition: all 0.5s;
}
.accordions-readmore-wrapper .accordion-read-more .accordion-button span.accordion-show::after{
	background-image: none;
	transition: all 0.5s;
}
.accordions-readmore-wrapper .accordion-read-more .accordion-button span.accordion-hide::after{
	background-image: none;
	transition: all 0.5s;
}
.accordions-readmore-wrapper .accordion-read-more .accordion-button span:hover{
	color:#000;
}
.accordions-readmore-wrapper .accordion-read-more .accordion-button span:hover::after{
	right: -30px;
}
/* Accordion readmore */

.aboutme-feature--pos {
	background-image: url(../img/bg-aboutme-feature--pos.webp);
	background-repeat: no-repeat;
	background-position: center right;
}
@media only screen and (max-width : 768px) {
	.aboutme-feature--pos {
		background-image: none;
	}
}
.aboutme-features .aboutme-feature--pos:last-of-type {
	background-image: none;
	padding-right: 0 !important;
	margin-right: 0 !important;
}
.aboutme-feature--value {
	font-size: 24px;
	font-weight: 700;
	color:#000000;
}
.aboutme-feature--desc {
	font-size: 17px;
	font-weight: 600;
	color:#575756;
}
.feature-pos .icon {
	border:5px solid #dcd5b8;
	padding:5px;
	min-width: 60px;
	min-height: 60px;
	width: 60px;
	height: 60px;
	color:#fff;
	font-size: 20px;
	font-weight: 700;
	text-align: center;
	display: flex;
	justify-content: center;
	align-items: center;
}
.features-wrapper {
	background-image: url(../img/bg-features-wrapper.webp);
	background-repeat: no-repeat;
	background-position: center top;
}
@media only screen and (max-width : 768px) {
	.features-wrapper {
		background-position: -30% bottom;
	}
}

.testimonial-pos--desc {
	background-color: #fff;
}
.testimonial-pos--autor {
	padding-top:20px;
	padding-left: 120px;
	background-image: url(../img/bg-testimonial-pos--autor.webp);
	background-repeat: no-repeat;
	background-position: top left 40px;
	font-size: 15px;
	color: #575756;
}
#pytania .accordion-item {
	margin-bottom: 1px;
	border:0 !important;
}
#pytania .accordion-button {
	background-color: #efefef !important;
	font-size: 15px;
	font-weight: 700;
	border-radius: 15px;
}
#pytania .accordion-button:hover {
	background-color: #e3e2e2 !important;
}
#pytania .accordion-button:not(.collapsed) {
	background-color: #b8ac04 !important;
	color:#fff;
}
.accordion-button:focus {
	box-shadow: none;
	border-color: rgba(0,0,0,.125);
}
footer {
	font-size:13px;
}
.epoka-logo {
	width: 83px;
	height: 19px;
	min-width: 83px;
	min-height: 19px;
}
.menu-item.kontakt a {
	padding:0 !important;
}
.menu-item.kontakt a span {
	padding:14px 20px;
	display: inline-block;
	cursor: pointer;
}
@media only screen and (max-width : 991px) {
	.menu-item.kontakt {
		text-align: center;
	}
}
/* ============================================= */
/* 6. Responsive fixes                           */
/* ============================================= */

@media only screen and (max-width : 1150px) {
	.slider-container .slider-controls {
		margin: 0;
	    padding: 0;
	    list-style: none;
	    position: absolute;   
	    top: 50%;
	    transform: translatey(-50%);
	    display: flex;
	    align-items: center;    
	    justify-content: space-between;
	}
}

/* Medium Devices, Desktops */
@media only screen and (max-width : 991px) { 

	

}

/* Small Devices, Tablets */
@media only screen and (max-width : 768px) {
	/* WP image float fix */
	figure.alignleft, img.alignleft, figure.alignright, img.alignright {
		float:none;
	}
	/* /WP image float fix */

} 

/* Extra Small Devices, Phones */ 
@media only screen and (max-width : 480px) {
}

/* Custom, iPhone Retina */ 
@media only screen and (max-width : 320px) {
}


/* Height */
@media only screen and (max-height : 730px) {
}