/*
Embed fonts families:
-------------------
font-family: "Fustat", sans-serif;

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


// <weight>: Use a value from 200 to 800
// <uniquifier>: Use a unique and descriptive class name

.fustat-<uniquifier> {
  font-family: "Fustat", sans-serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
}

animation:
-------------------
transition: all 0.5s;

Content:
1. Main styles override
2. Contact form 7 
3. Navbar bootstrap
4. ACF elements
5. Theme styles  
6. Responsive fixes
*/

/* ============================================= */
/* 1. Main styles override                       */
/* ============================================= */

body {
	font-family: "Fustat", sans-serif;
	font-weight: 400;
	font-size: 16px;
	line-height: 24px;
	font-smooth: always;
}
p,
.accordion-body {
	color:#6c6c6c;
}
.font-bigger p, 
span.font-bigger, 
p.font-bigger {
	font-size:18px;
	font-weight: 600;
	color: #101010;
}
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
}
.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: "Fustat", sans-serif;
}
h1 {
	font-size: 45px;
	font-weight: 500;
	text-transform: uppercase;
}
#banner h1 {
	font-size: 57px;
	text-transform: uppercase;
}
@media (max-width: 1350px) {
	h1 {
		font-size: 38px;
	}
	#banner h1 {
		font-size: 38px;
	}
}
h2, .h2 {
	font-size: 30px;
	text-transform: uppercase;
	position: relative;
	margin-bottom: 25px;
}
h2.font-bigger,
.h2.font-bigger {
	font-size: 36px;
	text-transform: uppercase;
	position: relative;
}
.line-start {
	padding-top: 15px;
	padding-bottom: 15px;
	position: relative;
	margin-bottom: 15px;
}
.line-start p {
	margin-bottom: 0;
}
.line-start:before {
	position: absolute;
	content: "";
	left: -30px;
	height: 100%;
	width: 1px;
	background-color: #2e68fd;
	top: 0;
}
h2.line-start,
.h2.line-start {
	padding-top: 15px;
	padding-bottom: 15px;
}
.post-type-archive-branza .flexible-desc-with-imgs h2 {
	font-size: 36px;
	padding-top: 15px;
	padding-bottom: 15px;
}
h2.line-start:before,
.h2.line-start:before,
.post-type-archive-branza .flexible-desc-with-imgs h2:before {
	position: absolute;
	content: "";
	left: -30px;
	height: 100%;
	width: 1px;
	background-color: #2e68fd;
	top: 0;
}


.dark h2.line-start:before,
.dark .h2.line-start:before {
	background-color: #fff !important;
}
h2.line-top:before {
	position: absolute;
	content: "";
	top:-20px;
	left: 50%;
	transform: translateX(-50%);
	height: 1px;
	width: 50px;
	background-color: #2e68fd;

}
@media (max-width: 768px) {
	h2, .h2 {
		font-size: 26px;
	}
	h2.font-bigger,	.h2.font-bigger, .flexible-desc-with-imgs h2  {
		font-size: 30px;
	}
}
h3 {
	font-size: 17px;
	font-weight: 600;
	text-transform: uppercase;
}
h4 {
	font-size: 22px;
	font-weight: 300;
	position: relative;
	padding-left: 60px;
}
h5 {
	font-size: 18px;
}
h6 {
	font-size: 16px;
}

/* /Headers */

.accordion-button:focus {
    box-shadow: none;
    border-color: rgba(0,0,0,.125);
}

