/*
Embed fonts families:
-------------------
font-family: "Barlow", sans-serif;

possible weights:
-------------------
.barlow-thin {
  font-family: "Barlow", sans-serif;
  font-weight: 100;
  font-style: normal;
}

.barlow-extralight {
  font-family: "Barlow", sans-serif;
  font-weight: 200;
  font-style: normal;
}

.barlow-light {
  font-family: "Barlow", sans-serif;
  font-weight: 300;
  font-style: normal;
}

.barlow-regular {
  font-family: "Barlow", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.barlow-medium {
  font-family: "Barlow", sans-serif;
  font-weight: 500;
  font-style: normal;
}

.barlow-semibold {
  font-family: "Barlow", sans-serif;
  font-weight: 600;
  font-style: normal;
}

.barlow-bold {
  font-family: "Barlow", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.barlow-extrabold {
  font-family: "Barlow", sans-serif;
  font-weight: 800;
  font-style: normal;
}

.barlow-black {
  font-family: "Barlow", sans-serif;
  font-weight: 900;
  font-style: normal;
}

.barlow-thin-italic {
  font-family: "Barlow", sans-serif;
  font-weight: 100;
  font-style: italic;
}

.barlow-extralight-italic {
  font-family: "Barlow", sans-serif;
  font-weight: 200;
  font-style: italic;
}

.barlow-light-italic {
  font-family: "Barlow", sans-serif;
  font-weight: 300;
  font-style: italic;
}

.barlow-regular-italic {
  font-family: "Barlow", sans-serif;
  font-weight: 400;
  font-style: italic;
}

.barlow-medium-italic {
  font-family: "Barlow", sans-serif;
  font-weight: 500;
  font-style: italic;
}

.barlow-semibold-italic {
  font-family: "Barlow", sans-serif;
  font-weight: 600;
  font-style: italic;
}

.barlow-bold-italic {
  font-family: "Barlow", sans-serif;
  font-weight: 700;
  font-style: italic;
}

.barlow-extrabold-italic {
  font-family: "Barlow", sans-serif;
  font-weight: 800;
  font-style: italic;
}

.barlow-black-italic {
  font-family: "Barlow", sans-serif;
  font-weight: 900;
  font-style: italic;
}


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: "Barlow", sans-serif;
	font-weight: 400;
	font-size: 16px;
	line-height: 24px;
}

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:#101010;
}
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;
}

/* /Links */

/* Image responsive fix */
img {
	width: initial;
	max-width: 100%;
	height: auto;
}
/* /Image responsive fix */



/* Headers */
h1, h2, h3, h4, h5 {
	font-family: "Barlow", sans-serif;
	font-weight: 400;
}
h1 strong, h2 strong, h3 strong, h4 strong, h5 strong {
	font-weight: 500;
}
h1 {
	font-size: 51px;
	text-transform: uppercase;
}
h2, .h2 {
	font-size: 37px;
	text-transform: uppercase;
	font-weight: 400;
}
h3 {
	font-size: 23px;
	font-weight: 500;
}
h4 {
	font-size: 22px;
	font-weight: 300;
	position: relative;
	padding-left: 60px;
}
h5 {
	font-size: 18px;
}
h6 {
	font-size: 16px;
}

/* /Headers */
@media only screen and (max-width : 991px) {
	h1 {
		font-size: 40px;
		text-transform: uppercase;
	}
	h2 {
		font-size: 28px;
	}
	h3 {
		font-size: 22px;
	}
	h4 {
		font-size: 22px;
		font-weight: 300;
		position: relative;
		padding-left: 60px;
	}
	h5 {
		font-size: 18px;
	}
	h6 {
		font-size: 16px;
	}
}


