/*
Embed fonts families:
-------------------
// <weight>: Use a value from 200 to 800
// <uniquifier>: Use a unique and descriptive class name

.plus-jakarta-sans-<uniquifier> {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
}

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-weight: 400;
	font-size: 16px;
	background-color: #f6f7f9;
}
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 */

/* Background classes */
.bg-glass {
	backdrop-filter: blur(10px);
	transition: all linear 0.3s;
}
.bg-test {
	background-color: rgba(255,0,0,0.5);
}
.bg-blue {
	background-color: #0069fe;
}
.bg-dark-blue {
	background-color: #04141b;
}
.bg-blue-gradient {
	background: #0069FE;
	background: linear-gradient(135deg, rgba(0, 105, 254, 1) 0%, rgba(1, 76, 182, 1) 100%);
	transition: all linear 0.5s;
}
.bg-white-75 {
	background-color: rgb(255, 255, 255, 0.7);
}
.bg-grey {
	background-color: #f6f7f9;
}
.box-shadow {
	box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

/* /Background classes */


/* Image responsive fix */
img {
	width: initial;
	max-width: 100%;
	height: auto;
}
/* /Image responsive fix */


/* Headers */
h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
	font-family: "Plus Jakarta Sans", sans-serif;
	font-weight: 600;
	color:#04141b;
}
h1, .h1 {
	font-size: 39px;
}
h1 strong, .h1 strong {
	font-weight: 600;
	text-decoration-line: underline;
	text-decoration-color: rgb(45 132 255 / 1); 
	text-decoration-thickness: 15px;
	text-decoration-skip-ink: none;
	text-underline-offset: -12px;
}
h2, .h2 {
	font-size: 36px;
}
h2 strong, .h2 strong {
	font-weight: 600;
	text-decoration-line: underline;
	text-decoration-color: rgb(45 132 255 / 0.4); ;
	text-decoration-thickness: 15px;
	text-decoration-skip-ink: none;
	text-underline-offset: -12px;
}
.bg-blue h2 strong, .bg-blue .h2 strong {
	text-decoration-color: #04141b;
}
h3, .h3 {
	font-size: 22px;
	margin-bottom: 20px;
}
.box-type-a h3, .box-type-a .h3 {
	font-size: 17px;
}
.ubermenu-custom-content h3 {
	margin-top: 10px;
}
h4, .h4 {
	font-size: 22px;
}
h5, .h5 {
	font-size: 18px;
}
h6, .h6 {
	font-size: 16px;
}
@media only screen and (max-width : 991px) {
	h1, .h1 {
		font-size: 32px;
	}
	h2, .h2 {
		font-size: 26px;
	}
	h3, .h3 {
		font-size: 16px;
	}
	h4, .h4 {
		font-size: 15px;
	}
	h5, .h5 {
		font-size: 14px;
	}
	h6, .h6 {
		font-size: 13px;
	}
}
.font-size-13 {
	font-size: 13px;
}
.font-size-14 {
	font-size: 14px;
}
.font-size-17 {
	font-size: 17px;
}
/* /Font size */

