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


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

possible weights:
-------------------
Open Sans: 300;400;500;700;

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: "Plus Jakarta Sans", sans-serif;
	font-optical-sizing: auto;
	font-weight: 400;
	font-style: normal;
	font-size: 15px;
}


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;
	text-decoration: none;
}
a:focus, a:hover {
	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-weight: 700;
}
h1 {
	font-size: 34px;
}
#title h1 {
	font-size: 50px;
}
h2, .h2 {
	font-size: 36px;
	font-weight: 700;
	margin-bottom:30px;
}
h3, .h3 {
	font-size: 20px;
	font-weight: 600;
	margin-bottom: 30px;
}
.h3 a {
	color:#101010;
}
h4 {
	font-size: 19px;
}
h5 {
	font-size: 16px;
}
h6 {
	font-size: 14px;
}
.header-below {
	font-size: 26px;
}
@media only screen and (max-width : 991px) {

	h2, .h2 {
		font-size: 32px;
		font-weight: 700;
		margin-bottom:30px;
	}
}
/* /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: #5f0683;
	border:1px solid #5f0683;
	border-radius: 50px;
	font-weight: 600;
	font-size: 15px;
	color: #fff;
	padding:10px 25px;
	transition: all 0.5s;
}
#main-menu .btn-default {
	padding:13px 25px;
	border:2px solid #fff;
	background: #5F0683;
	background: linear-gradient(135deg, rgba(95, 6, 131, 1) 0%, rgba(50, 1, 84, 1) 100%);
}
.btn-default:hover,
.btn-default:focus,
.btn-default:active {
	background-color:#5f0683;
	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-default-big {
	font-size: 18px;
	letter-spacing: 0.2em;
	padding:20px 40px;
	background: #5F0683;
	font-weight: 700;
	background: linear-gradient(135deg, rgba(95, 6, 131, 1) 0%, rgba(50, 1, 84, 1) 100%);
}
.btn-default-big:hover {
	letter-spacing: 0.2em;
	background: #5F0683;
	font-weight: 700;
	background: linear-gradient(-135deg, rgba(95, 6, 131, 1) 0%, rgba(50, 1, 84, 1) 100%);
}
@media only screen and (max-width : 991px) {
	.btn-default-big {
		font-size: 16px;
		letter-spacing: 0.2em;
		padding:15px 30px;
	}
}

.btn-default.btn-search {
	border-top-left-radius: 0;
	border-bottom-left-radius: 0;
	padding-top: 16px;
	padding-bottom: 17px;
}

.btn-text {
	font-weight: 700;
	font-size: 14px;
	color: #5f0683;
	background-color: transparent;
	border:0;
	padding:10px 0px;
	transition: all 0.5s;
}
.btn-text:hover,
.btn-text:focus,
.btn-text:active {
	color: #5f0683;
	transition: all 0.5s;
}


.cn-button.bootstrap {
	background-color: #5f0683 !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: #5f0683; /* WebKit/Blink Browsers */
	color:#fff;
}
::-moz-selection {
	background: #5f0683; /* 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-grey {
	background-color: #edebf0;
}
.bg-grey .bg-grey {
	background-color: #8e9296;
}
.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: #edebf0;
	color: #101010;
	border-radius: 40px;
	border:1px solid #fff;
	padding: 13px 30px;
	font-size: 15px;
	width: 100% !important;
	margin-top: 7px;
}
.inputs-white .wpcf7 input[type="text"],
.inputs-white .wpcf7 input[type="date"],
.inputs-white .wpcf7 input[type="email"],
.inputs-white .wpcf7 input[type="tel"],
.inputs-white .wpcf7-select,
.inputs-white .wpcf7 textarea {
	background-color: #fff;
}

