/*
Embed fonts families:
-------------------
// <weight>: Use a value from 200 to 800
// <uniquifier>: Use a unique and descriptive class name

.fustat-<uniquifier> {
  font-family: "Fustat", 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: "Fustat", sans-serif;
  	font-optical-sizing: auto;
	font-style: normal;
	font-size: 17px;
	line-height: 24px;
	font-weight: 300;
	background-color: #f0e9e1;
}
.font-weight-400 {
	font-weight: 400;
}

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;
	color:#000000;
}
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-family: "Fustat", sans-serif;
}
h1 {
	font-size: 60px;
	font-weight: 700;
}
h2 {
	font-size: 50px;
	line-height: 55px;
	font-weight: 700;
}
h2 em {
	color:#63492b;
	font-family: "Fustat", sans-serif;
	font-weight: 400;
  	font-style: italic;
	margin-left: 5px;
}
h3 {
	font-size: 35px;
	font-weight: 700;
}
.modal-body h3 {
	font-size: 22px;
	font-weight: 700;
}
h3.line-end {
	font-size: 35px;
	font-weight: 700;
}
h4 {
	font-size: 22px;
	font-weight: 700;
}
h5 {
	font-size: 20px;
	font-weight: 700;
}
h6 {
	font-size: 16px;
}
header:not(.main) p {
	font-weight: 500;
}
header:not(.main) span {
	text-transform: uppercase;
	position: relative;
	padding-left: 50px;
}
header:not(.main) span:before {
	content:"";
	position: absolute;
	left: 0;
	top:0;
	background-image: url(../img/header-above-gfx.webp);
	background-repeat: no-repeat;
	background-position: left center;
	width: 30px;
	height: 17px;
}
@media only screen and (max-width : 991px) { 
	h1 {
		font-size: 40px;
		font-weight: 700;
	}
	h2 {
		font-size: 35px;
		line-height: 40px;
		font-weight: 700;
	}
	h2 em {
		color:#63492b;
		font-family: "Fustat", sans-serif;
		font-weight: 400;
		font-style: italic;
		margin-left: 5px;
	}
	h3 {
		font-size: 26px;
		font-weight: 700;
	}
	h3.line-end {
		font-size: 26px;
		font-weight: 700;
	}
	h4 {
		font-size: 22px;
		font-weight: 700;
	}
	h5 {
		font-size: 20px;
		font-weight: 700;
	}
	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,
.ms-btn {
	background-color: #63492b;
	border:1px solid #63492b;
	border-radius: 50px;
	font-weight: 700;
	font-size: 15px;
	color: #fff;
	letter-spacing: 0.04em;
	padding:15px 30px !important;
	line-height: 15px !important;
	transition: all 0.5s;
}
.btn-default:hover,
.btn-default:focus,
.btn-default:active {
	background-color:#533d23;
	color: #fff;
}
.btn-default.btn-search {
	border-top-left-radius: 0;
	border-bottom-left-radius: 0;
	padding-top: 18px !important;
	padding-bottom: 18px !important;
}
.btn-text {
	color:#63492b;
	font-weight: 700;
	font-size: 14px;
	letter-spacing: 0.04em;
}
.btn-text:hover,
.btn-text:focus,
.btn-text:active {
	color: #49341c;
}
.btn-black {
	background-color: #000;
	border:1px solid #000;
	border-radius: 50px;
	font-weight: 700;
	font-size: 15px;
	color: #fff;
	letter-spacing: 0.04em;
	padding:15px 30px !important;
	line-height: 15px !important;
	transition: all 0.5s;
}
.btn-black:hover,
.btn-black:focus,
.btn-black:active {
	background-color:#63492b;
	color: #fff;
}
.cn-button.bootstrap {
	background-color: #63492b !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: #63492b; /* WebKit/Blink Browsers */
	color:#fff;
}
::-moz-selection {
	background: #63492b; /* 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: 335px;
	position: relative;
}
.post-box--img img {
	width: 100%;
	height: 335px;
	object-fit: cover;
}
.post-box--date {
	font-size: 14px;
	color:rgb(0, 0, 0, 0.5);
}
/* /Element single post box */
/* Element single post box */
.gallery-box--img {
	width: 100%;
	height:200px;
	position: relative;
}
.gallery-box--img img {
	width: 100%;
	height: 200px;
	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: transparent;
	color: #303338;
	border-radius: 10px;
	border:1px solid #b4baba;
	padding: 13px 15px;
	font-size: 15px;
	width: 100% !important;
	color:#101010;
	margin-left: -15px;
	margin-top: 10px;
}

