/*
Theme Name: click5 Interactive Theme
Theme URI: https://www.click5.com/
Author: click5 Interactive
Author URI: https://www.click5.com/
Description: click5 Interactive WordPress Theme
Version: 3.0.16
*/

:root {
    --main: #cc0000;
    --orange: #ff6600;
    --navy: #1a237e;
    --blue: #0f172b;
    --dark: #45556c;
    --yellow: #f6c403;
    --light: #f8fafc;
    --fa-family-classic: "Font Awesome 6 Free";
    --fontA: "Font Awesome 6 Free";
    --fontB: "Font Awesome 6 Brands";
    --fa-family-brands: "Font Awesome 6 Brands";
    --font: "aptos";
    --textC: #b3becd;
    
    --filterOrange: brightness(0) saturate(100%) invert(37%) sepia(80%) saturate(3121%) hue-rotate(9deg) brightness(114%) contrast(101%);
    --filterRed: brightness(0) saturate(100%) invert(12%) sepia(63%) saturate(6269%) hue-rotate(357deg) brightness(95%) contrast(118%);
    --filterNavy: brightness(0) saturate(100%) invert(12%) sepia(40%) saturate(4612%) hue-rotate(229deg) brightness(104%) contrast(104%);
    --filterWhite: brightness(0) saturate(100%) invert(97%) sepia(100%) saturate(0%) hue-rotate(61deg) brightness(111%) contrast(101%);
    
    --gradientRed: linear-gradient(150deg, rgba(198, 0, 0, 1) 8%, rgba(158, 0, 0, 1) 91%);
    --gradientOrange: linear-gradient(150deg, rgba(249, 98, 0, 1) 8%, rgba(212, 74, 0, 1) 91%);
    --gradientNavy: linear-gradient(150deg, rgba(24, 32, 116, 1) 8%, rgba(12, 17, 68, 1) 91%);
}

/* HEADER */
body{
	font-family: var(--font);
	background-color: var(--light);
}
p, ul li, ol li{
	font-size: 18px;
}
.container{
	max-width: 1490px;
}
#header {
    width: 100%;
    padding-top: 25px;
    padding-bottom: 25px;
    padding-left: 65px;
    padding-right: 60px;
    background-color: #FFF;
    transition: all .3s;
}
#header.hello-bar {
    top: 39px;
}
#header.sticky {
    box-shadow: 0 15px 25px rgba(0, 0, 0, .05);
}

#header .logo a {
    color: #000;
    font-size: 40px;
    font-weight: 800;
    line-height: 100%;
    letter-spacing: 0;
    padding: 0;
    margin: 0;
}

#header .phone {
    padding: 18px 0 18px 10px;
}
#header .phone a {
    position: relative;
    display: inline-block;
    color: var(--dark);
    font-size: 17px;
    font-weight: 400;
    line-height: 42px;
    letter-spacing: -0.46px;
    padding:0 30px;
    height: 48px;
    margin: 0;
    border: 2px solid #e3e8f0;
    border-radius: 7px;
    background-color: var(--light);
}
#header .phone a i {
    position: relative;
    color: var(--main);
    font-size: 13px;
    padding-right: 5px;
    top: -2px;
}
#header .phone a:hover {
    text-decoration: none;
    border-color: #929292;
}

#header .contact a {
    display: inline-block;
    height: 48px;
    color: #FFF;
    font-size: 17px;
    font-weight: 400;
    line-height: 42px;
    letter-spacing: -0.18px;
    padding: 0 30px;
    margin: 0 0 0 10px;
    background-color: var(--main);
    border: 2px solid var(--main);
    border-radius: 7px;
}
#header .contact a:hover {
    color: var(--main);
    text-decoration: none;
    background-color: transparent;
}
#header .logo img{
	width: 400px;
}
.navigation{
	width: 100%;
	margin: auto; 
}
.navigation .navbar{
	width: auto;
	margin: auto;
}
.navbar .navbar-nav .nav-link {
  color: var(--dark);
  font-size: 17px;
  font-weight: 400;
}  

 

