/*** General CSS ***/
body {
    line-height: 1.9em;
    /*font-family: 'Bitter';*/
}

/*** Header Area ***/
/* Header Top */
#sp-top-bar {
    position: relative;
    z-index: 999;
    font-size: 15px;
    padding: 12px 0 12px;
}
body:not(.home) #sp-top-bar {
  	border-bottom: 1px solid #FFFFFF21;
}

/* Header Menu */
#sp-header {
    top: 0px;
    padding: 0px;
    height: inherit;
    box-shadow: none;
    z-index: 9999;
    border-bottom: 1px solid #FFFFFF21;
}
#sp-header.header-sticky {
    position: fixed;
    top: 0;
    background: #0A212D;
    box-shadow: 0 0 4px 0 rgb(0 0 0 / 10%);
}
body:not(.home) #sp-header {
    background: #0A212D;
    position: static;
}
body:not(.home) #sp-header.header-sticky {
    position: fixed;    
}
.sp-megamenu-parent .sp-dropdown li.sp-menu-item>a {
    color: #252525;
    font-weight: 400 !important;
    padding: 10px 0;
}
.sp-megamenu-parent > li > a, .sp-megamenu-parent > li > span {
    text-transform: capitalize;
    position: relative;
}
.sp-megamenu-parent > li > span {
    color: #fff;
}
.sp-megamenu-parent>li.active>a {
    font-weight: 600;
}
.sp-megamenu-parent>li:last-child>a {
    padding: 0px 30px 0px 30px;
    color: #fff;
}
.sp-megamenu-parent>li:last-child>a {
    font-weight: 500;
    border-radius: 0;
    background: #14305d;
    line-height: 45px;
    border-radius: 0px;
}
.sp-megamenu-parent>li.active:last-child>a,
.sp-megamenu-parent>li:last-child>a:hover {
    background: #14305d !important;
}
.sp-megamenu-parent > li {
	position: relative;
}
.sp-megamenu-parent > li > a:before, .sp-megamenu-parent > li > span:before {
	position: absolute;
	content: '';
	left: 0;
	right: 0;
	margin: 0 auto;
	bottom: 0;
	height: 2px;
	width: 80%;
	-webkit-transition: .3s ease-in-out;
	-o-transition: .3s ease-in-out;
	transition: .3s ease-in-out;
	opacity: 0;
}
.sp-megamenu-parent>li.active > a:before, .sp-megamenu-parent>li > a:hover:before,
.sp-megamenu-parent>li > a:focus:before, .sp-megamenu-parent > li > span:hover:before,
.sp-megamenu-parent > li > span:focus:before, .sp-megamenu-parent>li.active > span:before {
	opacity: 1;
}
.sp-megamenu-parent>li:last-child>a:before {
    content: none;
}

/* Canvas Menu */
.offcanvas-menu .offcanvas-inner .menu-child > li a {
    padding: 12px 10px !important;
    border-bottom: 1px solid rgba(197, 153, 153, 0.21);
    display: inherit;
}
.offcanvas-menu .offcanvas-inner ul.menu>li>a, .offcanvas-menu .offcanvas-inner ul.menu>li>span {
    font-size: 15px;
    font-weight: 500;
}
.burger-icon>span {
    background-color: #fff;
}
.offcanvas-menu > .align-items-center {
    background: #000;
}
.offcanvas-active .burger-icon>span, #modal-menu-toggler.active .burger-icon>span {
    background-color: #fff;
}

/*** Block Styles ***/
/* Button */
.btn {
    padding: 17px 30px;
    font-size: 16px;
    font-weight: 500;
    border-radius: 5px;
    text-transform: capitalize;
    letter-spacing: 1px;
    border: none;
    display: inline-block;
    background: transparent;
    color: #fff !important;
    -webkit-transition: .3s ease-in-out;
    -o-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
    font-family: 'Teko', sans-serif;
}
.btn:hover, .btn.color {
	background-color: #042c71 !important;
	color: #fff!important;
}