/* 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,
.nav-next a,
.nav-previous a,
.sf-field-submit input {
	background-color: #0696e3;
	border:1px solid #0696e3;
	border-radius: 10px;
	font-weight: 500;
	font-size: 15px;
	color: #fff;
	padding:20px 25px;
	transition: all 0.5s;
}

.btn-default-sm,
.nav-next a,
.nav-previous a,
.sf-field-submit input  {
	padding:12px 25px !important;
}
.btn-default:hover,
.btn-default:focus,
.btn-default:active {
	background-color:#09a9ff;
	color: #fff;
	transition: all 0.5s;
	-webkit-box-shadow: 0px 0px 25px -1px rgb(9, 169, 255, 0.3);
	-moz-box-shadow: 0px 0px 25px -1px rgb(9, 169, 255, 0.3);
	box-shadow: 0px 0px 25px -1px rgb(9, 169, 255, 0.3);
}
.btn-primary {
	background-color: #0a2d3a;
	border:1px solid #0a2d3a;
	font-weight: 500;
	border-radius: 10px;
	font-size: 15px;
	color: #fff;
	padding:12px 25px;
	transition: all 0.5s;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active {
	background-color:#0a3849;
	border:1px solid #0a3849;
	color: #fff;
	transition: all 0.5s;
	-webkit-box-shadow: 0px 0px 25px -1px rgb(9, 169, 255, 0.3);
	-moz-box-shadow: 0px 0px 25px -1px rgb(9, 169, 255, 0.3);
	box-shadow: 0px 0px 25px -1px rgb(9, 169, 255, 0.3);
}
.btn-green {
	background-color: #12934f;
	border:1px solid #12934f !important;
}
.btn-green:hover,
.btn-green:focus,
.btn-green:active {
	background-color:#12934f;
	color: #fff;
	transition: all 0.5s;
	-webkit-box-shadow: 0px 0px 25px -1px rgb(18, 147, 79, 0.7);
	-moz-box-shadow: 0px 0px 25px -1px rgb(18, 147, 79, 0.7);
	box-shadow: 0px 0px 25px -1px rgb(18, 147, 79, 0.7);
}
.btn-higher {
	padding:20px 25px;
}
.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: #0696e3 !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: #0696e3; /* WebKit/Blink Browsers */
	color:#fff;
}
::-moz-selection {
	background: #0696e3; /* Gecko Browsers */
	color:#fff;
}
/* /Selection */

/* Box links (often used)  */
.box-link {
	position:absolute;
	height:100%;
	width:100%;
	left:0px;
	top:0px;
}
/* /Box links (often used)  */

.bg-test {
	background-color: rgba(255,0,0,0.5);
}

.dark, .dark p, .dark a, .dark h1, .dark h2, .dark h3, .dark h4, .dark h5, .dark h6 {
	color: #fff;
}

/* Element single post box */
.post-box--img {
	width: 100%;
	height: 380px;
	position: relative;
}
.post-box--img img {
	width: 100%;
	height: 380px;
	object-fit: cover;
}
/* /Element single post box */

/* ============================================= */
/* 2. Contact form 7                             */
/* ============================================= */
.wpcf7 label {
	width: 100%;
}
.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 #fff;
	background-color: #fff;
	padding: 13px 20px;
	font-size: 15px;
	width: 100% !important;
}
.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:#303338; 
	font-size: 14px;
	margin-left: 20px;
}

.wpcf7-list-item-label a {
	color:#fff; 
	font-weight: 500;
}

.wpcf7-form-control.wpcf7-acceptance label {
    display: flex;
    line-height: 1.2;
}

.wpcf7-form-control.wpcf7-acceptance input[type="checkbox"] {
    width: auto;
    margin-top: 5px;
    margin-right: 5px;
    align-self: start;
}

.wpcf7-form-control.wpcf7-acceptance .wpcf7-list-item {
    margin-left: 0;
}
.wpcf7-submit {
	background-color: #0696e3;
	border:1px solid #0696e3;
	border-radius: 10px;
	font-weight: 500;
	font-size: 15px;
	color: #fff;
	padding:12px 25px;
	transition: all 0.5s;
}
.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)                         */
/* ============================================= */
.navbar {
	font-family: "Barlow", sans-serif;
	padding-top: 0;
	padding-bottom: 0;
	background-color: rgb(6, 150, 227, 0.4);
	backdrop-filter: blur(13px);
	transition: all 0.5s;
}
.sticky.navbar {
	background-color: rgb(6, 150, 227, 0.8);
	backdrop-filter: blur(13px);
}
@media only screen and (max-width : 991px) { 
	.navbar {
		background-color: rgb(6, 150, 227, 0.8);
		backdrop-filter: blur(13px);
	}
}
.navbar-brand {
	padding-bottom: 0;
	padding-top: 0;
}
.navbar-brand img {
	min-width: 177px; 
}
@media only screen and (max-width : 991px) { 
	.navbar-brand img {
		min-width: 140px; 
	}
}

.navbar-dark .navbar-nav .nav-link {
	color: #fff;
	font-weight: 500;
	font-size: 15px;
	padding:40px 25px;
	transition: all 0.5s;
	border-bottom: 1px solid transparent;
}

