/*
Embed fonts families:
-------------------
font-family: "proxima-nova", sans-serif;
font-weight: 800;
font-style: normal;

possible weights:
-------------------
Open Sans: 400;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: "proxima-nova", sans-serif;
	font-style: normal;
	font-weight: 400;
	font-size: 16px;
}

body.admin-bar .navbar.fixed-top {
	margin-top: 32px;
}
html {
	scroll-behavior:smooth;
	font-display: swap
}
strong {
	font-weight: 800;
}
/* 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
}
.bg-glass {
	backdrop-filter: blur(10px);
	transition: all linear 0.3s;
}
.bg-grey {
	background-color: #f4f4f4;
}
.bg-grey-img {
	background-image: url(../img/bg-grey-img.webp);
	background-repeat: no-repeat;
	background-position: right bottom;
}

/* /Links */

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

/* Theme repeated styles */
.bg-yellow {
	background: #FFCC00;
	background: linear-gradient(130deg,rgba(255, 204, 0, 1) 0%, rgba(255, 221, 0, 1) 100%);
}
.bg-yellow-2 {
	background: #FFCC00;
	background: linear-gradient(320deg,rgba(255, 204, 0, 1) 0%, rgba(255, 221, 0, 1) 100%);
}
.btn-cta {
	border-radius: 100px;
	transition: all 0.5s;
}
.btn-cta .swith img {
	transition: all 0.5s;
}
.btn-cta:hover .swith img {
	margin-left: 20px;
}
.swith {
	background-color: #ebcc00;
	border-radius: 100px;
	width:58px;
}
.btn-cta .icon {
	background-color: #fff;
	border-radius: 50%;
	width: 55px;
	height: 55px;
	min-width: 55px;
	text-align: center;
	-webkit-box-shadow: 0px 0px 2px 0px rgba(0,0,0,0.1);
	-moz-box-shadow: 0px 0px 2px 0px rgba(0,0,0,0.1);
	box-shadow: 0px 0px 2px 0px rgba(0,0,0,0.1);
}
.btn-cta:hover .icon {
	background-color: #000;
	-webkit-box-shadow: 0px 0px 10px 0px rgba(255, 221, 0, 1);
	-moz-box-shadow: 0px 0px 10px 0px rgba(255, 221, 0, 1);
	box-shadow: 0px 0px 10px 0px rgba(255, 221, 0, 1);
}
.btn-cta:hover .icon lord-icon {
	filter: invert(69%) sepia(88%) saturate(510%) hue-rotate(357deg) brightness(101%) contrast(108%);
}
.btn-cta-2 {
	overflow: hidden;
}

.bg-2 {
	transition: all 0.5s;
	border-radius: 100px;
	background: #FFCC00;
	background: linear-gradient(130deg,rgba(255, 204, 0, 1) 0%, rgba(255, 221, 0, 1) 100%);
	-webkit-box-shadow: 0px 0px 3px 3px rgba(255,255,255,0.6);
	-moz-box-shadow: 0px 0px 3px 3px rgba(255,255,255,0.6);
	box-shadow: 0px 0px 3px 3px rgba(255,255,255,0.6);
	
}
.btn-cta:hover .bg-2 {
	background: #000;
	color:#fff;
	transition: all 0.5s;
}
.btn-cta:hover .bg-2 strong {
	color:#fff !important;
	filter:brightness(100);
	transition: all 0.5s;
}
.btn-cta-3 {
	font-size: 24px;
	line-height: 28px;
}
@media only screen and (max-width : 480px) {
	.btn-cta-3 {
		font-size: 20px;
		line-height: 24px;
	}
}
.btn-cta-3 .swith {
	width:90px;
}
.btn-cta-3 .bg {
	width: 100%;
	transition: all 0.5s;
	border-radius: 100px;
	background: #FFCC00;
	background: linear-gradient(130deg,rgba(255, 221, 0, 1) 0%, rgba(255, 204, 0, 1) 100%);
	-webkit-box-shadow: 0px 0px 3px 3px rgba(255,255,255,0.6);
	-moz-box-shadow: 0px 0px 3px 3px rgba(255,255,255,0.6);
	box-shadow: 0px 0px 3px 3px rgba(255,255,255,0.6);
	
}
.font-weight-800 {
	font-weight:800;
}
.font-size-40 {
	font-size: 40px;
	line-height: 44px;
}
.font-size-30 {
	font-size: 30px;
	line-height: 34px;
}
.font-size-26 {
	font-size: 26px;
	line-height: 30px;
}
.font-size-24 {
	font-size: 24px;
	line-height: 28px;
}
.font-size-20 {
	font-size: 20px;
	line-height: 24px;
}
.font-size-14 {
	font-size: 14px;
	line-height: 16px;
}
/* /Theme repeated styles */