.img-50px img {
	width: 50px;
	height: 50px;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: rgba(0,0,0,.125);
}
.accordion .accordion-item {
	border-bottom-width: 0;
	margin-bottom: 1px;
}
.accordion .accordion-button {
	font-size: 17px;
	font-weight: 700;
	border-radius: 25px !important;
	border-bottom: 0 !important;
	background-color: #f5f7fb;
	padding: 30px 20px 30px 25px;
}
.accordion .accordion-button:not(.collapsed),
.accordion .accordion-button:hover {
	background-color: #e8eefa;
}
.accordion-white .accordion-item {
	background-color: transparent;
}
.accordion-white .accordion-button {
	background-color: #fff;
}
#knowledge .accordion .accordion-header,
#knowledge .accordion .accordion-body {
	background-color: #f5f7fb !important;
}
#knowledge .accordion .accordion-button {
	background-color: #fff;
}
#knowledge .accordion .accordion-button:not(.collapsed),
#knowledge .accordion .accordion-button:hover {
	background-color: #e8eefa;
}
/* 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: #04141b;
	border:1px solid #04141b;
	border-radius: 50px;
	font-size: 15px;
	font-weight: 500;
	color: #fff;
	padding:14px 25px;
	transition: all 0.5s;
}
.btn-default:hover,
.btn-default:focus,
.btn-default:active {
	background-color:#2d84ff;
	border:1px solid #2d84ff;
	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-blue {
	background-color: #0069FE;
	border:1px solid #0069FE;
	border-radius: 50px;
	font-size: 15px;
	font-weight: 500;
	color: #fff;
	padding:14px 25px;
	transition: all 0.5s;
}
.btn-blue:hover,
.btn-blue:focus,
.btn-blue:active {
	background-color:#04141b;
	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-big {
	font-size: 21px;
	padding:15px 55px;
}

.bg-img {
	background-image: url(../img/bg-cta.webp);
	background-size: cover;
	background-position: center;
}
.btn-text {
	font-size: 16px;
	font-weight: 600;
	padding:0;
	border:0 !important;
}
.btn-text:hover,
.btn-text:focus,
.btn-text:active {
	color:#2d84ff;	
}
.btn-arrow {
	padding-right: 50px;
	position: relative;
}
.btn-big.btn-arrow {
	padding-right: 80px;
}

.btn-arrow::after {
	content: '';
	position: absolute;
	right: 5px;
	top: 50%;
	transform: translateY(-45%);
	width: 33px;
	height: 33px;
	background-image: url(../img/arrow-right-circle-fill.svg);
	background-repeat: no-repeat;
}
.sticky .btn-big.btn-arrow::after {
	transform: translateY(-50%) !important;
	display: none;
}

.focus.btn-arrow::after {
	background-image: none;
}
.focus.btn-arrow a {
	position: relative;
	padding-right:50px !important;
}
.focus.btn-arrow a::after {
	content: '';
	position: absolute;
	right: 5px;
	top: 13px;
	width: 33px;
	height: 33px;
	background-image: url(../img/arrow-right-circle-fill.svg);
	background-repeat: no-repeat;
	transition: all 0.5s;
}
.sticky .focus.btn-arrow a::after {
	top: 11px;
}
@media only screen and (max-width : 991px) {
	.btn-big {
		font-size: 18px;
		padding:10px 25px;
	}
	.btn-big.btn-arrow::after {
		top:23px;
	}
}
.btn-default.btn-search {
	border-radius: 50%;
	width: 52px !important;
	height: 52px !important;
	position: absolute;
	background-color: #0069FE;
	right:2px;
	top:2px;
	border:0;
	padding:0;
	z-index: 1000;
}
.btn-default.btn-search svg {
	margin-top:-3px;
}
.cn-button.bootstrap {
	background-color: #2d84ff !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: #2d84ff; /* WebKit/Blink Browsers */
	color:#fff;
}
::-moz-selection {
	background: #2d84ff; /* Gecko Browsers */
	color:#fff;
}
/* /Selection */

/* Box links (often used)  */
.box-link {
	position:absolute;
	height:100%;
	width:100%;
	left:0px;
	top:0px;
	cursor: pointer;
}
/* /Box links (often used)  */


.dark, .dark p, .dark a, .dark h1, .dark h2, .dark h3, .dark h4, .dark h5, .dark h6, .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: transparent;
	color: #303338;
	border-radius: 25px;
	border:1px solid #04141b;
	padding: 13px 15px;
	font-size: 15px;
	width: 100% !important;
	color:#04141b;
}
.wpcf7 input:focus,
.wpcf7 textarea:focus,
.wpcf7-select:focus {
	background-color: #fff;
	color: #04141b;
	box-shadow: none;
	outline: 0 none;
}
.wpcf7-form select {
	padding: 0px;
	line-height: 40px;
}
.wpcf7-list-item {
	display: block;
}
.wpcf7 label {
	color:#6e6e6e;
	padding-left: 15px;
	width: 100%;
}
.wpcf7 .wpcf7-form-control-wrap {
	display: block;
	padding-top: 5px;
	margin-left: -15px;
}
.wpcf7-list-item-label {
	color:#6e6e6e; 
	font-size: 14px;
	margin-left: 20px;
}