@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-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: #b3e3fd;
	transition: all 0.5s;
	border-bottom: 1px solid #b3e3fd;
}
.navbar-dark .navbar-nav .current-menu-item .active > .nav-link,
.navbar-dark .navbar-nav .current-menu-item .nav-link.active {
	color: #0696e3;
}
.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 {
	width: 100% !important;
}
.search-activator {
	cursor: pointer;
}

.search-activator a.nav-link {
	text-indent: -9999px;
	background-image: url(../img/icon-main-menu-search.png);
	background-repeat: no-repeat;
	background-position: center;
}

.dropdown-menu {
	margin-top: -2px;
	border-radius: 0px;
	background-color: #fff;
	border:0px;
	-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: #101010;
	transition: all 0.5s;
}


.dropdown-menu li a.dropdown-item:hover {
	color:#0696e3;
	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: #0696e3;
}
.dropdown-item.active {
	background-color: transparent;
	color:#0696e3 !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: 58px;
	height: 58px;
	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 */
button.ubermenu-responsive-toggle-align-full {
	width: unset !important;
}
.ubermenu.ubermenu-main .ubermenu-item-level-0:hover > .ubermenu-target, .ubermenu-main .ubermenu-item-level-0.ubermenu-active > .ubermenu-target { 
	color:#b3e3fd; 
	border-bottom: 1px solid #b3e3fd !important;
}
.ubermenu-main .ubermenu-item-level-0.ubermenu-current-menu-item > .ubermenu-target, .ubermenu-main .ubermenu-item-level-0.ubermenu-current-menu-parent > .ubermenu-target, .ubermenu-main .ubermenu-item-level-0.ubermenu-current-menu-ancestor > .ubermenu-target { 
	color:#b3e3fd; 
	border-bottom: 1px solid #b3e3fd !important;
}

.ubermenu-main .ubermenu-item.ubermenu-item-level-0 > .ubermenu-highlight { color:#b3e3fd; border-bottom: 1px solid #b3e3fd !important; }

.ubermenu-skin-minimal.ubermenu-responsive-toggle:hover {
  color: #b3e3fd !important;
}

@media only screen and (min-width : 991px) { 
	.ubermenu-main .ubermenu-item-level-0 > .ubermenu-target, .ubermenu-main .ubermenu-item-level-0 > .ubermenu-custom-content.ubermenu-custom-content-padded { 
		padding-top:50px; padding-bottom:50px; 
	}
	.sticky .ubermenu-main .ubermenu-item-level-0 > .ubermenu-target, .ubermenu-main .ubermenu-item-level-0 > .ubermenu-custom-content.ubermenu-custom-content-padded { 
		padding-top:20px; padding-bottom:20px; 
	}
}
.ubermenu-nav > li.ubermenu-item:last-of-type {
	position: relative;
}
.ubermenu-nav > li.ubermenu-item a {
	border-bottom:1px solid transparent;
}
.ubermenu-nav > li.ubermenu-item:last-of-type::before {
	position: absolute;
	content:"";
	left: -30px;
	top:0px;
	height:70%;
	width: 1px;
	background-color: #0696e3;
}

/* ============================================= */
/* 4. ACF elements                               */
/* ============================================= */
.embed-container { 
    position: relative; 
    padding-bottom: 56.25%;
    overflow: hidden;
    max-width: 100%;
    height: auto;
} 
.embed-container iframe,
.embed-container object,
.embed-container embed { 
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.acf-map {
	width: 100%;
	height: 475px;
	margin-bottom: 0px;
}
/* fixes potential theme css conflict */
.acf-map img {
	max-width: inherit !important;
}
.gm-style iframe + div { border:none!important; }

/* ============================================= */
/* 5. Theme styles                               */
/* ============================================= */

/* Tiny Slider Banner */
.banner-slider-container .height-keeper {
	left: 12px;
	top: 0;
	width: 100%;
	min-height: 80vh;
	overflow:hidden;
	padding-bottom: 50px;
}
.slider-container .slider-controls {
	margin: 0;
    padding: 0;
    list-style: none;
    position: absolute;   
    top: 50%;
    transform: translatey(-50%);
    display: flex;
    align-items: center;    
    justify-content: space-between;
}
.banner-slider-container .slider-controls {
	left: 30px;
    right: 30px;
    z-index: 40;
}
.banner-slider-container .slider-item {
	padding: 0;
}
.arrow {
	height: 18px;
	width: 30px;
	background-image: url(../img/arrows.webp);
	cursor: pointer;
}
.dark .arrow {
	height: 18px;
	width: 30px;
	background-image: url(../img/arrows-dark-bg.webp);
	cursor: pointer;
}
.arrow.arrow-right {
	background-position: 30px 0;
}
.tns-nav {
	position: absolute;
	left: 50%;
	bottom: 0px;
	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: #0696e3;
	border:0;
	margin: auto 5px;
	border-radius: 50%;
	width: 12px;
	height: 12px;
}
/* /Tiny Slider Banner */

.bg-navy {
	background-color: #061920;
}
#banner .slider-item {
	background-size: inherit;
	background-position: top right;
	background-repeat: no-repeat;
	height: 80vh;
	min-height: 675px;
}
@media only screen and (max-width : 991px) {
	#banner .slider-item {
		height: unset;
		min-height: 675px;
	}
}
.slider-item--bottom {
	bottom:0;
	border-left: 1px solid #0696e3 !important;
}
@media only screen and (max-width : 991px) {
	.slider-item--bottom {
		position: relative !important;
		margin-left: 10px;
	}
}
@media only screen and (min-width: 991px) and (max-width: 1440px)  {
	.slider-item--bottom {
		width: 50%;
		padding-bottom: 20px !important;
	}
}
.size-13 {
	font-size: 13px;
}
.size-15 {
	font-size: 15px;
}
.size-18 {
	font-size: 18px;
}
.size-20 {
	font-size: 20px;
}
.size-23 {
	font-size: 23px;
}
.size-32 {
	font-size: 32px;
	line-height: 34px;
}
.weight-300 {
	font-weight: 300;
}
.weight-400 {
	font-weight: 400;
}
.weight-500 {
	font-weight: 500;
}
.weight-600 {
	font-weight: 600;
}
.weight-700 {
	font-weight: 700;
}
.weight-800 {
	font-weight: 800;
}
.weight-900 {
	font-weight: 900;
}
.strong-500 strong {
	font-weight: 500;
}

.hover-blue:hover {
	color: #0696e3;
}
.sygnet-gfx-01 {
	width: unset;
	position:absolute !important;
	right:40px;
	bottom:40px;
	display: inline-block;
}
@media only screen and (max-width : 991px) { 

	.sygnet-gfx-01 img {
		opacity:0.2;
	}
}
#banner .above-header {
	font-size: 26px;
	font-weight: 300;
	color:#fff;
}
.above-header {
	font-size: 16px;
	font-weight: 400;
	color:#0696e3;
	text-transform: uppercase;
}
@media only screen and (max-width : 991px) {
	.above-header {
		font-size: 22px;
	}
}