.wpcf7 label {
	width: 100%;
}
.wpcf7-spinner {
	position: absolute;
}
.wpcf7 span {
	font-size: 13px;
	color:#4c4c4c;
}
.dark .wpcf7 span {
	font-size: 13px;
	color:#fff;
}
.bg-white-glass-more .wpcf7 span {
	font-size: 13px;
	color:#000;
}
.wpcf7 input:focus,
.wpcf7 textarea:focus,
.wpcf7-select:focus {
	background-color: #fff;
	color: #303338;
	border:1px solid #5F0683;
	box-shadow: none;
	outline: 0 none;
}
.wpcf7-form select {
	padding: 0px;
	line-height: 40px;
}
.wpcf7-list-item {
	display: block;
}

.wpcf7-list-item-label {
	color:#fff; 
	font-size: 14px;
	margin-left: 20px;
}

.wpcf7-list-item-label a {
	color:#101010 !important; 
	font-weight: 700 !important;
}
.inputs-white .wpcf7-list-item-label a {
	color:#fff !important;
	font-weight: 700 !important;
}
.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: #5f0683;
	border:1px solid #5f0683;
	border-radius: 50px;
	font-weight: 600;
	font-size: 15px;
	color: #fff;
	padding:10px 25px;
	transition: all 0.5s;
}
.wpcf7-submit:hover,
.wpcf7-form.submitting .wpcf7-submit,
.wpcf7-form.invalid .wpcf7-submit {
	background-color:#5f0683;
	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);
}
.wpcf7-not-valid-tip {
	color:red !important;
	padding-left: 15px;
}
.wpcf7-response-output {
	text-align: center;
}
.wpcf7-submit:disabled {
	opacity:0.7;
}
/* Placeholder  */
::-webkit-input-placeholder {
 color:#fff;
 opacity: 0.7;
}
:-moz-placeholder {
 color:#fff;
 opacity: 0.7;
}
::-moz-placeholder {
 color:#fff;
 opacity: 0.7;
}
:-ms-input-placeholder {
 color:#fff;
 opacity: 0.7;
}
:active::-webkit-input-placeholder,
:focus::-webkit-input-placeholder {
 color:#b5b5b5;
 opacity: 1;
}
:active::-moz-placeholder,
:focus::-moz-placeholder {
 color:#b5b5b5;
 opacity: 1;
}
:active::-moz-placeholder,
:focus::-moz-placeholder {
 color:#b5b5b5;
 opacity: 1;
}
:active::-ms-input-placeholder,
:focus::-ms-input-placeholder {
 color:#b5b5b5;
 opacity: 1;
}
/* /Placeholder  */

/* ============================================= */
/* 3. Navbar (bootstrap)                         */
/* ============================================= */
.navbar {
	-webkit-box-shadow: none;
	-moz-box-shadow: none;
	box-shadow: none;
	padding-top: 0;
	padding-bottom: 0;
	background-color: transparent;
}
.navbar-brand {
	padding-bottom: 0;
	padding-top: 0;
}

#header-main {
	margin-top: 30px;
	transition: all 0.5s;
}
.sticky#header-main {
	margin-top: 0px;
	background-color: rgba(255, 255, 255, 0.5);
	backdrop-filter: blur(15px);
	border-radius: 50px;
}
#header-main .navbar-brand img {
	transition: all 0.5s;
}
.ubermenu-skin-minimal.ubermenu-responsive-toggle {
	font-size: 15px !important;
	font-weight: 700 !important;
	text-align: center !important;
	margin-top: 5px;
}