@media (min-width: 1200px) {
	
		.navbar .navbar-nav .dropdown .dropdown-menu .dropdown-item{
			line-height: 1;
			position: relative;
			transition-duration: 0.1s;
			top: 0px;
			margin-bottom: 20px;
		}
		.navbar .navbar-nav .dropdown .current_page_item .dropdown-item{
			background-color: var(--light) !important;
			border-radius: 10px;
		}
		.navbar .navbar-nav .dropdown .dropdown-menu .dropdown-item:hover{
			background-color: var(--light);
			border-radius: 10px;
			top: -2px
		}
		.navbar .navbar-nav #menu-item-30.dropdown  .dropdown-menu{
			width: 800px;
			border-radius: 20px;
			padding: 25px;
			left: -310px;
			display: flex;
			flex-wrap: wrap; 
			overflow: hidden;
			padding-bottom: 90px;
		}
		.navbar .navbar-nav .dropdown  .dropdown-menu{
			border-radius: 20px;
			padding: 25px 10px;
			overflow: hidden;
		}
		
		.navbar .navbar-nav .dropdown .dropdown-menu::before {
		    content: "";
		    position: absolute;
		    top: 0;
		    left: 0;
		    right: 0;
		    height: 5px;
		
		    background: linear-gradient(90deg, rgba(206, 10, 0, 1) 0%, rgba(242, 101, 36, 1) 50%, rgba(35, 41, 125, 1) 100%);
		 }
		
		
		
		.navbar .navbar-nav .dropdown .dropdown-item .menu-icon{
			height: 100%;
			background-color: var(--main);
			width: 42px;
			height: 42px;
			border-radius: 10px;
			display: flex;
			transition-duration: 0.3s;
		}
		.navbar .navbar-nav .dropdown .dropdown-item:hover .menu-icon{
			transform: rotate(-6deg) scale(1.05);
		}
		.navbar .navbar-nav .dropdown .menu-navy .dropdown-item .menu-icon{
			background-color: var(--navy);
		}
		.navbar .navbar-nav .dropdown .menu-orange .dropdown-item .menu-icon{
			background-color: var(--orange);
		}
		.navbar .navbar-nav .dropdown .dropdown-item .menu-icon img{
			filter: var(--filterWhite);
			margin: auto;
		}
		.navbar .navbar-nav .dropdown .dropdown-menu > li{
			flex: 0 0 33.33%; 
			
		}
		.navbar .navbar-nav .dropdown .dropdown-menu > li a{
			color: var(--dark);
			
		}
		.navbar .navbar-nav .dropdown .dropdown-item .text{
			width: 100%;
		} 
		.navbar .navbar-nav #menu-item-30.dropdown .dropdown-item .text{
			width: calc( 100% - 50px ); 
			margin-left: auto;
		}	
		
		.navbar .navbar-nav .dropdown .dropdown-item .menu-title{
			font-weight: 500;
			display: block;
			padding-right: 20px;
			padding-top: 5px;
			position: relative;
		}
		.navbar .navbar-nav .dropdown .dropdown-item .menu-title:after{
			content: "\f178";
		    color: var(--main);
		    font-family: var(--fa-family-classic);
		    font-size: 10px;
		    font-weight: 700;
		    line-height: 32px;
		    position: absolute;
		    right: 20px;
		    top: -2px;
		    opacity: 0;
			transition-duration: 0.3s;
		}
		.navbar .navbar-nav .dropdown .dropdown-item:hover .menu-title:after{
			right: 10px;
			opacity: 1;
		}
		.navbar .navbar-nav .dropdown .dropdown-item .menu-description{
			font-size: 12px;
			line-height: 1.2;
			font-weight: 300;
			padding-top: 10px;
			display: block; 
		}
		
		
		
		.navbar .navbar-nav .dropdown .current_page_item .dropdown-item .menu-description,
		.navbar .navbar-nav .dropdown .dropdown-item:hover .menu-description{
			color: var(--dark);
		}
		.navbar .navbar-nav .dropdown .dropdown-menu .dropdown-item{
			padding: 10px 10px;
			display: flex;
			flex-wrap: wrap;
			margin-bottom: 6px; 
		}
		.navbar .navbar-nav  #menu-item-30.dropdown  .dropdown-menu .dropdown-item{
			margin-bottom: 20px; 
		}
		
		
		.navbar .featured{
			position: absolute;
			bottom: 0;
			left: 0;
			background: #211927;
			background: linear-gradient(90deg, rgba(33, 25, 39, 1) 0%, rgba(45, 41, 112, 1) 60%, rgba(29, 16, 40, 1) 100%);
			width: 100%;
			display: flex;
			padding: 15px 30px;
			color: #fff;
			justify-content: space-between;
		}
		.navbar .featured .icon{
			background-color: #3d3341;
			width: 40px;
			height: 40px;
			border-radius: 40px;
			display: flex;
		}	
		.navbar .featured .icon img{
			margin: auto;
			filter:var(--filterOrange);
		}
		.navbar .featured .title{
			color: var(--orange);
			line-height: 1;
			font-size: 15px;
		}
		.navbar .featured .text{
			line-height: 1;
			font-size: 14px;
		}
		.navbar .featured .buttons .button{
			padding: 5px 20px;
		}
		.navbar .featured .text{
			width: auto;
			margin-left: 10px;
			margin-right: auto;
		}
		.navbar .featured .text .title{
			margin-top: 4px;
		}

}



/* HERO */

#hero {
    position: relative;
    width: 100%;
    height: 480px;   
    background: #0C1436;
	background:  linear-gradient(138deg, rgb(18, 29, 76) 0%, rgba(7, 11, 18, 1) 50%, rgb(61, 12, 18) 100%);
}
#hero.small-hero{
	 height: 400px; 
}
.home #hero {
	height: 780px;
    z-index: 4;
    background-size: cover;
    background-position: top center;
   
    background-image: url("img/fire-hero-bg.webp");
    background-position: center center;
    background-repeat: no-repeat;

}
.home #hero:before {
	width: 100%;
	height: 100%;
	content: "";
	background-color: #131532;
	opacity: 0.7;
	top:0; 
	position: absolute;
	
}
#hero .container{
	position: relative;
	z-index: 10;
}
#hero h1 span{
	background: linear-gradient(90deg, #ff6800, #ffcb00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

#hero h3 {
    color: rgba(255, 255, 255, 0.79);
    font-size: 14px;
    font-weight: 300;
    line-height: 100%;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 10px 20px;
    margin: 0;
    border: 1px solid #2b3147;
    background-color: rgba(255,255,255,0.05);
    border-radius: 7px; 
    display: inline-block;
    margin-bottom: 20px;
}
#hero h3 img{
	filter: var(--filterOrange);
	height: 14px;
	margin-right: 7px;
	position: relative;
	top: -1px;
}
#hero h3 i{
	width: 10px;
	height: 10px;
	border-radius: 20px;
	background-color: var(--orange);
	display: inline-block;
	margin-right: 8px;
}
#hero h1 {
    color: #FFF;
    font-size: 60px;
    font-weight: 300;
    line-height: 1;
    letter-spacing: -1.5px;
    padding: 0;
    margin: 0;
    margin-bottom: 20px;
}
#hero p{
	color: var(--textC);
	line-height: 1.67;
	padding-right: 0px;
}
#hero .buttons{
	display: flex;
	gap:10px;
	margin-top: 30px;
}
#hero .photo{
	height: 100%;
	border-radius: 15px;
	border:1px solid #666978;
	background-size: cover;
	display: flex;
}

#hero.sub-hero h3{
	color: var(--orange);
}
#hero.sub-hero .content{
	max-width: 800px;
	margin: auto; 
}


/* hero-icons */
.hero-icons{
	display: flex;
	flex-wrap: wrap;
	border-top:1px solid rgba(255,255,255,0.1);
	margin-top: 30px;
	padding-top: 30px;
}
.hero-icon{
	flex: 0 0 33.33%; 
	color: var(--textC);
	display: flex;
	flex-wrap: wrap; 
}
.hero-icon span{
	display: block; 
	width: 100%;
	padding-top: 6px;
}
.hero-icon img{
	filter: var(--filterOrange);
}