.line-top {
	position: relative;
	margin-top: 30px;
	padding-top: 10px;
}
.line-top::before {
	content: '';
	position: absolute;
	width: 30px;
	height: 1px;
	background-color: #0696e3;
	top: -10px;
	left: 0;
}
.dark-curtine {
	background-color: rgba(0,0,0,0.70);
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
}
footer .dark-curtine {
	background-color: rgba(0,0,0,0.60);
}
.bg-navy-gradient {
	background: #112D37;
	background: linear-gradient(0deg,rgba(17, 45, 55, 1) 0%, rgba(4, 20, 26, 1) 100%);
}
#logos {
	background: #04141A;
}
#logos::before {
	content: "";
	position: absolute;
	left: 0;
	top:0;
	width: 100px;
	height: 100%;	
	background: #04141A;
background: linear-gradient(90deg, rgba(4, 20, 26, 1) 40%, rgba(4, 20, 26, 0) 95%);
	z-index: 5;
}
#logos::after {
	content: "";
	position: absolute;
	right: 0;
	top:0;
	width: 100px;
	height: 100%;	
	background: #04141A;
	background: linear-gradient(280deg, rgba(4, 20, 26, 1) 40%, rgba(4, 20, 26, 0) 95%);
	z-index: 5;
}
.text-blue, .hover-blue:hover {
	color: #0696e3 !important;
	transition: all 0.5s;
}
#error .text-blue, #error .hover-blue:hover {
	color: #0696e3 !important;
}
.text-light-blue {
	color: #94acc5;
	transition: all 0.5s;
}
.box-01 {
	border-top-left-radius: 10px;
	border-top-right-radius: 10px;
	border-bottom: 1px solid transparent;
	transition: all 0.5s;
	background-image: url(../img/arrow-right-triangle.webp);
	background-repeat: no-repeat;
	background-position: right 20px bottom 20px;
	height: 100%;
}
.box-01:hover {
	background-color: #04141a;
	border-bottom: 1px solid #0696e3;
	background-image: url(../img/arrow-right-triangle-active.webp);
}
.box-01:hover .hover-blue {
	color: #0696e3;
	transition: all 0.5s;
}
.bg-dots {
	top:0;
	left: 0;
	height: 100%;
	width: 100%;
	position: absolute;
	transition: all 0.5s;
}
.box-01:hover .bg-dots {
	background-image: url(../img/bg-box-01-active.webp);
	transition: all 0.5s;
}
.bg-dots-sb{
	position: absolute;
	top:0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: url(../img/bg-dots-sb.webp);
	background-repeat: no-repeat;
	background-position: left bottom;
}
.bg-dots-st {
	position: absolute;
	top:0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: url(../img/bg-error-1.webp);
	background-repeat: no-repeat;
	background-position: left top;
}
.bg-signet-left {
	position: absolute;
	top:60%;
	left: 0;
	width: 158px;
	height: 190px;
	background-image: url(../img/bg-error-2.webp);
	background-repeat: no-repeat;
	background-position: left top;
}
.bg-grey {
	background-color: #f2f3f4;
}
.box-02 {
	transition: all 0.5s;
	border-top-left-radius: 10px;
	border-top-right-radius: 10px;
}
.box-02 .box--img {
	border-top-left-radius: 10px;
	border-top-right-radius: 10px;
}
.box-02 .box--img img {
	width: 100%;
	height: auto;
}