@media only screen and (max-width : 1350px) {
	.navbar-expand-lg .navbar-nav .nav-link {
		padding-left: 12px;
		padding-right: 12px; 
	}
}
@media only screen and (max-width : 1040px) {
	.navbar-expand-lg .navbar-nav .nav-link {
		padding-left: 10px;
		padding-right: 10px; 
	}
}
.navbar-brand {
	padding-bottom: 0;
	padding-top: 0;
}
@media only screen and (max-width : 959px) {
	.navbar-brand img {
		min-width: 200px;
	}
}
@media only screen and (max-width : 991px) {
	#header-main {
		margin-top:10px;
	}
	.navbar-brand {
		margin-bottom: 10px;
		position: absolute;
		top:7px;
		left: 20px;
		z-index: 999;
	}
	.navbar-brand img {
		width:180px !important;
		min-width:180px !important;
	}
	.menu-wrapper {
		text-align: right;
	}
	.ubermenu-responsive-toggle-main {
		background-color: #5F0683 !important;
		display:inline-block !important;
		width: auto !important;
		color:#fff !important;
		border-radius: 30px !important;
		margin-left: auto !important;
		margin-right: auto !important;
	}
	.sticky .ubermenu-responsive-toggle-main {
		margin-top: 5px;
	}
	#main-menu .container-fluid {
		padding-bottom:5px;
	}
	.ubermenu-item-has-children.ubermenu-item-level-0 {
		padding-right:4px !important;
	}
	.ubermenu.ubermenu-main .ubermenu-item-level-0 {
		margin-left: 0 !important;
		margin-right: 0 !important;
	}
}
@media only screen and (min-width : 992px) {
	.sticky .navbar-brand img {
		scale:0.7;
	}
}
 
.ubermenu-submenu-drop {
	border-radius: 25px !important;
}
.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;
}

.dropdown-menu {
	margin-top: -2px;
	border-radius: 0px;
	background-color: #1e1e1e;
	border:0px;
	text-transform: lowercase;
	border-bottom-left-radius: 15px;
	border-bottom-right-radius: 15px;
	-webkit-box-shadow: 0px 5px 10px 0px rgba(0,0,0,0.10);
	-moz-box-shadow: 0px 5px 10px 0px rgba(0,0,0,0.10);
	box-shadow: 0px 5px 10px 0px rgba(0,0,0,0.10);
}
.dropdown-menu[data-bs-popper] {
	margin-top: -1px;
	border-top:1px solid #00465e;
}
.dropdown-menu li a.dropdown-item {
	font-size: 14px;
	line-height: 35px;
	color: #fff;
	transition: all 0.5s;
}


.dropdown-menu li a.dropdown-item:hover {
	color:#5f0683;
	transition: all 0.3s;
}
.dropdown-menu li a.dropdown-item:hover,
.dropdown-menu li a.dropdown-item:focus,
.dropdown-menu li a.dropdown-item:active {
	background-color: transparent;
	transition: all 0.3s;
	border-left-color: #5f0683;
}
.dropdown-item.active {
	background-color: transparent;
	color:#5f0683 !important;
}


/* 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: 30px;
	border-bottom-left-radius: 30px;
	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 */

.slider-controls {
	list-style: none;
	bottom: 0;
	display: inline-flex;
	
	padding-left: 0;
	width: 100%;
}

.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: -50px;
	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: #5f0683;
	border:0;
	margin: auto 5px;
	border-radius: 50%;
	width: 12px;
	height: 12px;
}
/* /Tiny Slider Banner */

.hero {
	min-height: 95vh;
	position: relative;
	overflow-x: hidden;
	overflow-y: visible;
	padding-top:100px;
}
.hero:before {
	content: "";
	position: absolute;
	bottom: 0;
	/* Offset the ellipse left-ward by some amount */
	left: -50%;
	/* Set width percentage to exceed the parent width, plus twice the offset amount */
	width: 200%;
	border-bottom-left-radius: 100%;
	border-bottom-right-radius: 100%;
	display: block;
	height:100%;
	top: 0;
	background-color: #dfdfdf;
	background-position: top center;
	background-repeat: no-repeat;
	background-size: contain;
	background-image: url(../img/bg-home-hero.webp);
}
.hero.services {
	min-height: unset;
	padding-bottom: 100px;
}
.hero.services:before {
	background-image: url(../img/bg-archive-services.webp);
}
.single-usluga .hero.services:before {
	background-image: url(../img/bg-service-01.webp);
	background-position: bottom center;
}
@media only screen and (max-width : 991px) {
	.hero:before {
		left: -150%;
		width: 400%;
		opacity: 0.5;
		border-bottom-left-radius: 70%;
		border-bottom-right-radius: 70%;
		background-size: 100%;
	}
	.hero.services {
		padding-bottom: 30px;
	}
}
.text-50 {
	font-size: 50px;
	line-height: 55px;
}