.wpcf7 label {
	width: 100%;
	padding-left: 20px;
	font-weight: 500;
}

.wpcf7 input:focus,
.wpcf7 textarea:focus,
.wpcf7-select:focus {
	background-color: #fff;
	color: #303338;
	box-shadow: none;
	outline: 0 none;
}
.wpcf7-form select {
	padding: 0px;
	line-height: 40px;
}
.wpcf7-list-item {
	display: block;
}

.wpcf7-list-item-label {
	color:#101010; 
	font-size: 14px;
	margin-left: 20px;
}

.wpcf7-list-item-label a {
	color:#101010; 
}

.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: #63492b !important;
	border:1px solid #63492b !important;
	border-radius: 10px;
	font-weight: 600;
	font-size: 15px;
	color: #fff;
	font-family: "Fustat", sans-serif;
	text-transform:lowercase;
	padding:10px 25px;
	transition: all 0.5s;
	margin-left: 5px;
}
.wpcf7-form.submitting .wpcf7-submit,
.wpcf7-form.invalid .wpcf7-submit {
	color: #fff !important;
}

.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)                         */
/* ============================================= */

.bg-white {
	background-color: rgba(255,255,255,0.7) !important;
	transition: all linear 0.3s;
}
.bg-white-100 {
	background-color: rgba(255,255,255,1);
}
.bg-glass {
	backdrop-filter: blur(10px);
	transition: all linear 0.3s;
}

.navbar {
	font-family: "Fustat", sans-serif;
	padding-top: 0;
	padding-bottom: 0;
	margin-top: 15px;
	transition: all 0.5s;
}
.sticky.navbar {
	margin-top:0px;
	background-color: rgba(255,255,255,0.7) !important;
	backdrop-filter: blur(10px);
	border-radius: 0.375rem;
}
.sticky.navbar .bg-glass,
.sticky.navbar .bg-white {
	backdrop-filter: none;
	background-color: transparent !important;
	transition: all linear 0.3s;
}
.navbar-brand {
	padding-bottom: 0;
	padding-top: 0;
}
.navbar-brand img {
	transition: all linear 0.3s;
	width: 266px; 
}
.sticky .navbar-brand img {
	width: 150px; 
}

.navbar-szulim .navbar-nav .nav-link,
.navbar-szulim .navbar-nav .nav-link.active {
	color: #101010;
	letter-spacing: 0.04em;
	font-weight: 700;
	font-size: 15px;
	padding:15px 20px;
	transition: all 0.5s;
	margin-top: 4px;
	margin-bottom: 4px;
}

.navbar-szulim .navbar-nav .nav-link.active {
	color: #63492b;
	letter-spacing: 0.04em;
	font-weight: 700;
	font-size: 15px;
	padding:15px 20px;
	transition: all 0.5s;
	margin-top: 4px;
	margin-bottom: 4px;
}

@media only screen and (max-width : 1421px) {
	#contact-menu {
		position: absolute;
		right:10px;
		top:92px;
	}
	.sticky #contact-menu {
		top:72px;
		background-color: rgba(255,255,255,0.7) !important;
	}
}
@media only screen and (max-width : 1350px) {
	.navbar-expand-lg .navbar-nav .nav-link {
		padding-left: 12px;
		padding-right: 12px; 
	}
	.navbar-nav {
		border-radius: 25px !important;
	}
}
@media only screen and (max-width : 1040px) {
	.navbar-expand-lg .navbar-nav .nav-link {
		padding-left: 10px;
		padding-right: 10px; 
	}
}
.navbar-szulim .navbar-nav .nav-link:hover,
.navbar-szulim .navbar-nav .nav-link:focus,
.navbar-szulim .navbar-nav .show > .nav-link,
.navbar-szulim .navbar-nav .nav-link.show {
	color: #63492b;
	transition: all 0.5s;
}
.navbar-szulim .navbar-nav .current-menu-item .active > .nav-link,
.navbar-szulim .navbar-nav .current-menu-item .nav-link.active {
	color: #63492b;
}
.navbar-toggler {
	border-radius: 5px;
	transition: all 0.5s;
	background-color: #63492b;
	 border:0;
}
.navbar-toggler:focus,
.navbar-toggler:active,
.navbar-toggler-icon:focus {
    outline: none;
    box-shadow: none;
}
.navbar-toggler span {
	display: block;
	background-color: rgba(255,255,255,1);
	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%);*/
}