/* Title */
.title strong {
	display: none;
}
.title em {
	padding-right: 10px;
}
.title h3 {
	letter-spacing: 2px;
}
.title h2 {
	font-size: 43px;
	font-weight: 600;
	padding: 20px 0;
	color: #072e6f;
}
.title.white h2 {
	color: #fff !important;
}

/* Bg */
.bg-title {
	list-style-type: none;
	padding: 0;
	margin: 0;
}
.bg-title li {
	display: inline-block;
	font-size: 16px;
	text-transform: capitalize;
	font-weight: 500;
	letter-spacing: 1px;
}
.bg-title li strong {
	display: none;
}
.bg-title li em {
	padding: 0 15px;
	font-size: 13px;
	color: #19CBE4;
}

/* Slider */
.slider {
	margin-top: -85px !important;
}
.slider-column-content {
  	position: relative;
}
.slider-column-content:before {
  	position: absolute;
  	top: 0;
    right: 0;
    width: 100%;
  	height: 100%;
  	content: "";
  	display: inline-block;
    background: rgba(255,255,255,.4);
    -webkit-transition: .3s ease-in-out;
    -o-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
    animation: leaves 5s ease-in-out infinite alternate;
}
@keyframes leaves {
    0% {
        transform: translateX(-100%);
    }
    33% {
        transform: translateX(-200%);
    }
    66% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(0%);
    }
}
.slider .sppb-row {
  	overflow: hidden;
}


/* Check List */
.check-list .left, .check-list .right {
	width: 50%;
	float: left;
}
.check-list ul {
    margin: 0;
    padding: 0;
    list-style: none;
}
.check-list ul strong {
	display: none;
}
.check-list ul em {
	padding-right: 10px;
	-webkit-transition: .3s ease-in-out;
	-o-transition: .3s ease-in-out;
	transition: .3s ease-in-out;
}
.check-list ul li:hover em {
	margin-right: 10px;
}
.check-list ul li {
	padding-bottom: 10px;
}

/* Counter */
.counter-item {
	float: left;
	padding: 10px;
	width: 25%;
}
.counter-item h1 {
	font-size: 45px;
	font-weight: 600;
	color: #072e6f;
}
.counter-item h5 {
	font-weight: 500;
	font-size: 16px;
}

/* Feature */
.feature-item img {
	width: 80px;
}

/* Inspire */
.inspire-img img {
	width: 70%;
}

/* Testimonial */
.testimonial-item span.fa {
    height: 80px;
    width: 80px;
    line-height: 70px;
    border-radius: 50%;
    box-shadow: 0px 0px 10px 0px rgb(0 0 0 / 10%);
    text-align: center;
    border: 5px solid #BD8A3C9E;
    background-color: #feaf38;
    margin: 0 auto;
    position: relative;
    top: -30px;
}

/* Services */
.services-item {
    box-shadow: 0px 0px 10px 0px rgb(0 0 0 / 10%);
}
.services-item .sppb-img-container {
	position: relative;
}
.services-item .sppb-img-container:before,
.services-item .sppb-img-container:after {
	content: "";
	top: 0;
	left: 0;
	width: 0%;
	position: absolute;
	background: rgba(255,255,255,.35);
	height: 100%;
	-webkit-transition: .3s ease-in-out;
	-o-transition: .3s ease-in-out;
	transition: .3s ease-in-out;
}
.services-item .sppb-img-container:after {
	left: inherit;
	right: 0;
}
.services-item:hover .sppb-img-container:before,
.services-item:hover .sppb-img-container:after {
	width: 100%;
}
.services-item .sppb-media-content {
	padding: 30px;
}
.services-item h3 {
	padding-bottom: 20px;
	margin-bottom: 20px;
	border-bottom: 1px solid #eaeaea;
}

/* Work */
.work-item h3 {
	font-size: 23px;
	margin-top: -10px;
}
.work-column .clearfix {
  	-webkit-transition: .3s ease-in-out;
    -o-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
}
.work-column .clearfix:hover {
  	background-color: #072e6f00!important;
}