.photo .hero-icons{ 
	border: none;
	margin-top: auto;
	width: 100%;
	margin-left: 1.5%;
	margin-bottom: 1.5%;
	
}
.photo .hero-icons .hero-icon{
	border: 1px solid #97a5aa;
	backdrop-filter: blur(19px);
	flex: 0 0 31%;
	margin: 1%;
	border-radius: 10px;
	padding: 20px;
} 
.photo .hero-icons .hero-icon span{
	color: #fff;
}

.home #hero:after{
	content: "";
	width: 100%;
	height: 5px;
	background: #CE0A00;
	background: linear-gradient(90deg, rgba(206, 10, 0, 1) 0%, rgba(242, 101, 36, 1) 50%, rgba(35, 41, 125, 1) 100%);
	display: block;
	position: absolute;
	bottom: -5px;
}


/* button */
.button{
	background-color: var(--main);
	color: #fff;
	border-radius: 7px;
	padding: 10px 35px 11px;
	border: 2px solid var(--main);
	font-size: 17px;
}
.button:hover{
	background: transparent;
	color: #fff;
}
.buttonT{
	border: 2px solid #585c74;
	background: transparent;
}
.buttonT:hover{
	background-color: #fff;
	color: var(--dark);
	border: 2px solid #fff;
}	
.buttonT2{
	border: 2px solid #cad5e2;
	background: transparent;
	color: var(--dark);
}
.buttonT2:hover{
	background-color: #fff;
	color: var(--dark);
	border: 2px solid #fff;
}
.buttonB{
	background-color:  var(--navy);
	border: 2px solid var(--navy);
}
.buttonB:hover{
	background-color:  transparent;
	border: 2px solid var(--navy);
	color: var(--navy);
}
.buttonW{
	background-color:  #fff;
	border: 2px solid #fff;
	color: var(--dark);
}
.buttonW:hover{
	background-color:  transparent;
	border: 2px solid #fff;
	color: #fff;
}



/* hero scroll */
.hero-scroll {
    overflow: hidden;
    white-space: nowrap;
    border-bottom: 1px solid #e2e8f0;
}

.hero-scroll .track {
    display: flex;
    width: max-content;
    animation: scroll 60s linear infinite;
    padding: 40px 0; 
}

.hero-scroll .item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0 30px;
    font-size: 20px;
    flex-shrink: 0;
    color: #90a1b9;
}