.wpcf7-list-item-label a {
	color:#6e6e6e; 
	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: 2px;
    margin-right: 5px;
    align-self: start;
}

.wpcf7-form-control.wpcf7-acceptance .wpcf7-list-item {
    margin-left: 0;
}
.wpcf7-submit {
	background-color: #04141b;
	border:1px solid #04141b;
	border-radius: 50px;
	font-size: 15px;
	font-weight: 500;
	color: #fff;
	padding:14px 25px;
	transition: all 0.5s;
}
.wpcf7-form.submitting .wpcf7-submit,
.wpcf7-form.invalid .wpcf7-submit{
	background-color:#2d84ff;
	border:1px solid #2d84ff;
	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-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: "Plus Jakarta Sans", sans-serif;
	padding-top: 0;
	padding-bottom: 0;
	background-color: transparent !important;
}
.navbar .navbar--bg {
	height: 100%;
	width: calc(100% - 6rem);
	left: 5px;
	-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);
	background-color:rgb(4, 20, 27, 0.7) !important;
	box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
	backdrop-filter: blur(5px);
	-webkit-backdrop-filter: blur(5px);
}
.navbar-brand {
	padding-bottom: 0;
	padding-top: 0;
}
.navbar-brand img {
	transition: all linear 0.3s;
}
.sticky .navbar-brand img {
	transform:scale(0.8);
	transition: all linear 0.3s;
}
#header-top {
	transition: all linear 0.3s;
}
.sticky #header-top {
	margin-top: -64px;
}
.navbar-dark .navbar-nav .nav-link {
	color: #fff;
	font-size: 18px;
	font-weight: 600;
	padding:29px 25px;
	transition: all 0.5s;
}
.sticky .ubermenu-main .ubermenu-item-level-0 > .ubermenu-target { 
	font-size:16px; color:#ffffff; 
}

@media only screen and (max-width : 1580px) {
	.navbar-brand img {
		width:150px;
	}
	.ubermenu-main .ubermenu-item-level-0 > .ubermenu-target { 
		font-size: 16px !important;
		padding-left:15px !important; 
	 }
}
@media only screen and (max-width : 1399px) {

	.navbar .navbar--bg {
		width: calc(100% - 12px) !important;
	}
}
@media only screen and (max-width : 1350px) {
	.ubermenu-main .ubermenu-item-level-0 > .ubermenu-target { 
		font-size: 16px !important;
	 }
}
.sticky  .ubermenu-main .ubermenu-item-level-0 > .ubermenu-target, 
.sticky .ubermenu-main .ubermenu-item-level-0 > .ubermenu-custom-content.ubermenu-custom-content-padded { 		
	padding-top:15px; padding-bottom:15px; 
}
#main-menu-container .focus a {
	border-radius: 50px;
	padding:15px 25px;
	margin:14px 0px;
	background: #0069FE;
	color:#fff !important;
	background: linear-gradient(135deg, rgba(0, 105, 254, 1) 0%, rgba(1, 76, 182, 1) 100%);
	transition: all linear 0.5s;
}
.sticky #main-menu-container .focus a {
	padding:12px 25px;
	margin:5px 0px;
}
#main-menu-container .focus a:hover {
	color:#fff;
	background: #0069FE;
	background: linear-gradient(135deg, rgba(1, 76, 182, 1) 0%, rgba(0, 105, 254, 1) 100%);
}
@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 : 1125px) {
	#main-menu-container .container-fluid {
		display: block;
	}
}
@media only screen and (max-width : 1040px) {
	.navbar-expand-lg .navbar-nav .nav-link {
		padding-left: 10px;
		padding-right: 10px; 
	}
}
@media only screen and (max-width : 959px) {
	#main-menu-container {
		margin-left: 20px;
		width: calc(100% - 40px);
	}
	.sticky #main-menu-container {
		margin-top:10px;
	}
	#main-menu-container .navbar-brand {
		position: absolute;
		top:5px;
	}
	#main-menu-container .navbar-brand img {
		width: 180px;
	}
	.ubermenu-main .ubermenu-item-level-0 > .ubermenu-target, .ubermenu-main .ubermenu-item-level-0 > .ubermenu-custom-content.ubermenu-custom-content-padded { 
		padding-top:15px !important; 
		padding-bottom:15px !important; 
	}
	.ubermenu-tabs>.ubermenu-tabs-group>.ubermenu-tab.ubermenu-has-submenu-drop>.ubermenu-target>.ubermenu-sub-indicator {
		transform:rotate(0);
		top: calc(50% - 8px);
		right:10px;
		left:auto
	}
	.ubermenu.ubermenu-submenu-indicator-closes .ubermenu-tab .ubermenu-sub-indicator-close>[class^=fa] {
		top: calc(50% - 8px) !important;
	}
}
.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link:focus,
.navbar-dark .navbar-nav .show > .nav-link,
.navbar-dark .navbar-nav .nav-link.show {
	color: #2d84ff;
	transition: all 0.5s;
}
.navbar-dark .navbar-nav .current-menu-item .active > .nav-link,
.navbar-dark .navbar-nav .current-menu-item .nav-link.active {
	color: #2d84ff;
}
.navbar-toggler {
	border-radius: 0px;
	transition: all 0.5s;
}
.navbar-toggler:focus,
.navbar-toggler:active,
.navbar-toggler-icon:focus {
    outline: none;
    box-shadow: none;
}
.navbar-toggler span {
	display: block;
	background-color: rgba(255,255,255,0.6);
	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%);*/
}