/* Headers */
h1, h2, h3, h4, h5 {
	font-family: "proxima-nova", sans-serif;
	font-weight: 800;
}
h1 {
	font-size: 60px;
}
h1 strong {
	color:#FFCC00;
}
.bg-yellow h1 strong {
	color:#fff;
}
h2 {
	font-size: 45px;
}
h3 {
	font-size: 26px;
	margin-bottom: 28px;
}
h4 {
	font-size: 22px;
}
h5 {
	font-size: 18px;
}
h6 {
	font-size: 16px;
}
@media only screen and (max-width : 1440px) {
	h1 {
		font-size: 40px;
	}
}
@media only screen and (max-width : 768px) {
	h2 {
		font-size: 35px;
	}
	h3 {
		font-size: 24px;
		margin-bottom: 26px;
	}
}
/* /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: #FFCC00;
	border:1px solid #FFCC00;
	border-radius: 50px;
	font-size: 16px;
	font-weight: 800;
	color: #000;
	font-family: "proxima-nova", sans-serif;
	padding:15px 35px;
	transition: all 0.5s;
}
.btn-default:hover,
.btn-default:focus,
.btn-default:active {
	background-color:#FFCC00;
	color: #000;
	transition: all 0.5s;
}
.btn-black {
	background-color: #000;
	border:1px solid #000;
	border-radius: 50px;
	font-size: 16px;
	font-weight: 800;
	color: #fff;
	font-family: "proxima-nova", sans-serif;
	padding:15px 35px;
	transition: all 0.5s;
}
.btn-black:hover,
.btn-black:focus,
.btn-black:active {
	background-color:#2c2c2c;
	color: #fff;
	transition: all 0.5s;
}
.btn-readmore {
	background-color: transparent;
	border:0;
	border-radius: 10px;
	font-weight: 800;
	font-family: "proxima-nova", sans-serif;
	text-transform:lowercase;
	padding:0;
	transition: all 0.5s;
}
.btn-readmore:hover,
.btn-readmore:focus,
.btn-readmore:active {
	color: #ebcc00;
	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: #ebcc00 !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: #ebcc00; /* WebKit/Blink Browsers */
	color:#000;
}
::-moz-selection {
	background: #ebcc00; /* Gecko Browsers */
	color:#000;
}
/* /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: #000;
	border-radius: 25px;
	border:1px solid #fff;
	padding: 13px 30px;
	font-size: 15px;
	width: 100%;
}
@media only screen and (max-width : 480px) {
	.wpcf7 input[type="text"],
	.wpcf7 input[type="date"],
	.wpcf7 input[type="email"],
	.wpcf7 input[type="tel"],
	.wpcf7-select,
	.wpcf7 textarea{
		width: calc(100% - 30px);
	}
}
.wpcf7 label {
	width: 100%;
}
.wpcf7-select {
	height:51px;
	padding-left: 25px !important;
	padding-right: 25px !important;
	appearance: none;
	background-image: url(../img/select-arrow.webp);
	background-repeat: no-repeat;
	background-position: right 15px center;
}

.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:#000; 
	font-size: 14px;
	margin-left: 20px;
}

.wpcf7-list-item-label a {
	color:#000; 
	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: #000;
	border:1px solid #000;
	border-radius: 50px;
	font-size: 16px;
	font-weight: 800;
	color: #fff;
	font-family: "proxima-nova", sans-serif;
	padding:15px 35px;
	transition: all 0.5s;
}
.wpcf7-form.submitting .wpcf7-submit,
.wpcf7-form.invalid .wpcf7-submit {
	background-color: #000;
	border:1px solid #000;
	border-radius: 50px;
	font-size: 16px;
	font-weight: 800;
	color: #fff;
	font-family: "proxima-nova", sans-serif;
	padding:15px 35px;
	transition: all 0.5s;
}

.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 {
	font-family: "proxima-nova", sans-serif;
	background-color: transparent;
	transition: all linear 0.5s;
}

.navbar-collapse .navbar-nav  {
	background-color: #fff;
}

.sticky.navbar {
	-webkit-box-shadow: 0px 5px 5px 0px rgba(0,0,0,0.05);
	-moz-box-shadow: 0px 5px 5px 0px rgba(0,0,0,0.05);
	box-shadow: 0px 5px 5px 0px rgba(0,0,0,0.05);
	border-bottom-left-radius: 20px;
	border-bottom-right-radius: 20px;
	background-color: #fff;
}
.navbar-brand {
	padding-bottom: 0;
	padding-top: 0;
}
.navbar-brand img {
	transition: all linear 0.3s;
	width: 128px; 
}

.sticky .navbar-brand img {
	transition: all linear 0.3s;
	width: 80px; 
	margin-right: 48px;
}
@media only screen and (max-width : 550px) {
	.navbar-brand img {
		transition: all linear 0.3s;
		width: 80px; 
	}
	.sticky .navbar-brand img {
		margin-right: 0px;
	}
}
.navbar-light .navbar-nav .nav-link {
	color: #000;
	font-size: 16px;
	font-weight: 800;
	padding:17px 25px;
	transition: all 0.5s;
}

@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-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link:focus,
.navbar-light .navbar-nav .show > .nav-link,
.navbar-light .navbar-nav .nav-link.show {
	color: #ebcc00;
	transition: all 0.5s;
}
.navbar-light .navbar-nav .current-menu-item .active > .nav-link,
.navbar-light .navbar-nav .current-menu-item .nav-link.active {
	color: #ebcc00;
}
.navbar-toggler {
	border-radius: 50%;
	height: 53px;
	width: 53px;
	border:0;
	padding-left: 15px;
	transition: all 0.5s;
	background: #FFCC00;
	background: linear-gradient(94deg,rgba(255, 204, 0, 1) 0%, rgba(255, 221, 0, 1) 100%);
}
.navbar-toggler:focus,
.navbar-toggler:active,
.navbar-toggler-icon:focus {
    outline: none;
    box-shadow: none;
}
.navbar-toggler span {
	display: block;
	background-color: rgba(0,0,0,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%);*/
}
.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;
	border-radius: 15px;
	border-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: 16px;
	line-height: 35px;
	color: #fff;
	font-weight: 800;
	transition: all 0.5s;
}