.hero-scroll .item img {
    width: 18px;
    height: 18px;
    filter:var(--filterRed);
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* HEADLINE */
.home-headline-center{
	max-width: 880px;
	margin: 0 auto;
	text-align: center;
}
.home-headline h3{
    color: var(--main);
    font-size: 16px;
    font-weight: 300;
    line-height: 100%;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 10px 5px;
    margin: 0;
    border-radius: 7px; 
    display: inline-block;
    margin-bottom: 20px;
}
.home-headline-dark h3{
	color: var(--orange);
}



.home-headline h2{
    color: var(--dark);
    font-size: 50px;
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: -1.5px;
    padding: 0;
    margin: 0;
    margin-bottom: 20px;
}
.home-headline-dark h2{
	color: #fff;
}
.home-headline p{
	color: var(--dark);
	line-height: 1.67;
}
.home-headline-dark p{
	color: var(--textC);
}

/* SERVICES */
.home-headline h3 img{
	height: 16px;
	filter: var(--filterRed);
	position: relative;
	top: -2px;
	margin-right: 8px;
}
.home-headline-dark h3 img{
	filter: var(--filterOrange);
}
.services-items {
	margin-top: 40px;
}

.services-items .box {
	margin-bottom: 30px;
	
}
.services-items .box .in{
	background-color: #fff;
	border-top: 4px solid var(--main);
	padding: 30px;
	padding-bottom: 100px;
	position: relative;
	margin: 5px;
	border-radius: 10px;
	height: 100%;
	display: block;
	box-shadow: 0 3px 4px rgba(0,0,0,0.15);
	position: relative;
	transition-duration: 0.3s;
	top: 0;
}
.services-items .box .in:hover{
	box-shadow: 0 12px 18px rgba(0,0,0,0.2);
	top: -10px;
}
.services-items .box-orange .in{
	border-top: 4px solid var(--orange);
}
.services-items .box-navy .in{
	border-top: 4px solid var(--navy);
}
.services-items .box .icon{
	background-color: var(--light);
	display: block;
	width: 62px;
	height: 62px;
	border-radius: 8px;
	display: flex;
	box-shadow: 0 1px 2px rgba(0,0,0,0.15);
}
.services-items .box .icon img{
	margin: auto;
	height: 30px;
	filter: var(--filterRed);
}
.services-items .box-orange .icon img{
	filter: var(--filterOrange);
}
.services-items .box-navy .icon img{
	filter: var(--filterNavy);
}
.services-items .box h3{
	font-size: 24px;
	color: var(--dark);
	line-height: 1.2;
}
.services-items .box p{
	font-size: 17px;
	line-height: 1.5;
	color: var(--dark);
}
.services-items .box .more{
	position: absolute;
	bottom: 30px;
	transition-duration: 0.3s;
}
.services-items .box .more span{
	color: #6f8097;
}
.services-items .box .more span img{
	height: 14px;
	position: relative;
	top: -1px;
}
.services-items .box:hover .more span{
	filter:var(--filterRed);
}


/* how-items */
.how-items .box {
	position: relative;
	z-index: 10;
}
.how-items .box .in{
	background: transparent;
	border: none;
	box-shadow: none;
	padding-bottom: 0;
}
.how-items .box .in:hover{
	box-shadow: none;
	top: 0;
}
.how-items .box .in p{
	font-size: 14px;
	color:var(--textC);
}
.how-items .box .in .icon{
	background: #CE0A00;
	background: linear-gradient(153deg, rgba(206, 10, 0, 1) 0%, rgba(242, 101, 36, 1) 100%);
}
.how-items .box .in .icon{
	margin: auto;
	margin-bottom: 25px;
	border: 3px solid var(--blue);
}
.how-items .box .in .icon img{
	filter: var(--filterWhite);
}
.how-items .box .in h3{
	color: #fff;
	padding-bottom: 0;
	margin-bottom: 15px;
}
/* how */
.how{
	background-color: var(--blue);
}
.how small{
	color: var(--orange);
	font-size: 14px;	
}
.how-items{
	position: relative;
}
.how-items::after {
  content: "";
  width: 75%;
  left: 12.5%;
  height: 5px;
  z-index: 1;
  background: #CE0A00;
  background: linear-gradient(270deg, rgba(206, 10, 0, 1) 0%, rgba(242, 101, 36, 1) 50%, rgba(35, 41, 125, 1) 100%);
  display: block;
  position: absolute;
  top: 62px;
}


/* why */
.home-headline h2 span {
    background: linear-gradient(
        90deg,
        rgba(206, 10, 0, 1) 0%,
        rgba(242, 101, 36, 1) 50%,
        rgba(35, 41, 125, 1) 100%
    );

    -webkit-background-clip: text;
    background-clip: text;

    -webkit-text-fill-color: transparent;
    color: transparent;
}
.why{
	padding: 110px 0 130px;
	background: #E2E5F0;
	background: linear-gradient(137deg, rgba(226, 229, 240, 1) 33%, rgba(244, 233, 234, 1) 100%);
}
.why .entry-content ul {
	display: flex;
	padding: 0;
	margin: 0;
	margin-top: 20px;
	flex-wrap: wrap;
}
.why .entry-content ul li{
	flex: 0 0 50%;
	padding-left: 30px;
}
.why .entry-content ul li:before {
	content: "\f058";
	font-size: 18px;
	font-weight: 300;
	color: #02c951;
}	
.why .buttons{
	margin-top: 50px;
}
.why .buttons{
	gap:10px;
	display: flex;
}
.why .col-photo{
	position: relative;
}
.why .photo{
	height: 90%;
	margin-top: 5%;
	border-radius: 15px;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	width: 90%;
	position: relative;
	z-index: 10;
}
.why .col-photo:after{
	border: 2px solid #d1d4e8;
	border-radius: 15px;
	width: 88%;
	height: 90%;
	background: transparent;
	position: absolute;
	top: 5%;
	margin-top: -20px;
	left: -20px;
	z-index: 1;
	content: "";
	display: block;
}
.why .since{ 
	background-color: #fff;
	border-radius: 10px;
	box-shadow: 0 10px 20px rgba(0,0,0,0.05);
	display: flex; 
	
	width: 250px;
	padding: 15px;
	
	
	position: absolute;
	bottom: -30px;
	right: 130px;
	z-index: 100;
}
.why .since .icon{
	background-color: var(--main);
	width: 50px;
	height: 50px;	
	display: flex;
	border-radius: 10px;
}  
.why .since .icon img{
	filter: var(--filterWhite);
	margin: auto;
} 
.why .since .txt{
	display: flex;
	flex-wrap: wrap; 
	padding-left: 10px;
	
} 
.why .since .year{
	font-size: 23px;
	line-height: 1;
}
.why .since .title{
	font-size: 15px;
	line-height: 1;
}


/* stat */
.stat{
	background-color: var(--blue);
	padding: 50px 0; 
}
.stat .box .in{
	background-color: transparent;
	border: none;
}
.stat  .value{
	font-size: 45px;
	color: #fff;
	font-weight: 300;
}
.stat  .title{
	color: var(--textC);
	text-transform: uppercase;
}
.stat  .in{
	border-left: 1px solid var(--main);
	padding-left: 20px;
	padding-bottom: 15px;
}


/* brand-items */
.brand{
	background-color: #fff;
}
.brand-items{
	display: flex; 
	gap:10px;
	justify-content: center;
	margin-top: 30px;
}
.brand-items .box{
	display: flex;
	padding: 20px 30px;
	border-radius: 15px;
	background-color: var(--light);
	border: 1px solid #e2e8f0;
	width: auto;
	text-align: center;
	color: var(--dark);
	font-weight: 400;
	box-shadow: 0 4px 6px rgba(0,0,0,0.05);
	transition-duration: 0.3s;
}
.brand-items .box:hover{
	border: 1px solid var(--main);
}

.maintenance_brand .brand-items .box{
	background-color: #fff;
}


/* diff */
.diff{
	background-color: var(--blue);
	background: #301223;
background: linear-gradient(150deg, rgba(48, 18, 35, 1) 0%, rgba(15, 23, 43, 1) 60%);
}
.diff .box .in{
	background-color: #1d2538;
	border: 1px solid #314158;
}
.diff .box .icon{
	background-color: #343b4c;
}
.diff .box .icon img{
	filter: var(--filterOrange);
}
.diff .box h3{
	color: var(--textC);
}
.diff .box p{
	color: var(--textC);
}
.diff .box .in{
	padding-bottom: 20px;
}


/* cta */
.cta{
	 background-image: url("img/fire-hero-bg.webp");
    background-position: center center;
    background-repeat: no-repeat;
	background-size: cover;
	position: relative;
	
}

.cta:before{
	content: "";
	display: block;
	position: absolute;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: var(--main);
	opacity: 0.9;
	
}
.cta-maintenance{
	background: none;
}
.cta-maintenance::before{
	background: var(--gradientNavy);
	opacity: 1;
}

 
 
 .cta-maintenance .home-headline h2{
	 font-size: 35px;
 }
  .cta-maintenance .home-headline h3{
	  color: var(--yellow);
  }
 


.cta .home-headline p{
	color: #fff;
}
.cta .container{
	position: relative;
	z-index: 10;
}
.cta .buttons{
	margin: auto; 
	justify-content: center;
	display: flex;
	gap:10px;
	margin-top: 20px;
}
.cta .buttons .buttonW{
	color: var(--main);
}
.cta .buttons .buttonW:hover{
	color: #fff;
}
.cta .buttons .buttonT{
	border: 2px solid #fff;
}


#footer{
	background-color: var(--blue);
	position: relative;
	margin-top: 5px;
}
#footer::before {
  content: "";
  width: 100%;
  height: 5px;
  background: #CE0A00;
  background: linear-gradient(90deg, rgba(206, 10, 0, 1) 0%, rgba(242, 101, 36, 1) 50%, rgba(35, 41, 125, 1) 100%);
  display: block;
  position: absolute;
  top: -5px;
 } 