/* Event */
.event-item h3 {
    width: 70%;
    float: left;
    padding-top: 20px;
}
.event-item .sppb-addon-text {
    float: left;
    width: 30%;
    text-align: center;
}
.event-item h2 {
    font-size: 30px;
    font-weight: 600;
    color: #072e6f;
    background: #2c67ea0d;
    padding: 25px 10px;
    margin: 0;
}

/* Mession */
.mession-colum {
	position: relative;
}
.mession-colum .clearfix:first-child {
    position: absolute;
    top: 0;
    z-index: 2;
    max-width: 250px;
	width: 250px;
}
.mession-colum .clearfix:first-child img {
    width: 60px;
}
.mession-colum-right .clearfix:first-child {
	width: 100%;
}
.mession-colum-right .clearfix {
	width: 50%;
	float: left;
}

/* inspire */
.inspire-img img {
  	-webkit-transition: .3s ease-in-out;
    -o-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
}
.inspire-img img:hover {
  	opacity: .8;
}

/* Fishing- Spot */
.fishing-spot-colum .sppb-column-overlay {
    background-image: linear-gradient(180deg, #02010100 0%, #142F39 100%);
}
.fishing-colum {
	position: relative;
}
.fishing-colum:before,
.fishing-colum:after {
	content: "";
	top: 0;
	left: 0;
	width: 0%;
	position: absolute;
	background: rgba(255,255,255,.35);
	height: 100%;
	-webkit-transition: .3s ease-in-out;
	-o-transition: .3s ease-in-out;
	transition: .3s ease-in-out;
}
.fishing-colum:after {
	left: inherit;
	right: 0;
}
.fishing-colum:hover:before,
.fishing-colum:hover:after {
	width: 100%;
}

/* Testimonial */
.testimonial .clearfix {
  	-webkit-transition: .3s ease-in-out;
    -o-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
}
.testimonial .clearfix:hover {
  	box-shadow: none!important;
}

/* Pricing */
.pricing-item {
    padding: 10px 20px;
    border-radius: 0px;
    display: inline-block;
    float: right;
}

/* Other */
.other-icon i {
    background: #fff;
    height: 50px !important;
    width: 50px !important;
    line-height: 50px !important;
    border-radius: 5px;
}

/* Blog */
.jmm-item .jmm-image.mod-article-image {
  	overflow: hidden;
  	margin: 0;
}
.jmm-image.mod-article-image img {
  	transform: scale(1);
  	-webkit-transition: .5s ease-in-out;
    -o-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
}
.jmm-item:hover .jmm-image.mod-article-image img {
  	transform: scale(1.12);
  	filter: grayscale(100%);
}
.jmm-text {
    padding: 20px;
    border-radius: 0px 0px 0px 0px;
    box-shadow: 9.899px 9.899px 30px 0 rgb(0 0 0 / 10%);
    background: #fff;
}
.jm-category-module.default .jmm-text .jmm-title {
	font-size: 17px;
	font-weight: 600;
	text-transform: capitalize;
}
.jm-category-module.default .jmm-readmore {
	margin-top: 20px;
}

/* Contact Info */
.contact-info h2, .contact-info h3 {
    font-size: 25px;
}
button.btn.btn-primary.validate {
    color: #fff !important;
    padding: 13px 20px;
}
#sp-position1 {
	padding: 0;
}

/* Bottom */
#sp-bottom {
	overflow: hidden;
	position: relative;
	z-index: 1;
	box-shadow: 0 0 4px 0 rgb(0 0 0 / 10%);
	line-height: 30px;
	font-size: 15px;
}
#sp-bottom:before {
    content: '';
    position: absolute;
    background-color: #0A212D;
    opacity: 0.95;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: -1;
}
#sp-bottom p {
	line-height: 28px;
}
#sp-bottom h2 {
    margin-bottom: 25px;
}
#sp-bottom .sp-module .sp-module-title {
    font-size: 25px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 10px;
    padding-bottom: 20px;
    position: relative;
}
#sp-bottom .sp-module .sp-module-title:before {
	content: '';
	position: absolute;
	left: 0;
	bottom: 0;
	height: 2px;
	width: 70px;
}
#sp-bottom span {
    padding-right: 10px;
}
#sp-bottom strong {
  	display: none;
}
.shrewd_solution_icon {
	margin-top: 20px;
}
.shrewd_solution_icon ul, .shrewd_solution_icon ul li {
    display: inline-block!important;
    padding: 0!important;
}
.shrewd_solution_icon ul li a {
    font-size: 16px;
    width: 42px;
    color: #fff !important;
    line-height: 42px;
    text-align: center;
    border-radius: 5px;
    margin-right: 10px;
    -webkit-transition: .5s;
    transition: .5s;
    display: inline-block;
    border: 1px solid #fff;
    background: transparent;
}
#sp-bottom1 .shrewd_solution_icon ul li a:hover {
	color: #fff !important;
}
.shrewd_solution_icon strong {
    display: none;
}