.dropdown-menu li a.dropdown-item:hover {
	color:#ebcc00;
	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: #ebcc00;
}
.dropdown-item.active {
	background-color: transparent;
	color:#ebcc00 !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;
}
.btn-search {
	background-image: url(../img/icon-search.png);
	background-repeat: no-repeat;
	background-position: center;
	cursor: pointer;
	background-color: #000;
	border-radius: 50%;
	height:52px;
	width:52px;
	margin-top: -3px;
	margin-right: 2px;
	position: absolute;
}
.btn-search:hover,
.btn-search:active,
.btn-search:focus {
	background-color: #000;
}
#searchform .input-group {
	position: relative;
	background-color:#f4f4f4 !important;
	border-radius: 40px;
	line-height: 56px;
	height: 56px;
	padding:0;
	padding-left: 25px;
	-webkit-box-shadow: inset 3px 3px 20px -20px rgba(0, 0, 0, 1) !important;
	-moz-box-shadow: inset 3px 3px 20px -20px rgba(0, 0, 0, 1) !important;
	box-shadow: inset 3px 3px 20px -20px rgba(0, 0, 0, 1) !important;
}
.search-input {
	background-color:transparent !important;
	border:0;
}
#searchform .input-group:active,
#searchform .input-group:focus {
	-webkit-box-shadow: inset 3px 3px 24px -20px rgba(0, 0, 0, 1) !important;
	-moz-box-shadow: inset 3px 3px 24px -20px rgba(0, 0, 0, 1) !important;
	box-shadow: inset 3px 3px 24px -20px rgba(0, 0, 0, 1) !important;
}
/* /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;
	transform: translatey(-50%);
	display: flex;
	align-items: center;    
	justify-content: center;
}
.banner-slider-container .slider-controls {
	left: 30px;
    right: 30px;
    z-index: 40;
}
.banner-slider-container .slider-item {
	padding: 0;
}
.arrow {
	height: 26px;
	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: #ebcc00;
	border:0;
	margin: auto 5px;
	border-radius: 50%;
	width: 12px;
	height: 12px;
}
/* /Tiny Slider Banner */