/* 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: #2e68fd;
	border:1px solid #2e68fd;
	border-radius: 30px;
	font-size: 15px;
	color: #fff;
	font-family: "Fustat", sans-serif;
	text-transform:uppercase;
	font-weight: 600;
	padding:14px 30px;
	transition: all 0.5s;
}
.btn-default:hover,
.btn-default:focus,
.btn-default:active {
	background-color:#2e68fd;
	color: #fff;
	transition: all 0.5s;
	-webkit-box-shadow: 0px 0px 25px -1px rgba(0,0,0,0.2);
	-moz-box-shadow: 0px 0px 25px -1px rgba(0,0,0,0.2);
	box-shadow: 0px 0px 25px -1px rgba(0,0,0,0.2);
}
.btn-readmore {
	border:none !important;
	font-size: 15px;
	color: #101010;
	font-family: "Fustat", sans-serif;
	text-transform:uppercase;
	font-weight: 600;
	letter-spacing: 0.05em;
	padding:14px 30px 14px 0px;
	transition: all 0.5s;
	position: relative;
}
.btn-readmore::after {
	content: "";
	position: absolute;
	right:-50px;
	top:50%;
	height: 1px;
	width: 50px;
	background-color: #101010;
	transition: all 0.5s;
}
.btn-readmore:hover,
.btn-readmore:focus,
.btn-readmore:active {
	color: #2e68fd;
	transition: all 0.5s;
}
.btn-readmore:hover::after ,
.btn-readmore:focus::after ,
.btn-readmore:active::after  {
	background-color: #2e68fd;
	transition: all 0.5s;
}
.btn-white {
	background-color: #fff !important;
	border:1px solid #fff !important;
	border-radius: 30px;
	font-size: 15px;
	color: #101010 !important;
	text-transform:uppercase;
	font-weight: 600;
	letter-spacing: 0.04em;
	padding:14px 30px;
	transition: all 0.5s;
}
.btn-white:hover,
.btn-white:focus,
.btn-white:active {
	background-color:#fff;
	border:1px solid #fff;
	color: #101010;
	transition: all 0.5s;
	-webkit-box-shadow: 0px 0px 20px -1px rgba(0,0,0,0.3);
	-moz-box-shadow: 0px 0px 20px -1px rgba(0,0,0,0.3);
	box-shadow: 0px 0px 20px -1px rgba(0,0,0,0.3);
}
.btn-default.btn-search {
	padding-top: 16px;
	padding-bottom: 17px;
	padding-left: 20px;
	padding-right: 20px;
}
.cn-button.bootstrap {
	background-color: #2e68fd !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: #2e68fd; /* WebKit/Blink Browsers */
	color:#fff;
}
::-moz-selection {
	background: #2e68fd; /* 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, .dark span {
	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: 0;
	border:0;
	border-bottom:1px solid #ccccce;
	padding: 12px 15px;
	font-size: 15px;
	width: 100% !important;
	color:#101010;
}
.wpcf7 input:focus,
.wpcf7 textarea:focus,
.wpcf7-select:focus {
	background-color: #f5f7fb;
	color: #303338;
	box-shadow: none;
	outline: 0 none;
}
.wpcf7-textarea {
	width: 100%;
}
.wpcf7 label {
	font-weight: 500;
	width: 100%;
}
.wpcf7-form select {
	padding: 0px;
	line-height: 40px;
}
.wpcf7-list-item {
	display: block;
}

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

.wpcf7-list-item-label a {
	color:#101010; 
	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: #2e68fd;
	border:1px solid #2e68fd;
	border-radius: 30px;
	font-size: 15px;
	color: #fff;
	font-family: "Fustat", sans-serif;
	text-transform:uppercase;
	font-weight: 600;
	padding:14px 30px;
	transition: all 0.5s;
}
.wpcf7-form.submitting .wpcf7-submit,
.wpcf7-form.invalid .wpcf7-submit {
	background-color:#2e68fd;
	color: #fff;
	transition: all 0.5s;
	-webkit-box-shadow: 0px 0px 25px -1px rgba(0,0,0,0.2);
	-moz-box-shadow: 0px 0px 25px -1px rgba(0,0,0,0.2);
	box-shadow: 0px 0px 25px -1px rgba(0,0,0,0.2);
}

.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: "Fustat", sans-serif;
	-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);
	padding-top: 0;
	padding-bottom: 0;
	background-color: rgba(0,0,0,0.4);
}
.sticky.navbar {
	margin-top: 5px !important;
	background-color: rgba(0,0,0,0.8);
	backdrop-filter: blur(10px);
}


.navbar-brand {
	padding-bottom: 0;
	padding-top: 0;
}
.navbar-brand img {
	transition: all linear 0.3s;
	width: 168px; 
}
.sticky.navbar .navbar-brand img {
	width: 110px; 
	margin-right:36px;
}
@media only screen and (max-width : 991px) {
	.sticky.navbar .navbar-brand img {
		width: 90px; 
		margin-right:36px;
	}
}
.navbar-nav li:last-of-type .nav-link {
	background-color: #2e68fd;
	margin-top: 3px;
	padding:14px 30px;
	border-radius: 35px;
	color:#fff !important;
}
.navbar-nav li:last-of-type .nav-link:hover {
	background-color: #1355ff;
	
	color:#fff;
}
.navbar-nav li:last-of-type {
	margin-left: auto;
}
@media only screen and (max-width : 991px) {
	.navbar-nav li:last-of-type {
		margin-left: auto;
		margin-right: auto;
	}
}
.navbar-dark .navbar-nav .nav-link {
	color: #fff;
	font-size: 15px;
	text-transform: uppercase;
	font-weight: 500;
	padding:17px 25px;
	transition: all 0.5s;
}