.box-02 .box--meta {
	padding-right: 50px !important;
}
.box-02:hover {
	background-color: #f2f3f4;
}

.dark .box-02:hover {
	background-color: #04141a;
}
.dark .box-02 .border-start {
	border-left-color: rgb(6, 150, 227, 0.4) !important;
	transition: all 0.5s;
}
.border-start-blue {
	border-left-color: rgb(6, 150, 227, 0.4) !important;
}
.dark .box-02:hover .border-start {
	border-left-color: rgb(6, 150, 227, 1) !important;
	padding-bottom: 30px !important;
}
.hover-off .box-02:hover .border-start {
	padding-bottom: 0px !important;
}
.hover-off .box-02  {
	padding-bottom: 25px;
	margin-bottom: 25px;
}
.dark .box-02 .box--desc {
	transition: all 0.5s;
}
.dark .box-02:hover .box--desc:first-of-type {
	color:#0696e3;
}

.box--meta {
	background-image: url(../img/arrow-right-triangle.webp);
	background-repeat: no-repeat;
	background-position: top 40px right 20px;
}
.box-02:hover .box--meta {
	background-image: url(../img/arrow-right-triangle-blue-active.webp);
}
.dark .box-02:hover .box--meta {
	background-image: url(../img/arrow-right-triangle-blue-active.webp);
}
.slider-controls {
	position: absolute;
	bottom:-75px;
	right: 0;
	list-style: none;
	padding-left: 0;
}
@media only screen and (max-width : 991px) { 
	.slider-controls {
		bottom:-25px;
	}
}
.slider-controls li {
	float:left;
	margin-left: 20px;
}
.slider-controls li:first-of-type {
	margin-left: 0;
}
.calltoaction {
	color:#12934f;
	font-size: 21px;
}
.calltoaction .strong {
	font-size: 23px;
}
.gfx-cta-start {
	width: 744px;
	left:-794px;
	top:0;
}
.gfx-cta-end {
	background-image: url(../img/bg-cta-right.webp);
	background-repeat: no-repeat;
	background-position: left 40px center;
	height:100%;
}
.cta {
	background-image: url(../img/bg-calltoaction.webp);
	background-repeat: no-repeat;
	background-position: top left;
}
.calltoaction .bg-blue {
	background-image: url(../img/bg-cta-signal.webp);
	background-repeat: no-repeat;
	background-position: top right;
	height:100%;
}
.bg-calltoaction {
	background-image: url(../img/bg-calltoaction-1.webp);
	background-repeat: no-repeat;
	background-position: top right;
	width: 100%;
	height:100%;
}
.bg-cta {
	background-image: url(../img/bg-cta.webp);
	background-repeat: no-repeat;
	background-position: top left;
	height:100%;
	width: 100%;
	top:0;
	left: 0;
}
.feature {
	font-size: 32px;
}
.feature:not(.feature-main) {
	padding-bottom: 20px;
	border-bottom: 1px solid rgb(148, 172, 197, 0.4);
}
.feature .feature--value {
	color:#94acc5;
	font-size: 32px;
	line-height: 34px;
}
.feature-main .feature--value {
	color:#94acc5;
	font-size: 36px;
}
.feature .feature--legend {
	font-size: 18px;
	font-weight: 500;
}
#cases .bg-cases {
	background-image: url(../img/bg-cases.webp);
	background-repeat: no-repeat;
	background-position: top left;
	width: 100%;
	height:100%;
}
#cases .bg-cases-2 {
	background-image: url(../img/bg-cases-2.webp);
	background-repeat: no-repeat;
	background-position: bottom right;
	width: 100%;
	height:100%;
}
#cases .bg-cases-3 {
	background-image: url(../img/bg-cases-3.webp);
	background-repeat: no-repeat;
	background-position: top 30px right;
	width: 100%;
	height:100%;
}