/* Ubermenu extras */
a.ubermenu-target-with-image {
	position: relative;
	display: flex !important;
	align-items: flex-start !important;
}

.ubermenu-submenu {
	border-radius: 15px !important;
}
.ubermenu-tabs-group {
	padding-top: 2px !important;
	padding-bottom: 2px !important;
}
a.ubermenu-target-with-image::before {
	content: '';
	position:absolute;
	left:5px;
	top:0px;
	width: 55px;
	height: 55px;
	border-radius:50%;
	background-color: #fff;
	transition: all 0.5s;
}
a.ubermenu-target-with-image img {
	width: 25px;
	height: 25px;
	margin-top: 5px !important;
	margin-left: 10px !important;
	margin-bottom: 5px !important;
	filter: brightness(0%);
		transition: all 0.5s;
}
a.ubermenu-target-with-image:hover img {

	filter: brightness(0) invert(1);
}
a.ubermenu-target-with-image::before {
	content: '';
	position:absolute;
	left:5px;
	top:5px;
	width: 55px;
	height: 55px;
	border-radius:50%;
	background-color: #fff;
	/* -webkit-box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.05); */
	/* -moz-box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.05); */
	/* box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.05); */
}
a.ubermenu-target-with-image:hover::before {
	background-color: #04141b;
}

a.ubermenu-target-with-image span {
	margin-left:30px;
	margin-top: 7px !important;
	font-weight: 700 !important;
}
.ubermenu-tabs-group {
	background-color: #eeeeef !important;
}
.ubermenu-tabs-group .ubermenu-target-with-image {
	background-color: #f6f7f9 !important;
	margin:3px 3px !important;
	padding:15px 30px 15px 10px !important;
	border-radius: 15px !important;
}
.ubermenu-tabs-group .ubermenu-target-with-image:hover {
	background-color: #fff !important;
}
.ubermenu-skin-minimal {
  font-size: 15px !important;
  color: #fff !important;
}
/* Ubermenu extras */