#footer h4{
	font-size: 18px;
	padding-bottom: 20px;
	padding-left: 17px;
	position: relative;
}
#footer h4:before{
	content: "";
	width: 8px;
	height: 8px;
	border-radius: 10px;
	background-color: var(--main);
	display: block;
	position: absolute;
	left: 0;
	top: 7px;
}
#footer .links-s h4:before{ background-color: var(--navy); }
#footer .links-g h4:before{ background-color: var(--orange); }

#footer p{
	color: var(--textC);
	font-size: 15px;
	line-height: 1.5;
	margin-top: 0px;
}
#footer .logo{
	flex: 0 0 28%; 
	padding-right: 40px;
}
#footer .logo-box{
	background-color: #fff;
	border-radius: 15px;
	display: inline-block;
	margin-bottom: 25px;
}
#footer .logo-box img{
	width: 250px;
	padding: 5px;
}
#footer .links{
	padding-left: 30px;
	position: relative;
	flex: 0 0 24%;
}
#footer .links ul li a{
	color: var(--textC);
	font-size: 15px;
}
#footer .links:before{
	content: "";
	display: block;
	width: 1px;
	height: 100%;
	background: #0C102B;
	background: linear-gradient(0deg, rgba(12, 16, 43, 0) 0%, rgb(55, 58, 78) 50%, rgba(12, 16, 43, 0) 100%);
	position: absolute;
	left: 0;
	top: 0;
}
#footer .links .button{
	padding: 7px 0 9px;
	width: 100%;
	text-align: center;
	display: block;
}
#footer .social-media {
	margin-top: 20px;
}
#footer .social-media ul li a{
	background-color: #222741;
	border:none;
}
.social-media ul li a::after{
	color: #fff;
	font-size: 16px;
  font-weight: 300;
}
#footer .social-media ul li.icon-facebook a:hover{ background-color: #2a41b3; }
#footer .social-media ul li.icon-instagram a:hover{ background-color: #d13376; }
#footer .social-media ul li.icon-x a:hover{ background-color: #52a5ef; }
#footer .social-media ul li.icon-linkedin a:hover{ background-color: #2a41b3; }
#footer .social-media ul{
	justify-content:flex-start; 
}
#footer .row.row-2{
	padding: 30px 0; 
}
#footer .menu ul li a{
	color: var(--textC);
}


/* line */
.line{
	width: 50px;
	height: 4px;
	background-color: var(--orange);
	display: block;
	margin: 20px auto;
}
.line-red{
	background-color: var(--main);
}
.line-navy{
	background-color: var(--navy);
}
.line-left{
	margin-left: 5px;
}

/* page-boxes */
.page-boxes{
	background-color: #fff;
}
.page-boxes .brand{
	background: transparent;
}
.page-boxes .entry-content ul{
	margin-top: 30px;
}
.page-boxes .entry-content ul li{
	font-size: 17px;
}
.page-boxes .entry-content ul li:before{
	content: "\f058";
	font-size: 16px;
	font-weight: 300;
	color: #02c951;
}
.page-boxes .services-items .box .in{
	padding-bottom: 30px;
}
.page-boxes .services-items .box .icon{
	background: var(--gradientRed);
}
.page-boxes .services-items .box.box-red .icon{ background: var(--gradientRed); }
.page-boxes .services-items .box.box-navy .icon{ background: var(--gradientNavy); }
.page-boxes .services-items .box.box-orange .icon{ background: var(--gradientOrange); }

.page-boxes .services-items .box .icon img{
	filter: var(--filterWhite);
}

/* service-text-section */
.service-text-section .box{
	background-color: #fff;
	border-radius: 20px;
	box-shadow: 0 3px 4px rgba(0,0,0,0.15);
	padding: 30px;
	margin-top: 110px;
	margin-left: 45px;
}
.service-text-section .home-headline h2{
	font-size: 36px;
}
.service-text-section .title{
	display: flex; 
}
.service-text-section .title .icon{
	width: 50px;
	height: 50px;
	border-radius: 10px;
	background-color: #fae5e5;
	margin-right: 20px;
	display: flex;
}
.service-text-section .title .icon img{
	filter: var(--filterRed);
	margin: auto;
}
.service-text-section .title h4{
	margin: 0;
	padding: 7px 0;
}
.service-text-section .box p{
	padding-top: 20px;
	padding-bottom: 20px;
}
.service-text-section .box .items{
	
}
.service-text-section .box .items .item{
	padding: 4px;
}
.service-text-section .box .items .item .in{
	background-color: var(--light);
	padding: 10px 10px;
	border-radius: 3px;
	padding-left: 25px;
}
.service-text-section .box .items .item .in i{
	color: #04c952;
	font-size: 15px;
	position: relative;
	top: 6px;
	left: -10px;
}
.service-text-section .entry-content p{
	font-size: 17px; 
}


/* faq */
.faq{
	background-color: #fff;
}
.faq .container{
	max-width: 900px; 
}
.faq .fbox{
	background-color: var(--light);
	border-radius: 15px;
	padding: 30px;
	margin: 15px 0;
}
.faq .fbox h3{
	font-size: 19px;
	color: var(--dark);
	padding: 0;
	margin: 0;
}
.faq .fbox .answer{
	font-size: 16px;
	color: var(--dark);
	font-weight: 300;
	padding: 10px 0;
}



/* FAQ */

.faq-wrapper.box {
    background-color: #f9f9f9;
}

.faq-wrapper.box .questions {
    padding: 0 60px;
    margin-top: 30px;
}
.faq-wrapper.box .accordion-item {
    padding: 0 100px 0 170px;
}
.faq-wrapper.box .accordion-item.active {
    position: relative;
    background-color: #FFF;
    box-shadow: 0 0 30px rgba(134, 153, 153, .1);
    overflow: hidden;
}
.faq-wrapper.box .accordion-item::after {
    width: calc(100% - 250px);
    right: 30px;
}
.faq-wrapper.box .accordion-item:last-of-type::after {
    display: block;
}
.faq-wrapper.box .accordion-item.active::after {
    background-color: transparent;
}
.faq-wrapper.box .accordion-item.active::before {
    content: "";
    display: block;
    width: 172px;
    height: 172px;
    background-color: var(--main);
    border-radius: 50%;
    position: absolute;
    top: -55px; left: -45px;
}
.faq-wrapper.box .accordion-header h3[aria-expanded="true"]::before {
    color: #FFF;
    font-size: 28px;
    top: 38px;
    left: -155px;
}