.strong {
	font-weight: 700;
}
.strong-underline strong {
	text-decoration-line: underline;
	text-decoration-color: rgba(138, 34, 226,0.15);
	text-decoration-thickness: 25px;
	text-decoration-skip-ink: none;
	text-underline-offset: -20px;
}
.strong-underline h2 strong {
	text-decoration-line: underline;
	text-decoration-color: rgba(138, 34, 226,0.15);
	text-decoration-thickness: 20px;
	text-decoration-skip-ink: none;
	text-underline-offset: -15px;
}
@media only screen and (max-width: 991px) {
	.text-50 {
		font-size: 36px;
		line-height: 42px;
	}
}
.hero--text-below {
	font-size: 16px;
	font-weight: 500;
}
.bg-gradient {
	background: #5F0683 !important;
	background: linear-gradient(135deg, rgba(95, 6, 131, 1) 0%, rgba(50, 1, 84, 1) 100%) !important;
}
.bg-navy {
	background-color: #5F0683 !important;
}
.bg-white-glass {
	background-color: rgba(255, 255, 255, 0.4);
	backdrop-filter: blur(13px);
	transition: all 0.5s !important;
}
.bg-white-glass-more {
	background-color: rgba(255, 255, 255, 0.7);
	backdrop-filter: blur(13px);
	transition: all 0.5s !important;
}
@media only screen and (max-width : 991px) {
	.bg-white-glass-more {
		background-color: rgba(255, 255, 255, 0.4);
	}
}
.bg-navy-glass {
	background-color: rgb(95, 6, 131, 0.78);
	backdrop-filter: blur(13px);
	transition: all 0.5s !important;
}
.home .hero--services > .service-pos:first-child,
.home .hero--services > .service-pos:last-child  {
	margin-top:70px;
}
@media only screen and (max-width : 991px) {
	.hero--services > .service-pos:first-child,
	.hero--services > .service-pos:last-child  {
		margin-top:0px !important;
	}
}
.bg-white-hover {
	transition: all 0.5s;
}
.arrow-corner {
	right: 20px;
	top: 20px;
	width: 30px;
	height: 30px;
	display: flex;
	justify-content: center;
	align-items:center;
}
.arrow-corner.bg-gradient {
	background: #838382 !important;
}
.service-pos:hover .arrow-corner.bg-gradient,
.case-pos:hover .arrow-corner.bg-gradient {
	background: #5F0683 !important;
	background: linear-gradient(135deg, rgba(95, 6, 131, 1) 0%, rgba(50, 1, 84, 1) 100%) !important;
}
.service-pos:hover .bg-white-hover{
	background-color: rgba(255, 255, 255, 1);
	transition: all 0.5s;
}

.arrow-corner img {
	filter:brightness(0) invert(1);
	width: auto;
	transition: all 0.5s;
}
.service-pos a {
	color:#101010;
}
.service-pos .border-bottom,
.case-pos .border-bottom {
	border-bottom-color: rgb(187, 187, 187,0.3) !important;
}
.case-pos:hover h3 a {
	color:#5F0683;
}
.box-pos {
	transition: all 0.5s;
}
.box-pos:hover {
	background-color: #fff;
}
.box-pos--icon-wrapper {
	width: 116px;
	height: 116px;
	border:8px solid #efecf0;
}
#features_others .box-pos:hover {
	background-color: transparent;
}

