/**
* koubajc.cz
*/

/* Fonts */
/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
/* Typography */

:root {

--font-default: "Helvetica Neue", Arial,  sans-serif, "Noto Sans", "Liberation Sans", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji", system-ui, -apple-system;
--font-primary: "Helvetica Neue", Arial, sans-serif;
--font-secondary: "Helvetica Neue", Arial, sans-serif;
}

/* Colors */
:root {

--color-default: #444443;
--color-primary: #ff6600;
--color-secondary: #223973;
--color-secondary2: #294689;
--color-hover: #ffffff;
}

/* Smooth scroll behavior */
:root {
scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
font-family: var(--font-default);
color: var(--color-default);
}

a {
color: #066CD3;
text-decoration: none;
font-weight:bold;
}

a:hover,
a:focus {
color: #066CD3;
text-decoration: underline;
}

h5 {
font-family: var(--font-primary);
color:  var(--color-default);
}

h1,
h2,
h3,
h4,
h6 {
font-family: var(--font-primary);
color: var(--color-secondary2);
}
h5 {
font-size:1.4em;
line-height:1.6em;
color: var(--color-primary);
}
section h1 {
font-size: 2.2em;
margin:0 0 0.3em 0;padding:0;line-height:1.4em;
font-weight: 700;
color: var(--color-secondary2);
}
section h2 {
font-size: 1.6em;
margin:0 0 0.3em 0;padding:0;line-height:1.3em;

font-weight: 700;
color: var(--color-secondary2);
}
h3.tagged, section h3.tagged {
display:inline!important;
font-size:1.2em;
line-height:1.2em;
margin:5px 0 0 0;
padding:0;
font-weight:bold;
color: var(--color-primary);
}


/* Mobile Menu Default */
.mobile-menu {
display: none;
position: absolute;
top: 15px;
right: 30px;
z-index: 10;
}


.bg-primary {
background-color:	 var(--color-secondary2)!important;
background:	 var(--color-secondary2)!important;
font-size:1em;
font-weight:bold;
color:#fff;
padding:6px 12px;
}


/*--------------------------------------------------------------
# Sections & Section Header
--------------------------------------------------------------*/
section {
padding: 30px 0 50px 0;
overflow: hidden;
}

.section-header {
text-align: center;
padding: 30px 0;
position: relative;
}

.section-header h2 {
font-size: 32px;
font-weight: 700;
text-transform: uppercase;
margin-bottom: 20px;
padding-bottom: 0;
color: #001973;
position: relative;
z-index: 2;
margin-bottom: 20px;
padding-bottom: 20px;
position: relative;
}

.section-header h2:after {
content: "";
position: absolute;
display: block;
width: 50px;
height: 3px;
background: var(--color-primary);
left: 0;
right: 0;
bottom: 0;
margin: auto;
}

.section-header span {
position: absolute;
top: 46px;
color: rgba(14, 29, 52, 0.06);
left: 0;
right: 0;
z-index: 1;
font-weight: 700;
font-size: 56px;
text-transform: uppercase;
line-height: 0;
}

.section-header p {
margin-bottom: 0;
position: relative;
z-index: 2;
}

@media (max-width: 640px) {
.section-header h2 {
font-size: 28px;
margin-bottom: 15px;
}

.section-header span {
font-size: 38px;
}
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
margin-top:85px!important;	
}


.breadcrumbs nav {
background-color: #F2F0ED;
padding: 20px 0 20px 5px;
}

.breadcrumbs nav ol {
display: flex;
flex-wrap: wrap;
list-style: none;
margin: 0;
padding: 0;
font-size: 16px;
color: var(--color-secondary2);
}

.breadcrumbs nav ol a {
/* color: var(--color-primary);*/
transition: 0.3s;
}

.breadcrumbs nav ol a:hover {
text-decoration: underline;
}

.breadcrumbs nav ol li+li {
padding-left: 10px;
}

.breadcrumbs nav ol li+li::before {
display: inline-block;
padding-right: 10px;
color: var(--color-secondary2);
/* content: "/"; */
content: "|";
}

/*--------------------------------------------------------------
# Scroll top button
--------------------------------------------------------------*/
.scroll-top {
position: fixed;
visibility: hidden;
opacity: 0;
right: 15px;
bottom: 15px;
z-index: 99999;
background: var(--color-primary);
width: 40px;
height: 40px;
border-radius: 4px;
transition: all 0.4s;
}

.scroll-top i {
font-size: 24px;
color: #fff;
line-height: 0;
}

.scroll-top:hover {
background: #ee3311;
color: #fff;
}

.scroll-top.active {
visibility: visible;
opacity: 1;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
position: fixed;
inset: 0;
z-index: 9999;
overflow: hidden;
background: #fff;
transition: all 0.6s ease-out;
width: 100%;
height: 100vh;
}

#preloader:before,
#preloader:after {
content: "";
position: absolute;
border: 4px solid var(--color-primary);
border-radius: 50%;
-webkit-animation: animate-preloader 2s cubic-bezier(0, 0.2, 0.8, 1) infinite;
animation: animate-preloader 2s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}

#preloader:after {
-webkit-animation-delay: -0.5s;
animation-delay: -0.5s;
}

@-webkit-keyframes animate-preloader {
0% {
width: 10px;
height: 10px;
top: calc(50% - 5px);
left: calc(50% - 5px);
opacity: 1;
}

100% {
width: 72px;
height: 72px;
top: calc(50% - 36px);
left: calc(50% - 36px);
opacity: 0;
}
}