#hero {
	margin-top: 105px;
}
#hero > .container-fluid > .row,
#goals > .container-fluid {
	background-image: url(../img/bg-hero.webp);
	background-size: cover;
	background-position: top;
}
#cases > .container-fluid {
	background-image: url(../img/bg-cases.webp);
	background-size: cover;
	background-position: top;
}

.container-fluid-margin {
	width: calc(100% - 50px);
}
@media only screen and (max-width : 1199px) {
	.container-fluid-margin {
		width: calc(100% - 25px);
	}
}
.bg-hero-img {
	width: 100%;
	height:100%;
	left: 0;
	top:0;
	background-repeat: no-repeat;
	background-position: right center;
}
.frame-caption {
	font-size: 20px;
	font-weight: 800;
	position: relative;
	padding-right: 60px;
	display: inline-block;
}
.frame-caption--gfx {
	border:3px solid #000;
	border-left: 0;
	height: calc(100% + 80px);
	top:-39px;
	width: 145px;
	right: 0px;
}
.frame-caption--gfx::before {
	content:"";
	width: 3px;
	height:15px;
	background-color: #000;
	position: absolute;
	top: 0;
	left: 0;
}
.frame-caption--gfx::after {
	content:"";
	width: 3px;
	height:15px;
	background-color: #000;
	position: absolute;
	bottom: 0;
	left: 0;
}

.hero-scroll {
	bottom:-1px;
	left: 50%;
	transform: translateX(-50%);
	text-align: center;
}
.hero-scroll img {
	width: 100px;
}

.btn-cta-2--1 {
	top:35%;
	left: 15%;
	position:absolute;
}
.btn-cta-2--2 {
	top:25%;
	left: 60%;
	position:absolute;
}
.btn-cta-2--3 {
	top:55%;
	left: 60%;
	position:absolute;
}
.btn-cta-2--4 {
	top:65%;
	left: 20%;
	position:absolute;
}
@media only screen and (min-width : 1255px) {
	.btn-cta-2--1 {
		top:35%;
		left: 15%;
	}
	.btn-cta-2--2 {
		top:25%;
		left: 60%;
	}
	.btn-cta-2--3 {
		top:50%;
		left: 60%;
	}
	.btn-cta-2--4 {
		top:65%;
		left: 20%;
	}
}
@media only screen and (max-width : 480px) {
	.bg-bulb {
		position: absolute;
	}
	.hero-bulb-right .btn-cta-2 {
		margin-top: 20px;
		top:unset !important;
		left: unset !important;
		position: relative !important;
	}
	.hero-bulb-right .btn-cta-2:last-of-type {
		margin-bottom: 40px;
	}
}
/* 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: url(../img/arrow-down.webp);
	transition: all 0.5s;
}
.accordions-readmore-wrapper .accordion-read-more .accordion-button span.accordion-hide::after{
	background-image: url(../img/arrow-up.webp);
	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 */