.navbar .contact a.nav-link {
	color: #fff;
	background-color: #000;
	border-radius: 35px;
	padding:0 !important;
}
.navbar .contact a.nav-link span {
	display: inline-block;
	padding:15px 20px;
}
.navbar .contact a.nav-link:hover {
	color: #fff;
	background-color: #63492b;
	border-radius: 35px;
}


.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:#63492b;
	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: #63492b;
}
.dropdown-item.active {
	background-color: transparent;
	color:#63492b !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: 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;
}
@media only screen and (max-width : 991px) { 
	.acf-map h2 {
		font-size: 24px;
	}
}
/* fixes potential theme css conflict */
.acf-map img {
	max-width: inherit !important;
}
.gm-style iframe + div { border:none!important; }

/* ============================================= */
/* 5. Theme styles                               */
/* ============================================= */
#banner {
	min-height: 900px;
	height: 900px;
	border-bottom-left-radius: 150px;
	border-bottom-right-radius: 150px;
	overflow: hidden;
}
@media only screen and (max-width : 991px) { 
	#banner {
		min-height: 90vh;
		height: 90vh;
		border-bottom-left-radius: 50px;
		border-bottom-right-radius: 50px;
		overflow: hidden;
	}
}

/* Tiny Slider Banner */


.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;
}
.logos-slider-container .slider-controls {
	left: 100px;
	right: 100px;
	z-index: 40;
}
.logos-slider-container .slider-item {
	padding: 0;
}
.arrow {
	height: 18px;
	width: 40px;
	background-image: url(../img/arrows.webp);
	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: #63492b;
	border:0;
	margin: auto 5px;
	border-radius: 50%;
	width: 12px;
	height: 12px;
}
/* /Tiny Slider Banner */

@media only screen and (min-width : 768px) { 
	#banner .bg-white {
		background-color: transparent !important;
	}
	#banner .bg-glass {
		backdrop-filter: blur(0);
	}
	#banner .p-4 {
		padding:0 !important;
	}
}
.ms-layer h2 {
	font-size: 60px;
	line-height: 70px;
	font-weight: 700;
	color:#000;
}
.ms-layer {
	font-size: 40px;
	line-height: 50px;
	font-weight: 600;
	color:#000;
}
.ms-layer em {
	font-size: 15px;
	color:#63492b;
	font-family: "Fustat", sans-serif;
	font-weight: 700;
	font-style: normal;
	padding-left: 50px;
	position: relative;
}
.ms-layer em:before {
	content:"";
	position: absolute;
	left: 0;
	top:0;
	background-image: url(../img/header-above-gfx.webp);
	background-repeat: no-repeat;
	background-position: left center;
	width: 30px;
	height: 17px;
}
.ms-layer.bg-white {
	width:76%;
}
@media only screen and (max-width : 991px) { 
	.ms-layer {
		font-size: 20px !important;
		line-height: 40px;
	}
	.ms-layer h2 {
		font-size: 30px;
		line-height: 36px;
		font-weight: 700;
		color:#000;
	}
}
.bg-fx-04 {
	top:-250px;
	left: 0px;
	max-width: 100%;
}

.bg-fx-05 {
	top:0px;
	right: 0px;
	max-width: 100%;
}
.bg-fx-06 {
	top:0px;
	right: 0px;
	max-width: 100%;
}
.bg-fx-07 {
	top:150px;
	right: 0px;
	max-width: 100%;
}
.bg-fx-08 {
	top:50%;
	left: 0px;
	max-width: 100%;
}
.bg-fx-08 {
	top:50%;
	left: 0px;
	max-width: 100%;
}
.bg-fx-08 {
	top:50%;
	left: 0px;
	max-width: 100%;
}
.bg-fx-09 {
	top:0;
	left: 0px;
	max-width: 100%;
}
.bg-fx-10 {
	top:-100px;
	left: 0px;
	max-width: 100%;
}
.bg-fx-11 {
	top:0px;
	right: 0px;
	max-width: 100%;
}
.bg-fx-12 {
	top:0px;
	right: 0px;
	max-width: 100%;
}
.bg-fx-13 {
	top:100px;
	right: 0px;
	max-width: 100%;
}
.bg-fx-14 {
	bottom:0px;
	left: 0px;
	max-width: 100%;
}
.bg-fx-15 {
	bottom:100px;
	right: 0px;
	max-width: 100%;
}
@media only screen and (max-width : 991px) { 
	.bg-fx-04 {
		top:-80px;
		left: 0px;
		max-width: 60%;
	}
	.bg-fx-05 {
		top:0px;
		right: 0px;
		max-width: 30%;
	}
}
.bg-animation {
	transition: all 0.5s;
}
.bg-shadow,
.bg-shadow-hover:hover {
	-webkit-box-shadow: 0px 0px 35px -1px rgba(96,140,169,0.15);
	-moz-box-shadow: 0px 0px 35px -1px rgba(96,140,169,0.15);
	box-shadow: 0px 0px 35px -1px rgba(96,140,169,0.15);
}
.bg-white-hover:hover {
	background-color: rgba(255,255,255,0.6);
	
}
.text-14 {
	font-size: 14px;
	line-height: 16px;
}
.text-15 {
	font-size: 15px;
	line-height: 18px;
}
.text-semibold {
	font-weight: 600;
}
.text-brown {
	color:#63492b;
}
.text-40 {
	font-size: 40px;
	font-weight: 600;
	line-height: 50px;
	text-wrap: stable;
}