/* 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::before {
	content:"";
	position: absolute;
	left: -5px;
	top:-100px;
	height: 100px;
	width: calc(100% + 10px);
	background: rgb(233,233,233);
	background: linear-gradient(0deg, rgba(255,255,255,1) 20%, rgba(255,255,255,0) 100%);
}
.bg-grey .accordions-readmore-wrapper .accordion-read-more .accordion-button.read-more-btn::before {
	content:"";
	position: absolute;
	left: -5px;
	top:-100px;
	height: 100px;
	width: calc(100% + 10px);
	background: rgb(237, 235, 240);
	background: linear-gradient(0deg, rgba(237, 235, 240, 1) 20%, rgba(237, 235, 240, 0) 100%);
}

.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;
	
	transition: all 0.5s;
}

.accordions-readmore-wrapper .accordion-read-more .accordion-button span.accordion-show::after{
	transition: all 0.5s;
}
.accordions-readmore-wrapper .accordion-read-more .accordion-button span.accordion-hide::after{
	transition: all 0.5s;
}

.accordions-readmore-wrapper .accordion-read-more .accordion-button span:hover{
	color:#000;
}
.dark .accordions-readmore-wrapper .accordion-read-more .accordion-button span:hover{
	color:#fff !important;
	padding-left: 0;
}

/* /Accordion readmore */

.counter-pill {
	width: 55px;
	height: 55px;
	min-width: 55px;
	min-height: 55px;
	border:5px solid #e1dfe4;
}
.team-fx--data {
	bottom:0;
	right:0;
}
.text-19 {
	font-size: 19px;
	line-height: 24px;
}
.text-navy {
	color:#5F0683;
}


#cases {
	overflow-x: hidden;
}
#cases:before {
	content: "";
	position: absolute;
	bottom: 0;
	left: -50%;
	width: 200%;
	border-top-left-radius: 100%;
	border-top-right-radius: 100%;
	border-bottom-left-radius: 100%;
	border-bottom-right-radius: 100%;
	display: block;
	height:100%;
	top: 0;
	background-color: #dfdfdf;
	background-position: top center;
	background-repeat: no-repeat;
	background-size: 50%;
	background-image: url(../img/bg-cases.webp);
}
@media only screen and (max-width : 991px) {
	#cases:before {
		left: -150%;
		width: 400%;
		opacity: 0.5;
		border-top-left-radius: 70%;
		border-top-right-radius: 70%;
		border-bottom-left-radius: 70%;
		border-bottom-right-radius: 70%;

	}
}
.case-pos--title h3 a {
	color:#101010;
}
.case-pos--details-pos span {
	position:relative;
	display:block;
	background-image: url(../img/bg-line-small.webp);
	background-repeat: no-repeat;
	background-position: left center;
	padding-left: 40px;
	margin-top: 5px;
}
.slider-item:hover .case-pos .bg-white-hover {
	background-color: rgba(255, 255, 255, 1);
	transition: all 0.5s;
}
/* Element single post box */
.post-box h3  {
	line-height: 26px !important;
	font-weight: 600;
}
.post-box h3 a {
	font-size: 22px;
	color:#101010;
}
.post-box:hover h3 a {
	color:#59067d;
}
.box-img {
	width: 100%;
	height: 300px;
	position: relative;
}

.box-img img {
	width: 100%;
	height: 300px;
	object-fit: cover;
}
.post-box--date {
	font-weight: 600;
	font-size: 15px;
}
.post-box--link {
	font-size: 13px;
	font-weight: 700;
	color:#59067d;
}
/* /Element single post box */
.knowledge-pos {
	background-image: url(../img/icon-book.webp);
	background-repeat: no-repeat;
	background-position: left center;
	padding-left: 30px;
}
.knowledge-pos--title a {
	color:#101010;
	font-weight: 600;
}