.bg-lights-1 {
	background-image: url(../img/bg-lights-1.webp);
	top:-150px;
	right: 0;
	height:100%;
	width: 100%;;
	background-repeat: no-repeat;
	background-position: top right;
}
@media only screen and (max-width : 768px) {
	.bg-lights-1 {
		top:-60px;
		background-size: 70%;
	}
}
.bg-lights-2 {
	background-image: url(../img/bg-lights-2.webp);
	top:-50px;
	right: 0;
	height:100%;
	min-height: 250px;
	width: 100%;
	background-repeat: no-repeat;
	background-position: top left;
	z-index:-1;
}
@media only screen and (max-width : 768px) {
	.bg-lights-2 {
		top:-60px;
		background-size: 70%;
	}
}
.bg-lights-3 {
	background-image: url(../img/bg-lights-3.webp);
	bottom:-150px;
	left: 0;
	height:605px;
	min-height: 250px;
	width: 100%;
	background-repeat: no-repeat;
	background-position: bottom left;
	z-index:-1;
}
footer .bg-lights-3 {
	bottom:-100px;
	left:-150px;
	width: calc(100% + 150px);
}
@media only screen and (max-width : 480px) {
	footer .bg-lights-3 {
		bottom:0;
	}
}
.box-white {
	height: 100%;
	-webkit-box-shadow: inset 3px 3px 24px -20px rgba(0, 0, 0, 1);
	-moz-box-shadow: inset 3px 3px 24px -20px rgba(0, 0, 0, 1);
	box-shadow: inset 3px 3px 24px -20px rgba(0, 0, 0, 1);
	transition: all 0.5s;
}
.box-white:hover {
	-webkit-box-shadow: inset 3px 3px 24px -15px rgba(0, 0, 0, 1);
	-moz-box-shadow: inset 3px 3px 24px -15px rgba(0, 0, 0, 1);
	box-shadow: inset 3px 3px 24px -15px rgba(0, 0, 0, 1);
}
.box-white:hover a {
	color:#ebcc00;
}
.box-white--foto img {
	-webkit-box-shadow: inset 3px 3px 24px -20px rgba(0, 0, 0, 1);
	-moz-box-shadow: inset 3px 3px 24px -20px rgba(0, 0, 0, 1);
	box-shadow: inset 3px 3px 24px -20px rgba(0, 0, 0, 1);
}
.box-grey {
	background-color: #f4f4f4;
	height: 100%;
	transition: all 0.5s;
}
.box-grey:hover {
	-webkit-box-shadow: inset 3px 3px 24px -20px rgba(0, 0, 0, 1);
	-moz-box-shadow: inset 3px 3px 24px -20px rgba(0, 0, 0, 1);
	box-shadow: inset 3px 3px 24px -20px rgba(0, 0, 0, 1);
}
.box-grey:hover a {
	color:#ebcc00;
}
@media only screen and (max-width : 480px) {
	.text-xs-white {
		color:#fff;
	}
}
.box-hover-yellow:hover {
	background: #FFCC00 !important;
	background: linear-gradient(130deg,rgba(255, 204, 0, 1) 0%, rgba(255, 221, 0, 1) 100%) !important;
	transition: all 0.5s;
}
.box-hover-yellow:hover a {
	color:#000;
}
.description .description--rows > .description--row:nth-child(even) .description--row-img .btn-cta {
	position: absolute;
	left:0;
	right:auto;
	bottom:40px;
}
.description .description--rows > .description--row:nth-child(odd) .description--row-img .btn-cta {
	position: absolute;
	right:0;
	bottom:40px;
}

#services {
	background-image: url(../img/bg-services-ribbon.webp);
	background-position: center center;
	background-repeat: no-repeat;
}
.single-case #services,
.single-usluga #services,
.single-cel #services {
	background-image: none;
}