.text-40 h2 {
	font-size: 40px;
	font-weight: 600;
	line-height: 50px;
}
.font-em em {
	font-family: "Fustat", sans-serif;
	font-weight: 400;
	font-style: italic;
	color:#63492b;
}
.text-40.font-em em {
	font-size: 52px;
	line-height: 65px;
}
.text-20 {
	font-size: 20px;
	line-height: 28px;
}
.text-strong {
	font-weight: 700;
}

.cursor-pointer {
	cursor: pointer;
}

/* 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(230, 237, 239);
	background: linear-gradient(0deg, rgba(240, 233, 225,1) 20%, rgba(240, 233, 225,0) 100%);
}
.page-template-page-aboutus .accordions-readmore-wrapper .accordion-read-more .accordion-button.read-more-btn::before,
.tax-kategoria-uslug .accordions-readmore-wrapper .accordion-read-more .accordion-button.read-more-btn::before,
.single-usluga .accordions-readmore-wrapper .accordion-read-more .accordion-button.read-more-btn::before,
.single-specjalista .accordions-readmore-wrapper .accordion-read-more .accordion-button.read-more-btn::before {
	display:none;
}
.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 */


.otgs-development-site-front-end {
	display: none;
}

.welcome-desc--imgs .absolute {
	left:-100px;
	bottom:5%;
}
.foto-desc--imgs .absolute {
	left:-100px;
	bottom:-5%;
}
.bg-line {
	background-image: url(../img/bg-line.webp);
	background-repeat: repeat-x;
	background-position: center;
}

.bg-line h3 {
	background-color: #f0e9e1;
	display: inline-block;
	padding-right: 40px;
}
@media only screen and (max-width : 991px) { 
	.bg-line {
		background-image: none;
	}
	.bg-line h3 {
		background-color: transparent;
		display: inline-block;
		padding-right: 0;
	}
}
.service {
	background-position: top right;
}
.service:hover {
	background-color: #f9f6f3;
	background-image: url(../img/bg-service-hover.webp);
	background-repeat: no-repeat;
	background-position: top right;
	transition: all 0.5s;
}
.service h4 {
	border-bottom: 1px solid transparent;
}
.service:hover h4 {
	border-bottom: 1px solid rgb(99, 73, 43, 0.18);
}
blockquote {
	color: #63492b;
	font-weight: 700;
	background-image: url(../img/bg-blockquote.webp);
	background-repeat: no-repeat;
	background-position: 20px 0px;
	padding-left: 80px;
	margin-top: 50px;
}
.process-step .icon {
	background-image: url(../img/bg-process-step.webp);
	background-repeat: no-repeat;
	height: 95px;
	width:95px;
}
footer {
	font-size: 14px;
}
.copyrights ul {
	padding: 0;
	margin: 0;
	list-style: none;
}
.copyrights ul li {
	float:left;
	padding-right: 10px;
	margin-right: 10px;
	border-right: 1px solid rgb(0, 0, 0, 0.4);
}
.copyrights ul li a:hover {
	text-decoration: underline;
}
.copyrights ul li:last-of-type {
	float:left;
	padding-right: 0px;
	margin-right: 0px;
	border-right:0;
}
.border-bottom {
	border-bottom-color: rgb(0, 0, 0, 0.2) !important;
}
  body[data-aos-duration='3500'] [data-aos],
  [data-aos][data-aos][data-aos-duration='3500'] {
    transition-duration: 3500ms;
  }

footer .modal-body {
	font-size: 16px;
}
/* ============================================= */
/* 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) { 

	.navbar-szulim .navbar-nav .nav-link {
		padding-top:10px;
		padding-bottom:10px;
		font-size: 16px;
	}
	.navbar {
		padding-top:8px !important;
		padding-bottom:8px !important;
	}
	.navbar-brand img {
		width:200px; 
		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) {
}