.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:#2d84ff;
	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: #2d84ff;
}
.dropdown-item.active {
	background-color: transparent;
	color:#2d84ff !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-radius: 30px !important;
	border:0px;
	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 */
  @media only screen and (max-width : 1150px) {
	 .margin-top-banner {
		margin-top: 150px;
	}
 }
/* Zapewnia, że wewnętrzny kontener wypełnia .slider-item */
.banner-slider-container .slider-item > .slider-content-partition {
    width: 100%;
    height: 100%;
}

/* Wymusza podział 50/50 na wierszach wewnątrz .slider-content-partition w scene-no-1 */
.banner-slider-container .slider-item.scene-no-1 > .slider-content-partition > .row {
    flex: 1 1 50%;
    /* flex-grow: 1 (rośnij jeśli jest miejsce),
       flex-shrink: 1 (kurcz się),
       flex-basis: 50% (startuj od 50% wysokości) */
}
/* ============================================= */
/* 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: 700px;
	overflow:hidden;
	padding-bottom: 50px;
}
.slider-container .slider-controls {
	margin: 0;
    padding: 0;
    list-style: none;
    position: absolute;   
    top: 50%;
    transform: translatey(-50%);
    display: flex;
    align-items: center;    
    justify-content: space-between;
}
.banner-slider-container .slider-controls {
	left: 30px;
    right: 30px;
    z-index: 40;
}
.cases-slider-container .slider-controls {
	top: unset;
    transform: none;
	width: 67px;
	position: relative;
}
.testimonials-slider-container .slider-controls {
	top: unset;
    transform: none;
	width: 67px;
	left: 50%;
	transform: translateX(-50%);
	position: relative;
	margin-top: 30px;
}
.banner-slider-container .slider-item {
	padding: 0;
	min-height: 958px;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center left 40%;
}
.banner-slider-container .slider-item > .row {
    flex: 1 1 50%;
}
.arrow {
	height: 20px;
	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: #2d84ff;
	border:0;
	margin: auto 5px;
	border-radius: 50%;
	width: 12px;
	height: 12px;
}
.slider-item--cover {
	width: 100%;
	height: 100%;
	background-image: url(../img/banner-cover.webp);
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	z-index: 1;
}
@media only screen and (max-width : 991px) {
	.slider-item--cover {
		background-color: rgb(4, 20, 27, 0.7);
	}
}
/* /Tiny Slider Banner */

/* Equal height for Tiny Slider cases-slider */
.cases-slider-container .tns-item {
	display: flex;
	height: auto;
}
.cases-slider-container .box-type-c {
	display: flex;
	flex-direction: column;
	height: 100%;
	width: 100%;
}
.cases-slider-container .box-type-c h3 {
	flex-grow: 1;
}
.cases-slider-container .box-type-c .data {
	margin-top: auto;
}

.ubermenu-custom-content {
	color:#6e6e6e;
}
.ubermenu-custom-content ul {
	list-style: none;
	padding: 25px 35px;
	font-weight: 700;
	color:#04141b;
}
.ubermenu-custom-content ul li {
	list-style: none;
	position: relative;
	padding: 2px 0;
}
.ubermenu-custom-content ul li::before {
	content: '';
	position: absolute;
	left: -35px;
	top: 50%;
	width: 20px;
	height: 1px;
	background-color: #04141b;
}
.fill {
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden
}
.fill img { 
	min-height:100%; 
	min-width: 100%; 
	object-fit: cover; 
	border-radius: 15px;
}
.fill-not-100 img { 
	height: auto;
	min-height: auto;
	object-fit: cover; 
	border-radius: 15px;
}

.box-type-a a {
	color: #04141b;
}
.box-type-a:hover {
	background-color: rgba(255,255,255,1);
}
.archive .box-type-a:hover {
	background-color: #0069FE;
}
.archive .box-type-a:hover a,
.archive .box-type-a:hover .text-grey {
	color:#fff !important;
}
.box-type-a--header {
	display: flex;
	align-items: center;
}
.box-type-a--header-icon {
	width: 40px;
	height: 40px;
	margin-right: 10px;
}

.icon {
	background-color: #ffffff;
	opacity: 1;
	width:55px;
	min-width:55px;
	height:55px;
	border-radius: 55px;
	-webkit-box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.05);
	-moz-box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.05);
	box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.05);
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all linear 0.3s;
}
.icon img {
	width:25px;
	height:25px;
	filter: brightness(0) invert(0);
}
.box-type-a:hover .icon {
	background-color: #04141b;
}
.box-type-a:hover .icon img {
	filter: brightness(0) invert(1);
}
.box-type-c:hover .icon-hover-dark {
	background-color: #04141b;
}
.box-type-c:hover .icon-hover-dark img {
	filter: brightness(0) invert(1);
}
.text-grey {
	color: #6e6e6e;
 }
 .single-info--date .icon,
 .single-info--category .icon {
	width:30px;
	min-width:30px;
	height:30px;
 }
 .single-info--date .icon img,
 .single-info--category .icon img {
	width:22px;
	height:22px;
 }