#services .accordion .accordion-button,
#knowledge-faq .accordion .accordion-button {
	background-color: #f4f4f4;
	transition: all 0.5s;
	color:#000;
}
#knowledge-faq .accordion .accordion-button {
	font-size: 18px;
	font-weight: 800;
}
#services .accordion .accordion-item,
#knowledge-faq .accordion .accordion-item {
	border-bottom: 0;
	margin-bottom: 2px;
}
#services .service--count {
	background-color: #fff;
	width: 75px;
	height: 75px;
	min-width: 75px;
	color:#c6c6c6;
	border-radius: 100px;
	-webkit-box-shadow: inset 3px 3px 24px -22px rgba(0, 0, 0, 1);
	-moz-box-shadow: inset 3px 3px 24px -22px rgba(0, 0, 0, 1);
	box-shadow: inset 3px 3px 24px -22px rgba(0, 0, 0, 1);
	transition: all 0.5s;
}
#services .accordion-button:focus,
#knowledge-faq .accordion-button:focus {
    box-shadow: none;
    border-color: rgba(0,0,0,.125);
	 transition: all 0.5s;
}
#services .accordion-button:hover,
#services .accordion-button:not(.collapsed) {
	color:#000;
	background: #FFCC00;
	background: linear-gradient(130deg,rgba(255, 204, 0, 1) 0%, rgba(255, 221, 0, 1) 100%);
	transition: all 0.5s;
}
#knowledge-faq .accordion-button:hover {
	color:#000;
	background: #ebebeb;
}

#services .accordion-button::after,
#knowledge-faq .accordion-button::after {
	background-image: url(../img/arrow-down.webp) !important;
	background-size: 26px;
	width: 26px;
	height: 26px;
}
.bg-accordion-body {
	background-image: url(../img/bg-accordion-body.webp);
	top:0;
	left:0;
	width: 100%;
	height:100%;
}
.accordion-item {
	border-left: 0;
	background-color: transparent;
}
.bg-footer {
	background-image: url(../img/bg-footer.webp);
	background-repeat: no-repeat;
	background-position: bottom right;
}
.home-logo {
	width: 155px;
}
.footer-socials a:hover {
	color:#505050;
}
footer ul {
	padding:0;
	list-style-type: none;
}
footer ul li {
	padding:4px 0;
}
footer ul li a {
	
	font-weight: 800;
}
footer ul li:hover a {
	color:#fff;
}

#flying-contact {
	position: fixed;
	bottom: -115px;
	right: 15px;
	width: 53px;
	height: 53px;
	background-color: rgb(0, 0, 0);
	text-align: center;
	line-height: 50px;
	border-radius: 50%;
	padding:0;
	transition: all 0.5s;
}
#flying-contact.sticky {
	bottom: 15px;
}
.pulse {
	animation: pulse-animation 2s infinite;
 }
 
 @keyframes pulse-animation {
	0% {
	  box-shadow: 0 0 0 0px rgba(0, 0, 0, 0.7);
	}
	100% {
	  box-shadow: 0 0 0 10px rgba(0, 0, 0, 0);
	}
 }

.sf-field-taxonomy-kategoria-case ul {
	padding:0;
}
.sf-field-taxonomy-kategoria-case ul li {
	display: inline-block;
	cursor:pointer !important;
	background: #FFCC00;
	background: linear-gradient(130deg,rgba(255, 204, 0, 1) 0%, rgba(255, 221, 0, 1) 100%);
	margin-right: 10px;
	margin-bottom: 5px;
	color:#000;
	font-weight: 800;
	border-radius: 30px;
}
.sf-field-taxonomy-kategoria-case ul li:hover {
	-webkit-box-shadow: inset 3px 3px 24px -17px rgba(0, 0, 0, 1);
	-moz-box-shadow: inset 3px 3px 24px -17px rgba(0, 0, 0, 1);
	box-shadow: inset 3px 3px 24px -17px rgba(0, 0, 0, 1);
	transition: all 0.5s;
}