/* Element single post box */
.post-box h3  {
	line-height: 26px !important;
	font-weight: 600;
}
.post-box h3 a {
	font-size: 22px;
	color:#101010;
}
.post-box:hover h3 a {
	color:#0696e3;
}
.box-img {
	width: 100%;
	height: 340px;
	position: relative;
}

.box-img img {
	width: 100%;
	border-radius: 10px;
	height: 340px;
	object-fit: cover;
}
/* /Element single post box */


#v-tabs {
	min-width: 300px;
	z-index: 10;
}
#v-tabs button {
	text-align: left;
}

@media only screen and (max-width : 768px) {
	#v-tabs {
		top: 71px;
		background-color: #f1f1f1;
		border-bottom: 1px solid #fff;
		margin-left: calc(var(--bs-gutter-x) * -.5);
		min-width: calc(var(--bs-gutter-x) + 100%);
	}
	#v-tabs button {
		position: relative;
		width: 100%;
		text-align: center !important;
	}
	#v-tabs button:last-of-type::after {
		display:none;
	}
}

@media only screen and (min-width : 767px) { 
	#v-tabs {
		top:61px;
	}
}


.nav-pills .nav-link.active,
.nav-link:hover,
.show > .nav-link {
	background-color: #fff !important;
	border-top-right-radius: 0 !important;
	border-bottom-right-radius: 0 !important;
	box-shadow: 0px 0px 15px rgba(0,0,0,0.01);
}
.nav-pills .nav-link {
	color:#101010;
	transition: all 0.5s;
}
.nav-pills .nav-link.active {
	color:#101010;
}
.bg-lines-left {
	background-image: url(../img/bg-lines-left.webp);
	background-repeat: no-repeat;
}
.tab-title {
	font-size: 20px;
	font-weight: 500;
}
@media only screen and (max-width : 768px) {
	.tab-title {
		font-size: 24px;
	}
}
#knowledge {
	background-image: url(../img/bg-knowledge-list.webp);
	background-repeat: no-repeat;
	background-position: top 40px right;
}
#knowledge.bg-knowledge-1 {
	background-image: url(../img/bg-knowledge-1.webp);
	background-repeat: no-repeat;
	background-position: bottom left;
	width: 100%;
	height:100%;
}