.faq-wrapper .more a {
    display: inline-block;
    color: #1f1f1f;
    font-size: 19px;
    font-weight: 700;
    line-height: 100%;
    letter-spacing: 0;
    text-decoration: underline;
    text-underline-offset: 4px;
    padding: 0;
    margin: 55px 0 0 0;
}
.faq-wrapper .more a:hover {
    color: var(--main);
    text-decoration: none;
    border-color: var(--main);
}

/* REVIEWS */

#reviews {
    position: relative;
}

#reviews .reviews {
    margin-top: 20px;
}

#reviews .slick-track {
    display: flex !important;
}

#reviews .review {
    height: inherit !important;
    padding-left: 15px;
    padding-right: 15px;
}
#reviews .review .content {
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 70px 60px 50px 65px;
    background-color: #f9f9f9;
}

#reviews .review .content .opinion {
    flex: 1;
}
#reviews .review .content .opinion p {
    position: relative;
    color: #282828;
    font-size: 19px;
    font-weight: 400;
    line-height: 31px;
    letter-spacing: -0.19px;
    text-indent: 65px;
    padding: 0;
    margin: 0;
}
#reviews .review .content .opinion p:first-of-type::before {
    content: '“';
    color: var(--main);
    font-family: "Montserrat";
    font-size: 150px;
    font-weight: 700;
    position: absolute;
    top: 18px; left: -85px;
}

#reviews .review .content .overview p {
    position: relative;
    color: #282828;
    font-size: 18px;
    font-weight: 300;
    line-height: 100%;
    letter-spacing: -0.18px;
    padding: 0;
    margin: 0;
}
#reviews .review .content .overview p strong {
    font-weight: 600;
}
#reviews .review .content .overview p::before {
    content: "";
    display: block;
    width: 110px;
    height: 10px;
    margin-top: 27px;
    margin-bottom: 25px;
    background-color: var(--main);
    border-radius: 10px;
}



#page-wrapper {
   padding-bottom: 70px;
}
#page-wrapper #main{
	background-color: #fff;
	padding: 60px 100px;
	border-radius: 10px;
	box-shadow: 0 5px 5px rgba(0,0,0,0.10);
	margin-top: -50px;
	position: relative;
	z-index: 10;
}
#page-wrapper #main.main-page{
	background: transparent;
	box-shadow: none;
}

.entry-content h1, 
.entry-content h2, 
.entry-content h3, 
.entry-content h4 {
    scroll-margin-top: 150px;
}
.entry-content h1 a, 
.entry-content h2 a, 
.entry-content h3 a, 
.entry-content h4 a {
    text-decoration: none;
}

.entry-content > h1:first-child, 
.entry-content > h2:first-child, 
.entry-content > h3:first-child, 
.entry-content > h4:first-child, 
.entry-content > h5:first-child,
.entry-content > h6:first-child {
    padding-top: 0;
}

.entry-content h1, .entry-content h2, h1.post-title {
    color: var(--dark);
    font-size: 30px;
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: -0.8px;
}
.entry-content h1::after, h1.post-title::after {
    content: "";
    display: block;
    width: 208px;
    height: 10px;
    margin-top: 25px;
    background-color: var(--main);
    border-radius: 2px;
}
.entry-content h3, .sitemap_by_click5 h2 {
    color: var(--dark);
    font-size: 28px;
    font-weight: 400;
    line-height: 1.3;
    letter-spacing: -0.28px;
}
.entry-content h4 {
     color: var(--dark);
    font-size: 23px;
    font-weight: 400;
    line-height: 1.3;
    letter-spacing: -0.23px;
}
.entry-content h5, .entry-content h6 {
     color: var(--dark);
}

.entry-content a {
    text-decoration: underline;
}
.entry-content a:hover {
    text-decoration: none;
}

.entry-content p, .entry-content ul li, .entry-content ol li {
    color: var(--dark);
    font-size: 17px;
    font-weight: 300;
    line-height: 1.67;
    letter-spacing: -0.19px;
    padding: 0;
}
.entry-content p strong {
    font-weight: 700;
}
.entry-content p:last-of-type {
    margin-bottom: 0;
}

.entry-content img.aligncenter {
    display: block;
    height: auto;
    margin: 0 auto;
}
.entry-content img.alignright {
    float: right;
    margin-left: 30px;
    margin-bottom: 20px;
    margin-top: 20px;
}
.entry-content img.alignleft {
    float: left;
    margin-right: 30px;
    margin-bottom: 20px;
    margin-top: 20px;
}

.entry-content ul {
    list-style: none;
    padding-left: 20px;
}
.entry-content ul li {
    position: relative;
    line-height: 28px;
    padding-left: 25px;
    margin-top: 10px;
}
.entry-content ul li::before {
    content: "\f054";
    color: var(--main);
    font-family: var(--fa-family-classic);
    font-size: 10px;
    font-weight: 700;
    line-height: 32px;
    position: absolute;
    left: 0;
}

.entry-content ol {
    margin-left: 0;
}
.entry-content ol li {
    padding-left: 7px;
    margin-top: 5px;
}

.entry-content blockquote {
    position: relative;
    padding-left: 50px;
    margin: 40px 0;
}
.entry-content blockquote:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 10px;
    height: 100%;
    background-color: var(--main);
    border-radius: 3px;
}
.entry-content blockquote p {
    font-size: 20px;
    font-weight: 600;
    line-height: 36px;
    margin: 0;
}

/* SITEMAP */

.sitemap_by_click5 h2::after {
    display: none;
}
.sitemap_by_click5 ul li a {
    text-decoration: none;
}
.sitemap_by_click5 ul li a:hover {
    text-decoration: underline;
}

/* CONTACT */

#contact-intro {
    position: relative;
    background-color: #f9f9f9;
}