.sf-field-taxonomy-kategoria-case ul li.sf-option-active {
	background: #000;
	color:#fff;
	-webkit-box-shadow: inset 3px 3px 24px -17px rgba(0, 0, 0, 1);
	-moz-box-shadow: inset 3px 3px 24px -17px rgba(0, 0, 0, 1);
	box-shadow: inset 3px 3px 24px -17px rgba(0, 0, 0, 1);
	transition: all 0.5s;
}
.sf-field-taxonomy-kategoria-case ul li label {
	display: inline-block;
	cursor:pointer !important;
	padding:10px 20px !important;
}
.sf-field-taxonomy-kategoria-case ul li input {
	display: none;
}
.searchandfilter > ul {
	padding-left: 0;
}
#breadcrumbs {
	margin-top: 105px;
	font-size: 14px;
}
#breadcrumbs span a {
	background: #FFCC00;
	background: linear-gradient(130deg,rgba(255, 204, 0, 1) 0%, rgba(255, 221, 0, 1) 100%);
	padding:5px 15px;
	border-radius: 20px;
}
#breadcrumbs span {
	padding:5px 5px;
	font-weight: 600;
}
.contact-form-wrapper {
	background: #FFCC00;
	background-image: url(../img/bg-triangles.webp);
}
.contact-form label {
	margin-left: 25px;
	font-weight: 600;
}
.contact-form label > span {
	display: block;
	margin-top: 5px;
	margin-left: -25px;
}
.contact-form .wpcf7-checkbox span {
	margin-left: 0;
}
.contact-form .wpcf7 input[type="email"] {
	width: 97% !important;
}
@media only screen and (max-width : 480px) {
	.contact-form .wpcf7 input[type="email"] {
		width: calc(97% - 20px) !important;
	}
}
.contact-form .wpcf7-acceptance span {
	margin-top: 15px;
	margin-left: 25px;
	font-size: 16px;
	font-weight: 400;
}
.contact-form .wpcf7-acceptance input[type="checkbox"] {
	margin-top: 15px;
}
.contact-data {
	font-weight: 800;
}
#team .bg-grey {
	background-image: url(../img/bg-team.webp);
	background-repeat: no-repeat;
}
.text-yellow {
	color:#ebcc00;
}
.testimonal--text,
.modal-testimonial .modal-body {
	background-image: url(../img/bg-testimonial.webp);
	background-repeat: no-repeat;
	background-position: 40px 20px;
}
.testimonal--text {
	background-position: 10px 20px;
}
@media only screen and (max-width : 991px) { 
	.testimonal--text {
		background-position: 0px 20px;
	}
}
img.img-download {
	width: 25px;
}
.cursor-pointer {
	cursor: pointer;
}
.single-info--category a:hover {
	color:#ebcc00;
}

/* Element single post box */
.post-box h3  {
	line-height: 26px !important;
	font-weight: 600;
}
.post-box h3 a {
	font-size: 26px;
	font-weight: 800;
	color:#000;
}

.box-img {
	width: 100%;
	height: 300px;
	position: relative;
}

.box-img img {
	width: 100%;
	height: 300px;
	object-fit: cover;
}
.post-box:hover {
	background: #FFCC00;
	background: linear-gradient(320deg,rgba(255, 204, 0, 1) 0%, rgba(255, 221, 0, 1) 100%);
	-webkit-box-shadow: inset 3px 3px 24px -20px rgba(0, 0, 0, 1);
	-moz-box-shadow: inset 3px 3px 24px -20px rgba(0, 0, 0, 1);
	box-shadow: inset 3px 3px 24px -20px rgba(0, 0, 0, 1);
	transition: all 0.5s;
}
/* /Element single post box */


.categories-wrapper li {
	display: inline-block;
	cursor:pointer !important;
	background: #FFCC00;
	background: linear-gradient(130deg,rgba(255, 204, 0, 1) 0%, rgba(255, 221, 0, 1) 100%);
	margin-right: 10px;
	margin-bottom: 5px;
	color:#000;
	font-weight: 800;
	border-radius: 30px;
}
.categories-wrapper li a {
	display: inline-block;
	padding:10px 20px !important;
}
.categories-wrapper li:hover {
	-webkit-box-shadow: inset 3px 3px 24px -17px rgba(0, 0, 0, 1);
	-moz-box-shadow: inset 3px 3px 24px -17px rgba(0, 0, 0, 1);
	box-shadow: inset 3px 3px 24px -17px rgba(0, 0, 0, 1);
	transition: all 0.5s;
}
.pagination .page-numbers {
	display: inline-block;
	width: 50px;
	height:50px;
	text-align: center;
	line-height: 50px;
	font-weight: 800;
	background: #FFCC00;
	background: linear-gradient(130deg,rgba(255, 204, 0, 1) 0%, rgba(255, 221, 0, 1) 100%);
	border-radius: 50%;
}
.pagination .page-numbers:hover{
	-webkit-box-shadow: inset 3px 3px 24px -20px rgba(0, 0, 0, 1);
	-moz-box-shadow: inset 3px 3px 24px -20px rgba(0, 0, 0, 1);
	box-shadow: inset 3px 3px 24px -20px rgba(0, 0, 0, 1);
}
.categories-wrapper li.current-cat,
.pagination .page-numbers.current {
	background:#000;
	color:#fff;
}