.dropdown-toggle::after {
	content:"";
	border:none;
	position: absolute;
	top:calc(50% - 5px);
	right: 10px;
	width: 10px;
	height: 10px;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' fill='%23ffffff' class='bi bi-chevron-down' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708'/%3E%3C/svg%3E");
}
.dropdown-toggle:hover::after,
.dropdown-toggle:active::after,
.dropdown-toggle.show::after {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' fill='%232e68fd' class='bi bi-chevron-down' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708'/%3E%3C/svg%3E");
}
.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: #9db8ff;
	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: #9db8ff;
}
.navbar-toggler {
	border-radius: 10px;
	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%);*/
}
.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;
	background-color: #fff;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	border-radius: 15px;
	padding:20px 10px;
	-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);
	transition: all 0.3s;
	border:0;
}
.sticky .dropdown-menu {
	padding:10px 10px;
}
.dropdown-menu[data-bs-popper] {
	margin-top: 5px;
}
.sticky .dropdown-menu[data-bs-popper]  {
	margin-top: -5px;
}
@media only screen and (max-width : 991px) {
	.navbar-collapse .navbar-nav {
		margin-top: 10px;
		background-color: rgba(0,0,0,0.6);
		border-radius: 15px;
		padding-bottom: 5px;
	}
}
@media only screen and (max-width : 991px) {
	.sticky.navbar .navbar-brand img {
		width: 90px; 
		margin-right:36px;
	}
}
.dropdown-menu li a.dropdown-item {
	font-size: 15px;
	line-height: 35px;
	color: #101010;
	font-weight: 500;
	transition: all 0.5s;
}
@media only screen and (max-width : 991px) {
	.dropdown-menu {
		letter-spacing: 0.01em;
	}
	.dropdown-menu li a.dropdown-item {
		font-size: 14px;
	}
}
.dropdown-menu li a.dropdown-item:hover {
	color:#2e68fd;
	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: #2e68fd;
}
.dropdown-item.active {
	background-color: transparent;
	color:#2e68fd !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: 0px;
	border-bottom-left-radius: 0px;
	line-height: 56px;
	height: 57px;
	background-color: #f5f7fb;
	padding-left: 25px;
	border:none !important;
	border-bottom:1px solid #ccccce !important;
}
.search-input:active,
.search-input:focus,
.search-input:hover {
	background-color: #f5f7fb;
}

/* /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 */
.logos-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;
}
.logos-slider-container .slider-controls {
	left: 30px;
    right: 30px;
    z-index: 40;
}
.logos-slider-container .slider-item {
	padding: 0;
}
.arrow {
	height: 18px;
	width: 40px;
	background-image: url(../img/arrows.png);
	cursor: pointer;
}

.arrow.arrow-right {
	background-position: 40px 0;
}
.tns-nav {
	position: absolute;
	left: 50%;
	bottom: -50px;
	transform: translateX(-50%);
}
.tns-nav button {
	background-color: #cfcfcf;
	border:0;
	margin: auto 5px;
	border-radius: 50%;
	width: 12px;
	height: 12px;
}
.tns-nav button.tns-nav-active {
	background-color: #2e68fd;
	border:0;
	margin: auto 5px;
	border-radius: 50%;
	width: 12px;
	height: 12px;
}
/* /Tiny Slider Banner */

.bg-blue {
	background-color: #2e68fd;
	transition: all 0.5s;
}
.bg-light-grey {
	background-color: #f5f7fb;
	transition: all 0.5s;
}
.post-type-archive-produkt .flexible-contents .bg-light-grey,
.single-produkt .flexible-contents .bg-light-grey,
.single-branza .flexible-contents .bg-light-grey {
	background-color: #fff;
	transition: all 0.5s;
}
#title  {
	background-color: #fff !important;
}
#banner .container-fluid .position-relative {
	height: 80vh;
	min-height: 700px;
	overflow: hidden;
	border-bottom-right-radius: 500px !important;
}
#title .container-fluid .position-relative.bg-blue {
	min-height: 200px;
	overflow: hidden;
	border-bottom-right-radius: 130px !important;
}