#contact-intro .box {
    display: flex;
    padding-left: 55px;
}
#contact-intro .box:first-of-type {
    padding-left: 150px;
}

#contact-intro .box .icon {
    width: 60px;
}

#contact-intro .box .content {
    width: calc(100% - 60px);
    padding-left: 30px;
}
#contact-intro .box .content h2 {
    color: #252525;
    font-size: 23px;
    font-weight: 700;
    line-height: 100%;
    letter-spacing: -0.34px;
    padding: 15px 0 35px 0;
    margin: 0;
}
#contact-intro .box .content address, #contact-intro .box .content p {
    color: #555;
    font-size: 19px;
    font-weight: 400;
    line-height: 30px;
    letter-spacing: -0.57px;
    padding: 0;
    margin: 0;
}
#contact-intro .box .content a.directions {
    display: inline-block;
    color: var(--main);
    font-size: 18px;
    font-weight: 400;
    line-height: 100%;
    letter-spacing: -0.54px;
    padding: 0 0 1px 0;
    margin: 6px 0 0 0;
    border-bottom: 1px solid var(--main);
}
#contact-intro .box .content a.directions:hover {
    text-decoration: none;
    border-color: transparent;
}
#contact-intro .box .content a.phone {
    display: inline-block;
    color: var(--main);
    font-size: 39px;
    font-weight: 700;
    line-height: 100%;
    letter-spacing: -1.17px;
    padding: 0 0 1px 0;
    margin: 0;
    border-bottom: 2px solid transparent;
}
#contact-intro .box .content a.phone:hover {
    text-decoration: none;
    border-color: var(--main);
}

#contact-wrapper .form {
    margin-top: 20px;
}
#contact-wrapper .form .wpcf7 {
    padding: 115px 130px 100px 130px;
    background-color: #FFF;
    border: 1px solid #DDD;
    border-radius: 5px;
    box-shadow: 0 25px 60px rgba(51, 51, 51, .08);
}

.contact-map {
    font-size: 0; 
}
.contact-map iframe {
    filter: grayscale(100%);
}

/* WIDGETS */

#sidebar-area {
    position: relative;
    flex: 0 0 auto;
    width: 30%;
    margin-right: -55px;
    margin-top: -45px;
    padding-left: 0;
    z-index: 4;
     overflow: visible;
}

#sidebar-area > * {
    position: relative;
    z-index: 4;
}



.widget-links {
    padding-top: 15px;
    padding-bottom: 40px;
    padding-left: 0px;
      box-shadow: 0 3px 4px rgba(0,0,0,0.15);
  border-top: 3px solid var(--main);
  background-color: #fff;
  border-radius: 15px; 
  
  position: sticky;
    top: 170px; /* lepiej większy offset przy headerze */
    align-self: flex-start;
}
.widget-links h3 {
    color: var(--dark);
    font-size: 36px;
    font-weight: 400;
    line-height: 100%;
    letter-spacing: -0.36px;
    padding: 28px 0 27px 40px;
    margin: 0;
}
.widget-links ul {
    padding: 0;
    margin: 0;
    list-style: none;
}
.widget-links ul li a {
    position: relative;
    display: block;
    color: #40414b;
    font-size: 18px;
    font-weight: 400;
    line-height: 100%;
    letter-spacing: -0.27px;
    padding: 17px 0 17px 70px;
    margin: 0;
}
.widget-links ul li a::before {
    content: "\f054";
    color: var(--main);
    font-family: var(--fa-family-classic);
    font-size: 10px;
    font-weight: 700;
    position: absolute;
    left: 50px;
}
.widget-links ul li a:hover, .widget-links ul li a[aria-current="page"] {
    color: var(--main);
    text-decoration: none;
    background-color: #FFF;
}


/* story */
.story{
	background: #fff;
}
.story .col-photo::after{
	display: none;
}
.story .photo{
	width: 90%;
	height: 100%;
	margin-top: 0; 
	margin-left: 10%;
}
.story .since{
	left: 0;
	right: auto;
	background-color: var(--main);
	caption-side: #fff;
	width: 200px; 
	padding: 20px; 
}
.story .since .txt{
	display: block;
}
.story .since .year{
	font-size:: 40px; 
	color: #fff;
	display: block; 
}
.story .since .title{
	color: #fff;
}


/* legacy */
.legacy .home-headline-center{
	max-width: 950px;
}
.legacy .home-headline-center h2{
	font-size: 42px; 
	padding-bottom: 20px;
}
.legacy .home-headline-center p{
	text-align: justify; 
}

/* about-stat */
.about-stat .in{
	text-align: center;
	padding-left: 0; 
	border: none;
}

/* capabilities */
.capabilities{
	background-color: #fff;
}
.capabilities .home-headline h3{
	color: var(--dark);
	text-transform: none;
	font-size: 30px; 
	padding-top: 50px;
	letter-spacing: -0.5px;
	
}
.capabilities .services-items .box .in{
	text-align: center; 
	border-top: 1px solid #efefef;
}
.capabilities .services-items .box .icon{
	margin: auto;
	border-radius: 100px;
	transition-duration: 0.3s;
}
.capabilities .services-items .box:hover .icon{
	background-color: var(--main);
	
}
.capabilities .services-items .box .icon img{
	filter:var(--filterNavy);
	transition-duration: 0.3s;
}
.capabilities .services-items .box:hover .icon img{
	filter:var(--filterWhite);
}
.capabilities .services-items .box .in{
	padding-bottom: 30px;
}
.capabilities .services-items .box h3{
	font-size: 20px; 
}
.capabilities .services-items .box p{
	color: var(--dark);
}
.capabilities .home-headline h2{
	font-size: 43px;  
}


/*  maintenance_boxes */
.maintenance_boxes .services-items .box .in{
	display: flex;
	text-align: left; 
	background-color: var(--light);
	box-shadow: 0 0 0 rgba(255,255,255,0); 
	border: none; 
}
.maintenance_boxes .services-items .box .in:hover{
	box-shadow: 0 12px 18px rgba(0,0,0,0.2);
}
.maintenance_boxes .services-items .box .in .icon{
	flex:0 0 62px; 
	margin: 15px 20px 0 5px; 
	background-color: #e1e4ef; 
	border-radius: 5px; 
}
.maintenance_boxes .services-items .box:hover .icon img{
	filter:var(--filterNavy);
}	
.maintenance_boxes .services-items .box .in h3{
	padding-bottom: 0; 
}