/* 	@media only screen and (max-width : 1150px) {
	 .margin-top-banner {
		margin-top: 150px;
	}
} */


/* 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:hover{
	color:#000;
}
.accordions-readmore-wrapper .accordion-read-more .accordion-button span:hover::after{
	right: -30px;
}
/* Accordion readmore */

.banner-arrow {
	bottom:40px;
	left: 50%;
	transform: translateX(-50%);
}
@media only screen and (max-width : 991px) {
	.banner-arrow {
		bottom:90px;
	}
}

.width-55px {
	width: 55px;
	height: 55px;
}
.box {
	transition: all 0.3s;
}
.box:hover .icon {
	-webkit-box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.50);
	-moz-box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.50);
	box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.50);
}
.box a {
	color: #04141b;
}
.box-type-b:hover,
.box-type-c:hover {
	background-color: #0069FE !important;
	color:#fff;
}
.box-type-b:hover a,
.box-type-b:hover p,
.box-type-c:hover,
.box-type-c:hover a,
.box-type-c:hover .text-grey,
.box-type-c:hover h3,
.box-type-c:hover p {
	color: #fff;
	transition: all 0.3s;
}
.icon-simple {
	width: 30px;
}
.otgs-development-site-front-end {
	display: none;
}
.copyrights a {
	color:#04141b;
}
.footer-menus ul {
	padding:0;
	margin:0;
}
.footer-menus ul li {
	list-style-type: none;
}
.footer-menus ul li a {
	font-weight: 600;
	line-height: 26px;
	display: block;
}
.footer-menus ul li a:hover {
	color:#04141b;
}

.contact-data a {
	font-weight: 700;
}
.contact-data a:hover {
	color:#a6cbff;
}
.contact-pos:hover .icon {
	background-color: #0069FE;
}
.contact-pos:hover .icon img {
	filter: brightness(0) invert(1);
}
.bg-style-scopped {
	background-size: cover;
	background-position: center;
	opacity: 0.8;
}
#breadcrumbs span {
	color:#cccccc !important;
	text-shadow: 0px 0px 15px rgba(4, 20, 27, 0.80);
}
#breadcrumbs a {
	color:#fff;
}
#breadcrumbs a:hover {
	color:#a6cbff;
}
 .ubermenu-main .ubermenu-item-level-0 > .ubermenu-target, .ubermenu-main .ubermenu-item-level-0 > .ubermenu-custom-content.ubermenu-custom-content-padded { 
	padding-top:15px !important;
	padding-bottom:15px !important; 
}
.ubermenu-main .ubermenu-item-level-0.ubermenu-current-menu-item > a { 
	color:#04131b !important; 
	background-color: #fff !important;
	border-radius: 50px;
}
#ubermenu-nav-main-5 {
	display: flex !important;
	align-items: center !important;
	width: 100%;
}
@media only screen and (max-width : 959px) {
	#ubermenu-nav-main-5 {
		display: block !important;
	}
}
.box-testimonial {
	background-image: url('../img/bg-testimonial.webp');
	background-repeat: no-repeat;
	background-position: top 40px right 30px;
	transition: all 0.3s;
}
.box-testimonial:hover {
	background-color: #0069FE !important;
	color:#fff;
}
.testimonial-stars {
	height: 13px;
	width: 77px;
	background-image: url('../img/stars.webp');
	background-repeat: no-repeat;
}
.stars-1 {
	background-position: left top -52px;
}
.stars-2 {
	background-position: left top -39px;
}
.stars-3 {
	background-position: left top -26px;
}
.stars-4 {
	background-position: left top -13px;
}
.stars-5 {
	background-position: left top;
}
.testimonial-source-and-file img {
	width: 25px;
	height: 25px;
	margin-right:5px;
}
.testimonial-source-and-file a {
	color:#04131b;
	font-size: 15px;
	font-weight: 700;
}
.modal-testimonial .modal-body {
	background-image: url(../img/bg-testimonial-sign.webp);
	background-repeat: no-repeat;
	background-position: left 30px top 30px;
	padding-left: 100px !important;
}
ul.categories-wrapper {
	list-style-type: none;
}
.categories-wrapper li {
	display: inline-block;
	margin-right: 5px;
}
.categories-wrapper li a {
	background-color: #04141b;
	border:1px solid #04141b;
	border-radius: 50px;
	font-size: 15px;
	font-weight: 500;
	color: #fff;
	padding:14px 25px;
	transition: all 0.5s;
}
.categories-wrapper li a:hover,
.categories-wrapper li a.active,
.categories-wrapper li a.focus,
.categories-wrapper li.current-cat a {
	background-color:#2d84ff;
	border:1px solid #2d84ff;
	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);
}
.categories-wrapper li a.active {
	color: #0069FE;
}