@media (max-width: 768px) {
	#banner .container-fluid .position-relative {
		border-bottom-right-radius: 100px !important;
	}
}
#banner video,
#title video {
	object-fit: cover;
	position: absolute;
	width: 100%;
	height: 100%;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}
#banner .curtine,
#title .curtine {
	width: 100%;
	height:100%;
	z-index: 10;
	background-image: url(../img/curtine-banner.webp);
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
}

.banner-content {
	z-index: 50;
}
.banner-content--scene {
	padding-bottom: 15vh;
}
@media (max-width: 768px) {
	.banner-content--scene {
		padding-bottom: 8vh;
	}
}
#banner h1 {
	position: relative;
}
#banner h1:before {
	position: absolute;
	content: "";
	left: -30px;
	height: 100%;
	width: 1px;
	background-color: #fff;
	top: 0;
}
.banner-content--scene-1--img-1 {
	right: -100px;
	top: 15%;
	z-index: 10;
}
@media (max-width: 1350px) {
	.banner-content--scene-1--img-1,
	.banner-content--scene-1--img-2 {
		width:60vw;
	}
}
@media (max-width: 768px) {
	.banner-content--scene-1--img-1,
	.banner-content--scene-1--img-2 {
		width:70vw;
	}
}
@media (max-width: 600px) {
	.banner-content--scene-1--img-1,
	.banner-content--scene-1--img-2 {
		width:80vw;
	}
}
@media (max-width: 480px) {
	.banner-content--scene-1--img-1,
	.banner-content--scene-1--img-2 {
		width:100vw;
	}
}
.banner-content--scene-1--img-2 {
	right: -200px;
	top: 40%;
	z-index: 1;
}
/* 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 */


.feature-pos p {
	color:#c7d7ff;
	transition: all 0.5s;
}
.feature-pos:hover.bg-blue {
	background-color: #1355ff;
	transition: all 0.5s;
}
.feature-pos:hover p {
	color:#fff;
}
.feature-pos-icon {
	background-color: #fff;
	border-radius: 50px;
	display: inline-flex;
	height: 90px;
	width: 90px;
	align-items: center;
	justify-content: center;
	transition: all 0.5s;
}
.feature-pos:hover .feature-pos-icon {
	-webkit-box-shadow: 10px 5px 30px 5px rgba(0,0,0,0.3);
	-moz-box-shadow: 10px 5px 30px 5px rgba(0,0,0,0.3);
	box-shadow: 10px 5px 30px 5px rgba(0,0,0,0.3);
}
.bg-line {
	background-image: url(../img/bg-line.webp);
	background-repeat: no-repeat;
	background-position: center;
	height: 100%;
	width: 100%;
	height: 2px;
	transform: translateY(-50%);
	z-index: 0;
}
.box-a,
.box-b {
	transition: all 0.5s;
}
.box-a:hover,
.box-b:hover {
	background-color: #fff;
}
.line-vertical {
	height: 350px;
	border-left: 1px solid rgb(16, 16, 16, 0.05);
	top:50%;
	transform: translateY(-50%);
}
.line-vertical-1 {
	left: 33.3333333333%
}
.line-vertical-2 {
	left: 66.6666666666%
}
@media (max-width: 767px) {
	.line-vertical,
	.bg-line {
		display: none;
	}
}

.cta .background-video {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	min-width: 100%;
	min-height: 100%;
}
.cta .cta--content {
	overflow: hidden;
}
.cta .curtine {
	width: 100%;
	height:100%;
	z-index: 10;
	left: 0;
	top:0;
	background-image: url(../img/curtine-banner.webp);
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
}
.cta--content {
	border-top-left-radius: 250px !important;
	border-bottom-right-radius: 250px !important;
}
@media (max-width: 768px) {
	.cta--content {
		border-top-left-radius: 100px !important;
		border-bottom-right-radius: 100px !important;
	}
}
.box-b--icon {
	min-width: 80px;
}