/* technology */
.technology{
	background-color: var(--light);
}



/* contact-boxes */
.contact-boxes {
	background-color: #fff;	
}
.contact-boxes .box{
	padding-left: 30px;
}
.contact-boxes .box-emergency{
	padding-left: auto;
	padding-right: 30px; 
}

.contact-boxes .box .in{
	border-radius: 20px;
	height: 100%;
	padding: 50px 55px; 
	background-color: var(--light);
	position: relative;
}
.contact-boxes .box .in .buttons{
	position: absolute;
	bottom: 0;
	width: 100%;
}
.contact-boxes .box .in .buttons .button{
	width: 100%;
	display: block;
	text-align: center; 
	po
}
.contact-boxes .box-emergency .in{
	background-color: var(--blue);
	padding-left: auto; 
}
.contact-boxes .home-headline{
	position: relative;
	height: 100%; 
}
.contact-boxes .home-headline h2{
	font-size: 40px; 
}
.contact-boxes .gform_title{
	display: none; 
}
.contact-boxes .gfield_label{
	font-weight: 300 !important;
	font-size: 14px !important; 
}
.contact-boxes .gfield textarea,
.contact-boxes .gfield select,
.contact-boxes .gfield input{
	border-radius: 7px !important;
	height:50px !important;
	font-size: 16px !important; 
	border:1px solid #e2e8f0 !important; 
}
.gform-theme--foundation .gfield textarea.large {
  min-block-size: 150px !important;
 }
.contact-boxes .gfield textarea{
	height:150px !important;
}
.contact-boxes .gform-theme--foundation .gform_fields{
	column-gap: 15px  !important; 
	row-gap: 15px !important; 
}
.contact-boxes .gform_button{
	background-color: var(--main) !important; 
	font-size: 16px !important; 
	height: 56px !important; 
}
.gform_submission_error, 
.hide_summary{
	letter-spacing: 0 !important; 	
}
.contact-boxes .emergency{ 
	text-align: center; 
	color: var(--textC); 
	padding-top: 10px;
	font-weight: 300;
}
.contact-boxes .emergency a{
	text-decoration: underline;
} 
.contact-boxes .emergency a:hover{
	text-decoration: none;
	color: var(--main);
} 



/* contact-type-boxes */
.contact-type-boxes{
	background-color: var(--light);
}
.contact-type-boxes .box .in{
	width: 100%; 
}
.contact-type-boxes .row-top{
	padding-top: 30px; 
}

/* contact-boxes-info */
.contact-boxes-info .services-items .box .icon img{
	filter:var(--filterWhite);
}
.contact-boxes-info .box-red .icon{ background-color: var(--main); }
.contact-boxes-info .box-navy .icon{ background-color: var(--navy); }
.contact-boxes-info .box-orange .icon{ background-color: var(--orange); }

.contact-boxes-info .services-items .box .big{
	font-size: 25px;
	color: var(--dark);
}
.contact-boxes-info .box{
	padding: 5px; 
}


.row-50{
	margin-top: 50px; 
}


/* single */
.toc-page{
	box-shadow: 0 3px 4px rgba(0,0,0,0.15);
  border-top: 3px solid var(--main);
}
.news > a{
		box-shadow: 0 3px 4px rgba(0,0,0,0.15);
  border-radius: 15px;
  overflow: hidden; 
}
#recent-posts{
	background: #fff;
}
.single .news .photo{
width: 485px;
  height: 320px;
  float: right;
  border-radius: 15px;
  margin-left: 20px;
  margin-bottom: 10px;
  
}  
.news .photo-out{
	overflow: hidden;
}
.news .photo-out .photo{
	transition-duration: 0.3s;
}
.news .content h2, .news .content h3{
	font-weight: 400;
	font-size: 30px;
	color: var(--dark);
}
.news:hover .photo-out .photo{
	transform: scale(1.1);
	position: relative;
}
.news .photo-out .photo:before{
	position: absolute;
	top: 0px;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0.3;
	content: "";
	display: block;
	background: linear-gradient(138deg, rgb(18, 29, 76) 0%, rgba(7, 11, 18, 1) 50%, rgb(61, 12, 18) 100%);
}

.news .content .more span{
	border-radius: 8px; 
}
.news .category{
	background-color: var(--navy);
}

#single-wrapper .back::after{
	background-color: #fff;
}

/* breadcrumbs */
#breadcrumbs{
	font-size: 16px; 
}
#breadcrumbs i{
	font-size: 11px;
	margin: auto 8px; 
}
#breadcrumbs a{
	text-decoration: underline; 
}
#breadcrumbs a:hover{
	text-decoration: none;
	opacity: 0.7;
}


.faq-wrapper .accordion-item{
	background-color: #fff;
}
.faq-wrapper .accordion-item .accordion-header .accordion-title{
		font-size: 20px;
  font-weight: 400
}
.faq-wrapper .accordion-item.active .accordion-header .accordion-title{
	font-size: 20px;
  font-weight: 400;
  line-height: 1.3;
  padding: 20px 15px 10px;
}  
.faq-wrapper .accordion-item::after{
	display: none; 
}
.faq-wrapper .accordion-header .accordion-title{
	margin-bottom: 10px;
}
.faq-wrapper .accordion-header .accordion-title::before,
.faq-wrapper .accordion-header .accordion-title[aria-expanded="true"]::before {
  font-size: 11px;
  top: 21px;
  left: -12px;
} 
.faq-wrapper .accordion-header .accordion-title[aria-expanded="true"]::before {
	top: 27px;
} 
.faq-wrapper .accordion-body{
	padding-bottom: 20px; 
}
.accordion-item{
	color: var(--dark);
}
.accordion-header .accordion-title, .faq-wrapper .accordion-header .accordion-title{
	color: var(--dark);
	padding: 20px 15px 20px 15px;
}
.faq-wrapper .accordion-item.active .accordion-title{
	color: var(--main);
}