.bg-knowledge {
	background-image: url(../img/bg-knowledge-2.webp);
	background-repeat: no-repeat;
	background-position: top right;
	width: 100%;
	height:100%;
}
#knowledge.bg-knowledge-2 {
	background-image: url(../img/bg-knowledge-3.webp);
	background-repeat: no-repeat;
	background-position: bottom left;
	width: 100%;
	height:100%;
}
.bg-blue {
	background-color: #0696e3;
}
@media only screen and (max-width : 768px) {
	.bg-blue.size-23 {
		font-size:18px;
	}
}
.bg-footer {
	background-image: url(../img/bg-footer.webp) !important;
	background-repeat: no-repeat;
	background-position: top right;
	width: 100%;
	height:100%;
}
footer span:not(.footer-other-links) ul {
	padding:0;
	margin-top: 25px;
}
footer ul {
	padding:0;
	margin-top: 20px;
}
footer ul li {
	list-style: none;
	padding:0;
}
footer ul li a:hover {
	color:#0696e3;
}
.footer-other-links {
	position: relative;
	display: inline-block;
}
.footer-other-links::before {
	content: "";
	display: block;
	width: 1px;
	height: 60px;
	top:0;
	left: 0;
	background-color: #0696e3;
	position: absolute;
}
@media only screen and (max-width : 1150px) {
	.footer-other-links {
		margin-top:10px;
		padding-top:10px;
		border-top: 1px solid #0696e3;
	}
	.footer-other-links::before {
		display:none;
	}
}
.footer-other-links ul {
	margin-bottom: 0;
	padding: 0;
}
.footer-other-links ul li {
	float:left;
	margin-left: 5px;
	margin-right: 5px;
}
.copyrights {
	font-size:15px;
}
.menu-below {
	padding-top: 121px;
}
@media only screen and (max-width : 768px) {
	.menu-below {
		padding-top: 67px;
	}
}
#breadcrumbs {
	text-transform: uppercase;
	font-size: 13px;
}
#breadcrumbs a {
	color:#0696e3;
}
#breadcrumbs a:hover {
	color:#fff;
}
#breadcrumbs .divinder {
	border-left:1px solid #069be3;
	margin-left: 10px;
	margin-right: 10px;
	height:38px;
	padding-bottom:10px;
	display: inline-block;
}
#breadcrumbs p > span {
	display: flex;
	align-items: center;
}
#breadcrumbs p > span > span:not(.divinder) {
	display: inline-block;
	padding-top: 5px;
}
#contact-header {
	background-image: url(../img/bg-contact.webp);
	background-position: center top;
	background-repeat: no-repeat;
}
.contact-form-wrapper {
	margin-top:-100px;
	position: absolute;
}
@media only screen and (max-width : 768px) {
	.contact-form-wrapper {
		position: relative;
	}
}
.box-03 .box--icon img {
	width: 40px;
	height: auto;
}
.box-03 {
	border-bottom: 1px solid #00465e;
	transition: all 0.5s;
	background-image: url(../img/arrow-right-triangle.webp);
	background-repeat: no-repeat;
	background-position: right 20px bottom 20px;
}
.box-03:hover {
	border-bottom: 1px solid #069be3;
	background-image: url(../img/arrow-right-triangle-active.webp);
}
.accordion-button {
	font-size: 18px;
	font-weight: 600;
	box-shadow: none;
}
.accordion-button:hover {
	color:#0696e3;
}
.accordion-button:focus,
.accordion-button:not(.collapsed) {
	background-color: #fff;
	color:#0696e3;
	box-shadow: none;
}
.accordion-button.collapsed::after {
  background: url("../img/plus.webp");
  background-repeat: no-repeat;
  background-position: center;
}

.accordion-button:not(.collapsed)::after {
  background: url("../img/minus.webp");
  background-repeat: no-repeat;
  background-position: center;
}
#knowledge .accordion-button,
.knowledge .accordion-button {
	background-color: #f2f3f4;
	border-radius: 10px !important;
}
#knowledge .accordion-button:hover,
.knowledge .accordion-button:hover {
	color:#000;
	background-color: #eaeaea;
}
#knowledge .accordion-item,
.knowledge .accordion-item {
	border-bottom: 0 !important;
	margin-bottom: 1px;
}
#title {
	background-repeat: no-repeat;
	background-position: top right;
}
.border-bottom {
	border-bottom: 1px solid #c3e0f1 !important;
}
.bg-features {
	background-image: url(../img/bg-features-signet.webp);
	background-repeat: no-repeat;
	background-position: center left;
	width: 200px;
	height: 261px;
	top:0;
	left:0px;
	transform: translateY(-25%);
}
#testimonials {
	background-image: url(../img/bg-testimonials.webp);
	background-position: bottom left;
	background-repeat: no-repeat;
}
.img-45 img {
	width: 45px;
	min-width: 45px;
}
.img-35 img {
	width: 35px;
	min-width: 35px;
}
.dark .border-top {
	border-top:1px solid #06344a !important;
}
.bg-features-dots {
	width: 100%;
	height: 100%;
	background-image: url(../img/bg-features.webp);
	background-position: bottom left;
	background-repeat: no-repeat;
}
#menu-pozycje-przy-copyrightach {
	margin-top: 0;
}
.box--desc .border-start span:last-of-type {
	display: none;
}
.team-next-prev-devider {
	display: inline-block;
	height: 20px;
	border-left: 1px solid rgb(6, 150, 227, 0.4);
}
.team-contact-icon img {
	width: 35px;
}
#team {
	background-image: url(../img/bg-team.webp);
	background-position: bottom right;
	background-repeat: no-repeat;
}
.cursor-pointer {
	cursor:pointer;
}
#error {
	background-repeat: no-repeat;
	background-position:top right;
	background-size: cover;
	min-height: 80vh;
	max-height: 750px;
}
.calltoaction--content strong span {
	text-decoration-line: underline;
  	text-decoration-color: #12934f;
  	text-decoration-thickness: 24px;
  	text-decoration-skip-ink: none;
  	text-underline-offset: -20px;
  	border-radius: 5px;
	color:#fff;
	display: inline-block;
}
/* 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 */