#whyus .bg-blue {
	border-top-right-radius: 250px;
	background-image: url(../img/bg-banner.webp);
	height:568px;
}
.bg-whyus {
	position: absolute;
	height: 75%;
	width: 5000px;
	bottom:0;
	right:0;
	background-repeat: no-repeat;
	background-position: top right;
	border-top-right-radius: 250px;
	border-bottom-right-radius: 10px;
}

.whyus-img {
	background-image: url(../img/whyus.webp);
	min-height: 744px;
	background-position: top right;
	border-bottom-right-radius: 50px;
}
@media (max-width: 991px) {
	.whyus-img {
		min-height: 500px;
	}
}
.color-blue {
	color:#2e68fd;
}
.fact .value {
	font-size: 36px;
	font-weight: 700;
}
.fact .legend {
	padding-top: 15px;
	margin-top: 15px;
	color:#6c6c6c;
	font-weight: 600;
	border-top:1px solid #ccccce;
}

.accordion-button {
	text-transform: uppercase;
	font-size: 16px;
	font-weight: 600;
	letter-spacing: 0.05em;
	background-color: #edeef1;
	border-radius: 10px;
	padding:20px 25px 20px 25px;
}
.accordion-button:hover,
.accordion-button:not(.collapsed)  {
	background-color: #e6e6e7;
	color:#101010;
}
.accordion-item {
	background-color: transparent;
	border-bottom: 0;
	margin-bottom: 1px;
}
.accordion-button::after {
	margin-left: auto;
	padding-left: 10px;
}

.border-radius-bottom-end {
	border-bottom-right-radius: 250px;
}
.border-radius-top-start {
	border-top-left-radius: 250px !important;
}
.border-radius-bottom-start {
	border-bottom-left-radius: 250px !important;
}
.post-type-archive-branza .flexible-contents .border-radius-bottom-start {
	border-bottom-left-radius: 0 !important;
}