@keyframes animate-preloader {
0% {
width: 10px;
height: 10px;
top: calc(50% - 5px);
left: calc(50% - 5px);
opacity: 1;
}

100% {
width: 72px;
height: 72px;
top: calc(50% - 36px);
left: calc(50% - 36px);
opacity: 0;
}
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
[data-aos-delay] {
transition-delay: 0 !important;
}
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
.header {
transition: all 0.5s;
z-index: 997;
padding: 30px 0;
}

.header.sticked {
background: rgba(43, 54, 124, 0.9);
background: rgba(36, 59, 117, 1);
padding: 15px 0;
box-shadow: 0px 2px 20px rgba(36, 59, 117, 0.1);
}

.header .logo img {
max-height: 70px;
margin:2px 6px -15px 2px;
}

.header .logo h1 {
font-size: 29px;
margin: 0;
font-weight: 700;
color: #fff;
font-family: var(--font-primary);
}

/*--------------------------------------------------------------
# Desktop Navigation
--------------------------------------------------------------*/
@media (min-width: 1280px) {
.navbar {
padding: 0;
}

.navbar ul {
margin: 0;
padding: 0;
display: flex;
list-style: none;
align-items: center;
}

.navbar li {
position: relative;
}

.navbar a,
.navbar a:focus {
display: flex;
align-items: center;
justify-content: space-between;
padding: 10px 0 10px 30px;
font-family: var(--font-primary);
font-size: 16px;
font-weight: 400;
color: rgba(255, 255, 255, 0.6);
white-space: nowrap;
transition: 0.3s;
}

.navbar a i,
.navbar a:focus i {
font-size: 12px;
line-height: 0;
margin-left: 5px;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
color: #fff;
}

.navbar .prihlaska,
.navbar .prihlaska:focus {
background: var(--color-primary);
padding: 8px 20px;
margin-left: 30px;
border-radius: 4px;
color: #fff;
}

.navbar .prihlaska:hover,
.navbar .prihlaska:focus:hover {
color: #fff;
background: #ee3311;
transition: 0.4s;  
}

.navbar .dropdown ul {
display: block;
position: absolute;
left: 14px;
top: calc(100% + 30px);
margin: 0;
padding: 10px 0;
z-index: 99;
opacity: 0;
visibility: hidden;
background: #fff;
box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
transition: 0.3s;
border-radius: 4px;
}

.navbar .dropdown ul li {
min-width: 200px;
}

.navbar .dropdown ul a {
padding: 5px 20px;
font-size: 15px;
text-transform: none;
font-weight: 400;
color: var(--color-secondary);
}

.navbar .dropdown ul a i {
font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
color:#066cd3;
}

.navbar .dropdown:hover>ul {
opacity: 1;
top: 100%;
visibility: visible;
}

.navbar .dropdown .dropdown ul {
top: 0;
left: calc(100% - 30px);
visibility: hidden;
}

.navbar .dropdown .dropdown:hover>ul {
opacity: 1;
top: 0;
left: 100%;
visibility: visible;
}
}

@media (min-width: 1280px) and (max-width: 1366px) {
.navbar .dropdown .dropdown ul {
left: -90%;
}

.navbar .dropdown .dropdown:hover>ul {
left: -100%;
}
}

@media (min-width: 1280px) {

.mobile-nav-show,
.mobile-nav-hide {
display: none;
}
}


/*--------------------------------------------------------------
# Mobile Navigation
--------------------------------------------------------------*/

@media (max-width: 1279px) {
.navbar {
position: absolute;
top: -7px!important;
right: -100%;
width: 100%;
max-width: 100%;
transition: 0.3s;
z-index: 9997;

}

.navbar ul {
position:relative;
inset: 0;
padding: 50px 0 10px 0;
margin: 0;
background: rgba(34, 57, 115, 1);
/*    background: rgba(14, 29, 52, 0.9);*/
overflow-y: auto;
transition: 0.3s;
z-index: 9998;
width: 100%;
max-width:500px;
}

.navbar a,
.navbar a:focus {
display: flex;
align-items: center;
justify-content: space-between;
padding: 8px 20px;
font-family: var(--font-primary);
font-size: 16px;
font-weight: 500;
color: rgba(255, 255, 255, 0.7);
white-space: nowrap;
transition: 0.3s;
}

.navbar a i,
.navbar a:focus i {
font-size: 12px;
line-height: 0;
margin-left: 5px;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
color: #fff;
}

.navbar .prihlaska,
.navbar .prihlaska:focus {
background: var(--color-primary);
padding: 8px 20px;
border-radius: 4px;
margin: 15px;
color: #fff;
}

.navbar .prihlaska:hover,
.navbar .prihlaska:focus:hover {
color: #fff;
background: rgba(13, 66, 255, 0.8);
}


.navbar .dropdown ul,
.navbar .dropdown .dropdown ul {

position: static;
display: none;
padding: 10px 0;
margin: 10px 20px;
transition: all 0.5s ease-in-out;
border: 1px solid #5F697F;
width:auto!important;	
}

.navbar .dropdown>.dropdown-active,
.navbar .dropdown .dropdown>.dropdown-active {
display: block;
}

.navbar .dropdown ul a {
padding: 3px 20px;
font-size: 15px;
}

.mobile-nav-show {
color: #fff;
font-size: 28px;
cursor: pointer;
line-height: 0;
transition: 0.5s;
z-index: 9999;
margin-right: 10px;
}

.mobile-nav-hide {
color: #fff;
font-size: 32px;
cursor: pointer;
line-height: 0;
transition: 0.5s;
position: fixed;
right: 25px;
top: 25px;
z-index: 9999;
}

.mobile-nav-active {
overflow: hidden;
}

.mobile-nav-active .navbar {
right: 0!important;
}

.mobile-nav-active .navbar:before {
content: "";
position: fixed;
inset: 0;
background: rgba(14, 29, 52, 0.8);
z-index: 9996;
}
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
width: 100%;
min-height: 50vh;
background-color: var(--color-secondary);
background-image: url("../img/hero-bg3.png");
background-size: cover;
background-position: center;
position: relative;
padding: 120px 0 45px 0;
color: rgba(255, 255, 255, 0.8);
}

.hero h1 {
font-size: 41px;
margin:0.5em 0 0.2em 0;
padding:0;
line-height:1em;
font-weight: 700;
color: #fff;
}
/* intro news and blog links */
.hero h4.title {
margin:0.3em 0 0.3em 0;
padding:0;
line-height:1em;
}
.hero h4.title a {
font-size: 15px;
line-height:1em;
font-weight: 700;
color: var(--color-primary);
}
.hero h4.title a:hover,.hero h4.title a:active  {
color:  var(--color-hover);
}



@media (max-width: 575px) {
.hero h1 {
font-size: 30px;
}
}

.hero p {
font-size: 1em;
margin-bottom: 30px;
line-height:1.5em;
}
.hero p a {
font-weight: 700;
}

.hero a {
color: #fff;
}
.hero a:hover {
color: #fff;
}

.hero form {
background: #fff;
padding: 10px;
border-radius: 10px;
}

.hero form .form-control {
padding-top: 12px;
padding-bottom: 5px;
padding-left: 20px;
padding-right: 20px;
border: none;
margin-right: 10px;
margin-bottom:0;
border: none !important;
background: none !important;
}

.hero form .form-control:hover,
.hero form .form-control:focus {
outline: none;
box-shadow: none;
}

.hero form .btn-primary {
background-color: var(--color-primary);
padding: 15px 30px;
border-radius: 7px;
border: none;
transition: all 0.5s;
outline-color: transparent;
outline-style:solid;
box-shadow: 0;
}

.hero form .btn-primary:hover,.hero form .btn-primary:active {
background-color: var(--color-primary);  
background-color: #E82F00;
transition: all 0.5s;
}

.hero .stats-item {
padding: 30px;
width: 100%;
}

.hero .stats-item span {
font-size: 40px;
display: block;
font-weight: 700;
margin-bottom: 8px;
padding-bottom: 8px;
position: relative;
}

.hero .stats-item span:after {
content: "";
position: absolute;
display: block;
width: 44px;
height: 4px;
background: var(--color-primary);
left: 0;
right: 0;
bottom: 0;
margin: auto;
}

.hero .stats-item p {
padding: 0;
margin: 14px 0 0 0;
font-family: var(--font-primary);
font-size: 15px;
font-weight: 600;
}




/*--------------------------------------------------------------
# Featured Services Section
# Home Page
--------------------------------------------------------------*/


.featured-services .service-item {
position: relative;
height: 100%;
margin-bottom: 20px;
}

.featured-services .service-item .icon {
margin-right: 20px;
}

.featured-services .service-item .icon i {
color: var(--color-secondary);
font-size: 48px;
transition: 0.3s;
}

.featured-services .service-item:hover .icon {
background: #fff;
}

.featured-services .service-item:hover .icon i {
color: #066cd3;
}

.featured-services .service-item .title {
font-weight: 700;
margin-bottom: 10px;
font-size: 20px;
color: #066cd3;
transition: 0.4s;
}

.featured-services .service-item .description {
font-size: 15px;
margin-bottom: 10px;
}

.featured-services .service-item .readmore {
display: flex;
align-items: center;
transition: 0.3s;
font-weight: 700;
font-size: 1em;
}

.featured-services .service-item .readmore i {
margin-left: 8px;
}

.featured-services .service-item:hover .title,
.featured-services .service-item:hover .readmore {
color:#066cd3;
text-decoration:underline;
}

/*--------------------------------------------------------------
# About Us Section
--------------------------------------------------------------*/
.about .content h3 {
font-weight: 700;
font-size: 32px;
font-family: var(--font-secondary);
color: #001f8d;
}

.about .content ul {
list-style: none;
padding: 0;
}

.about .content ul li {
display: flex;
align-items: flex-start;
margin-top: 40px;
}

.about .content ul i {
flex-shrink: 0;
font-size: 60px;

color: var(--color-secondary);
/*  color: var(--color-secondary);*/
margin-right: 30px;
line-height: 0;
}
.about .content ul  a:hover i{
color: #066cd3;
}


.about .content ul h5 {
font-size: 20px;
font-weight: 700;
line-height:1em;
margin: 3px 0 0 0;
color: var(--color-secondary);
}

.about .content ul p {
font-size: 15px;
}

.about .content p:last-child {
margin-bottom: 0;
}

.about .play-btn {
width: 94px;
height: 94px;
background: radial-gradient(var(--color-primary) 50%, rgba(13, 66, 255, 0.4) 52%);
border-radius: 50%;
display: block;
position: absolute;
left: calc(50% - 47px);
top: calc(50% - 47px);
overflow: hidden;
}

.about .play-btn:before {
content: "";
position: absolute;
width: 120px;
height: 120px;
-webkit-animation-delay: 0s;
animation-delay: 0s;
-webkit-animation: pulsate-btn 2s;
animation: pulsate-btn 2s;
-webkit-animation-direction: forwards;
animation-direction: forwards;
-webkit-animation-iteration-count: infinite;
animation-iteration-count: infinite;
-webkit-animation-timing-function: steps;
animation-timing-function: steps;
opacity: 1;
border-radius: 50%;
border: 5px solid rgba(13, 66, 255, 0.7);
top: -15%;
left: -15%;
background: rgba(198, 16, 0, 0);
}

.about .play-btn:after {
content: "";
position: absolute;
left: 50%;
top: 50%;
transform: translateX(-40%) translateY(-50%);
width: 0;
height: 0;
border-top: 10px solid transparent;
border-bottom: 10px solid transparent;
border-left: 15px solid #fff;
z-index: 100;
transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.about .play-btn:hover:before {
content: "";
position: absolute;
left: 50%;
top: 50%;
transform: translateX(-40%) translateY(-50%);
width: 0;
height: 0;
border: none;
border-top: 10px solid transparent;
border-bottom: 10px solid transparent;
border-left: 15px solid #fff;
z-index: 200;
-webkit-animation: none;
animation: none;
border-radius: 0;
}

.about .play-btn:hover:after {
border-left: 15px solid var(--color-primary);
transform: scale(20);
}

@-webkit-keyframes pulsate-btn {
0% {
transform: scale(0.6, 0.6);
opacity: 1;
}

100% {
transform: scale(1, 1);
opacity: 0;
}
}

@keyframes pulsate-btn {
0% {
transform: scale(0.6, 0.6);
opacity: 1;
}

100% {
transform: scale(1, 1);
opacity: 0;
}
}



/*--------------------------------------------------------------
# Team List
--------------------------------------------------------------*/
.people .posts-list article {
box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
padding: 30px;
height: 100%;
border-radius: 10px;
overflow: hidden;
}

.people .posts-list .post-img {
max-height: 360px;
margin: -30px -30px 15px -30px;
overflow: hidden;
}

.people .posts-list .post-category {
font-size: 16px;
color: var(--color-default);
margin-bottom: 10px;
}

.people .posts-list .title {
font-size: 22px;
font-weight: 700;
padding: 0;
margin: 0 0 20px 0;
}

.people .posts-list .title a {
transition: 0.3s;
}

.people .posts-list .post-author-img {
width: 50px;
border-radius: 50%;
margin-right: 15px;
}

.people .posts-list .post-author-list {
font-weight: 600;
margin-bottom: 5px;
}

.people .posts-list .post-date {
font-size: 14px;
color: var(--color-default);
margin-bottom: 0.8em;
}



/*--------------------------------------------------------------
# Clients Section
--------------------------------------------------------------*/
.clients {
padding: 40px 0;
}

.clients .swiper {
padding: 10px 0;
}

.clients .swiper-slide img {
transition: 0.3s;
}

.clients .swiper-slide img:hover {
transform: scale(1.1);
}

.clients .swiper-pagination {
margin-top: 20px;
position: relative;
}

.clients .swiper-pagination .swiper-pagination-bullet {
width: 12px;
height: 12px;
background-color: #fff;
opacity: 1;
background-color: #ddd;
}

.clients .swiper-pagination .swiper-pagination-bullet-active {
background-color: var(--color-primary);
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services .card {
border: 1px solid rgba(14, 29, 52, 0.15);
background: #fff;
position: relative;
border-radius: 0;
height: 100%;
}

.services .card .card-img {
overflow: hidden;
margin-bottom: 15px;
border-radius: 0;
}

.services .card .card-img img {
transition: 0.3s ease-in-out;
}

.services .card h3 {
font-weight: 700;
font-size: 18px;
margin-bottom: 5px;
padding: 10px 30px;
text-transform: uppercase;
}

.services .card a {
/* color: #001973;
color: var(--color-primary);
*/
transition: 0.3;
}
/*
.services .card a:hover {
color: var(--color-primary);
}
*/
.services .card p {
padding: 0 30px;
margin-bottom: 30px;
/*
color: var(--color-secondary);
*/
font-size: 15px;
}

.services .card:hover .card-img img {
transform: scale(1.1);
}

/*--------------------------------------------------------------
# Call To Action Section
--------------------------------------------------------------*/
.call-to-action {
/*
background: linear-gradient(rgba(14, 29, 52, 0.6), rgba(14, 29, 52, 0.8)), url("../img/cta.jpg") center center;
background-size: cover;
padding: 100px 0;
*/
background: #F2F0ED;
background-size: cover;
padding: 50px 0;
color: var(--color-default);
}

@media (min-width: 1365px) {
.call-to-action {
background-attachment: fixed;
}
}

.call-to-action h3 {
color: var(--color-secondary2);
font-size: 28px;
font-weight: 700;
}

.call-to-action p {
color: var(--color-default);
}

.call-to-action .cta-btn {
font-family: var(--font-primary);
font-weight: 500;
font-size: 16px;
letter-spacing: 1px;
display: inline-block;
padding: 12px 40px;
border-radius: 5px;
transition: 0.5s;
margin: 10px;
border: 2px solid #fff;
color: #fff;
}

.call-to-action .cta-btn:hover {
background: var(--color-primary);
border: 2px solid var(--color-primary);

}



.btn-xlarge {

background-image: url('/assets/img/tick.png');
background-position: 0px -7px;
background-repeat: no-repeat;
background-size: 70px 73px;
padding: 18px 28px;
padding-left: 54px;	

font-size: 20px; /*change this to your desired size */
line-height: 1.3em;
font-weight:bold;
-webkit-border-radius: 8px;
-moz-border-radius: 8px;
border-radius: 8px;
margin-top:3px;
width:13em;

background-color:#066cd3!important;
border: 2px solid  #066cd3!important;

}

.btn-xlarge:hover {
background-color: var(--color-secondary)!important;
border: 2px solid  var(--color-secondary)!important;
transition: 0.4s;  
}



.btn-x2large {

background-image: url('/assets/img/mail.png');
background-position: 0px -7px;
background-repeat: no-repeat;
background-size: 70px 73px;
padding: 18px 28px;
padding-left: 54px;	

font-size: 20px; /*change this to your desired size */
line-height: 1.3em;
font-weight:bold;
-webkit-border-radius: 8px;
-moz-border-radius: 8px;
border-radius: 8px;
margin-top:3px;
width:13em;
background-color:#ff6600!important;
border: 2px solid  #ff6600!important;
}

.btn-x2large:hover,.btn-x2large:active {
background-color: #ee3311!important;
border: 2px solid  #ee3311!important;
transition: 0.4s;
}

.btn-prihlas, .btn-hledej {
background-image: url('/assets/img/mail.png');
background-position: 5px -2px;
background-repeat: no-repeat;
background-size: 50px 45px;
padding: 12px 20px;
padding-left: 25px;	

font-size: 18px; /*change this to your desired size */
line-height: 1.3em;
font-weight:bold;
-webkit-border-radius: 5px;
-moz-border-radius: 5px;
border-radius: 5px;
margin-top:3px;
background-color:#ff6600!important;
border: 2px solid  #ff6600!important;
color:#fff!important;
margin-right:1px;
}

.btn-prihlas:hover,.btn-prihlas:active, .btn-hledej:hover,.btn-hledej:active {
background-color:#ee3311!important;
border: 2px solid  #ee3311!important;
outline: none;
transition: 0.4s;
color:#fff!important;
}


.btn-hledej {
background-image:none!important;
}




.btn-delete {
padding: 12px 20px;
font-size: 18px; /*change this to your desired size */
line-height: 1.3em;
font-weight:bold;
-webkit-border-radius: 5px;
-moz-border-radius: 5px;
border-radius: 5px;
margin-top:3px;
background-color:#8E8D8B!important;
border: 2px solid  #8E8D8B!important;
color:#fff!important;
margin-right:1px;
}

.btn-delete:hover,.btn-delete:active,.btn-delete:focus {
background-color: #ADACA9!important;
border: 2px solid  #ADACA9!important;
transition: 0.4s;
color:#fff!important;
outline: none;
}

/*--------------------------------------------------------------
# Features Section
--------------------------------------------------------------*/
/*
.features {
padding-top: 80px;
}

.features .features-item+.features-item {
margin-top: 100px;
}

@media (max-width: 640px) {
.features .features-item+.features-item {
margin-top: 40px;
}
}

.features .features-item h3 {
font-weight: 600;
font-size: 26px;
color: #001973;
}

.features .features-item ul {
list-style: none;
padding: 0;
}

.features .features-item ul li {
padding-bottom: 10px;
}

.features .features-item ul li:last-child {
padding-bottom: 0;
}

.features .features-item ul i {
font-size: 20px;
padding-right: 4px;
color: var(--color-primary);
}

.features .features-item p:last-child {
margin-bottom: 0;
}
*/

/*--------------------------------------------------------------
# Frequently Asked Questions Section
--------------------------------------------------------------*/
.faq {
padding-top: 80px;
}

.faq .accordion-item {
border: 0;
margin-bottom: 10px;
}

.faq .accordion-collapse {
border: 0;
}

.faq .accordion-button {
padding: 15px 30px 20px 60px;
font-weight: 600;
border: 0;
font-size: 18px;
color: var(--color-default);
text-align: left;
background: rgba(14, 29, 52, 0.03);
border-radius: 5px;
}

.faq .accordion-button:focus {
box-shadow: none;
}

.faq .accordion-button:not(.collapsed) {
color: var(--color-primary);
border-bottom: 0;
box-shadow: none;
}

.faq .question-icon {
position: absolute;
top: 14px;
left: 25px;
font-size: 20px;
color: var(--color-primary);
}

.faq .accordion-button:after {
position: absolute;
right: 15px;
top: 15px;
}

.faq .accordion-body {
padding: 0 30px 25px 60px;
border: 0;
background: rgba(14, 29, 52, 0.03);
border-radius: 5px;
}


/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials .testimonial-wrap {
padding-left: 10px;
}

.testimonials .testimonial-item {
box-sizing: content-box;
padding: 30px;
margin: 30px 10px;
box-shadow: 0px 0 15px rgba(0, 0, 0, 0.1);
position: relative;
background: #fff;
border-radius: 10px;
}

.testimonials .testimonial-item .testimonial-img {
width: 90px;
border-radius: 50px;
margin-right: 15px;
}

.testimonials .testimonial-item h3 {
font-size: 18px;
font-weight: bold;
margin: 10px 0 5px 0;
color: #000;
}

.testimonials .testimonial-item h4 {
font-size: 14px;
color: #999;
margin: 0;
}

.testimonials .testimonial-item .stars {
margin: 10px 0;
}

.testimonials .testimonial-item .stars i {
color: #ffc107;
margin: 0 1px;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
color: #ff4400;
font-size: 26px;
line-height: 0;
}

.testimonials .testimonial-item .quote-icon-left {
display: inline-block;
left: -5px;
position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
display: inline-block;
right: -5px;
position: relative;
top: 10px;
transform: scale(-1, -1);
line-height:0.8em!important;
margin:0!important;
}

.testimonials .testimonial-item p {
font-style: italic;
margin: 15px auto 15px auto;
}

.testimonials .swiper-pagination {
margin-top: 20px;
position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
width: 12px;
height: 12px;
background-color: rgba(0, 0, 0, 0.2);
opacity: 1;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
background-color: var(--color-primary);
}

@media (max-width: 767px) {
.testimonials .testimonial-wrap {
padding-left: 0;
}

.testimonials .testimonial-item {
padding: 30px;
margin: 15px;
}

.testimonials .testimonial-item .testimonial-img {
position: static;
left: auto;
}
}

/*--------------------------------------------------------------
# Stats Counter Section
--------------------------------------------------------------*/
.stats-counter .stats-item {
padding: 30px;
width: 100%;
}

.stats-counter .stats-item span {
font-size: 48px;
display: block;
color: var(--color-secondary);
font-weight: 700;
margin-bottom: 20px;
padding-bottom: 20px;
position: relative;
}

.stats-counter .stats-item span:after {
content: "";
position: absolute;
display: block;
width: 25px;
height: 3px;
background: var(--color-primary);
left: 0;
right: 0;
bottom: 0;
margin: auto;
}

.stats-counter .stats-item p {
padding: 0;
margin: 0;
font-family: var(--font-primary);
font-size: 15px;
font-weight: 500;
color: var(--color-secondary);
}

/*--------------------------------------------------------------
# Our Team Section
--------------------------------------------------------------*/
.team .member {
text-align: center;
margin-bottom: 20px;
background: #fff;
border: 1px solid rgba(14, 29, 52, 0.15);
}

.team .member img {
margin: -1px -1px 30px -1px;
}

.team .member .member-content {
padding: 0 20px 30px 20px;
}

.team .member h4 {
font-weight: 700;
margin-bottom: 2px;
font-size: 18px;
}

.team .member span {
font-style: italic;
display: block;
font-size: 13px;
color: #6c757d;
}

.team .member p {
padding-top: 10px;
font-size: 14px;
font-style: italic;
color: #6c757d;
}

.team .member .social {
margin-top: 15px;
}

.team .member .social a {
color: rgba(14, 29, 52, 0.5);
transition: 0.3s;
}

.team .member .social a:hover {
color: var(--color-primary);
}

.team .member .social i {
font-size: 18px;
margin: 0 2px;
}



/*--------------------------------------------------------------
# Get a Quote Section
--------------------------------------------------------------*/
.get-a-quote .quote-bg {
min-height: 500px;
background-size: cover;
background-position: center;
}

.get-a-quote .php-email-form {
background: #F2F0ED;
padding: 40px;
height: 100%;
}

@media (max-width: 575px) {
.get-a-quote .php-email-form {
padding: 20px;
}
}

.get-a-quote .php-email-form h3 {
font-size: 1.5em;
font-weight: 700;
text-transform: uppercase;
letter-spacing: 1px;
}

.get-a-quote .php-email-form h4 {
font-size: 1.3em;
font-weight: 700;
text-transform: uppercase;
letter-spacing: 1px;
margin: 20px 0 0 0;
}

.get-a-quote .php-email-form p {
font-size: 1em;
margin-bottom: 20px;
}
.php-email-form select.form-control option {
color: #066cd3;
line-height:1.3em;
font-size:0.9em;
}
.php-email-form input.form-control {
font-size: 1em;
line-height:1.3em;
}

.get-a-quote .php-email-form .error-message {
display: none;
color: #fff;
background: #df1529;
text-align: left;
padding: 15px;
margin-bottom: 24px;
font-weight: 600;
}

.get-a-quote .php-email-form .sent-message {
display: none;
color: #fff;
background: #059652;
text-align: center;
padding: 15px;
margin-bottom: 24px;
font-weight: 600;
}

.get-a-quote .php-email-form .loading {
display: none;
background: #fff;
text-align: center;
padding: 15px;
margin-bottom: 24px;
}

.get-a-quote .php-email-form .loading:before {
content: "";
display: inline-block;
border-radius: 50%;
width: 24px;
height: 24px;
margin: 0 10px -6px 0;
border: 3px solid #059652;
border-top-color: #fff;
-webkit-animation: animate-loading 1s linear infinite;
animation: animate-loading 1s linear infinite;
}

.get-a-quote .php-email-form input,
.get-a-quote .php-email-form textarea {
border-radius: 0;
box-shadow: none;
font-size: 1em;
border-radius: 0;
}

.get-a-quote .php-email-form input:focus,
.get-a-quote .php-email-form textarea:focus {
border-color: var(--color-primary);
}

.get-a-quote .php-email-form input {
padding: 12px 15px;
}

.get-a-quote .php-email-form textarea {
padding: 12px 15px;
}



@-webkit-keyframes animate-loading {
0% {
transform: rotate(0deg);
}

100% {
transform: rotate(360deg);
}
}

@keyframes animate-loading {
0% {
transform: rotate(0deg);
}

100% {
transform: rotate(360deg);
}
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .info-item+.info-item {
margin-top: 24px;
}

.contact .info-item i {
font-size: 30px;
background: var(--color-primary);
color: #fff;
width: 66px;
height: 66px;
display: flex;
justify-content: center;
align-items: center;
border-radius: 5px;
transition: all 0.3s ease-in-out;
margin-right: 15px;
}

.contact .info-item h4 {
padding: 0;
font-size: 1.1em;
font-weight: 600;
margin-bottom: 3px;
color: #444444;
}

.contact .info-item p {
padding: 0;
margin-bottom: 0;
font-size: 1em;
color: #333;
}


@keyframes animate-loading {
0% {
transform: rotate(0deg);
}

100% {
transform: rotate(360deg);
}
}

/*--------------------------------------------------------------
# Service Details Section
--------------------------------------------------------------*/
.service-details .services-list {
padding: 30px 20px 30px 35px;
/*
border: 1px solid #E0DEDB;
*/
background-color: #F2F0ED;
margin-bottom: 20px;
border-radius: 7px;
}



.service-details .services-img {
margin-bottom: 20px;
border-radius: 7px;
}

.service-details h3 {
font-size: 1.5em;
font-weight: 700;
color: var(--color-secondary);
}

.service-details h4 {
font-size: 1.3em;
font-size: 20px;
font-weight: 700;
color: var(--color-secondary);
}
.service-details h5 {
font-size: 1.2em;
font-weight: 700;
color: #ff3300;
}
.service-details p {
font-size: 15px;
}

.service-details ul {
list-style: none;
padding: 0;
font-size: 15px;
}

.service-details ul li {
padding: 5px 0;
display: flex;
align-items: center;
}

.service-details ul i {
font-size: 20px;
margin-right: 8px;
color: var(--color-primary);
}


/*--------------------------------------------------------------
# Blog
--------------------------------------------------------------*/
.blog .blog-pagination {
margin-top: 30px;
color: #555555;
}

.blog .blog-pagination ul {
display: flex;
padding: 0;
margin: 0;
list-style: none;
}

.blog .blog-pagination li {
margin: 0 5px;
transition: 0.3s;
border-radius: 10px;
}

.blog .blog-pagination li a {
color: var(--color-default);
padding: 7px 16px;
display: flex;
align-items: center;
justify-content: center;
}

.blog .blog-pagination li.active,
.blog .blog-pagination li:hover {
background: var(--color-primary);
color: #fff;
}

.blog .blog-pagination li.active a,
.blog .blog-pagination li:hover a {
color: var(--color-white);
}

/*--------------------------------------------------------------
# Blog Posts List
--------------------------------------------------------------*/
.blog .posts-list article {
box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
padding: 30px;
height: 100%;
border-radius: 10px;
overflow: hidden;
}

.blog .posts-list .post-img {
max-height: 360px;
margin: -30px -30px 15px -30px;
overflow: hidden;
}

.blog .posts-list .post-category {
font-size: 16px;
color: #555555;
margin-bottom: 10px;
}

.blog .posts-list .title {
font-size: 1.1em;
font-weight: 700;
padding: 0;
margin: 0 0 5px 0;
}

.blog .posts-list .title a {
color: #066cd3;
transition: 0.3s;
text-decoration:none;
}

.blog .posts-list .title a:hover {
color:#066cd3;
text-decoration:underline;
}

.blog .posts-list .post-author-img {
width: 50px;
border-radius: 50%;
margin-right: 15px;
}

.blog .posts-list .post-author-list {
font-weight: 600;
margin-bottom: 5px;
}

.blog .posts-list .post-date {
font-size: 1em;
color: var(--color-default);
margin-bottom: 0.8em;
}

/*--------------------------------------------------------------
# Blog Details
--------------------------------------------------------------*/
.blog .blog-details {
box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
padding: 30px;
border-radius: 10px;
}

.blog .blog-details .post-img {
margin: -30px -30px 20px -30px;
overflow: hidden;
border-radius: 10px 10px 0 0;
}

.blog .blog-details .title {
font-size: 28px;
font-weight: 700;
padding: 0;
margin: 20px 0 0 0;
color: var(--color-default);
}

.blog .blog-details .content {
margin-top: 20px;
}

.blog .blog-details .content h3 {
font-size: 22px;
margin-top: 30px;
font-weight: bold;
}

.blog .blog-details .content blockquote {
overflow: hidden;
background-color: rgba(34, 34, 34, 0.06);
padding: 60px;
position: relative;
text-align: center;
margin: 20px 0;
}

.blog .blog-details .content blockquote p {
color: var(--color-default);
line-height: 1.6;
margin-bottom: 0;
font-style: italic;
font-weight: 500;
font-size: 22px;
}

.blog .blog-details .content blockquote:after {
content: "";
position: absolute;
left: 0;
top: 0;
bottom: 0;
width: 3px;
background-color: var(--color-secondary);
margin-top: 20px;
margin-bottom: 20px;
}

.blog .blog-details .meta-top {
margin-top: 20px;
color: #6c757d;
}

.blog .blog-details .meta-top ul {
display: flex;
flex-wrap: wrap;
list-style: none;
align-items: center;
padding: 0;
margin: 0;
}

.blog .blog-details .meta-top ul li+li {
padding-left: 20px;
}

.blog .blog-details .meta-top i {
font-size: 16px;
margin-right: 8px;
line-height: 0;
color: var(--color-primary);
}

.blog .blog-details .meta-top a {
color: #6c757d;
font-size: 14px;
display: inline-block;
line-height: 1;
}

.blog .blog-details .meta-bottom {
padding-top: 10px;
border-top: 1px solid rgba(34, 34, 34, 0.15);
}

.blog .blog-details .meta-bottom i {
color: #555555;
display: inline;
}

.blog .blog-details .meta-bottom a {
color: rgba(34, 34, 34, 0.8);
transition: 0.3s;
}

.blog .blog-details .meta-bottom a:hover {
color: var(--color-primary);
}

.blog .blog-details .meta-bottom .cats {
list-style: none;
display: inline;
padding: 0 20px 0 0;
font-size: 14px;
}

.blog .blog-details .meta-bottom .cats li {
display: inline-block;
}

.blog .blog-details .meta-bottom .tags {
list-style: none;
display: inline;
padding: 0;
font-size: 14px;
}

.blog .blog-details .meta-bottom .tags li {
display: inline-block;
}

.blog .blog-details .meta-bottom .tags li+li::before {
padding-right: 6px;
color: var(--color-default);
content: ",";
}

.blog .blog-details .meta-bottom .share {
font-size: 16px;
}

.blog .blog-details .meta-bottom .share i {
padding-left: 5px;
}

.blog .post-author {
padding: 20px;
margin-top: 30px;
box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
border-radius: 10px;
}

.blog .post-author img {
max-width: 120px;
margin-right: 20px;
}

.blog .post-author h4 {
font-weight: 600;
font-size: 22px;
margin-bottom: 0px;
padding: 0;
color: var(--color-default);
}

.blog .post-author .social-links {
margin: 0 10px 10px 0;
}

.blog .post-author .social-links a {
color: rgba(34, 34, 34, 0.5);
margin-right: 5px;
}

.blog .post-author p {
font-style: italic;
color: rgba(108, 117, 125, 0.8);
margin-bottom: 0;
}

/*--------------------------------------------------------------
# Blog Sidebar
--------------------------------------------------------------*/
.blog .sidebar {
padding: 30px;
box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
border-radius: 10px;
}

.blog .sidebar .sidebar-title {
font-size: 1.2em;
font-weight: 700;
padding: 0;
margin: 0;
color: var(--color-secondary2);
}

.blog .sidebar .sidebar-item+.sidebar-item {
margin-top: 40px;
}

.blog .sidebar .search-form form {
background: #fff;
border: 1px solid rgba(34, 34, 34, 0.3);
padding: 5px 10px;
position: relative;
border-radius: 50px;
}

.blog .sidebar .search-form form input[type=text] {
border: 0;
padding: 4px;
border-radius: 50px;
width: calc(100% - 60px);
}

.blog .sidebar .search-form form input[type=text]:focus {
outline: none;
}

.blog .sidebar .search-form form button {
position: absolute;
top: 0;
right: 0;
bottom: 0;
border: 0;
background: none;
font-size: 16px;
padding: 0 25px;
margin: -1px;
background: var(--color-primary);
color: #fff;
transition: 0.3s;
border-radius: 50px;
line-height: 0;
}

.blog .sidebar .search-form form button i {
line-height: 0;
}

.blog .sidebar .search-form form button:hover {
background: rgba(0, 131, 116, 0.8);
}

.blog .sidebar .categories ul {
list-style: none;
padding: 0;
}

.blog .sidebar .categories ul li+li {
padding-top: 10px;
}




.blog .sidebar .categories ul a span.language-bullets {
padding-left: 5px;
color: #c0c0c0;
font-size:1.3em;
line-height:1em;
margin-right:0.5em;
text-decoration:none!important;
}
.blog .sidebar .categories ul a span.language-bullets-on {
padding-left: 5px;
color: #ff6600;
font-size:1.3em;
line-height:1em;
margin-right:0.5em;
text-decoration:none!important;
}
a:hover span.language-bullets-on,a:hover span.language-bullets, a:active span.language-bullets-on, a:active span.language-bullets {
text-decoration:none!important;
}


.blog .sidebar .recent-posts .post-item+.post-item {
margin-top: 15px;
}

.blog .sidebar .recent-posts img {
width: 80px;
float: left;
}

.blog .sidebar .recent-posts h4 {
font-size: 15px;
margin-left: 95px;
font-weight: bold;
}

.blog .sidebar .recent-posts h4 a {
color: var(--color-default);
transition: 0.3s;
}

.blog .sidebar .recent-posts h4 a:hover {
color: var(--color-primary);
}

.blog .sidebar .recent-posts time {
display: block;
margin-left: 95px;
font-style: italic;
font-size: 14px;
color: rgba(34, 34, 34, 0.4);
}

.blog .sidebar .tags {
margin-bottom: -10px;
}

.blog .sidebar .tags ul {
list-style: none;
padding: 0;
}

.blog .sidebar .tags ul li {
display: inline-block;
}

.blog .sidebar .tags ul a {
color: #066cd3;
font-size: 12px;
padding: 5px 15px;
margin: 0 6px 7px 0;
border: 1px solid #d5d5d5;
display: inline-block;
transition: 0.3s;
border-radius: 40px;
background:#F2F0ED;
}

.blog .sidebar .tags ul a:hover, .blog .sidebar .tags ul a.active {
color: #fff;
border: 1px solid var(--color-primary);
background: var(--color-primary);
text-decoration:none;
}

.blog .sidebar .tags ul a span {
padding-left: 5px;
color: rgba(85, 85, 85, 0.8);
font-size: 14px;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.footer {
font-size: 13px;
background-color: var(--color-secondary);
padding: 45px 0 30px 0;
color: white;
}

.footer a {
font-weight:normal;
}
.footer a:hover {
font-weight:normal;
color: #fff;
}
.footer .footer-info .logo {
line-height: 0;
margin-bottom: 15px;
margin-top: 15px;
}

.footer .footer-info .logo img {
max-height: 40px;
margin-right: 6px;
}

.footer .footer-info .logo span {
font-size: 20px;
font-weight: 700;
letter-spacing: 0px;
color: #fff;
font-family: var(--font-primary);
}
.footer .footer-info .logo  a:hover span {
color: #fff;
text-decoration:none;
}
.footer .footer-info p {
font-size: 13px;
font-family: var(--font-primary);
/* color: rgba(255, 255, 255, 0.7);*/
color:#ffffff;
}

.footer .social-links a {
display: flex;
align-items: center;
justify-content: center;
width: 60px;
height: 60px;
border-radius: 50%;
border: 2px solid rgba(255, 255, 255, 0.5);
font-size: 16px;
color: rgba(255, 255, 255, 0.7);
margin-right: 12px;
transition: 0.3s;
}

.footer .social-links a:hover {
color: #fff;
border-color: #fff;
}

.footer h4 {
font-size: 15px;
font-weight: bold;
position: relative;
padding-bottom: 2px;
line-height:1em;
color:#ffffff;
}

.footer .footer-links {
margin-bottom: 20px;
}

.footer .footer-links ul {
list-style: none;
padding: 0;
margin: 0;
}

.footer .footer-links ul i {
padding-right: 2px;
color: rgba(255, 255, 255, 0.4);
font-size: 12px;
line-height: 0;
}

.footer .footer-links ul li {
padding: 3px 0;
display: flex;
align-items: center;
}

.footer .footer-links ul li:first-child {
padding-top: 0;
}

.footer .footer-links a {
color: rgba(255, 255, 255, 0.4);
transition: 0.3s;
display: inline-block;
line-height: 1;
}

.footer .footer-links a:hover {
color: #fff;
}

.footer .footer-contact p {
line-height: 16px;
}

.footer .copyright {
text-align: left;
}

.footer .credits {
padding-top: 4px;
text-align: left;
font-size: 13px;
}

.footer .credits a {
color: #fff;
}