/* Footer Copyright */
#sp-footer {
    text-align: center;
}
#sp-footer {
    display: inline-block;
    width: 100%;
    position: relative;
    z-index: 1;
}
#sp-footer .container-inner {
    border-top: none;
}

/*** Responsive Layout ***/
/* Tablet Landscape Layout */
@media (min-width: 1400px) {
    .sppb-row-container {
      	max-width: 1320px;
    }
}

/* Mobile Standard Layout */
@media (max-width: 768px) {
	#sp-header, #sp-header .logo {
        height: 70px;
    }
  	#sp-footer p {
  		text-align: center;
	}
  	body #sp-header {
      	padding: 0;
	}
  	#sp-header {
    	top: 0px;
	}
  	.counter-item {
    	width: 100%;
	}
  	.event-item h2 {
    	font-size: 20px;
	}
  	.event-item h3 {
    	padding-top: 0;
	}
}

/* Mobile Small Resolution */
@media (max-width: 480px) {
  	.category .sppb-column-addons .clearfix:nth-child(n+2) {
    	width: 100%;
    	margin-right: 0;
	}
}

/* General color defination
Color value depend on preset color that picking on template settings > Presets
*/

:root {
  --background-color: currentColor;
  --background: currentColor;
  --text-color: currentColor;
}
.page-item.active .page-link, .slider-item .sppb-btn-success, .sp-simpleportfolio .sp-simpleportfolio-item .sp-simpleportfolio-info:hover, 
.sp-simpleportfolio .sp-simpleportfolio-item .sp-simpleportfolio-overlay-wrapper .sp-simpleportfolio-overlay, .btn, .btn.color:hover, 
.btn.no-bg:hover, .sp-megamenu-parent>li:last-child>a, .sp-megamenu-parent > li > a:before,
.sp-megamenu-parent > li > span:before, .shrewd_solution_icon ul li a:hover, .fishing-colum-pre {
 	background-color: var(--background-color) !important;
}
.article-list .article .readmore a:hover, .article-list .article .readmore a:active, .article-list .article .article-header h2 a:hover,
.title h3, .btn.no-bg, #sp-bottom4 span, #sp-bottom a:hover, .sppb-panel-modern>.sppb-panel-heading.active,
.title h3, .check-list ul em, .mession-icon i {
  	color: var(--text-color) !important;
}
.best-item .sppb-addon-testimonial-review, .divider, .vision-item h3 {
  	border-color: var(--text-color) !important;
}





/* Schrift-Seite */
/* bitter-100 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Bitter';
  font-style: normal;
  font-weight: 100;
  src: url('../fonts/bitter-v33-latin-100.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* bitter-100italic - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Bitter';
  font-style: italic;
  font-weight: 100;
  src: url('../fonts/bitter-v33-latin-100italic.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* bitter-200 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Bitter';
  font-style: normal;
  font-weight: 200;
  src: url('../fonts/bitter-v33-latin-200.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* bitter-200italic - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Bitter';
  font-style: italic;
  font-weight: 200;
  src: url('../fonts/bitter-v33-latin-200italic.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* bitter-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Bitter';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/bitter-v33-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* bitter-italic - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Bitter';
  font-style: italic;
  font-weight: 400;
  src: url('../fonts/bitter-v33-latin-italic.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/*body{font-family: 'Bitter'}*/