@media only screen and (max-width: 768px) {
	.border-radius-bottom-end {
		border-bottom-right-radius: 100px;
	}
	.border-radius-top-start {
		border-top-left-radius: 100px !important;
	}
}
.footer-menus h3 {
	margin-bottom: 30px;
}
.footer-menus ul {
	padding: 0;
	list-style: none;
}
.footer-menus ul li a {
	font-weight: 600;
}
.footer-menus ul li a:hover {
	color:#9db8ff;
}
footer .bg-blue {
	background-image: url(../img/bg-footer.webp);
	background-color: #1c298e;
	background-repeat: no-repeat;
}
.copyrights {
	font-size: 13px;
	border-top:1px solid #2763fb;
}
.border-start {
	border-left:1px solid #2763fb !important;
}
.border-end {
	border-right:1px solid #2763fb !important;
}
@media only screen and (max-width : 768px) {
	footer .border-start {
		border-left:0 !important;
	}
	footer .border-end {
		border-right:0 !important;
	}
}
.tooltip-inner,
.tooltip-inner p {
	color:#fff;
	opacity: 1 !important;
}
.services-main-wrapper-row .bg-line-wrapper:last-of-type {
	display: none !important;
}
.title-content-wrapper {
	padding-top: 120px;
}
.curtine-bg-1 {
	background-image: url(../img/bg-curtine-1.webp);
	background-repeat: no-repeat;
	background-position: center;
	width: 783px;
	height:808px;
	z-index: 10;
	top:-200px;
	left: 0;
}
#title .curtine-bg-1 {
	z-index: 1;
}
.curtine-bg-2 {
	background-image: url(../img/bg-curtine-2.webp);
	background-repeat: no-repeat;
	background-position: center;
	width: 426px;
	height:465px;
	z-index: 10;
	bottom:0px;
	left: 0;
}
.curtine-bg-3 {
	background-image: url(../img/bg-curtine-3.webp);
	background-repeat: no-repeat;
	background-position: center;
	width: 429px;
	height:450px;
	z-index: 55;
	top:150px;
	right: 0;
}
.banner-content,
.title-content-wrapper {
	z-index: 60;
}
.breadcrumbs-gfx {
	background-image: url(../img/nav-line.webp);
	background-repeat: no-repeat;
	background-position: center right ;
}
.breadcrumbs-wrapper {
	font-size: 15px !important;
	padding-left: 20px;
}
@media only screen and (max-width : 768px) {
	.breadcrumbs-wrapper {
		font-size: 13px !important;
		margin-right: 60px;
		padding-left: 0px;
	}
}
.breadcrumbs-wrapper a {
	font-weight: 500;
}
.breadcrumbs-gfx img {
	padding-right:50px;
}
.company-address-and-contacts h2 {
	font-size: 36px;
	font-weight: 600;
}
.company-address-and-contacts h2 span {
	display: block;
	font-size: 23px;
	font-weight: 600;
}
.contact-pos--icon {
	min-width: 50px;
}
.contact--pos-data,
.contact--pos-data a {
	font-size: 18px;
	font-weight: 600;
	color:#101010;
}
.contact-pos hr {
	margin-top: 5px;
	margin-bottom: 5px;
}
.contact--pos-legend {
	color:#6c6c6c;
	font-size: 15px;
}
.form-wrapper {
	background-image: url(../img/bg-form-wrapper.webp);
	background-repeat: no-repeat;
	background-position: top left;
	padding-top: 50px;
	padding-left: 50px;
}
@media only screen and (max-width : 768px) {
	.form-wrapper {
		padding-top: 20px;
		padding-left: 20px;
	}
}
.map-container iframe {
	border-radius: 30px;
}
.img-caption {
	right: -50px;
	bottom:0;
	transform: translateY(30px);
	background-color: #fff;
	box-shadow: 0px 0px 30px 0px rgb(46, 104, 253, 0.2);
	padding: 15px 25px;
}
.even .img-caption {
	right:unset;
	left: -50px;
}
.flexible-image .img-caption {
	right:unset;
	left: -30px;
}
@media only screen and (max-width : 768px) {
	.img-caption {
		right: -20px;
	}
	.even .img-caption {
		right: -20px;
		left:unset;
	}
	.flexible-image .img-caption {
		left: 0px;
	}
}
.flexible-contents img {
	border-radius: 20px;
}
.box-pos--icon {
	min-width: 70px;
}
ul li {
	color:#6c6c6c;
	font-weight: 600;
}
.flexible-text-wyciwyg ul {
	padding-top: 30px;
	padding-bottom: 30px;
	padding-left: 50px;
}
.breadcrumbs-wrapper a:hover {
	color:#9db8ff;
}
ul.categories-wrapper   {
	padding:0;
	background-color: #fff;
}
ul.categories-wrapper li {
	list-style-type: none;
}
ul.categories-wrapper li a {
	color:#101010;
	display: block;
	padding-top: 5px;
	padding-bottom: 5px;
	font-size: 17px;
	letter-spacing: 0.05em;
}
ul.categories-wrapper li a:hover {
	color:#1355ff;
}
.category-description {
	color:#6c6c6c;
}
/* Element single post box */
.post-box h3  {
	font-size: 17px;
	font-weight: 700;
}
.post-box h3 a {
	font-size: 22px;
	color:#101010;
}
.post-box:hover h3 a {
	color:#2e68fd;
}
.box-img {
	width: 100%;
	height: 250px;
	position: relative;
}