footer {
	overflow-x: hidden;
	position: relative;
}
footer:before {
	content: "";
	position: absolute;
	bottom: 0;
	left: -50%;
	width: 200%;
	border-top-left-radius: 100%;
	border-top-right-radius: 100%;
	display: block;
	height:100%;
	top: 0;
	background-color: #edebf0;
	background-position: top center;
	background-repeat: no-repeat;
	background-size: 50%;
	background-image: url(../img/bg-footer.webp);
}
@media only screen and (max-width : 991px) {
	footer:before {
		left: -150%;
		width: 400%;
		border-top-left-radius: 70%;
		border-top-right-radius: 70%;
	}
}
.knowledge-pos--title:hover a {
	color:#5F0683;
}
.footer-menus a {
	color:#101010;
	font-weight: 600;
	display: block;
}
.footer-menus a:hover {
	color:#5F0683;
	font-weight: 600;
}
.footer-menus .menu {
	padding-left: 0;
	list-style-type: none;
}
.footer-menus .menu li {
	padding-top:5px;
	padding-bottom:5px;
}
.copyrights {
	font-size: 13px;
}
.copyrights a {
	color:#101010;
}
.team-name a {
	color:#101010;
}
.team-pos:hover a {
	color:#5F0683;
}
#flying-contact {
	position: fixed;
	bottom: -115px;
	right: 15px;
	width: 50px;
	height: 50px;
	background-color: rgb(95, 6, 131);
	text-align: center;
	line-height: 50px;
	border-radius: 25px;
	padding:0;
	transition: all 0.5s;
}
#flying-contact.sticky {
	bottom: 15px;
}
.single-usluga #flying-contact {
	display: none;
}
.pulse {
	animation: pulse-animation 2s infinite;
 }
 
 @keyframes pulse-animation {
	0% {
	  box-shadow: 0 0 0 0px rgba(95, 6, 131, 0.7);
	}
	100% {
	  box-shadow: 0 0 0 10px rgba(95, 6, 131, 0);
	}
 }
 .bounce {
	animation: bounce 2s ease infinite;
 }
 @keyframes bounce {
	 0%, 20%, 50%, 80%, 100% {transform: translateY(0);}
	 40% {transform: translateY(-20px);}
	 60% {transform: translateY(-15px);}
 }
#title {
	position: relative;
	overflow-x: hidden;
	overflow-y: visible;
}
 #title:before {
	content: "";
	position: absolute;
	bottom: 0;
	/* Offset the ellipse left-ward by some amount */
	left: -50%;
	/* Set width percentage to exceed the parent width, plus twice the offset amount */
	width: 200%;
	border-bottom-left-radius: 100%;
	border-bottom-right-radius: 100%;
	display: block;
	height:100%;
	top: 0;
	background-color: #edebf0;
	background-repeat: no-repeat;
}
.page-template-page-contact #title:before {
	background-image: url(../img/bg-contact.webp);
	background-position: center;
}
.blog #title:before,
.archive #title:before {
	background-image: url(../img/bg-blog.webp);
	background-position: center;
}
.page-template-page-aboutus #title:before,
.single-wiedza #title:before,
.single-post #title:before {
	background-image: url(../img/bg-aboutus.webp);
	background-position: center;
}
.breadcrumbs a {
	color:#101010;
	font-weight: 700;
}
.breadcrumbs span {
	margin-left: 2px;
	margin-right: 2px;
}

.value-text {
	font-size: 26px;
	color:#5F0683;
	font-weight: 700;
}
.features .px-4:first-of-type {
	padding-left: 12px !important;
}
.feature-pos.border-end {
	border-right-color: #9ca1a7 !important;
}
.features .feature-pos:last-of-type {
	border-right:0 !important;
}
.searchandfilter-filters ul {
	padding: 0;
}
.searchandfilter-filters ul li ul li {
	display: inline-block;
	background-color: #8e9296;
	color:#fff;
	font-weight: 600;
	padding:15px 25px;
	border-radius: 25px;
	margin-right: 5px;
	margin-bottom: 5px;
}
.searchandfilter-filters ul li ul li:hover,
.searchandfilter-filters ul li ul li.sf-option-active {
	background-color: #5F0683;
}
.searchandfilter-filters ul li ul li input {
	display: none;
}
.searchandfilter-filters ul li ul li label {
	padding-left: 0 !important;
	cursor: pointer;
}
.post-type-archive-case #title::before,
.error404 #title::before {
	display: none;
}

.post-type-archive-case footer.mt-5,
.error404 footer.mt-5 {
	margin-top:0 !important;
}
.post-type-archive-case .bg-grey,
.error404 .bg-grey,
.post-type-archive-case footer,
.error404 footer {
	background-color: #dfdfdf;
}