.categories-wrapper li.current-cat a {
	color:#fff;
}
.pagination .page-numbers.dots {
	background: transparent !important;
}
.search-box:hover .pseudo-link {
	color:#ebcc00;
}
.search-query::before {
	position: absolute;
	content:"";
	background-image: url(../img/query-letter.webp);
	background-repeat: no-repeat;
	background-size: 20px;
	width: 20px;
	height: 20px;
	left: -40px;
	top:10px;
}
.mt-minus-5 {
	margin-top: -55px;
}
.mt-minus-4 {
	margin-top: -35px;
}
.z-minus-1 {
	z-index:-1;
}
.single-usluga #breadcrumbs span,
.single-case #breadcrumbs span,
.page-template-page-cases #breadcrumbs span {
	display: inline-block;
	background-color: #fff;
	position: relative;
}
.single-usluga #breadcrumbs > .container-fluid > .row > .col-xxl-10 > p > span:first-of-type::before,
.single-case #breadcrumbs > .container-fluid > .row > .col-xxl-10 > p > span:first-of-type::before,
.page-template-page-cases #breadcrumbs > .container-fluid > .row > .col-xxl-10 > p > span:first-of-type::before {
	content: "";
	position: absolute;
	width: 75px;
	left: -75px;
	bottom:0px;
	height: 39px;
	z-index: 0;
	background-image: url(../img/breadcrubmbs-before.webp);
	background-repeat: no-repeat;
	background-size: 100%;
	background-position: center;
}
.bg-breadcrumbs .container-fluid::after {
	content:"";
	position: absolute;
	height:39px;
	width: calc(8.33333333% + 25px);
	right: 0;
	top:0;
	background-color: #fff;
	z-index: 0;
}
.list-arrow ul {
	list-style-type: none;
	padding-left: 0;
}
.list-arrow ul li {
	position: relative;
	padding-left: 30px;
	background-image: url(../img/li.webp);
	background-repeat: no-repeat;
	background-position: left center;
	font-weight: 600;
	padding-top:3px;
	padding-bottom: 3px;
}
.a-yellow a:hover {
	color:#FFCC00;
	transition: all 0.5s;
}
.knowledge-wrapper .mt-5:first-of-type {
	margin-top: 0 !important;
}
.pswp__zoom-wrap,
img.pswp__img {
	border-radius: 20px !important;
}
#service .container-fluid {
	background-image: url(../img/bg-service-header.webp);
	background-size: cover;
	background-position: top;
	background-repeat: no-repeat;
}
.step {
	background-image: url(../img/arrow-next.webp);
	background-position: top 26px right;
	background-repeat: no-repeat;
}
.steps-wrapper .step:last-of-type {
	background-position: top 7px right;
	background-image: url(../img/arrow-last.webp);
}
.step--icon {
	width: 70px;
	height: 70px;
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
}
.cta-grey .container-fluid {
	background-image: url(../img/bg-cta-grey.webp);
	background-position: top;
	background-repeat: no-repeat;
}
#testimonial .bg-grey {
	background-image: url(../img/bg-cta-grey.webp);
	background-position: top;
	background-repeat: no-repeat;
}
.grecaptcha-badge {
	display: none;
}
#cases .box-white--icon {
	height:250px;
	width: auto;
	display: flex;
	justify-content: center;
	align-items: center;
}

/* ============================================= */
/* 6. Responsive fixes                           */
/* ============================================= */

@media only screen and (max-width : 1150px) {

}

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