.cases-container .searchandfilter ul {
	padding: 0;
	margin: 0;
	text-align: right;
}
.cases-container .searchandfilter ul li {
	display: inline-block;
	margin-left:3px;
	margin-right:3px;
	cursor:pointer;
}
.cases-container .searchandfilter ul li input {
	display: none;
}
.cases-container .searchandfilter ul li label {
	padding-left: 0;
	display: inline-block;
	background-color: #0a2d3a;
	padding:15px 25px;
	border-radius:10px;
	cursor:pointer;
	transition: all 0.5s;
	font-size: 15px;
	font-weight: 500;
	color:#fff;
}
.cases-container .searchandfilter ul li ul li:hover label {
	background-color: #0696e3;
}
.cases-container .searchandfilter .sf-option-active label {
	background-color: #0696e3 !important;
}
.filters-column .searchandfilter ul {
	padding-left: 0;
}
.filters-column .searchandfilter label {
	font-size: 20px;
	font-weight: 500;
}
.sf-field-search label input {
	border:1px solid #94acc5;
	border-radius: 10px;
	font-size: 16px;
	font-weight: 500;
	padding: 10px 25px;
	background-image: url(../img/icon-search.webp);
	background-repeat: no-repeat;
	background-position: right 20px center;
}
.sf-field-search input::-webkit-input-placeholder {
	color:#112d37;
}
.sf-field-search input:-moz-placeholder {
	color:#112d37;
}
.sf-field-search input::-moz-placeholder {
	color:#112d37;
}
.sf-field-search input:-ms-input-placeholder {
	color:#112d37;
} 
.knowledge-single img {
	border-radius: 10px;
}
.pagination .page-numbers {
	background-color:#94acc5;
	width:35px;
	height:35px;
	display: inline-block;
	text-align: center;
	line-height: 35px;
	color:#fff;
	font-weight: 500;;
}
.pagination .page-numbers:hover, 
.pagination .page-numbers.current {
	background-color:#0696e3;
}
.single-testimonial-body {
	background-image: url(../img/bg-single-testimonial.webp);
	background-repeat: no-repeat;
	background-position: top 40px left 20px;
}
.bg-cover {
	background-size: 100%;
	background-position: right center;
	background-size:contain;
}
#content ul {
	padding-left: 30px;
}
#content ul li {
	padding-left: 20px;
}
.bg-archive-posts {
	background-image: url(../img/bg-archive-posts.webp);
	background-repeat: no-repeat;
	background-position: top 30px left;
}
@media only screen and (max-width : 1399px) {
	.bg-archive-posts {
		background-position: top 30px right;
	}
}
@media only screen and (max-width : 768px) {
	.bg-archive-posts {
		background-image: unset;
	}
}
/* ============================================= */
/* 6. Responsive fixes                           */
/* ============================================= */

@media only screen and (max-width : 1150px) {
	.slider-container .slider-controls {
		margin: 0;
	    padding: 0;
	    list-style: none;
	    position: absolute;   
	    top: 50%;
	    transform: translatey(-50%);
	    display: flex;
	    align-items: center;    
	    justify-content: space-between;
	}
}

/* Medium Devices, Desktops */
@media only screen and (max-width : 991px) { 

	.fixed-top.navbar-light .navbar-nav .nav-link {
		padding-top:8px;
		padding-bottom:8px;
	}
	.navbar-dark .navbar-nav .nav-link {
		padding-top:10px;
		padding-bottom:10px;
	}
	.navbar {
		padding-top:8px !important;
		padding-bottom:8px !important;
	}
	.navbar-brand img {
		width: 120px; 
		height: auto;
	}

}

/* Small Devices, Tablets */
@media only screen and (max-width : 768px) {
	/* WP image float fix */
	figure.alignleft, img.alignleft, figure.alignright, img.alignright {
		float:none;
	}
	/* /WP image float fix */

} 

/* Extra Small Devices, Phones */ 
@media only screen and (max-width : 480px) {
}

/* Custom, iPhone Retina */ 
@media only screen and (max-width : 320px) {
}


/* Height */
@media only screen and (max-height : 730px) {
}