.box-img img {
	width: 100%;
	height: 250px;
	object-fit: cover;
}
.post-box--excerpt {
	color:#6c6c6c;
}
.post-box--date, .post-box--category-main {
	font-weight: 600;
	font-size: 13px;
	color:#6c6c6c;
}
.post-box--date {
	font-size:15px;
	font-weight: 700;
}
.post-box .btn-readmore::after {
	display: none;
}
.post-box:hover .btn-readmore {
	color:#2e68fd;
}
.post-box:hover .btn-readmore::after {
	display: inline-block;
}
.post-box:hover .btn-readmore::after ,
.post-box:hover .btn-readmore::after ,
.post-box:hover .btn-readmore::after  {
	background-color: #2e68fd;
	transition: all 0.5s;
}
/* /Element single post box */
.post-categories-wrapper {
	padding: 0;
	display: inline-block;
	position: relative;
}
.post-categories-wrapper::after {
	content: "";
	position: absolute;
	right: -150px;
	top: 50%;
	transform: translateY(-50%);
	display: block;
	width: 120px;
	height:1px;
	background-color: #2e68fd;
}
@media only screen and (max-width : 1000px) {
	.post-categories-wrapper::after {
		display: none;
	}
}
.post-categories-wrapper li {
	list-style-type: none;
	margin-right: 10px;
	display: inline-block;
	line-height: 55px;
}
.post-categories-wrapper li a {
	background-color: #08214f;
	border:1px solid #08214f;
	border-radius: 30px;
	font-size: 15px;
	color: #fff;
	font-family: "Fustat", sans-serif;
	text-transform:uppercase;
	font-weight: 600;
	padding:14px 30px;
	transition: all 0.5s;
}
.post-categories-wrapper li a:hover {
	background-color:#2e68fd;
	border:1px solid #2e68fd;
	color: #fff;
	transition: all 0.5s;
	-webkit-box-shadow: 0px 0px 25px -1px rgba(0,0,0,0.2);
	-moz-box-shadow: 0px 0px 25px -1px rgba(0,0,0,0.2);
	box-shadow: 0px 0px 25px -1px rgba(0,0,0,0.2);
}
.post-categories-wrapper li.current-cat a {
	background-color: #fff;
	border:1px solid #2e68fd;
	color: #2e68fd;
}
.post-box {
	transition: all 0.5s;
}
.post-box:hover {
	background-color: #fff;
}
.pagination .pagination-container .page-numbers:first-child {
	position: relative;
}
.pagination .pagination-container .page-numbers:first-child::before {
	content: "";
	position: absolute;
	right: 100px;
	top: 50%;
	display: block;
	width: 130px;
	height:1px;
	background-color: #2e68fd;
}
.pagination .page-numbers {
	display: inline-block;
	color:#fff;
	font-weight: 700;
	min-width: 50px;
	height:50px;
	line-height: 50px;
	text-align: center;
	border-radius: 50%;
	background-color: #08214f;
} 
.pagination .page-numbers.current,
.pagination .page-numbers:hover {
	background-color: #2e68fd;
	color: #fff;
	transition: all 0.5s;
	-webkit-box-shadow: 0px 0px 25px -1px rgba(0,0,0,0.2);
	-moz-box-shadow: 0px 0px 25px -1px rgba(0,0,0,0.2);
	box-shadow: 0px 0px 25px -1px rgba(0,0,0,0.2);
}
.below-title {
	padding-left: 85px;
}
.below-title::before {
	content: "";
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	display: block;
	width: 60px;
	height:1px;
	background-color: #2e68fd;
}
#title .bg-title {
	background-image: url(../img/bg-404.webp);
	background-position: center center;
	background-size: cover;
}
#searchform label {
	font-size: 16px;
	color:#6c6c6c;
	font-weight: 600;
	margin-left: 25px;
}
.search-box:hover h3 {
	color:#2e68fd;
}
.search-box:hover .btn-readmore {
	color:#2e68fd;
}
.post-cats {
	padding-left: 30px;
	display: inline-block;
	position: relative;
	margin-left: 15px;
}
.post-cats a:hover {
	color:#9db8ff;
}
.post-cats::before {
	content: "";
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	display: block;
	width: 15px;
	height:1px;
	background-color: #2e68fd;
}
.flexible-text-wyciwyg h2 {
	margin-top: 30px;
	margin-bottom: 30px;
}
.flexible-columns-tree-with-icons h3 span {
	color:#2763fb;
}
.feature-pos-type-2,
.feature-pos-type-2 p {
	color:#101010;
	margin-bottom: 0;
	padding-top: 10px;
}
.feature-pos-type-2 lord-icon {
	margin-right: 10px;
	min-width: 60px;
}
.single-product-img .position-absolute {
	bottom:0;
	left:0;
	background-color: #2763fb;
	color:#fff;
	display: inline-block;
	padding:15px 20px;
	border-radius: 25px;
}
.single-product-img .position-absolute:first-of-type {
	left:unset;
	bottom: unset;
	top:0;
	right:0;
	background-color: #2763fb;
	color:#fff;
}
@media only screen and (max-width : 768px) {
	.single-product-img .position-absolute {
		position: relative !important;
	}
	.single-product-img .position-absolute:first-of-type {
		margin-bottom: 15px;
		margin-top:30px;
	}
}
.single-industry-img img {
	border-top-right-radius: 250px;
	border-bottom-right-radius: 25px;
}
.dropdown-menu strong {
	color:#2763fb;
	font-size: 13px;
}
/* ============================================= */
/* 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) {

}