#case-archive {
	background-image: url(../img/bg-archive-case.webp);
	background-position: top right;
	background-repeat: no-repeat;
}
.contact-pos .icon {
	background-color: #5F0683;
	width: 64px;
	height:64px;
	border: 7px solid #f6f2f7;
}
.contact-pos-wrapper-sm .contact-pos .icon {
	background-color: rgb(95, 6, 131);
	width: 45px;
	height:45px;
	border: 4px solid #f6f2f7;
}
.contact-pos a {
	color:#101010;
}
.search-box:hover {
	background-color: #edebf0;
}
.page-numbers {
	color:#fff;
	font-size: 13px;
	font-weight: 700;
	display: inline-block;
	width:40px;
	height:40px;
	background-color: #8e9296;
	border: 5px solid #f9f9fa;
	text-align: center;
	line-height: 30px;
	border-radius: 30px;
}
.page-numbers.current,
.page-numbers:hover {
	background-color: #5F0683;
	border: 5px solid #eadfef;
}
.cursor-pointer {
	cursor: pointer;
}
.post-type-archive-wiedza {
	background-image: url(../img/bg-knowledge.webp);
	background-repeat: no-repeat;
}
.accordion-item {
	border: none;
	margin-bottom:2px;
	border-radius: 15px !important;
}
.accordion-header {
	border-radius: 15px !important;
}
.accordion-button {
	background-color: #edebf0;
	font-size:16px;
	font-weight: 700;
	border-radius: 15px;
}
.accordion-button:hover,
.accordion-button:not(.collapsed) {
	background-color: #fff;
	color:#101010;
}
.accordion-button:focus {
	box-shadow: none;
	border-color: rgba(0,0,0,.125);
}
.taxonomy-pos:hover {
	transition: all 0.5s;
	-webkit-box-shadow: 0px 0px 20px -1px rgb(95, 6, 131, 0.4);
	-moz-box-shadow: 0px 0px 20px -1px rgb(95, 6, 131, 0.4);
	box-shadow: 0px 0px 20px -1px rgb(95, 6, 131, 0.4);
}
.single-info--content h2 {
	font-size:28px !important;
	margin-top: 34px;
}
.cta-section {
	background-image: url(../img/bg-cta-incontent.webp);
	background-repeat: no-repeat;
	background-position: center right;
}
.author .featured-img img {
	width: 150px;
	height:auto;
}
.procedure--desc a {
	color:#5F0683;
}
.bg-cta-bottom {
	position: absolute;
	left: -150px;
	bottom:-50px;
	background-image: url(../img/bg-cta-bottom.webp);
	width: 544px;
	height:544px;
	z-index: -1;
}
@media only screen and (max-width : 991px) {
	.bg-cta-bottom {
		max-width: 90%;
		height: auto;
	}
}
.contact-pos p {
	margin-bottom: 0;
}
.creo-footer-address {
	line-height: 31px;
}
#cta-fixed {
	position: fixed;
	bottom: 7px;
	width: 100%;
	z-index: 9999;
}
#cta-fixed .bg-grey {
	background-image: url(../img/bg-cta-fixed.webp);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
}
#cta-fixed .text-navy a {
	color:#5f0683;
}
#cta-fixed img {
	height: 120px;
}

#cta-fixed .tel {
	font-size: 27px;
}
@media only screen and (max-width : 991px) { 
	#cta-fixed img {
		height: 75px;
	}
	#cta-fixed .tel {
		font-size: 20px;
	}
	#cta-fixed .job {
		display: none;
	}
	#cta-fixed .btn-default-big {
		padding:15px 40px;
		letter-spacing: 0.1em;
	}
}
.cky-btn {
	border-radius: 25px !important;
}
/* ============================================= */
/* 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) { 

	.fixed-top.navbar-light .navbar-nav .nav-link {
		padding-top:8px;
		padding-bottom:8px;
	}
	.navbar-dark .navbar-nav .nav-link {
		padding-top:10px;
		padding-bottom:10px;
	}
	.navbar {
		padding-top:8px !important;
		padding-bottom:8px !important;
	}
	.navbar-brand img {
		width: 120px; 
		height: auto;
	}

}

/* 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) {
}