/* Element single post box */
.post-box {
	background-color:#fff;
}
.post-box h3  {
	font-size: 17px;
}
.post-box--date {
	color:#6e6e6e;
}
.post-box h3 a {
	font-size: 17px;
	color:#101010;
}
.post-box:hover {
	background-color:#0069FE;
}
.post-box:hover h3 a,
.post-box:hover,
.post-box:hover .post-box--date  {
	color:#fff;
	transition: all 0.5s;
}
.box-img {
	width: 100%;
	height: 340px;
	position: relative;
}
.box-img img {
	width: 100%;
	height: 340px;
	object-fit: cover;
}
/* /Element single post box */

.pagination-container .page-numbers {
	background-color: #fff;
	color:#04131b;
	width: 40px;
	height:40px;
	display: inline-block;
	text-align: center;
	line-height: 40px;
	border-radius: 50%;
	font-weight: 600;
}
.pagination-container .page-numbers:hover {
	background-color: #0069FE;
	color:#fff;
}
.pagination-container .page-numbers.current {
	background-color: #04131b;
	color:#fff;
}
.post-categories {
	list-style-type: none;
	margin:0;
	padding:0;
}
.post-categories li a {
	padding:20px 25px;
	display: block;
	color:#04131b;
	font-weight: 700;
	margin-bottom: 1px;
}
.post-categories li a:hover {
	background-color: #e8eefa;
}
#header-top {
	min-height: 43px;
}

.pricelist-container h2 {
  font-size: 22px;
  font-weight: 700;
}
.pricelist-container h3 {
  font-size: 18px;
  font-weight: 700;
}
.pricelist-container .price-tag {
  background-color: #0069FE;
  font-size: 14px;
  border-radius: 15px;
  color: #fff;
  padding: 5px 10px;
  margin-left: 10px;
}
.pricelist-container .price-position {
  margin-top: 5px;
  padding-top:8px;
  padding-bottom: 8px;
  border-radius: 15px;
  color:#2a2a2a;
}
.pricelist-container .price-position strong {
  font-weight: 400;
}
.pricelist-container .price-position:nth-child(even) {
  background-color: #fff;
}
.pricelist-container .price-position:nth-child(odd) {
  background-color: transparent;
}
.pricelist-container .price-position:hover {
  background-color: #e8eefa; 
}
.pricelist-container .price-header-subgroup {
  font-size: 18px;
}
img.pswp__img {
	border-radius: 15px !important;
}
.mb-1px {
	margin-bottom: 1px;
}
/* ============================================= */
/* 6. Responsive fixes                           */
/* ============================================= */

@media only screen and (max-width : 1150px) {

}

/* 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) {
}