/* didact-gothic-regular - latin */
@font-face {
	font-family: 'Didact Gothic';
	font-style: normal;
	font-weight: 400;
	font-display: swap;
	src: local(''),
	url('../fonts/didact-gothic-v19-latin-regular.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */
	url('../fonts/didact-gothic-v19-latin-regular.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}
/* oswald-200 - latin */
@font-face {
	font-family: 'Oswald';
	font-style: normal;
	font-weight: 200;
	font-display: swap;
	src: local(''),
	url('../fonts/oswald-v49-latin-200.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */
	url('../fonts/oswald-v49-latin-200.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}

/* oswald-300 - latin */
@font-face {
	font-family: 'Oswald';
	font-style: normal;
	font-weight: 300;
	font-display: swap;
	src: local(''),
	url('../fonts/oswald-v49-latin-300.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */
	url('../fonts/oswald-v49-latin-300.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}

/* oswald-regular - latin */
@font-face {
	font-family: 'Oswald';
	font-style: normal;
	font-weight: 400;
	font-display: swap;
	src: local(''),
	url('../fonts/oswald-v49-latin-regular.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */
	url('../fonts/oswald-v49-latin-regular.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}

/* oswald-500 - latin */
@font-face {
	font-family: 'Oswald';
	font-style: normal;
	font-weight: 500;
	font-display: swap;
	src: local(''),
	url('../fonts/oswald-v49-latin-500.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */
	url('../fonts/oswald-v49-latin-500.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}

/* oswald-600 - latin */
@font-face {
	font-family: 'Oswald';
	font-style: normal;
	font-weight: 600;
	font-display: swap;
	src: local(''),
	url('../fonts/oswald-v49-latin-600.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */
	url('../fonts/oswald-v49-latin-600.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}

/* oswald-700 - latin */
@font-face {
	font-family: 'Oswald';
	font-style: normal;
	font-weight: 700;
	font-display: swap;
	src: local(''),
	url('../fonts/oswald-v49-latin-700.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */
	url('../fonts/oswald-v49-latin-700.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}


/* ======= Basic style ======= */
html {
    scroll-behavior: smooth;
}

html,
body {
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    -moz-font-smoothing: antialiased;
    font-smoothing: antialiased;
}
* {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    outline: none;
    list-style: none;
    word-wrap: break-word;
}
ol {
    list-style: decimal;
    padding-left: 1.5rem;
}
ol li {
    list-style: decimal;
}
body {
    font-family: 'Didact Gothic', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.75em;
    color: #888;
    overflow-x: hidden !important;
    background: #fff;
}
p {
    font-family: 'Didact Gothic', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.75em;
    color: #888;
    margin-bottom: 20px;
}
h1,
h2,
h3,
h4,
h5,
h6,
.h4,
.h6 {
    font-family: 'Oswald', sans-serif;
    font-weight: 300;
    line-height: 1.25em;
    margin: 0 0 20px 0;
}
h1 {
	font-size: 40px;
}
h2 {
	font-size: 35px
}
h3 {
	font-size: 30px;
}
h4,
.h4 {
	font-size: 25px;
}
h5 {
	font-size: 20px;
}
h6,
.h6 {
	font-size: 18px;
}
img {
    width: 100%;
    height: auto;
}
img {
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
    color: #f7f7f7;
}
span,
a,
a:hover {
    display: inline-block;
    text-decoration: none;
    color: inherit;
}

.frame-type-text a, .about a, label a {
	position: relative;
	border-bottom: 1px solid #ff4e00;
	-webkit-transition: all 0.1s ease-in-out 0s;
	transition: all 0.1s ease-in-out 0s;
}
.frame-type-text a::after,.about a::after, label a::after {
	content: '';
	position: absolute;
	bottom: -2px;
	left: 0;
	width: 0%;
	border-bottom: 2px solid #ff4e00;
	transition: 0.3s;
}
.frame-type-text a:hover, .about a:hover, label a:hover {
	color: #ff4e00;
}
.frame-type-text a:hover::after, .about a:hover::after, label a:hover::after {
	width: 100%;
}
b {
    font-weight: 400;
    color: #ff4e00;
}


ul.std-list,ol.std-list {
    line-height: 1.5em;
    margin: 5px 0 15px;
    padding: 0;
}

/* CKEditor table output fallback: keep figure-wrapped tables responsive and striped. */
.frame-type-text figure.table {
    display: block;
    max-width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin: 0 0 1rem;
}

.frame-type-text figure.table > table {
    width: 100%;
    max-width: 100%;
    border-collapse: collapse;
    margin-bottom: 0;
}

.frame-type-text figure.table > table > thead > tr > th,
.frame-type-text figure.table > table > tbody > tr > td {
    padding: 0.75rem;
    vertical-align: top;
    border-top: 1px solid #dee2e6;
}

.frame-type-text figure.table > table > thead > tr > th {
    vertical-align: bottom;
    border-bottom: 2px solid #dee2e6;
}

.frame-type-text figure.table > table.table-striped > tbody > tr:nth-of-type(odd),
.frame-type-text figure.table > table.tabel.table-striped > tbody > tr:nth-of-type(odd) {
    background-color: rgba(0, 0, 0, 0.05);
}

.frame-type-text figure.table > table.table-hover > tbody > tr:hover {
    background-color: rgba(0, 0, 0, 0.075);
}

ol.std-list li, ul.std-list li {
    list-style: none;
    position: relative;
    padding: 0 0 0 20px;
}

ol.std-list li::before, ul.std-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 11px;
    height: 8px;
    width: 8px;
    border: 1px solid #ff4e00;
    border-width: 2px 2px 0 0;
    transform: rotate(45deg);
}

#chartdiv {
    margin: 30px 0;
    width: 100%;
    height: 350px;
}

/* text field */
button,
input,
optgroup,
select,
textarea {
    font-family: 'Oswald', sans-serif;
}
input[type="password"]:focus,
input[type="email"]:focus,
input[type="text"]:focus,
input[type="file"]:focus,
input[type="radio"]:focus,
input[type="checkbox"]:focus,
textarea:focus {
    outline: none;
}
input[type="password"],
input[type="email"],
input[type="text"],
input[type="file"],
textarea {
    max-width: 100%;
    margin-bottom: 10px;
    padding: 10px 0;
    height: auto;
    background-color: transparent;
    -webkit-box-shadow: none;
    box-shadow: none;
    border-width: 0 0 1px;
    border-style: solid;
    display: block;
    width: 100%;
    line-height: 1.5em;
    font-family: 'Didact Gothic', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #888;
    background-image: none;
    border-bottom: 1px solid #ececec;
    border-color: ease-in-out .15s, box-shadow ease-in-out .15s;
}
input:focus,
textarea:focus {
    border-bottom-width: 1px;
    border-color: #ff4e00;
}


/* submit and alert success  */
input[type="submit"],
input[type="reset"],
input[type="button"],
button {
    font-family: 'Oswald', sans-serif;
    font-size: 14px;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    line-height: 1.75em;
    -webkit-transition: background-color .15s ease-out;
    transition: background-color .15s ease-out;
    border: none;
    color: #fff;
    background: #ff4e00;
    padding: 10px 27px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}
input[type="submit"]:hover,
input[type="reset"]:hover,
input[type="button"]:hover,
button:hover {
    background-color: #1b1b1b;
    color: #fff;
    border: none;
}
.alert-success {
    background: transparent;
    color: #888;
    border: 1px solid #ff4e00;
    border-radius: 0px;
}


select {
    padding: 10px;
    border-radius: 5px;
}
th,
tr,
td {
    padding: 10px 0;
}
input[type="radio"],
input[type="checkbox"] {
    display: inline;
}
/* placeholder */
::-webkit-input-placeholder {
    color: #888;
    font-size: 15px;
    font-weight: 400;
}
:-moz-placeholder {
    color: #888;
}
::-moz-placeholder {
    color: #888;
    opacity: 1;
}
:-ms-input-placeholder {
    color: #888;
}
.bg-color {
    background: #f7f7f7;
}
.o-hidden {
    overflow: hidden;
}
.position-re {
    position: relative;
}
.full-width {
    width: 100%;
}
.bg-img {
    background-size: cover;
    background-repeat: no-repeat;
	background-position: center;
}
.bg-fixed {
    background-attachment: fixed;
}
.pattern {
    background-repeat: repeat;
    background-size: auto;
}
.bold {
    font-weight: 600;
}
.count {
    font-family: 'Didact Gothic', sans-serif;
}
.valign {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.v-middle {
    position: absolute;
    width: 100%;
    top: 50%;
    left: 0;
    -webkit-transform: translate(0%, -50%);
    transform: translate(0%, -50%);
}
.v-bottom {
    position: absolute;
    width: 100%;
    bottom: 5%;
    left: 0;
    -webkit-transform: translate(0%, -5%);
    transform: translate(0%, -5%);
}
.js .animate-box {
    opacity: 0;
}


/* ======= Preloader style ======= */
.preloader-bg,
#preloader {
	position: fixed;
	width: 100%;
	height: 100%;
	overflow: hidden;
	background: #fff;
	z-index: 999999;
}
#preloader {
	display: table;
	table-layout: fixed;
}
#preloader-status {
	display: table-cell;
	vertical-align: middle;
}
.preloader-position {
	position: relative;
	margin: 0 auto;
	text-align: center;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-ms-box-sizing: border-box;
	-o-box-sizing: border-box;
	box-sizing: border-box;
}
.loader {
	position: relative;
	width: 45px;
	height: 45px;
	left: 50%;
	top: auto;
	margin-left: -22px;
	margin-top: 2px;
	-webkit-animation: rotate 1s infinite linear;
	-moz-animation: rotate 1s infinite linear;
	-ms-animation: rotate 1s infinite linear;
	-o-animation: rotate 1s infinite linear;
	animation: rotate 1s infinite linear;
	border: 2px solid #ECECEC;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	-ms-border-radius: 50%;
	-o-border-radius: 50%;
	border-radius: 50%;
}
.loader span {
	position: absolute;
	width: 45px;
	height: 45px;
	top: -2px;
	left: -2px;
	border: 2px solid transparent;
	border-top: 2px solid #ff4e00;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	-ms-border-radius: 50%;
	-o-border-radius: 50%;
	border-radius: 50%;
}
@-webkit-keyframes rotate {
	0% {
		-webkit-transform: rotate(0deg);
	}
	100% {
		-webkit-transform: rotate(360deg);
	}
}
@keyframes rotate {
	0% {
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(360deg);
	}
}


/* ======= Selection style ======= */
::-webkit-selection {
    color: #888;
    background: rgba(0, 0, 0, 0.1);
}
::-moz-selection {
    color: #888;
    background: rgba(0, 0, 0, 0.1);
}
::selection {
    color: #888;
    background: rgba(0, 0, 0, 0.1);
}


/* ======= Owl-Theme custom style ======= */
.owl-theme .owl-nav.disabled + .owl-dots {
    margin-top: 0px;
    line-height: .7;
    display: block;
}
.owl-theme .owl-dots .owl-dot span {
    width: 9px;
    height: 9px;
    margin: 0 3px;
    border-radius: 50%;
    background: transparent;
    border: 1px solid #f7f7f7;
}
.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
    background: #f7f7f7;
    border: 1px solid #f7f7f7;
}


/* ======= Section style ======= */
.section-padding {
    padding: 120px 0;
}
h2.section-title {
    font-size: 50px;
    line-height: 1.25em;
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    color: #1b1b1b;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 5px;
    margin-bottom: 20px;
}
h2.section-title span {
    font-weight: 600;
    color: transparent;
    -webkit-text-stroke: 1px #ccc;
    opacity: .8;
}
.section-subtitle {
    color: #ff4e00;
    font-size: 14px;
    font-family: 'Oswald', sans-serif;
    font-weight: 300;
    text-transform: uppercase;
    margin-bottom: 7px;
    letter-spacing: 5px;
}


/* ======= Line style ======= */
.line-vr-section {
    position: relative;
    margin: -45px auto;
    border: 0;
    border-left: 1px solid;
    border-color: #ff4e00;
    width: 2px;
    height: 90px;
    z-index: 10;
}
.line-hr-primary {
    width: 70px;
    border-top: 1px solid #ff4e00 !important;
}
.line-hr-secondary {
    width: 70px;
    border-top: 1px solid #ff4e00 !important;
}


/* ======= Img Grayscale style ======= */
.img-grayscale img {
    -webkit-filter: grayscale(80%);
    -webkit-transition: .4s ease-in-out;
    -moz-filter: grayscale(80%);
    -moz-transition: .4s ease-in-out;
    -o-filter: grayscale(80%);
    -o-transition: .4s ease-in-out
}
.img-grayscale:hover img {
    -webkit-filter: grayscale(0%);
    -moz-filter: grayscale(0%);
    -o-filter: grayscale(0%)
}


/* ======= Navbar style ======= */
.navbar {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    background: transparent;
    z-index: 99;
    padding-right: 0;
    padding-left: 0;
    padding-top: 30px;
    padding-bottom: 0;
    height: 90px;
}
/* Meta-nav (.navbar-user) contains an empty inner .navbar that must not inherit
   the absolute/fixed-height layout — it has no content and creates a ghost layer. */
.navbar-user .navbar {
    position: static;
    height: auto;
    padding: 0;
    z-index: auto;
}
/* Hide the meta-nav wrapper entirely when it contains no interactive elements
   (Language and Custom sections both render nothing).
   !important needed to override Bootstrap's d-lg-block utility. */
.navbar-user:not(:has(a, button, li)) {
    display: none !important;
}
.navbar .icon-bar {
    color: #ff4e00;
}
.navbar .navbar-nav .nav-link {
    font-family: 'Oswald', sans-serif;
    font-size: 15px;
    font-weight: 300;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin: 3px 3px;
    -webkit-transition: all .4s;
    transition: all .4s;
}
.navbar .navbar-nav .nav-link.nav-color {
    color: #1b1b1b;
}
.navbar .navbar-nav .nav-link:hover {
    color: #ff4e00;
}
.navbar .navbar-nav .active {
    color: #ff4e00 !important;
}
.nav-scroll {
    background: #fff;
    padding: 0 0 0 0;
    position: fixed;
    top: -100px;
    left: 0;
    width: 100%;
    -webkit-transition: -webkit-transform .5s;
    transition: -webkit-transform .5s;
    transition: transform .5s;
    transition: transform .5s, -webkit-transform .5s;
    -webkit-transform: translateY(100px);
    transform: translateY(100px);
    -webkit-box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.05);
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.05);
}
.nav-scroll .icon-bar {
    color: #ff4e00;
}
.nav-scroll .navbar-nav .nav-link {
    color: #1b1b1b;
}
.nav-scroll .navbar-nav .active {
    color: #ff4e00 !important;
}
.nav-scroll .navbar-nav .logo {
    padding: 15px 0;
    color: #888;
}
.nav-scroll .logo {
    width: 270px;
}
.nav-scroll .logo-img {
    margin-bottom: 0px;
}
.nav-scroll .logo-wrapper .logo h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 40px;
    font-weight: 400;
    margin-bottom: 0px;
    display: block;
    width: 100%;
    position: relative;
    color: #ff4e00;
    line-height: 1.25em;
    letter-spacing: 5px;
    display: none;
}
.nav-scroll .logo-wrapper .logo span {
    display: block;
    font-family: 'Oswald', sans-serif;
    font-size: 13px;
    color: #575757;
    font-weight: 400;
    letter-spacing: 3px;
    display: block;
    margin-top: 3px;
    line-height: 1.2em;
    text-transform: uppercase;
    margin-left: 5px;
    display: none !important;
}
.nav-scroll .logo-wrapper {
    padding: 15px 70px 15px 150px;
    background: #1b1b1b;
}
.logo-wrapper {
    float: left;
    background: #1b1b1b;
    padding: 30px 50px;
}
.logo-wrapper .logo h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 45px;
    font-weight: 400;
    display: block;
    width: 100%;
    position: relative;
    color: #ff4e00;
    letter-spacing: 9px;
    margin-bottom: 0;
}
.logo-wrapper .logo h2 a i {
    color: #888;
    font-size: 20px;
    vertical-align: super;
}
.logo-wrapper .logo span {
    display: block;
    font-family: 'Oswald', sans-serif;
    font-size: 12px;
    color: #888;
    font-weight: 400;
    letter-spacing: 4px;
    display: block;
    margin-top: 5px;
    line-height: 1.5em;
    text-transform: uppercase;
}
.logo {
    padding: 0;
    width: 270px;
    text-align: center;
}
.logo-img {
    margin-bottom: 5px;
}
.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0);
    transform: translateY(0);
}
.dropdown .nav-link {
    cursor: pointer;
}
.dropdown .nav-link i {
    padding-left: 0px;
    font-size: 9px;
}
.dropdown-item {
    position: relative;
}
.dropdown-item:hover .sub-menu {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0);
    transform: translateY(0);
}
.dropdown-item span {
    display: block;
    cursor: pointer;
}
.dropdown-menu,
.sub-menu {
    display: block;
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
    min-width: 200px;
    width: max-content;
    padding: 15px 10px;
    border-radius: 0;
    border: 0;
    background-color: #fff;
    -webkit-transition: all .3s;
    transition: all .3s;
}
.dropdown-menu .dropdown-item,
.sub-menu .dropdown-item {
    padding: 5px 15px;
    white-space: nowrap;
    font-family: 'Didact Gothic', sans-serif;
    font-size: 15px;
    font-weight: 300;
    color: #1b1b1b;
    position: relative;
    -webkit-transition: all .4s;
    transition: all .4s;
    border-bottom: 1px solid #f7f7f7;
    background-color: transparent;
}
.dropdown-menu .dropdown-item:last-child,
.sub-menu .dropdown-item:last-child {
    border-bottom: none;
}
.dropdown-menu .dropdown-item:hover,
.sub-menu .dropdown-item:hover {
    background: transparent;
    padding-left: 20px;
    color: #ff4e00;
}
.dropdown-menu .dropdown-item a,
.sub-menu .dropdown-item a {
    display: block;
}
.dropdown-menu .dropdown-item i,
.sub-menu .dropdown-item i {
   padding: 13px 0 0 5px;
    font-size: 8px;
    float: right;
}
.dropdown-menu .dropdown-item em,
.sub-menu .dropdown-item em {
    font-size: 8px;
    background-color: #1b1b1b;
    padding: 2px 4px;
    color: #fff;
    border-radius: 2px;
    position: absolute;
    right: 10px;
    top: 5px;
}
.dropdown-menu.last {
    left: -45%;
}
.sub-menu {
    position: absolute;
    left: 100%;
    top: -5px;
}
.sub-menu.left {
    left: -100%;
    margin-left: -20px;
}
@media screen and (max-width: 767px) {
    .navbar {
        padding-left: 0px;
        padding-right: 0px;
        background: transparent;
        padding-top: 30px;
        padding-bottom: 30px;
    }
    .nav-scroll {
        background: #fff;
    }
    .logo-wrapper {
        float: left;
        padding: 15px;
    }
    .nav-scroll .logo-wrapper {
        padding: 15px;
        background-color: #fff;
    }
}


/* ======= Header style ======= */
.header {
    min-height: 100vh;
    overflow: hidden;
}
.header .caption .o-hidden {
    display: inline-block;
}
.header .caption h2 {
    font-weight: 400;
    font-size: 30px;
}
.header .caption h6,
.header .caption .slide-preheader {
    font-family: 'Oswald', sans-serif;
    font-size: 16px;
    font-weight: 300;
    color: #ff4e00;
    text-align: left;
    margin-bottom: 15px;
    -webkit-animation-delay: .2s;
    animation-delay: .2s;
    text-transform: uppercase;
    letter-spacing: 5px;
}
.header .caption h1, .header .caption h2 {
    position: relative;
    margin-bottom: 0;
    font-family: 'Oswald', sans-serif;
    font-size: 85px;
    text-transform: uppercase;
    -webkit-animation-delay: .4s;
    animation-delay: .4s;
    color: #fff;
    font-weight: 600;
    letter-spacing: 3px;
}
.header .caption h1 span, .header .caption h2 span {
    position: relative;
    margin-bottom: 0;
    font-family: 'Oswald', sans-serif;
    font-size: 85px;
    text-transform: uppercase;
    -webkit-animation-delay: .4s;
    animation-delay: .4s;
    font-weight: 600;
    letter-spacing: 3px;
    color: transparent;
    -webkit-text-stroke: 1px #ccc;
    opacity: .8;
}
.header .caption p {
    font-size: 18px;
    line-height: 1.75em;
    margin-bottom: 0;
    color: #fff;
    -webkit-animation-delay: .6s;
    animation-delay: .6s;
    margin-right: 15px;
}
.header .caption p span {
    letter-spacing: 5px;
    text-transform: uppercase;
    margin: 0 5px;
    padding-right: 14px;
    position: relative;
}
.header .caption p span:last-child {
    padding: 0;
}
.header .caption p span:last-child:after {
    display: none;
}
.header .caption p span:after {
    content: '';
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #1b1b1b;
    position: absolute;
    top: 10px;
    right: 0;
    opacity: .5;
}
.header .caption .btn-curve {
  margin-top: 30px;
  margin-bottom: 30px;
  -webkit-animation-delay: .6s;
  animation-delay: .6s;
}
.header .social a {
    color: #eee;
    font-size: 20px;
    margin: 10px 15px;
}
hr {
    margin-top: 5px;
    margin-bottom: 20px;
    border: 0;
    border-top: 1px solid rgba(255,255,255,0.25);
}


/* ======= Slider style ======= */
.slider .owl-item,
.slider-fade .owl-item {
    height: 100vh;
    position: relative;
}
.slider .item,
.slider-fade .item {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-size: cover;
    background-position: center;
}
.slider .item .caption,
.slider-fade .item .caption {
    z-index: 9;
}
.slider .owl-theme .owl-dots,
.slider-fade .owl-theme .owl-dots {
    position: absolute;
    bottom: 5vh;
    width: 100%;
}
/* owl-nav next and prev */
.owl-nav {
    position: absolute;
    bottom: 9%;
    right: 12%;
}
.owl-prev {
    float: left;
}
.owl-next {
    float: right;
}
.owl-theme .owl-nav [class*=owl-] {
    width: 40px;
    height: 40px;
    line-height: 34px;
    background: transparent;
    border-radius: 0px;
    color: #fff;
    font-size: 12px;
    margin-right: 2px;
    cursor: pointer;
	border: 1px solid #ff4e00;
	opacity: 0.7;
    transition: all 0.2s ease-in-out;
    transform: scale(1.0);
}
.owl-theme .owl-nav [class*=owl-]:hover {
    transform: scale(0.9);
    background: #ff4e00;
    border: 1px solid #ff4e00;
    color: #fff;
}
@media screen and (max-width: 768px) {
    .owl-nav {
        display: none;
    }
}


/* ======= Page Header style ======= */
.banner-header {}
.banner-header h6 {
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 10px;
}
.banner-header h6 a:hover {
    color: #fff;
}
.banner-header h6 i {
    margin: 0 15px;
    font-size: 10px;
}
.banner-header h5 {
    color: #fff;
    font-size: 14px;
    font-family: 'Oswald', sans-serif;
    font-weight: 300;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 5px;
}
.banner-header h5 a {
    color: #ff4e00;
}
.banner-header h1 {
    font-size: 50px;
    font-family: 'Oswald', sans-serif;
    font-weight: 500;
    color: #fff;
    position: relative;
    margin-bottom: 20px;
    line-height: 1.25em;
    text-transform: uppercase;
    letter-spacing: 5px;
}
.banner-header p {
    font-size: 16px;
    font-weight: 300;
    margin-bottom: 0;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 5px;
    line-height: 1.75em;
    font-family: 'Oswald', sans-serif;
}
.banner-header p a {
    color: #ff4e00;
}
@media screen and (max-width: 767px) {
    .banner-header {}
    .banner-header h6 {
        font-size: 12px;
        font-weight: 400;
        margin-bottom: 10px;
    }
    .banner-header h6 a:hover {
        color: #ff4e00;
    }
    .banner-header h6 i {
        margin: 0 15px;
        font-size: 10px;
    }
    .banner-header h5 {}
    .banner-header h1 {}
}


/* ======= About style ======= */
.about {}
.about .about-img img:hover {
    transform: scale(0.95);
}
.about .about-img {
    position: relative;
}
.about .about-img .img {
    padding: 0 15px 30px 30px;
    position: relative;
}
.about .about-img .img:before {
    content: '';
    position: absolute;
    top: 30px;
    left: 0;
    right: 45px;
    bottom: 0;
    background: #f7f7f7;
}
.about .about-img .img img {
    position: relative;
    z-index: 2;
    background: #1b1b1b;
}
.about-img-2 {
    position: relative
}
.about-img .about-img-2 {
    width: 30% !important;
    position: absolute;
    bottom: 0px;
    right: 45px;
    z-index: 3;
    padding: 15px;
    color: #fff;
    text-transform: uppercase;
    font-family: 'Oswald', sans-serif;
    font-weight: 300;
    letter-spacing: 3px;
    font-size: 15px;
    line-height: 1.5em;
    text-align: center;
}
.about-since {
    background: #ff4e00;
}


/* ======= Team style ======= */
.team .item {
    margin-bottom: 30px;
}
.team .item:hover .info .social {
    top: 0;
}
.team .info {
    text-align: center;
    padding: 30px 20px;
    position: relative;
    overflow: hidden;
    background: #f7f7f7;
}
.team .info h6 {
    font-size: 16px;
    margin-bottom: 5px;
    text-transform: uppercase;
    font-weight: 300;
    letter-spacing: 3px;
    color: #1b1b1b;
}
.team .info p {
    margin-bottom: 5px;
    color: #888;
}
.team .info .social {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #ff4e00;
    -webkit-transition: all .4s;
    transition: all .4s;
}
.team .info .social p {
    margin-bottom: 5px;
    color: #fff;
}
.team .info .social a {
    font-size: 15px;
    color: #fff;
    margin: 0 5px;
}
.team .info .social a:hover {
    color: #000;
}
.team .owl-dots .owl-dot span {
    width: 9px;
    height: 9px;
    margin: 0 3px;
    border-radius: 50%;
    background: transparent;
    border: 1px solid #ff4e00;
}
.team .owl-dots .owl-dot.active span,
.team .owl-dots .owl-dot:hover span {
    background: #ff4e00;
    border: 1px solid #ff4e00;
}


/* ======= Services style ======= */
.services .item {
	padding: 45px 30px 20px 30px;
    background-color: #fff;
    margin-bottom: 30px;
    position: relative;
	display: flex;
	flex-direction: column;
	height: 100%;
	-webkit-transition: all .5s;
  transition: all .5s;
}
.services .item > a {
        display: flex;
        flex-direction: column;
        flex: 1 1 auto;
        color: inherit;
}
.services .item p {
    margin-bottom: 0;
}
.services .item p:last-of-type {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 5;
    overflow: hidden;
}
.services .item:hover {
  -webkit-box-shadow: 0px 10px 40px rgba(0, 0, 0, 0.05);
          box-shadow: 0px 10px 40px rgba(0, 0, 0, 0.05);
  border-color: transparent;
	background-color: #ff4e00;
}
.services .item:hover .numb {
  -webkit-text-stroke: 1px #fff;
}
.services .item .icon {
    color: #ff4e00;
    font-size: 40px;
    z-index: 2;
    margin-bottom: 20px;
}
.services .item:hover .icon {
  color: #fff;
}
.services .item h5,
.services .item h3 {
    font-size: 20px;
    margin-bottom: 0px;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 300;
    color: #1b1b1b;
}
.services .item:hover h5,
.services .item:hover h3 {
	color: #fff;
}
.services .item:hover p {
	color: #fff;
}
.services .item .numb {
    font-size: 45px;
    font-weight: 600;
    font-family: 'Oswald', sans-serif;
    margin-top: auto;
    align-self: flex-end;
    line-height: 1;
    color: transparent;
    -webkit-text-stroke: 1px #ccc;
    opacity: .6;
}
/* line animation */
.services .item .line {
    width: 100%;
    display: block;
    height: 14px;
    position: relative;
    margin: 8px 0 12px;
}
.services .item .line:after {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 1px;
    background-color: #ececec;
    content: '';
    transition-property: all;
    transition-duration: 0.3s;
    transition-timing-function: ease-in-out;
}
.services .item:hover .line:after {
    width: 100%;
    background-color: rgba(255,255,255,0.5);
    transition-property: all;
    transition-duration: 0.8s;
    transition-timing-function: ease-in-out;
}
/* CSS counter for service cards — decorative numbers via pseudo-element, invisible to screen readers */
/* Der Reset muss auf der Reihe liegen, die die Karten enthaelt — nicht auf
   einem einzelnen Element der Startseite. Ohne Reset im Geltungsbereich legt
   jede Karte ihren eigenen Zaehler an und zeigt 01. */
.row:has(.service-card) {
    counter-reset: card-counter;
    row-gap: 30px;
}
.service-card {
    height: 100%;
    counter-increment: card-counter;
}
.service-card .item > a::after {
    content: counter(card-counter, decimal-leading-zero);
    font-size: 45px;
    font-weight: 600;
    font-family: 'Oswald', sans-serif;
    margin-top: auto;
    align-self: flex-end;
    line-height: 1;
    color: transparent;
    -webkit-text-stroke: 1px #ccc;
    opacity: .6;
}
.service-card .item:hover > a::after {
    -webkit-text-stroke: 1px #fff;
}
/* services sidebar */
.sidebar .sidebar-widget {
    position: relative;
    display: block;
    margin-bottom: 30px;
}
.sidebar .sidebar-widget:last-child {
    margin-bottom: 0px;
}
.sidebar .sidebar-widget .widget-inner {
    position: relative;
    display: block;
    padding: 45px;
    background: #f7f7f7;
    border-radius: 0px;
}
.sidebar-title {
    position: relative;
    margin-bottom: 20px;
    border-bottom: 1px solid #ececec;
    padding-bottom: 15px;
}
.sidebar-title h5 {
    position: relative;
    display: inline-block;
    font-family: 'Oswald', sans-serif;
    font-size: 20px;
    line-height: 1.1em;
    color: #1b1b1b;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 0px;
}
.sidebar .services ul {
    position: relative;
}
.sidebar .services ul li {
    position: relative;
    line-height: 48px;
    font-size: 16px;
    color: #888;
    font-weight: 300;
    margin-bottom: 5px;
}
.sidebar .services ul li:before {
    content: "";
    position: absolute;
    left: -20px;
    top: 0;
    right: -20px;
    bottom: 0;
    background: #ff4e00;
    border-radius: 0;
    opacity: 0;
    transition: all 0.3s ease;
}
.sidebar .services ul li:after {
    content: "";
    position: absolute;
    left: -20px;
    top: 50%;
    margin-top: -12px;
    height: 24px;
    border-left: 2px solid var(--thm-base);
    opacity: 0;
    transition: all 0.3s ease;
}
.sidebar .services ul li:last-child {
    margin-bottom: 0;
}
.sidebar .services ul li a {
    position: relative;
    display: block;
    font-size: 16px;
    color: #888;
    font-weight: 400;
    transition: all 0.3s ease;
    z-index: 1;
}
.sidebar .services ul li:hover a,
.sidebar .services ul li.active a {
    color: #fff;
}
.sidebar .services ul li:hover:before,
.sidebar .services ul li.active:before,
.sidebar .services ul li:hover:after,
.sidebar .services ul li.active:after {
    opacity: 1;
}
.sidebar .services ul li a:after {
    position: absolute;
    right: 0;
    top: -1px;
    font-family: "themify";
    content: "\e649";
    opacity: 1;
    font-size: 10px;
    font-weight: normal;
    z-index: 1;
}
.sidebar .services ul li a:hover:before,
.sidebar .services ul li.active a:before {
    opacity: 1;
    transform: scaleX(1);
    transition: all 0.3s ease 0.1s;
}


/* ======= Project style ======= */
.project-container {
	padding-bottom: 10px;
	padding-top: 10px;
}
.project-container a {
	text-decoration: none;
}
.project-container h5 {
	font-family: 'Oswald', sans-serif;
	font-size: 20px;
	font-weight: 300;
	line-height: 1.5em;
	color: #fff;
	margin-bottom: 0px;
	letter-spacing: 3px;
	text-transform: uppercase;
}
.project-container p {
	color: #fff;
}
.project-texts {
	display: inline;
	position: absolute;
	opacity: 0;
	top: 0;
	left: 0;
	padding: 45px 30px;
	height: 100%;
	width: calc(100% - 5px);
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	transition: all 0.3s ease;
}
.project-texts:hover {
	opacity: 1;
}
/* line */
.project-texts .line {
	height: 1px;
	width: 60px;
	margin-top: 12px;
	margin-bottom: 15px;
	background-color: rgba(255, 255, 255, 0.8);
	transition-property: all;
	transition-duration: 0.3s;
	transition-timing-function: ease-in-out;
}
.project-texts:hover .line {
	width: 100%;
	transition-property: all;
	transition-duration: 0.8s;
	transition-timing-function: ease-in-out;
}
/* zoomer */
.project-zoomer {
	overflow: hidden;
	position: relative;
			-webkit-transition: all .5s;
  transition: all .5s;
}
.project-zoomer img {
	-webkit-transform: scale(1.0);
	transform: scale(1.0);
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	transition: all 0.3s ease;

}
.project-zoomer:hover img {
	-ms-transform: scale(1.08);
	-webkit-transform: scale(1.08);
	transform: scale(1.08);
	-webkit-transition: all 0.8s ease;
	-moz-transition: all 0.8s ease;
	transition: all 0.8s ease;
}
.project-zoomer:hover {
  -webkit-box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.1);
     box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.1);
  border-color: transparent;

}
/* overlay */
.overlay {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  opacity: 0;
  transition: .5s ease;
  background-color: rgba(245, 99, 75, 0.9);
}
.project-zoomer:hover .overlay {
  opacity: 1;
}
/* prev/next project */
.projects-prev-next {
  padding: 40px 0;
  border: none;
  border-top: 1px solid #f4f4f4;
}
@media (max-width: 576px) {
  .projects-prev-next {
    text-align: center;
  }
  .projects-prev-next-left {
        margin-bottom: 10px;
    }
}
.projects-prev-next a {
    display: inline-block;
    font-size: 16px;
    color: #888;
    line-height: 1em;
    padding: 0 5px;
}
.projects-prev-next a i {
  font-size: 20px;
}
.projects-prev-next a:hover {
    color: #ff4e00;
}
.projects-prev-next .projects-prev-next-left a i {
  margin-right: 5px;
  font-size: 12px;
}
.projects-prev-next .projects-prev-next-right a i {
 font-size: 12px;
  margin-left: 0;
  margin-left: 5px;
}

.frame-type-netthinks_citation .testimonial {
    margin-bottom: 40px;
}

.frame-type-netthinks_citation .testimonial blockquote {
    background-color: #ff4e00;
    border-radius: 5px;
    padding: 2rem 2rem 1rem 3.8rem;
    position: relative;
}
.frame-type-netthinks_citation .testimonial blockquote p {
    color:#fff;
}
.frame-type-netthinks_citation .testimonial blockquote p::before {
    left: 22px;
    top: 21px;
    color: #FFF;
    content: "“";
    font-size: 85px;
    font-style: normal;
    line-height: 1;
    position: absolute;
}

.frame-type-netthinks_citation .testimonial .testimonial-arrow-down {
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    border-top: 15px solid #ff4e00;
    border-top-color: #ff4e00;
    height: 0;
    margin: -16px 0 0 45px;
    width: 0;
}

.frame-type-netthinks_citation .testimonial .testimonial-author {
    margin: 12px 0 0 0;
}

.frame-type-netthinks_citation  .testimonial .testimonial-author p {
    color: #888;
    text-align: left;
    line-height: 1.2;
    margin-left: 9.6px;
    margin-left: 0.6rem;
}

.frame-type-netthinks_citation  .testimonial .testimonial-author p span {
    font-size:14px;
}

.frame-colorbox {
    background-color: #ff4e00;
    border-radius: 5px;
    color:#fff;
    padding: 2rem 2rem 1rem 2rem;
}
.frame-colorbox-grey {
    background-color: #efefef;
    border-radius: 5px;
    color:#000;
    padding: 2rem 2rem 1rem 2rem;
}

/* ======= Clients style ======= */
.clients {
    background-color: #f7f7f7;
}
.clients .owl-carousel {
    margin: 30px 0;
}
.clients .clients-logo {
    opacity: 1;
    line-height: 0;
}
.clients .clients-logo:hover {
    opacity: 1;
}
.clients img {
	-webkit-filter: grayscale(100%);
	filter: grayscale(100%);
}
.clients img:hover {
	-webkit-filter: none;
	filter: none;
    -webkit-transition: all .5s;
    transition: all .5s;
}


/* ======= Pricing plan style ======= */
.price .item {
    padding: 60px 30px;
    background: #fff;
    text-align: center;
    -webkit-transition: all .4s;
    transition: all .4s;
    margin: 30px 0;
}
.price .item .type {
    position: relative;
    border-bottom: 1px solid #ececec;
    position: relative;
}
.price .item .type:after {
    content: '';
    width: 20px;
    height: 20px;
    border-right: 1px solid #ececec;
    border-bottom: 1px solid #ececec;
    background: #fff;
    position: absolute;
    bottom: -11px;
    left: calc(50% - 10px);
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}
.price .item .type h5 {
    position: relative;
    color: #1b1b1b;
    font-weight: 300;
    font-size: 20px;
    letter-spacing: 3px;
    text-transform: uppercase;
}
.price .item .value {
    margin: 30px 0;
}
.price .item .value .title {
    font-size: 40px;
    margin-bottom: 0;
    color: #1b1b1b;
}
.price .item .value .title span {
    font-size: 20px;
}
.price .item .value p {
    color: #ff4e00;
}
.price .item .feat ul {
    margin-bottom: 30px;
    padding: 0;
}
.price .item .feat li {
    color: #888;
    margin-bottom: 10px;
}
.price .item .feat li:last-child {
    margin-bottom: 0;
}
.price .item .feat del {
    opacity: .5;
}
/* Tarifkarten reagieren auf den Zeiger wie die Service-Kacheln, aber ohne
   Farbumschlag: die Merkmalslisten sind zu lang, um sie auf Orange noch gut
   zu lesen. */
.price .item {
    border: 1px solid #ececec;
}
.price .item:hover {
    -webkit-box-shadow: 0px 10px 40px rgba(0, 0, 0, 0.08);
            box-shadow: 0px 10px 40px rgba(0, 0, 0, 0.08);
    border-color: #ff4e00;
    -webkit-transform: translateY(-6px);
            transform: translateY(-6px);
}
.price .item:hover .type h5 {
    color: #ff4e00;
}
@media (prefers-reduced-motion: reduce) {
    .price .item,
    .price .item:hover {
        -webkit-transition: none;
                transition: none;
        -webkit-transform: none;
                transform: none;
    }
}


/* ======= FAQS style ======= */
.accordion-box {
  position: relative;
}
.accordion-box .block {
  position: relative;
  background: #ff4e00;
  border-radius: 0px;
  overflow: hidden;
  margin-bottom: 16px;
}
.accordion-box .block.active-block {
  background-color: #f7f7f7;
}
.accordion-box .block:last-child {
  margin-bottom: 0;
}
.accordion-box .block .acc-btn {
    position: relative;
    font-size: 18px;
    line-height: 24px;
    font-weight: 400;
    cursor: pointer;
    padding: 20px 40px;
    padding-right: 60px;
    color: #fff;
    transition: all 500ms ease;
}
.accordion-box .block .acc-btn .count {
  color: #fff;
  padding-right: 3px;
}
.accordion-box .block .acc-btn.active .count {
    color: #ff4e00;
}
.accordion-box .block .acc-btn:before {
  position: absolute;
    right: 35px;
    top: 20px;
    height: 30px;
    font-size: 12px;
    font-weight: normal;
    color: #FFF;
    line-height: 30px;
    content: "\e61a";
    font-family: "Themify";
    transition: all 500ms ease;

}
.accordion-box .block .acc-btn.active {
  background-color: #f7f7f7;
    color: #ff4e00;
}
.accordion-box .block .acc-btn.active:before {
  color: "Themify";
  content: "\e622";
}
.accordion-box .block .acc-content {
  position: relative;
  display: none;
}
.accordion-box .block .content {
  position: relative;
    padding: 0px 40px 30px;
    background-color: #f7f7f7;
    color: #888;
}
.accordion-box .block .acc-content.current {
  display: block;
}
.accordion-box .block .content .text {
  display: block;
  position: relative;
  top: 0px;
  display: block;
}


/* ======= Error Page 404 style ======= */
.error-form {
  position: relative;
  max-width: 520px;
  margin: 50px auto 0;
}
.error-form form {
  position: relative;
}
.error-form .form-group {
  position: relative;
  margin: 0;
}
.error-form .form-group input[type="text"],
.error-form .form-group input[type="search"],
.error-form .form-group input[type="email"] {
    position: relative;
    width: 100%;
    line-height: 30px;
    padding: 14px 60px 15px 15px;
    height: 60px;
    display: block;
    font-family: 'Didact Gothic', sans-serif;
    font-size: 16px;
    background: #f7f7f7;
    color: #888;
    border-radius: 30px;
    border: 1px solid #f7f7f7;
    transition: all 300ms ease;
}
.error-form .form-group input[type="text"]:focus,
.error-form .form-group input[type="email"]:focus,
.error-form .form-group input[type="search"]:focus {
  border-color: #f7f7f7;
}
.error-form .form-group input::-webkit-input-placeholder {
  color: #f7f7f7;
}
.error-form .form-group .theme-btn {
      position: absolute;
    right: 20px;
    top: 0px;
    width: 40px;
    height: 40px;
    line-height: 40px;
    font-size: 20px;
    background: none;
    color: #888;
}
.error-form .form-group .theme-btn span {
  vertical-align: middle;
    outline: none;
}


/* ======= Gallery style ======= */
.gallery-item {
    position: relative;
    padding-top: 20px;
}
.gallery-box {
    overflow: hidden;
    position: relative;
}
.gallery-box .gallery-img {
    position: relative;
    overflow: hidden;
}
.gallery-box .gallery-img:after {
    content: " ";
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 0px;
    transition: all 0.27s cubic-bezier(0.3, 0.1, 0.58, 1);
}
.gallery-box .gallery-img > img {
    transition: all 0.3s cubic-bezier(0.3, 0.1, 0.58, 1);
    border-radius: 0;
}
.gallery-box .gallery-detail {
    opacity: 0;
    color: #FFF;
    width: 100%;
    padding: 20px;
    box-sizing: border-box;
    position: absolute;
    left: 0;
    overflow: hidden;
    transition: all 0.27s cubic-bezier(0.3, 0.1, 0.58, 1);
}
.gallery-box .gallery-detail h4 {
    font-size: 18px;
}
.gallery-box .gallery-detail p {
    color: Rgba(0, 0, 0, 0.4);
    font-size: 14px;
}
.gallery-box .gallery-detail i {
    color: #1b1b1b;
    padding: 8px;
}
.gallery-box .gallery-detail i:hover {
    color: #1b1b1b;
}
.gallery-box:hover .gallery-detail {
    top: 50%;
    transform: translate(0, -50%);
    opacity: 1;
}
.gallery-box:hover .gallery-img:after {
    background: rgba(0,0,0, 0.05);
}
.gallery-box:hover .gallery-img > img {
    transform: scale(1.05);
}
/* magnific popup custom */
.mfp-figure button {
    border: 0px solid transparent;
}
button.mfp-close,
button.mfp-arrow {
    border: 0px solid transparent;
    background: transparent;
}


/* ======= Promo Video and Testimonials style ======= */
/* play button */
.vid-area h5 {
    font-size: 20px;
    line-height: 1.5em;
    font-weight: 300;
    color: #fff;
    letter-spacing: 3px;
    margin-bottom: 30px;
    text-transform: uppercase;
}
.play-button {
    position: relative;
    width: 85px;
    height: 85px;
    margin: auto;
    -webkit-transform: scale(1.3);
    -ms-transform: scale(1.3);
    transform: scale(1.3);
    z-index: 4;
    margin-left: 15px;
}
.play-button svg {
    position: absolute;
    width: 100%;
    height: 100%;
}
.circle-fill circle {
    opacity: 1;
    fill: rgba(245, 99, 75, 0.75);
}
.polygon {
    position: absolute;
    width: 100%;
    height: 100%;
    text-align: center;
    line-height: 90px;
    font-size: 35px;
    z-index: 2;
    padding-left: 5px;
}
.play-button svg.circle-fill {
    z-index: 1;
    stroke-dasharray: 322;
    stroke-dashoffset: 322;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
}
.play-button:hover svg.circle-fill {
    stroke-dashoffset: 38.5;
}
.play-button svg.circle-track {
    z-index: 0;
}
.play-button.color {
    color: #ff4e00;
}
.play-button.color .circle-fill circle {
    fill: #ff4e00;
}
/* video gallery */
.vid-area .vid-icon {
    position: relative;
    overflow: hidden;
}
.vid-area:hover .vid-icon > img {
    transform: scale(1.05);
}

.video-gallery-button {
    position: relative;
    margin: auto;
    z-index: 4;
    margin-left: 15px;
    float: right;
}
.video-gallery-polygon {
	z-index: 2;
    padding-left: 5px;
    display: inline-block;
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: #ff4e00;
    border-radius: 50%;
    border: 1px solid #ff4e00;
    color: #fff;
    padding: 15px 14px 15px 16px;
    line-height: 0;
}
.video-gallery-polygon:hover {
    background: #1b1b1b;
    border: 1px solid #1b1b1b;
}
.video-gallery-polygon i {
	font-size: 20px;
}
/* testimonials style */
.testimonials-box {
    position: relative;
    background: #ff4e00;
    padding: 60px 45px;
    margin-bottom: -90px;
}
.testimonials-box .head-box h6 {
    font-weight: 400;
    color: #888;
    font-size: 17px;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 10px;
}
.testimonials-box .head-box h3,
.testimonials-box .head-box h4 {
    font-size: 20px;
    font-weight: 300;
    color: #fff;
    letter-spacing: 3px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
    padding-bottom: 15px;
    text-transform: uppercase;
}
.testimonials-box .head-box h3 span,
.testimonials-box .head-box h4 span {
    color: #1b1b1b;
}
@media screen and (max-width: 991px) {
    .testimonials-box {
        margin-bottom: 90px;
        padding: 35px 20px;
    }
}
.testimonials .item {
    margin-bottom: 30px;
    position: relative;
}
.testimonials .item .quote {
    position: absolute;
    right: 15px;
    top: 120px;
    width: 100px;
    margin: 0 auto 30px;
    opacity: .4;
}
.testimonials .item p {
    color: #fff;
}
.testimonials .item .info {
    text-align: left;
    margin: 30px 0 15px 0;
}
.testimonials .item .info .author-img {
      width: 60px;
    height: 60px;
    border-radius: 50%;
    float: left;
    overflow: hidden;
}
.testimonials .item .info .cont {
    margin-left: 75px;
}
.testimonials .item .info h4,
.testimonials .item .info h6 {
    font-size: 16px;
    margin-bottom: 0px;
    padding-top: 7px;
    font-weight: 300;
	letter-spacing: 3px;
	text-transform: uppercase;
    color: #fff;
}
.testimonials .item .info span {
    font-size: 14px;
    color: #fff;
    margin-right: 5px;
    line-height: 1.25em;
}
.testimonials .item .info .rate {
    float: right;
}
.testimonials .item .info i {
    color: #ff4e00;
    font-size: 10px;
}


/* ======= Blog style ======= */
.nopixel-blog .img {
  position: relative;
    overflow: hidden;
}
.nopixel-blog .img:hover img {
    -webkit-filter: none;
    filter: none;
    -webkit-transform: scale(1.09, 1.09);
    transform: scale(1.09, 1.09);
    -webkit-transition: all 1s ease;
    -moz-transition: all 1s ease;
    -o-transition: all 1s ease;
    -ms-transition: all 1s ease;
    transition: all 1s ease;
}
.nopixel-blog .img img {
    -webkit-transition: all .5s;
    transition: all .5s;
}
.nopixel-blog .content {
  width: 100%;
  padding: 30px 45px;
}
.nopixel-blog .content .date {
  display: table-cell;
  position: relative;
  width: 80px;
  z-index: 2;
}
.nopixel-blog .content .date .day {
    font-size: 65px;
    font-weight: 600;
    color: #ff4e00;
    font-family: 'Oswald', sans-serif;
    margin: 20px 0 20px 0;
}
.nopixel-blog .content .date .month {
    color: #888;
    letter-spacing: 3px;
    font-size: 10px;
    font-family: 'Didact Gothic', sans-serif;
    text-transform: uppercase;
    font-weight: 300;
	padding-right: 3px;
    margin-top: 16px;
    line-height: 1rem;
}
.nopixel-blog .content .cont {
  display: table-cell;
  vertical-align: middle;
  padding-left: 15px;
}
.nopixel-blog .content .cont h5 {
    margin: 15px 0;
    font-size: 20px;
    color: #1b1b1b;
    letter-spacing: 3px;
    font-weight: 300;
    text-transform: uppercase;
    line-height: 1.5em;
}
.nopixel-blog .content .cont .more {
  font-family: 'Oswald', sans-serif;
  font-size: 14px;
  font-weight: 300;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #888;
  padding-left: 50px;
  position: relative;
}
.nopixel-blog .content .cont .more:after {
  content: '';
  width: 40px;
  height: 1px;
  background: #ff4e00;
  position: absolute;
  top: 50%;
  left: 0px;
}
.nopixel-blog .content .cont .more:hover {
   color: #ff4e00;
}
.nopixel-blog .content .info h6 {
    font-size: 12px;
    letter-spacing: 2px;
    color: #888;
    font-family: 'Didact Gothic', sans-serif;
    text-transform: uppercase;
}
.nopixel-blog .content .info .tags {
  color: #ff4e00;
}
@media screen and (max-width: 991px) {
    .nopixel-blog .content {
    padding: 0 30px;
    margin-top: 40px;
    }
    .nopixel-blog .content .cont h4 {
        line-height: 1.25em;
    }
    .order2 {
    -webkit-box-ordinal-group: 3 !important;
        -ms-flex-order: 2 !important;
            order: 2 !important;
  }
    .order1 {
    -webkit-box-ordinal-group: 2 !important;
        -ms-flex-order: 1 !important;
            order: 1 !important;
  }
}
@media screen and (max-width: 480px) {
    .nopixel-blog .content {
    padding: 0 15px;
  }
    .nopixel-blog .content .date {
    width: 60px;
  }
    .nopixel-blog .content .info .tags {
    margin: 5px 0 0;
  }
    .nopixel-blog .content .date h3 {
    font-size: 40px;
  }
}
/* pagination */
.nopixel-pagination-wrap {
    padding: 0;
    margin: 0;
    text-align: center;
}
.nopixel-pagination-wrap li {
    display: inline-block;
    margin: 0 5px;
}
.nopixel-pagination-wrap li a {
    background: transparent;
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 38px;
    text-align: center;
    color: #888;
    font-weight: 300;
    border: 1px solid #ececec;
    font-family: 'Oswald', sans-serif;
    font-size: 13px;
    border-radius: 100%;
}
.nopixel-pagination-wrap li a i {
    font-size: 11px;
}
.nopixel-pagination-wrap li a:hover {
    opacity: 1;
    text-decoration: none;
    background: transparent;
    border: 1px solid #ff4e00;
    color: #ff4e00;
}
.nopixel-pagination-wrap li a.active {
    background-color: transparent;
    border: 1px solid #ff4e00;
    color: #ff4e00;
}
@media screen and (max-width: 768px) {
    .nopixel-pagination-wrap {
        padding: 0;
        margin: 0;
        text-align: center;
    }
}

/* ======= Post style ======= */
.nopixel-post-section {
    padding-top: 120px;
}
.nopixel-comment-section {
    padding-top: 60px;
    margin-bottom: 0px;
}
.nopixel-comment-section h6 {
    font-size: 16px;
    color: #1b1b1b;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 2px;
}
.nopixel-comment-section h6 span {
    font-size: 12px;
    color: #888;
    font-weight: 300;
    margin-left: 15px;
}
.nopixel-post-comment-wrap {
    display: flex;
    margin-bottom: 60px;
}
.nopixel-user-comment {
    margin-right: 30px;
    flex: 0 0 auto;
}
.nopixel-user-comment img {
    border-radius: 100%;
    width: 100px;
}
.nopixel-user-content {
    margin-right: 26px;
}
.nopixel-repay {
    font-size: 14px;
    color: #ff4e00;
    margin: 0;
    font-weight: 400;
}
/* prev/next post */
.nopixel-post-prev-next {
  padding: 40px 0;
  border: none;
  border-top: 1px solid #f4f4f4;
}
@media (max-width: 576px) {
  .nopixel-post-prev-next {
    text-align: center;
  }
  .nopixel-post-prev-next-left {
        margin-bottom: 10px;
    }
}
.nopixel-post-prev-next a {
    display: inline-block;
    font-size: 16px;
    color: #888;
    line-height: 1em;
}
.nopixel-post-prev-next a i {
  font-size: 20px;
}
.nopixel-post-prev-next a:hover {
    color: #ff4e00;
}
.nopixel-post-prev-next .nopixel-post-prev-next-left a i {
  margin-right: 5px;
  font-size: 12px;
}
.nopixel-post-prev-next .nopixel-post-prev-next-right a i {
 font-size: 12px;
  margin-left: 0;
  margin-left: 5px;
}

/* ======= Contact style ======= */
#nopixel-contactMap {
    width: 100%;
    height: 550px;
}
.contact h5 {
	color: #1b1b1b;
	font-size: 20px;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 3px;
}
.contact p {
    margin-bottom: 15px;
}


/* ======= Buttons style ======= */
.btn-curve {
  background: transparent;
  padding: 8px 27px;
  border: 1px solid #fff;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.btn-curve:focus {
  outline: none;
}
.btn-curve:hover {
  outline: none;
}
.btn-curve:hover:after {
  bottom: -30px;
  -webkit-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  transform: rotate(0deg);
}
.btn-curve:hover span {
  color: #fff;
}
.btn-curve:after {
  content: '';
  position: absolute;
  top: -30px;
  left: -30px;
  right: -30px;
  bottom: 130%;
  background: #1b1b1b;
  -webkit-transform: rotate(-5deg);
  -ms-transform: rotate(-5deg);
  transform: rotate(-5deg);
  -webkit-transition: all .8s;
  -o-transition: all .8s;
  transition: all .8s;
}
.btn-curve span {
  font-family: 'Oswald', sans-serif;
  font-size: 14px;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 3px;
  position: relative;
  z-index: 2;
  -webkit-transition: all .8s;
  -o-transition: all .8s;
  transition: all .8s;
}
/* button border white */
.btn-curve.btn-borderwhite {
  border-color: #fff;
  color: #fff;
}
.btn-curve.btn-borderwhite:hover span {
  color: #1b1b1b;
}
.btn-curve.btn-borderwhite:after {
  background: #fff;
}
/* button background white */
.btn-curve.btn-bgwhite {
  background: #fff;
  border-color: #fff;
}
.btn-curve.btn-bgwhite:after {
  background: #ff4e00;
}
.btn-curve.btn-bgwhite span {
  color: #1b1b1b;
}
.btn-curve.btn-bgwhite:hover {
  border-color: #ff4e00;
}
.btn-curve.btn-bgwhite:hover span {
  color: #fff;
}
/* button border yellow */
.btn-curve.btn-borderyellow {
  border-color: #ff4e00;
  color: #ff4e00;
}
.btn-curve.btn-borderyellow:hover span {
  color: #FFF;
}
.btn-curve.btn-borderyellow:after {
  background: #ff4e00;
}
/* button background yellow */
.btn-curve.btn-bgyellow {
  background: #ff4e00;
  border-color: #ff4e00;
}
.btn-curve.btn-bgyellow:after {
  background: #1b1b1b;
}
.btn-curve.btn-bgyellow span {
  color: #fff;
}
.btn-curve.btn-bgyellow:hover {
  border-color: #1b1b1b;
}
.btn-curve.btn-bgyellow:hover span {
  color: #FFF;
}

.btn-primary {
    background: #ff4e00;
    border-color: #ff4e00;
}
.btn-primary:hover {
    background: rgba(255, 78, 0, 0.69);
    border-color: #9b3300;
}

/* ======= Footer style ======= */
.main-footer {
    padding: 100px 0 0;
}
.main-footer.dark {
    position: relative;
    background: #1b1b1b;
    color: #fff;
}
.main-footer .abot p {
    color: #fff;
}
.main-footer .abot .logo img {
    height: 30px;
    width: auto;
    display: block;
    -webkit-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}
.main-footer .abot .social-icon {
    margin-top: 20px;
}
.main-footer .abot .social-icon a {
    font-size: 15px;
    margin-right: 10px;
    color: #fff;
}
.main-footer .abot .social-icon a:hover {
    color: #ff4e00;
}
.main-footer .usful-links ul {
    margin: 0;
    padding: 0;
}
.main-footer .usful-links ul li {
    margin-bottom: 5px;
}
.main-footer .usful-links ul li:hover {
    color: #fff;
}
.main-footer .usful-links ul li i {
    font-size: 7px;
    color: #fff;
    margin-right: 3px;
}
.main-footer .usful-links ul li i.bigicon {
	font-size:14px;
}
.main-footer .usful-links ul li a {
    color: #fff;
}
.main-footer .usful-links ul li a:hover {
color: #ff4e00;
}
.main-footer .fothead h5,
.main-footer .fothead h6 {
    color: #fff;
    font-size: 16px;
    font-weight: 300;
    letter-spacing: 3px;
    text-transform: uppercase;
}
.main-footer .fotcont .fothead h5,
.main-footer .fotcont .fothead h6 {
    position: relative;
    padding-bottom: 10px;
}
.main-footer .fotcont .fothead h5:after,
.main-footer .fotcont .fothead h6:after {
    content: '';
    position: absolute;
    right: 0;
    bottom: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.03);
    height: 1px;
}
.main-footer .fotcont p {
    margin-bottom: 0px;
    color: #fff;
}
.main-footer .sub-footer {
    padding: 30px 0;
    margin-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
}
.main-footer .sub-footer p {
    font-size: 14px;
    color: #fff;
    margin-bottom: 0;
}
.main-footer .sub-footer p a {
   color: #fff;
   white-space: nowrap;
}
.main-footer .sub-footer p a:hover {
color: #ff4e00;
}
.main-footer .sub-footer .text-right-left p span {
   color: rgba(255, 255, 255, 0.2);
   padding: 0 10px;
}
.main-footer .logo h2 {
    font-weight: normal;
    font-size: 30px;
    color: #fff;
    line-height: 1.25em;
    margin-bottom: 20px;
    letter-spacing: 1px;
}
.main-footer .logo span {
    display: block;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 9px;
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 400;
    line-height: 1.25em;
}
.main-footer .sub-footer .text-right-left {
    text-align: right!important;
}
.main-footer .sub-footer .text-right-left p {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    align-items: center;
    gap: 0;
}
.main-footer .sub-footer .text-right-left p span {
    white-space: nowrap;
}
@media screen and (max-width: 767px) {
	.main-footer .sub-footer {
    margin-top: 0px;
}
.main-footer .sub-footer p,
.main-footer .sub-footer .text-right-left {
    text-align: left;
    }
}


/* ======= toTop Button style ======= */
.progress-wrap {
    position: fixed;
    bottom: 30px;
    right: 30px;
    height: 40px;
    width: 40px;
    cursor: pointer;
    display: block;
    border-radius: 50px;
    -webkit-box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.2);
    box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.2);
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateY(20px);
    -ms-transform: translateY(20px);
    transform: translateY(20px);
    -webkit-transition: all 400ms linear;
    -o-transition: all 400ms linear;
    transition: all 400ms linear;
}
.progress-wrap.active-progress {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
}
.progress-wrap::after {
    position: absolute;
    font-family: 'themify';
    content: '\e648';
    text-align: center;
    line-height: 40px;
    font-size: 12px;
    font-weight: 600;
    color: #ff4e00;
    left: 0;
    top: 0;
    height: 40px;
    width: 40px;
    cursor: pointer;
    display: block;
    z-index: 1;
    -webkit-transition: all 400ms linear;
    -o-transition: all 400ms linear;
    transition: all 400ms linear;
}
.progress-wrap svg path {
    fill: none;
}
.progress-wrap svg.progress-circle path {
    stroke: rgba(0, 0, 0, 0.2);
    stroke-width: 2;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transition: all 400ms linear;
    -o-transition: all 400ms linear;
    transition: all 400ms linear;
}
.progress-wrap {
    -webkit-box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.2);
    box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.2);
}
.progress-wrap::after {
    color: #ff4e00;
}
.progress-wrap svg.progress-circle path {
    stroke: #ff4e00;
}


/* ======= Coming Soon style ======= */
.comming{
	min-height: 100vh;
	height: auto;
	position: relative;
	background-blend-mode: overlay;
	background: rgba(0,0,0,.6);
	background-image: url("../img/slider/04.jpg");
	background-size: cover;
	background-position: center;
	background-attachment: fixed;
	color: #fff;
}
@media (max-width: 767px){
	.comming{
		min-height: 200vh;
	}
}
.comming .item {
    background-color: rgba(0,0,0, 0.3);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 30px 15px;
    margin-bottom: 30px;
}
.comming h6 {
    color: #ff4e00;
    font-size: 13px;
    font-family: 'Oswald', sans-serif;
    font-weight: 300;
    text-transform: uppercase;
    margin-bottom: 5px;
    letter-spacing: 5px;
	line-height: 1.75em;
}
.comming h3 {
    font-size: 48px;
    line-height: 1.25em;
    font-family: 'Oswald', sans-serif;
    font-weight: 400;
    color: #fff;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 15px;
}
.comming h1 {
    font-size: 50px;
    line-height: 1.25em;
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    color: #fff;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 15px;
    margin-bottom: 20px;
	margin-top: 20px;
}
.comming p {
	color: #fff;
	font-size: 16px;
}
/* coming form */
.comming form {
  margin-top: 30px;
  position: relative;
}
.comming form input {
    width: 100%;
    padding: 11px 50px 11px 11px;
    background-color: transparent;
    border: 1px solid #ff4e00;
    border-radius: 0px;
    color: #fff;
    margin-bottom: 15px;
	outline: none;
}
.comming form button {
    background-color: #ff4e00;
    padding: 8px 20px;
    border-radius: 0px;
    color: #fff;
    border: 0;
    position: absolute;
    top: 4px;
    right: 4px;
    cursor: pointer;
    font-size: 14px;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 300;
    outline: none;
}
.comming form button:hover {
  background-color: #1b1b1b;
  color: #fff;
	outline: none;
}
/* go home */
.go-back{
	margin-top: 45px;
}
.go-back a {
	color: #fff;
	display: inline-block;
	font-size: 13px;
    font-family: 'Oswald', sans-serif;
    font-weight: 300;
    text-transform: uppercase;
	letter-spacing: 5px;
}
.go-back a:hover {
	color: #ff4e00;
}
.go-back a span{
	transition: all .5s;
}
.go-back a span i {
	color: #fff;
	font-size: 14px;
}
.go-back a:hover span{
	padding-right: 15px;
}

@media only screen
and (min-width: 1024px)
and (max-height: 1366px)
and (-webkit-min-device-pixel-ratio: 1.5) {
    .bg-fixed {
        background-attachment: scroll !important;
    }
}


/* ======= Responsive style ======= */
@media screen and (max-width: 991px) {
    .bg-fixed {
        background-attachment: scroll !important;
    }
    .navbar .logo {
        text-align: left;
        margin-left: 15px;
    }
    .nav-scroll .logo {
        /*width: 115px;*/
    }
    .logo-img {
        margin-bottom: 0px;
    }
    .navbar button {
        margin-right: 15px;
        outline: none !important;
        background: transparent;
    }
    .navbar button:hover {
        background: transparent;
    }
    .navbar .container {
        max-width: 100%;
    }
    .navbar .navbar-collapse {
        max-height: 360px;
        overflow: auto;
        background: #fff;
        text-align: left;
        padding: 15px 30px 30px 15px;
		margin-top: 20px;
    }
    .navbar .nav-link {
        margin: 0px auto !important;
    }
    .navbar .navbar-nav .nav-link {
        color: #888;
    }
    .nav-scroll .navbar-collapse .nav-link {
        color: #888 !important;
    }
    .nav-scroll .navbar-collapse .active {
        color: #ff4e00 !important;
    }
    .dropdown-menu {
        opacity: 1;
        visibility: visible;
        -webkit-transform: translateY(0);
        transform: translateY(0);
        width: 100%;
        display: none;
    }
    .dropdown-menu .sub-menu {
        position: static;
        margin-top: 15px;
        opacity: 1;
        visibility: visible;
        -webkit-transform: translateY(0);
        transform: translateY(0);
        width: 100%;
        display: none;
    }
    .dropdown:hover .dropdown-menu {
        display: block;
    }
    .dropdown .dropdown-menu:hover .sub-menu {
        display: block;
    }
    .dropdown-menu .dropdown-item,
    .sub-menu .dropdown-item {
        color: #888;
    }
    .header {
        background-attachment: scroll !important;
        background-position: 50% 0% !important;
    }
    .header .caption h1 {
        font-size: 50px;
    }
    .header .caption h2 {
        font-size: 50px;
    }
}
@media screen and (max-width: 767px) {
    .logo-wrapper .logo h2 {
        display: none;
    }
    .hero .intro h3 {
        font-size: 28px;
    }
    .hero .intro h4 {
        font-size: 20px;
    }
    .header .caption h1 {
        font-size: 50px;
        margin-bottom: 15px;
    }
	.header .caption h1 span {
    font-size: 50px;
	}
    .header .caption h2 {
        font-size: 36px;
        margin-bottom: 15px;
    }
    .header .caption h2 span {
        font-size: 36px;
    }

	.about .about-img .img {
    padding: 0 0px 20px 0px;
    position: relative;
}

	.about-img .about-img-2 {
    width: 40% !important;
    position: absolute;
    bottom: 0px;
    right: 15px;
    z-index: 3;
    padding: 15px;
}
    .header .caption p {
        font-size: 15px;
        margin-right: 10px;
    }
    .header .caption .btn-curve {
	  margin-top: 30px;
	  -webkit-animation-delay: 1.2s;
			  animation-delay: 1.2s;
	}

	.project-texts {
		padding: 20px
	}
    .nopixel-comment-section h3 span {
        margin-left: 0px;
    }
    .main-footer .sub-footer p.right {
        text-align: left;
    }
    .main-footer .abot .social-icon {
        text-align: left;
        margin-bottom: 15px;
    }
    .footer .logo {
        padding: 0;
        width: auto;
        margin: 0px 0;
    }

}
@media screen and (max-width: 480px) {
    .section-head h4 {
        font-size: 30px;
    }
    .footer {
        padding: 60px 0;
    }
    .text-left {
        text-align: center;
    }
    .text-center {
        text-align: center;
    }
    .text-right {
        text-align: center;
    }
    .header .caption h2 {
        font-size: 28px;
    }
    .header .caption h2 span {
        font-size: 28px;
    }
}


/* ======= Overlay Effect Bg image style ======= */
[data-overlay-dark],
[data-overlay-darkgray],
[data-overlay-light] {
  position: relative;
}
[data-overlay-dark] .container,
[data-overlay-darkgray] .container,
[data-overlay-light] .container {
  position: relative;
  z-index: 2;
}
[data-overlay-dark]:before,
[data-overlay-darkgray]:before,
[data-overlay-light]:before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
}
[data-overlay-dark]:before {
  background: #000;
}
[data-overlay-darkgray]:before {
  background: #1b1b1b;
}
[data-overlay-light]:before {
  background: #fff;
}


[data-overlay-dark] h1,
[data-overlay-dark] h2,
[data-overlay-dark] h3,
[data-overlay-dark] h4,
[data-overlay-dark] h5,
[data-overlay-dark] h6,
[data-overlay-dark] span {
  color: #fff;
}
[data-overlay-darkgray] h1,
[data-overlay-darkgray] h2,
[data-overlay-darkgray] h3,
[data-overlay-darkgray] h4,
[data-overlay-darkgray] h5,
[data-overlay-darkgray] h6,
[data-overlay-darkgray] span {
  color: #fff;
}
[data-overlay-light] h1,
[data-overlay-light] h2,
[data-overlay-light] h3,
[data-overlay-light] h4,
[data-overlay-light] h5,
[data-overlay-light] h6,
[data-overlay-light] span {
  color: #888;
}
[data-overlay-dark] p {
  color: #fff;
}
[data-overlay-darkgray] p {
  color: #fff;
}
[data-overlay-light] p {
  color: #888;
}
[data-overlay-dark="0"]:before,
[data-overlay-darkgray="0"]:before,
[data-overlay-light="0"]:before {
  opacity: 0;
}
[data-overlay-dark="1"]:before,
[data-overlay-darkgray="1"]:before,
[data-overlay-light="1"]:before {
  opacity: 0.1;
}
[data-overlay-dark="2"]:before,
[data-overlay-darkgray="2"]:before,
[data-overlay-light="2"]:before {
  opacity: 0.2;
}
[data-overlay-dark="3"]:before,
[data-overlay-darkgray="3"]:before,
[data-overlay-light="3"]:before {
  opacity: 0.3;
}
[data-overlay-dark="4"]:before,
[data-overlay-darkgray="4"]:before,
[data-overlay-light="4"]:before {
  opacity: 0.4;
}
[data-overlay-dark="5"]:before,
[data-overlay-darkgray="5"]:before,
[data-overlay-light="5"]:before {
  opacity: 0.5;
}
[data-overlay-dark="6"]:before,
[data-overlay-darkgray="6"]:before,
[data-overlay-light="6"]:before {
  opacity: 0.6;
}
[data-overlay-dark="7"]:before,
[data-overlay-darkgray="7"]:before,
[data-overlay-light="7"]:before {
  opacity: 0.7;
}
[data-overlay-dark="8"]:before,
[data-overlay-darkgray="8"]:before,
[data-overlay-light="8"]:before {
  opacity: 0.8;
}
[data-overlay-dark="9"]:before,
[data-overlay-darkgray="9"]:before,
[data-overlay-light="9"]:before {
  opacity: 0.9;
}
[data-overlay-dark="10"]:before,
[data-overlay-darkgray="10"]:before,
[data-overlay-light="10"]:before {
  opacity: 1;
}


.frame-space-before-extra-small {
    margin-top: 0.5rem
}

.frame-space-after-extra-small {
    margin-bottom: 0.5rem
}

.frame-space-before-small {
    margin-top: 1.5rem
}

.frame-space-after-small {
    margin-bottom: 1.5rem
}

.frame-space-before-medium {
    margin-top: 3rem
}

.frame-space-after-medium {
    margin-bottom: 3rem
}

.frame-space-before-large {
    margin-top: 4rem
}

.frame-space-after-large {
    margin-bottom: 4rem
}

.frame-space-before-extra-large {
    margin-top: 5rem
}

.frame-space-after-extra-large {
    margin-bottom: 5rem
}

.frame-padding-top-extra-small {
    padding-top: 0.5rem
}

.frame-padding-bottom-extra-small {
    padding-bottom: 0.5rem
}

.frame-padding-top-small {
    padding-top: 1rem
}

.frame-padding-bottom-small {
    padding-bottom: 1rem
}

.frame-padding-top-medium {
    padding-top: 2rem
}

.frame-padding-bottom-medium {
    padding-bottom: 2rem
}

.frame-padding-top-large {
    padding-top: 3rem
}

.frame-padding-bottom-large {
    padding-bottom: 3rem
}

.frame-padding-top-extra-large {
    padding-top: 5rem
}

.frame-padding-bottom-extra-large {
    padding-bottom: 5rem
}

.promo h3 span {
    color:#ff4e00;
}

.promo-border {
    border: 1px solid #E5E5E5;
    border-radius: 3px;
}

/* PromoBox: optionaler Neuheits-Badge + orange Hervorhebung.
   Nur aktiv, wenn die neuen CB-Felder gesetzt sind – bestehende Boxen bleiben unverändert. */
.promo--has-badge,
.promo--highlight {
    position: relative;
}
.promo--highlight {
    border: 2px solid #ff4e00;
    background: #fff4ee;
    box-shadow: 0 8px 28px rgba(255, 78, 0, 0.18);
}
/* Verweise im Fließtext einer PromoBox waren von normalem Text nicht zu
   unterscheiden: der Kasten erbt die Textfarbe, und der globale Linkstil setzt
   weder Farbe noch Unterstreichung. */
.promo p a {
    color: #ff4e00;
    text-decoration: underline;
    text-underline-offset: 0.15em;
}
.promo p a:hover,
.promo p a:focus-visible {
    color: #1b1b1b;
}

/* Zwei Kaesten nebeneinander sollen gleich hoch sein. Die Spalte ist bereits
   so hoch wie die Reihe; die Kette darunter muss die Hoehe nur durchreichen. */
.row > [class*="col-"] > div > .promo {
    height: 100%;
    margin-bottom: 0;
}
.row > [class*="col-"] > div:has(> .promo) {
    height: 100%;
}

/* Steht der Kasten in einer halben Spalte, reicht die Breite nicht mehr fuer
   Symbol, Text und Schaltflaeche nebeneinander — der Text wurde zu einer
   Spalte von wenigen Wortbreiten. Massgeblich ist die Breite des Kastens,
   nicht die des Fensters, deshalb eine Container-Abfrage. */
.promo {
    container-type: inline-size;
}
@container (max-width: 620px) {
    .promo > .row {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.25rem;
    }
    .promo > .row > [class*="col-"] {
        width: 100%;
        max-width: 100%;
        flex: 0 0 auto;
        margin-top: 0;
    }
    .promo > .row > .col-auto {
        width: auto;
    }
}

/* Der ganze Kasten ist anklickbar. Nicht ueber eine Pseudo-Flaeche: Der
   Knopf besitzt bereits ein ::after fuer seine Hover-Fuellung und schneidet
   mit overflow: hidden alles ab, was darueber hinausragt. Die Weiterleitung
   uebernimmt deshalb promo-card.js — das laesst ausserdem die Textauswahl
   heil, die eine Klickflaeche unterbinden wuerde.
   Es bleibt bei genau einem Link im Kasten: einer im Tab-Lauf, einer in der
   Linkliste eines Screenreaders. */
.promo {
    position: relative;
}
.promo:has(.btn-curve) {
    cursor: pointer;
}
.promo-badge {
    z-index: 2;
}

/* Die Kaesten reagieren auf den Zeiger wie die Tarifkarten: angehoben,
   Schatten, oranger Rahmen. focus-within nimmt die Tastatur mit, sobald die
   Schaltflaeche im Kasten den Fokus hat. */
.promo {
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.promo:hover,
.promo:focus-within {
    transform: translateY(-4px);
    border-color: #ff4e00;
    box-shadow: 0 12px 32px rgba(0, 0, 0, .10);
}
.promo--highlight:hover,
.promo--highlight:focus-within {
    box-shadow: 0 12px 34px rgba(255, 78, 0, .22);
}
@media (prefers-reduced-motion: reduce) {
    .promo,
    .promo:hover,
    .promo:focus-within {
        transition: none;
        transform: none;
    }
}

/* Bild oben im Kasten: zieht bis an die Kante, damit es wie ein Kopfbild
   wirkt und nicht wie eine eingeklebte Illustration. */
.promo-media {
    margin: -1.5rem -1.5rem 1.75rem;
    overflow: hidden;
    border-radius: 3px 3px 0 0;
}
@media (min-width: 768px) {
    .promo-media {
        margin: -3rem -3rem 2rem;
    }
}
.promo-media img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

.promo-badge {
    position: absolute;
    top: -14px;
    right: 28px;
    z-index: 2;
    display: inline-block;
    padding: 0.38em 1em;
    background: #ff4e00;
    color: #fff;
    font-size: 0.8rem;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border-radius: 999px;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.18);
}

/* Screenshot-Galerie im Slider-Modus (CB netthinks_screenshotgallery).
   Nur .nt-screenshot-slider gescopet – Testimonials/andere owl-Slider unberührt. */
.nt-screenshot-slider {
    position: relative;
}
.nt-screenshot-slider .figure {
    margin-bottom: 0;
}
.nt-screenshot-slider .owl-nav {
    margin-top: 0;
}
.nt-screenshot-slider .owl-nav button.owl-prev,
.nt-screenshot-slider .owl-nav button.owl-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    color: #1b1b1b;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}
.nt-screenshot-slider .owl-nav button.owl-prev { left: 12px; }
.nt-screenshot-slider .owl-nav button.owl-next { right: 12px; }
.nt-screenshot-slider .owl-nav button.owl-prev:hover,
.nt-screenshot-slider .owl-nav button.owl-next:hover {
    background: #ff4e00;
    color: #fff;
}
.nt-screenshot-slider .owl-dots {
    text-align: center;
    margin-top: 14px;
}
.nt-screenshot-slider .owl-dots .owl-dot span {
    display: inline-block;
    width: 10px;
    height: 10px;
    margin: 0 4px;
    background: #ccc;
    border-radius: 50%;
    transition: background 0.2s;
}
.nt-screenshot-slider .owl-dots .owl-dot.active span,
.nt-screenshot-slider .owl-dots .owl-dot:hover span {
    background: #ff4e00;
}


/* Icon Featured */
.icon-featured {
    display: inline-block;
    font-size: 0;
    margin: 15px;
    width: 110px;
    height: 110px;
    border-radius: 50%;
    text-align: center;
    position: relative;
    z-index: 1;
    color: #FFF;
    font-size: 2.3em;
    line-height: 110px;
}

.icon-featured:after {
    pointer-events: none;
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    content: '';
    box-sizing: content-box;
}

.icon-featured.icon-featured-lg {
    width: 180px !important;
    height: 180px !important;
    line-height: 180px !important;
}

/* Featured Box */
.featured-box {
    background: #FFF;
    box-sizing: border-box;
    border-bottom: 1px solid #DFDFDF;
    border-left: 1px solid #ECECEC;
    border-radius: 8px;
    border-right: 1px solid #ECECEC;
    box-shadow: 0 2px 4px 0px rgba(0, 0, 0, 0.05);
    margin-bottom: 20px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 20px;
    min-height: 100px;
    position: relative;
    text-align: center;
    z-index: 1;
}

.featured-box h4 {
    font-size: 1.3em;
    font-weight: 400;
    letter-spacing: -0.7px;
    margin-top: 5px;
    margin-bottom: 5px;
}

.featured-box .box-content {
    border-radius: 8px;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    border-top-width: 4px;
    padding: 28.8px;
    padding: 1.8rem;
    position: relative;
}

.featured-box .box-content:not(.box-content-border-0) {
    top: -1px;
    border-top-width: 4px;
}

.featured-box .box-content.box-content-border-0 {
    border-top: 1px solid rgba(0, 0, 0, 0.06) !important;
    border-bottom: 0 !important;
}

.featured-box .box-content.box-content-border-bottom {
    top: 1px;
}

.featured-box .box-content .text-2 .frame-type-text p {
    margin-bottom: 0!important;
}
.featured-box .frame-type-text a {
    display: inline;
}

.featured-box .box-content-border-bottom {
    border-top: 1px solid rgba(0, 0, 0, 0.06) !important;
    border-bottom: 4px solid rgba(0, 0, 0, 0.06);
}

.featured-box.border-radius {
    border-radius: 8px !important;
}

.featured-box.border-radius.box-shadow-1:before {
    border-radius: 8px !important;
}

/* Featured Box Left */
.featured-box-text-left {
    text-align: left;
}

/* Featured Boxes - Flat */
.featured-boxes-flat .row {
    display: flex;
    flex-wrap: wrap;
}

.featured-boxes-flat .row > [class*="col-"] {
    display: flex;
}

.featured-boxes-flat .featured-box {
    background: transparent;
    border: 0;
    box-shadow: none;
    margin: 10px 0;
    width: 100%;
    display: flex;
    flex-direction: column;
}

.featured-boxes-flat .featured-box .box-content {
    background: #FFF;
    border-left: 1px solid #ECECEC;
    border-right: 1px solid #ECECEC;
    border-radius: 8px;
    margin-top: 65px;
    padding: 10px 12px 0 12px;
    flex: 1 1 auto;
}

.featured-boxes-flat .featured-box .icon-featured {
    display: inline-block;
    font-size: 2em;
    height: 90px;
    line-height: 90px;
    padding: 0;
    width: 90px;
    margin: -100px 0 -15px;
    position: relative;
    top: -40px;
}

/* Featured Boxes - Style 2 */
.featured-boxes-style-2 .featured-box {
    background: none;
    border: 0;
    margin: 10px 0;
    box-shadow: none;
}

.featured-boxes-style-2 .featured-box .box-content {
    border: 0;
    padding-top: 0;
    padding-bottom: 0;
}

.featured-boxes-style-2 .featured-box .icon-featured {
    display: inline-block;
    font-size: 1.8em;
    height: 75px;
    line-height: 75px;
    padding: 0;
    width: 75px;
    margin-top: 0;
}

/* Featured Boxes - Style 3 */
.featured-boxes-style-3 .featured-box {
    margin: 10px 0;
}

.featured-boxes-style-3 .featured-box .icon-featured {
    display: inline-block;
    font-size: 1.8em;
    height: 75px;
    line-height: 75px;
    padding: 0;
    width: 75px;
    margin-top: -37px;
    top: -37px;
    background: #FFF;
    border: 2px solid rgba(0, 0, 0, 0.06);
    color: rgba(0, 0, 0, 0.06);
}

.featured-boxes-style-3:not(.featured-boxes-flat) .featured-box {
    background: none;
    border: 0;
    box-shadow: none;
}

.featured-boxes-style-3:not(.featured-boxes-flat) .featured-box .box-content {
    border: 0;
    padding-top: 0;
    padding-bottom: 0;
}

/* Featured Boxes - Style 4 */
.featured-boxes-style-4 .featured-box {
    background: none;
    border: 0;
    margin: 10px 0;
    box-shadow: none;
}

.featured-boxes-style-4 .featured-box .box-content {
    border: 0;
    padding-top: 0;
    padding-bottom: 0;
}

.featured-boxes-style-4 .featured-box .icon-featured {
    display: inline-block;
    font-size: 35px;
    height: 45px;
    line-height: 45px;
    padding: 0;
    width: 45px;
    margin-top: 0;
    margin-bottom: 10px;
    background: transparent;
    color: rgba(0, 0, 0, 0.06);
    border-radius: 0;
}

/* Featured Boxes - Style 5, 6, 7 and 9 */
.featured-boxes-style-5 .featured-box, .featured-boxes-style-6 .featured-box, .featured-boxes-style-7 .featured-box, .featured-boxes-style-9 .featured-box {
    background: none;
    border: 0;
    box-shadow: none;
    margin: 10px 0;
}

.featured-boxes-style-5 .featured-box .box-content, .featured-boxes-style-6 .featured-box .box-content, .featured-boxes-style-7 .featured-box .box-content, .featured-boxes-style-9 .featured-box .box-content {
    border: 0;
    padding-top: 0;
    padding-bottom: 0;
}

.featured-boxes-style-5 .featured-box .box-content h4, .featured-boxes-style-6 .featured-box .box-content h4, .featured-boxes-style-7 .featured-box .box-content h4, .featured-boxes-style-9 .featured-box .box-content h4 {
    color: #333940;
}

.featured-boxes-style-5 .featured-box .icon-featured, .featured-boxes-style-6 .featured-box .icon-featured, .featured-boxes-style-7 .featured-box .icon-featured, .featured-boxes-style-9 .featured-box .icon-featured {
    display: inline-block;
    font-size: 2em;
    height: 75px;
    padding: 0;
    width: 75px;
    margin-top: 0;
    margin-bottom: 10px;
    background: #FFF;
    border: 1px solid #dfdfdf;
    color: #777;
    line-height: 73px;
}

/* Featured Boxes - Style 6 */
.featured-boxes-style-6 .featured-box .icon-featured {
    border: 1px solid #cecece;
    color: #777;
}

.featured-boxes-style-6 .featured-box .icon-featured:after {
    border: 5px solid #f7f7f7;
    border-radius: 50%;
    box-sizing: content-box;
    content: "";
    display: block;
    height: 100%;
    left: -6px;
    padding: 1px;
    position: absolute;
    top: -6px;
    width: 100%;
}

/* Featured Boxes - Style 7 */
.featured-boxes-style-7 .featured-box .icon-featured {
    border: 1px solid #dfdfdf;
    color: #777;
}

/* Featured Boxes - Style 8 */
.featured-boxes-style-8 .featured-box .icon-featured {
    display: inline-block;
    font-size: 2em;
    height: 75px;
    padding: 0;
    width: 75px;
    margin: -15px -15px 0 0;
    background: #FFF;
    line-height: 75px;
    border: 0;
    color: #777;
}

.featured-boxes-style-8 .featured-box .icon-featured:after {
    display: none;
}

/* Featured Boxes - Style 9 */
.featured-boxes-style-9 .featured-box .icon-featured {
    background: #FFF;
    box-shadow: 0px 0px 32px -7px rgba(0, 0, 0, 0.1);
    border: 0;
    width: 100px;
    height: 100px;
    line-height: 100px;
    transition-duration: .4s;
}

/* Featured Boxes Modern */
.featured-boxes-modern-style-1 .featured-box {
    position: relative;
    overflow: hidden;
    border-radius: 0;
    height: auto !important;
    margin: 0 !important;
}

.featured-boxes-modern-style-1 .featured-box .featured-box-background {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    transition: cubic-bezier(0.39, 0.66, 0.42, 0.99) all 2s;
    transform: scale(1);
}

.featured-boxes-modern-style-1 .featured-box .box-content {
    padding: 64px;
    padding: 4rem;
    border: none;
    z-index: 3;
}

.featured-boxes-modern-style-1 .featured-box .box-content .icon-featured {
    color: #FFF;
    background: transparent;
    width: auto;
    height: auto;
    line-height: 1.4;
    font-size: 46.4px;
    font-size: 2.9rem;
    margin: 0 0 16px;
    margin: 0 0 1rem;
}

.featured-boxes-modern-style-1 .featured-box .box-content h2 {
    color: #FFF;
    font-weight: 600;
    font-size: 19.2px;
    font-size: 1.2rem;
    line-height: 1.3;
    margin-bottom: 11.2px;
    margin-bottom: 0.7rem;
}

.featured-boxes-modern-style-1 .featured-box .box-content p {
    color: #999;
    margin-bottom: 25.6px;
    margin-bottom: 1.6rem;
}

.featured-boxes-modern-style-1 .featured-box:hover .featured-box-background {
    transform: scale(1.1);
}

@media (max-width: 575px) {
    .featured-boxes-modern-style-1 .featured-box .box-content {
        padding: 2rem 1.5rem;
    }
}

.featured-boxes-modern-style-2 .featured-box {
    position: relative;
    background: #6c6ef1;
    background: linear-gradient(135deg, #6c6ef1 0%, #e2498e 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#6c6ef1', endColorstr='#e2498e', GradientType=1 );
    border-radius: 0;
    margin: 0 !important;
    overflow: hidden;
}

.featured-boxes-modern-style-2 .featured-box:before {
    content: '';
    position: absolute;
    top: 8px;
    right: 8px;
    bottom: 8px;
    left: 8px;
    background: #FFF;
}

.featured-boxes-modern-style-2 .featured-box .box-content {
    padding: 64px;
    padding: 4rem;
    border: none;
}

.featured-boxes-modern-style-2 .featured-box .box-content .icon-featured {
    color: #FFF;
    background: transparent;
    width: auto;
    height: auto;
    line-height: 1.4;
    font-size: 46.4px;
    font-size: 2.9rem;
    margin: 0 0 16px;
    margin: 0 0 1rem;
}

.featured-boxes-modern-style-2 .featured-box .box-content h2 {
    color: #212529;
    font-weight: 700;
    font-size: 19.2px;
    font-size: 1.2rem;
    line-height: 1.3;
    margin-bottom: 11.2px;
    margin-bottom: 0.7rem;
}

.featured-boxes-modern-style-2 .featured-box .box-content p {
    color: #999;
    margin-bottom: 25.6px;
    margin-bottom: 1.6rem;
}

@media (max-width: 575px) {
    .featured-boxes-modern-style-2 .featured-box .box-content {
        padding: 2rem 1.5rem;
    }
}

.featured-boxes-modern-style-2-hover-only .featured-box:before {
    top: 1px;
    right: 1px;
    bottom: 1px;
    left: 1px;
    transition: cubic-bezier(0.39, 0.66, 0.42, 0.99) all 200ms;
}

.featured-boxes-modern-style-2-hover-only:not(:hover) .featured-box {
    background: rgba(0, 0, 0, 0.06) !important;
    box-shadow: none;
    border: 0;
}

.featured-boxes-modern-style-2-hover-only:not(:hover) .featured-box-no-borders {
    background: none !important;
}

.featured-boxes-modern-style-2-hover-only:not(:hover) .featured-box-box-shadow {
    box-shadow: 0px 1px 0px 0px rgba(0, 0, 0, 0.1);
}

.featured-boxes-modern-style-2-hover-only:hover .featured-box:before {
    top: 8px;
    right: 8px;
    bottom: 8px;
    left: 8px;
}

/* Featured Boxes */
.featured-boxes .featured-box {
    margin-bottom: 24px;
    margin-bottom: 0;
    margin-top: 24px;
    margin-top: 1.5rem;
}

/* Effects */
.featured-box-effect-1 .icon-featured:after {
    top: -7px;
    left: -7px;
    padding: 7px;
    box-shadow: 0 0 0 3px #FFF;
    transition: transform 0.2s, opacity 0.2s;
    transform: scale(1);
    opacity: 0;
}

.featured-box-effect-1:hover .icon-featured:after {
    transform: scale(0.8);
    opacity: 1;
}

.featured-box-effect-2 .icon-featured:after {
    top: -7px;
    left: -7px;
    padding: 7px;
    box-shadow: 0 0 0 3px #FFF;
    transition: transform 0.2s, opacity 0.2s;
    transform: scale(0.8);
    opacity: 0;
}

.featured-box-effect-2:hover .icon-featured:after {
    transform: scale(0.95);
    opacity: 1;
}

.featured-box-effect-3 .icon-featured:after {
    top: 0;
    left: 0;
    box-shadow: 0 0 0 10px #FFF;
    transition: transform 0.2s, opacity 0.2s;
    transform: scale(0.9);
    opacity: 0;
}

.featured-box-effect-3:hover .icon-featured {
    color: #FFF !important;
}

.featured-box-effect-3:hover .icon-featured:after {
    transform: scale(1);
    opacity: 0.8;
}

.featured-box-effect-4 .icon-featured {
    transition: transform 0.2s, transform 0.2s;
    transform: scale(1);
}

.featured-box-effect-4:hover .icon-featured {
    transform: scale(1.15);
}

.featured-box-effect-5 .icon-featured {
    overflow: hidden;
    transition: all 0.3s;
}

.featured-box-effect-5:hover .icon-featured {
    animation: toRightFromLeft 0.3s forwards;
}

@keyframes toRightFromLeft {
    49% {
        transform: translate(100%);
    }

    50% {
        opacity: 0;
        transform: translate(-100%);
    }

    51% {
        opacity: 1;
    }
}

.featured-box-effect-6 .icon-featured:after {
    transition: all 0.2s, transform 0.2s;
}

.featured-box-effect-6:hover .box-content .icon-featured:after {
    transform: scale(1.1);
}

.featured-box-effect-7 .icon-featured:after {
    opacity: 0;
    box-shadow: 3px 3px #d5d5d5;
    transform: rotate(-90deg);
    transition: opacity 0.2s, transform 0.2s;
    left: 0;
    top: -1px;
}

.featured-box-effect-7:hover .icon-featured:after {
    opacity: 1;
    transform: rotate(0deg);
}

.featured-box-effect-7 .icon-featured:before {
    transform: scale(0.8);
    opacity: 0.7;
    transition: transform 0.2s, opacity 0.2s;
}

.featured-box-effect-7:hover .icon-featured:before {
    transform: scale(1);
    opacity: 1;
}

/* Feature Box */
.feature-box {
    display: flex;
}

.feature-box .feature-box-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 1 0 auto;
    background: rgba(0, 0, 0, 0.06);
    border-radius: 100%;
    color: #FFF;
    font-size: 16px;
    font-size: 1rem;
    position: relative;
    top: 7px;
    text-align: center;
    padding: 0.8em;
    height: 1px;
    width: 2.7em;
    height: 2.7em;
}

.feature-box .feature-box-info {
    flex: 1 1 100%;
    padding-left: 15px;
}

.feature-box.align-items-center .feature-box-icon {
    top: 0;
}

/* Style 2 */
.feature-box.feature-box-style-2 h4 {
    color: #212529;
}

.feature-box.feature-box-style-2 .feature-box-icon {
    background: transparent;
    top: -3px;
}

.feature-box.feature-box-style-2 .feature-box-icon [class*="fa-"], .feature-box.feature-box-style-2 .feature-box-icon .icons {
    font-size: 1.7em;
}

.feature-box.feature-box-style-2.align-items-center .feature-box-icon {
    top: 0;
}

/* Style 3 */
.feature-box.feature-box-style-3 h4 {
    color: #212529;
}

.feature-box.feature-box-style-3 .feature-box-icon {
    border: 1px solid rgba(0, 0, 0, 0.06);
    background: transparent;
    line-height: 32px;
}

.feature-box.feature-box-style-3 .feature-box-icon [class*="fa-"], .feature-box.feature-box-style-3 .feature-box-icon .icons {
    color: rgba(0, 0, 0, 0.06);
}

/* Style 4 */
.feature-box.feature-box-style-4 {
    flex-wrap: wrap;
}

.feature-box.feature-box-style-4 h4 {
    color: #212529;
}

.feature-box.feature-box-style-4 .feature-box-icon {
    flex-basis: 100%;
    justify-content: flex-start;
    background: transparent;
    padding: 0 0 19.2px 0;
    padding: 0 0 1.2rem 0;
}

.feature-box.feature-box-style-4 .feature-box-icon [class*="fa-"], .feature-box.feature-box-style-4 .feature-box-icon .icons {
    font-size: 2.35em;
    width: auto;
    height: auto;
}

.feature-box.feature-box-style-4 .feature-box-info {
    clear: both;
    padding-left: 0;
}

/* Style 5 */
.feature-box.feature-box-style-5 h4 {
    color: #212529;
}

.feature-box.feature-box-style-5 .feature-box-icon {
    background: transparent;
    top: 0;
    padding: 1em 1.4em;
    min-width: 5em;
}

.feature-box.feature-box-style-5 .feature-box-icon [class*="fa-"], .feature-box.feature-box-style-5 .feature-box-icon .icons {
    font-size: 2.75em;
}

.feature-box.feature-box-style-5.align-items-center .feature-box-icon {
    top: 0;
}

/* Style 6 */
.feature-box.feature-box-style-6 h4 {
    color: #212529;
}

.feature-box.feature-box-style-6 .feature-box-icon {
    border: 1px solid #cecece;
    background: transparent;
    line-height: 32px;
}

.feature-box.feature-box-style-6 .feature-box-icon:after {
    border: 3px solid #f7f7f7;
    border-radius: 50%;
    box-sizing: content-box;
    content: "";
    display: block;
    height: 100%;
    left: -4px;
    padding: 1px;
    position: absolute;
    top: -4px;
    width: 100%;
}

.feature-box.feature-box-style-6 .feature-box-icon [class*="fa-"], .feature-box.feature-box-style-6 .feature-box-icon .icons {
    color: #a9a9a9;
}

/* Feature Box Icon Size */
.feature-box .feature-box-icon.feature-box-icon-large {
    width: 3.7em;
    height: 3.7em;
}

.feature-box .feature-box-icon.feature-box-icon-extra-large {
    width: 4.5em;
    height: 4.5em;
}

/* Reverse All Resolutions */
.feature-box.reverse-allres {
    text-align: right;
    flex-direction: row-reverse;
}

.feature-box.reverse-allres .feature-box-info {
    padding-right: 15px;
    padding-left: 0;
}

.feature-box.reverse-allres.feature-box-style-4 .feature-box-icon {
    justify-content: flex-end;
}

.feature-box.reverse-allres.feature-box-style-4 .feature-box-info {
    padding-right: 0;
}

/* Reverse */
@media (min-width: 992px) {
    .feature-box.reverse {
        text-align: right;
        flex-direction: row-reverse;
    }

    .feature-box.reverse .feature-box-info {
        padding-right: 15px;
        padding-left: 0;
    }

    .feature-box.reverse.feature-box-style-4 .feature-box-icon {
        justify-content: flex-end;
    }

    .feature-box.reverse.feature-box-style-4 .feature-box-info {
        padding-right: 0;
    }
}

/* Full Width */
.featured-boxes-full .featured-box-full {
    text-align: center;
    padding: 55px;
}

.featured-boxes-full .featured-box-full [class*="fa-"], .featured-boxes-full .featured-box-full .icons, .featured-boxes-full .featured-box-full h1, .featured-boxes-full .featured-box-full h2, .featured-boxes-full .featured-box-full h3, .featured-boxes-full .featured-box-full h4, .featured-boxes-full .featured-box-full h5, .featured-boxes-full .featured-box-full h6, .featured-boxes-full .featured-box-full p, .featured-boxes-full .featured-box-full a {
    padding: 0;
    margin: 0;
}

.featured-boxes-full .featured-box-full:not(.featured-box-full-light) [class*="fa-"], .featured-boxes-full .featured-box-full:not(.featured-box-full-light) .icons, .featured-boxes-full .featured-box-full:not(.featured-box-full-light) h1, .featured-boxes-full .featured-box-full:not(.featured-box-full-light) h2, .featured-boxes-full .featured-box-full:not(.featured-box-full-light) h3, .featured-boxes-full .featured-box-full:not(.featured-box-full-light) h4, .featured-boxes-full .featured-box-full:not(.featured-box-full-light) h5, .featured-boxes-full .featured-box-full:not(.featured-box-full-light) h6, .featured-boxes-full .featured-box-full:not(.featured-box-full-light) p, .featured-boxes-full .featured-box-full:not(.featured-box-full-light) a {
    color: #FFF;
}

.featured-boxes-full .featured-box-full .icons, .featured-boxes-full .featured-box-full [class*="fa-"] {
    font-size: 3.9em;
    margin-bottom: 15px;
}

.featured-boxes-full .featured-box-full p {
    padding-top: 12px;
    opacity: 0.8;
}

.featured-boxes-full .featured-box-full.featured-box-full-light {
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.featured-boxes-full .featured-box-full.featured-box-full-light:not(:last-child) {
    border-right: 0;
}

.featured-boxes-full .featured-box-full.featured-box-full-light:first-child {
    border-left: 0;
}

.icon-featured {
    background-color: #ff4e00;
}

html .featured-box-primary .icon-featured {
    background-color: #ff4e00;
}

html .featured-box-primary h4 {
    color: #ff4e00;
}

html .featured-box-primary .box-content {
    border-top-color: #ff4e00;
}

html .featured-box-primary .box-content-border-bottom {
    border-bottom-color: #ff4e00CC;
}

html .featured-box-secondary .icon-featured {
    background-color: #e36159;
}

html .featured-box-secondary h4 {
    color: #e36159;
}

html .featured-box-secondary .box-content {
    border-top-color: #e36159;
}

html .featured-box-secondary .box-content-border-bottom {
    border-bottom-color: #e36159;
}

html .featured-box-tertiary .icon-featured {
    background-color: #2BAAB1;
}

html .featured-box-tertiary h4 {
    color: #2BAAB1;
}

html .featured-box-tertiary .box-content {
    border-top-color: #2BAAB1;
}

html .featured-box-tertiary .box-content-border-bottom {
    border-bottom-color: #2BAAB1;
}

html .featured-box-quaternary .icon-featured {
    background-color: #383f48;
}

html .featured-box-quaternary h4 {
    color: #383f48;
}

html .featured-box-quaternary .box-content {
    border-top-color: #383f48;
}

html .featured-box-quaternary .box-content-border-bottom {
    border-bottom-color: #383f48;
}

html .featured-box-dark .icon-featured {
    background-color: #212529;
}

html .featured-box-dark h4 {
    color: #212529;
}

html .featured-box-dark .box-content {
    border-top-color: #212529;
}

html .featured-box-dark .box-content-border-bottom {
    border-bottom-color: #212529;
}

html .featured-box-light .icon-featured {
    background-color: #FFF;
}

html .featured-box-light h4 {
    color: #FFF;
}

html .featured-box-light .box-content {
    border-top-color: #FFF;
}

html .featured-box-light .box-content-border-bottom {
    border-bottom-color: #FFF;
}

html .featured-boxes-style-3 .featured-box.featured-box-primary .icon-featured {
    border-color: #0088CC;
    color: #0088CC;
}

html .featured-boxes-style-3 .featured-box.featured-box-secondary .icon-featured {
    border-color: #e36159;
    color: #e36159;
}

html .featured-boxes-style-3 .featured-box.featured-box-tertiary .icon-featured {
    border-color: #2BAAB1;
    color: #2BAAB1;
}

html .featured-boxes-style-3 .featured-box.featured-box-quaternary .icon-featured {
    border-color: #383f48;
    color: #383f48;
}

html .featured-boxes-style-3 .featured-box.featured-box-dark .icon-featured {
    border-color: #212529;
    color: #212529;
}

html .featured-boxes-style-3 .featured-box.featured-box-light .icon-featured {
    border-color: #FFF;
    color: #FFF;
}

html .featured-boxes-style-4 .featured-box.featured-box-primary .icon-featured {
    border-color: #0088CC;
    color: #0088CC;
}

html .featured-boxes-style-4 .featured-box.featured-box-secondary .icon-featured {
    border-color: #e36159;
    color: #e36159;
}

html .featured-boxes-style-4 .featured-box.featured-box-tertiary .icon-featured {
    border-color: #2BAAB1;
    color: #2BAAB1;
}

html .featured-boxes-style-4 .featured-box.featured-box-quaternary .icon-featured {
    border-color: #383f48;
    color: #383f48;
}

html .featured-boxes-style-4 .featured-box.featured-box-dark .icon-featured {
    border-color: #212529;
    color: #212529;
}

html .featured-boxes-style-4 .featured-box.featured-box-light .icon-featured {
    border-color: #FFF;
    color: #FFF;
}

html .featured-boxes-style-5 .featured-box.featured-box-primary .icon-featured {
    color: #0088CC;
}

html .featured-boxes-style-5 .featured-box.featured-box-secondary .icon-featured {
    color: #e36159;
}

html .featured-boxes-style-5 .featured-box.featured-box-tertiary .icon-featured {
    color: #2BAAB1;
}

html .featured-boxes-style-5 .featured-box.featured-box-quaternary .icon-featured {
    color: #383f48;
}

html .featured-boxes-style-5 .featured-box.featured-box-dark .icon-featured {
    color: #212529;
}

html .featured-boxes-style-5 .featured-box.featured-box-light .icon-featured {
    color: #FFF;
}

html .featured-boxes-style-6 .featured-box.featured-box-primary .icon-featured {
    color: #0088CC;
}

html .featured-boxes-style-6 .featured-box.featured-box-secondary .icon-featured {
    color: #e36159;
}

html .featured-boxes-style-6 .featured-box.featured-box-tertiary .icon-featured {
    color: #2BAAB1;
}

html .featured-boxes-style-6 .featured-box.featured-box-quaternary .icon-featured {
    color: #383f48;
}

html .featured-boxes-style-6 .featured-box.featured-box-dark .icon-featured {
    color: #212529;
}

html .featured-boxes-style-6 .featured-box.featured-box-light .icon-featured {
    color: #FFF;
}

html .featured-boxes-style-8 .featured-box.featured-box-primary .icon-featured {
    color: #0088CC;
}

html .featured-boxes-style-8 .featured-box.featured-box-secondary .icon-featured {
    color: #e36159;
}

html .featured-boxes-style-8 .featured-box.featured-box-tertiary .icon-featured {
    color: #2BAAB1;
}

html .featured-boxes-style-8 .featured-box.featured-box-quaternary .icon-featured {
    color: #383f48;
}

html .featured-boxes-style-8 .featured-box.featured-box-dark .icon-featured {
    color: #212529;
}

html .featured-boxes-style-8 .featured-box.featured-box-light .icon-featured {
    color: #FFF;
}

.featured-boxes-modern-style-primary .featured-box {
    background: #0088CC;
    background: linear-gradient(135deg, #0088CC 0%, #383f48 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#0088CC', endColorstr='#383f48', GradientType=1);
}

.featured-boxes-modern-style-secondary .featured-box {
    background: #e36159;
    background: linear-gradient(135deg, #e36159 0%, #383f48 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#e36159', endColorstr='#383f48', GradientType=1);
}

.featured-boxes-modern-style-tertiary .featured-box {
    background: #2BAAB1;
    background: linear-gradient(135deg, #2BAAB1 0%, #383f48 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#2BAAB1', endColorstr='#383f48', GradientType=1);
}

html .featured-box-effect-2.featured-box-primary .icon-featured:after {
    box-shadow: 0 0 0 3px #ff4e00;
}

html .featured-box-effect-2.featured-box-secondary .icon-featured:after {
    box-shadow: 0 0 0 3px #e36159;
}

html .featured-box-effect-2.featured-box-tertiary .icon-featured:after {
    box-shadow: 0 0 0 3px #2BAAB1;
}

html .featured-box-effect-2.featured-box-quaternary .icon-featured:after {
    box-shadow: 0 0 0 3px #383f48;
}

html .featured-box-effect-2.featured-box-dark .icon-featured:after {
    box-shadow: 0 0 0 3px #212529;
}

html .featured-box-effect-2.featured-box-light .icon-featured:after {
    box-shadow: 0 0 0 3px #FFF;
}

html .featured-box-effect-3.featured-box-primary .icon-featured:after {
    box-shadow: 0 0 0 10px #0088CC;
}

html .featured-box-effect-3.featured-box-primary:hover .icon-featured {
    background: #0088CC !important;
}

html .featured-box-effect-3.featured-box-secondary .icon-featured:after {
    box-shadow: 0 0 0 10px #e36159;
}

html .featured-box-effect-3.featured-box-secondary:hover .icon-featured {
    background: #e36159 !important;
}

html .featured-box-effect-3.featured-box-tertiary .icon-featured:after {
    box-shadow: 0 0 0 10px #2BAAB1;
}

html .featured-box-effect-3.featured-box-tertiary:hover .icon-featured {
    background: #2BAAB1 !important;
}

html .featured-box-effect-3.featured-box-quaternary .icon-featured:after {
    box-shadow: 0 0 0 10px #383f48;
}

html .featured-box-effect-3.featured-box-quaternary:hover .icon-featured {
    background: #383f48 !important;
}

html .featured-box-effect-3.featured-box-dark .icon-featured:after {
    box-shadow: 0 0 0 10px #212529;
}

html .featured-box-effect-3.featured-box-dark:hover .icon-featured {
    background: #212529 !important;
}

html .featured-box-effect-3.featured-box-light .icon-featured:after {
    box-shadow: 0 0 0 10px #FFF;
}

html .featured-box-effect-3.featured-box-light:hover .icon-featured {
    background: #FFF !important;
}

.feature-box .feature-box-icon {
    background-color: #0088CC;
}

html .feature-box-primary .feature-box-icon {
    background-color: #0088CC;
}

html .feature-box-secondary .feature-box-icon {
    background-color: #e36159;
}

html .feature-box-tertiary .feature-box-icon {
    background-color: #2BAAB1;
}

html .feature-box-quaternary .feature-box-icon {
    background-color: #383f48;
}

html .feature-box-dark .feature-box-icon {
    background-color: #212529;
}

html .feature-box-light .feature-box-icon {
    background-color: #FFF;
}

.feature-box.feature-box-style-2 .feature-box-icon [class*="fa-"],
.feature-box.feature-box-style-2 .feature-box-icon .icons {
    color: #0088CC;
}

html .feature-box-primary.feature-box-style-2 .feature-box-icon [class*="fa-"],
html .feature-box-primary.feature-box-style-2 .feature-box-icon .icons {
    color: #0088CC;
}

html .feature-box-secondary.feature-box-style-2 .feature-box-icon [class*="fa-"],
html .feature-box-secondary.feature-box-style-2 .feature-box-icon .icons {
    color: #e36159;
}

html .feature-box-tertiary.feature-box-style-2 .feature-box-icon [class*="fa-"],
html .feature-box-tertiary.feature-box-style-2 .feature-box-icon .icons {
    color: #2BAAB1;
}

html .feature-box-quaternary.feature-box-style-2 .feature-box-icon [class*="fa-"],
html .feature-box-quaternary.feature-box-style-2 .feature-box-icon .icons {
    color: #383f48;
}

html .feature-box-dark.feature-box-style-2 .feature-box-icon [class*="fa-"],
html .feature-box-dark.feature-box-style-2 .feature-box-icon .icons {
    color: #212529;
}

html .feature-box-light.feature-box-style-2 .feature-box-icon [class*="fa-"],
html .feature-box-light.feature-box-style-2 .feature-box-icon .icons {
    color: #FFF;
}

.feature-box.feature-box-style-3 .feature-box-icon {
    border-color: #0088CC;
}

.feature-box.feature-box-style-3 .feature-box-icon [class*="fa-"],
.feature-box.feature-box-style-3 .feature-box-icon .icons {
    color: #0088CC;
}

html .feature-box-primary.feature-box-style-3 .feature-box-icon {
    border-color: #0088CC;
}

html .feature-box-primary.feature-box-style-3 .feature-box-icon [class*="fa-"],
html .feature-box-primary.feature-box-style-3 .feature-box-icon .icons {
    color: #0088CC;
}

html .feature-box-secondary.feature-box-style-3 .feature-box-icon {
    border-color: #e36159;
}

html .feature-box-secondary.feature-box-style-3 .feature-box-icon [class*="fa-"],
html .feature-box-secondary.feature-box-style-3 .feature-box-icon .icons {
    color: #e36159;
}

html .feature-box-tertiary.feature-box-style-3 .feature-box-icon {
    border-color: #2BAAB1;
}

html .feature-box-tertiary.feature-box-style-3 .feature-box-icon [class*="fa-"],
html .feature-box-tertiary.feature-box-style-3 .feature-box-icon .icons {
    color: #2BAAB1;
}

html .feature-box-quaternary.feature-box-style-3 .feature-box-icon {
    border-color: #383f48;
}

html .feature-box-quaternary.feature-box-style-3 .feature-box-icon [class*="fa-"],
html .feature-box-quaternary.feature-box-style-3 .feature-box-icon .icons {
    color: #383f48;
}

html .feature-box-dark.feature-box-style-3 .feature-box-icon {
    border-color: #212529;
}

html .feature-box-dark.feature-box-style-3 .feature-box-icon [class*="fa-"],
html .feature-box-dark.feature-box-style-3 .feature-box-icon .icons {
    color: #212529;
}

html .feature-box-light.feature-box-style-3 .feature-box-icon {
    border-color: #FFF;
}

html .feature-box-light.feature-box-style-3 .feature-box-icon [class*="fa-"],
html .feature-box-light.feature-box-style-3 .feature-box-icon .icons {
    color: #FFF;
}

.feature-box.feature-box-style-4 .feature-box-icon [class*="fa-"],
.feature-box.feature-box-style-4 .feature-box-icon .icons {
    color: #0088CC;
}

html .feature-box-primary.feature-box-style-4 .feature-box-icon [class*="fa-"],
html .feature-box-primary.feature-box-style-4 .feature-box-icon .icons {
    color: #0088CC;
}

html .feature-box-secondary.feature-box-style-4 .feature-box-icon [class*="fa-"],
html .feature-box-secondary.feature-box-style-4 .feature-box-icon .icons {
    color: #e36159;
}

html .feature-box-tertiary.feature-box-style-4 .feature-box-icon [class*="fa-"],
html .feature-box-tertiary.feature-box-style-4 .feature-box-icon .icons {
    color: #2BAAB1;
}

html .feature-box-quaternary.feature-box-style-4 .feature-box-icon [class*="fa-"],
html .feature-box-quaternary.feature-box-style-4 .feature-box-icon .icons {
    color: #383f48;
}

html .feature-box-dark.feature-box-style-4 .feature-box-icon [class*="fa-"],
html .feature-box-dark.feature-box-style-4 .feature-box-icon .icons {
    color: #212529;
}

html .feature-box-light.feature-box-style-4 .feature-box-icon [class*="fa-"],
html .feature-box-light.feature-box-style-4 .feature-box-icon .icons {
    color: #FFF;
}

.feature-box.feature-box-style-5 .feature-box-icon [class*="fa-"],
.feature-box.feature-box-style-5 .feature-box-icon .icons {
    color: #0088CC;
}

html .feature-box-primary.feature-box-style-5 .feature-box-icon [class*="fa-"],
html .feature-box-primary.feature-box-style-5 .feature-box-icon .icons {
    color: #0088CC;
}

html .feature-box-secondary.feature-box-style-5 .feature-box-icon [class*="fa-"],
html .feature-box-secondary.feature-box-style-5 .feature-box-icon .icons {
    color: #e36159;
}

html .feature-box-tertiary.feature-box-style-5 .feature-box-icon [class*="fa-"],
html .feature-box-tertiary.feature-box-style-5 .feature-box-icon .icons {
    color: #2BAAB1;
}

html .feature-box-quaternary.feature-box-style-5 .feature-box-icon [class*="fa-"],
html .feature-box-quaternary.feature-box-style-5 .feature-box-icon .icons {
    color: #383f48;
}

html .feature-box-dark.feature-box-style-5 .feature-box-icon [class*="fa-"],
html .feature-box-dark.feature-box-style-5 .feature-box-icon .icons {
    color: #212529;
}

html .feature-box-light.feature-box-style-5 .feature-box-icon [class*="fa-"],
html .feature-box-light.feature-box-style-5 .feature-box-icon .icons {
    color: #FFF;
}

html .feature-box-primary.feature-box-style-6 .feature-box-icon [class*="fa-"],
html .feature-box-primary.feature-box-style-6 .feature-box-icon .icons {
    color: #0088CC;
}

html .feature-box-secondary.feature-box-style-6 .feature-box-icon [class*="fa-"],
html .feature-box-secondary.feature-box-style-6 .feature-box-icon .icons {
    color: #e36159;
}

html .feature-box-tertiary.feature-box-style-6 .feature-box-icon [class*="fa-"],
html .feature-box-tertiary.feature-box-style-6 .feature-box-icon .icons {
    color: #2BAAB1;
}

html .feature-box-quaternary.feature-box-style-6 .feature-box-icon [class*="fa-"],
html .feature-box-quaternary.feature-box-style-6 .feature-box-icon .icons {
    color: #383f48;
}

html .feature-box-dark.feature-box-style-6 .feature-box-icon [class*="fa-"],
html .feature-box-dark.feature-box-style-6 .feature-box-icon .icons {
    color: #212529;
}

html .feature-box-light.feature-box-style-6 .feature-box-icon [class*="fa-"],
html .feature-box-light.feature-box-style-6 .feature-box-icon .icons {
    color: #FFF;
}

html .featured-boxes-full-scale > .featured-box-full-primary:nth-child(1) {
    background-color: #006699;
}

html .featured-boxes-full-scale > .featured-box-full-primary:nth-child(2) {
    background-color: #0077b3;
}

html .featured-boxes-full-scale > .featured-box-full-primary:nth-child(3) {
    background-color: #0088CC;
}

html .featured-boxes-full-scale > .featured-box-full-primary:nth-child(4) {
    background-color: #0099e6;
}

html .featured-boxes-full-scale > .featured-box-full-primary:nth-child(5) {
    background-color: #00aaff;
}

html .featured-boxes-full-scale > .featured-box-full-primary:nth-child(6) {
    background-color: #1ab2ff;
}

html .featured-boxes-full .featured-box-full-primary {
    background-color: #0088CC;
    color: #FFF;
}

html .featured-boxes-full .featured-box-full-secondary {
    background-color: #e36159;
    color: #FFF;
}

html .featured-boxes-full .featured-box-full-tertiary {
    background-color: #2BAAB1;
    color: #FFF;
}

html .featured-boxes-full .featured-box-full-quaternary {
    background-color: #383f48;
    color: #FFF;
}

html .featured-boxes-full .featured-box-full-dark {
    background-color: #212529;
    color: #FFF;
}

html .featured-boxes-full .featured-box-full-light {
    background-color: #FFF;
    color: #777;
}

.visually-hidden:not(caption), .visually-hidden-focusable:not(:focus):not(:focus-within):not(caption) {
    position: absolute !important;
}

.visually-hidden, .visually-hidden-focusable:not(:focus):not(:focus-within) {
    width: 1px !important;
    height: 1px !important;
    padding: 0px !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0px, 0px, 0px, 0px) !important;
    white-space: nowrap !important;
    border: 0px !important;
}

.form-container {
    --nt-form-bg: #f7f9fc;
    --nt-form-border: #ccd6e2;
    --nt-form-text: #203040;
    --nt-form-focus: #0f5ea6;
    --nt-form-error: #b61d24;
    background: linear-gradient(180deg, #ffffff 0%, var(--nt-form-bg) 100%);
    border: 1px solid #e6ebf2;
    border-radius: 14px;
    box-shadow: 0 10px 24px rgba(22, 35, 56, 0.08);
    margin-top: 1.25rem;
    padding: 1.25rem;
}

@media (min-width: 992px) {
    .form-container {
        padding: 1.75rem;
    }
}

.form-container .form-group {
    margin-bottom: 1rem;
}

.form-container .form-label,
.form-container .form-check-label {
    color: var(--nt-form-text);
    font-weight: 600;
    line-height: 1.35;
}

.form-container .form-check-label {
    font-weight: 500;
}

.form-container .required {
    color: var(--nt-form-error);
    font-weight: 700;
    margin-left: 0.2rem;
}

.form-container .form-control,
.form-container .form-select,
.form-container textarea,
.form-container select {
    background-color: #fff;
    border: 1px solid var(--nt-form-border);
    border-radius: 10px;
    box-shadow: inset 0 1px 0 rgba(16, 31, 52, 0.03);
    min-height: 46px;
    padding: 0.6rem 0.8rem;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.form-container textarea.form-control,
.form-container textarea {
    min-height: 140px;
    resize: vertical;
}

.form-container .form-control:hover,
.form-container .form-select:hover,
.form-container textarea:hover,
.form-container select:hover {
    border-color: #9fb3ca;
}

.form-container .form-control:focus,
.form-container .form-select:focus,
.form-container textarea:focus,
.form-container select:focus {
    background-color: #fff;
    border-color: var(--nt-form-focus);
    box-shadow: 0 0 0 4px rgba(15, 94, 166, 0.15);
    outline: 0;
}

.form-container .form-check {
    background: #fff;
    border: 1px solid var(--nt-form-border);
    border-radius: 10px;
    margin-top: 0.75rem;
    padding: 0.85rem 0.95rem 0.85rem 2.1rem;
}

.form-container .form-check-input {
    margin-left: -1.35rem;
    margin-top: 0.25rem;
}

.form-container .form-check-label a {
    color: var(--nt-form-focus);
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.form-container .form-actions {
    border-top: 1px solid #dbe4ef;
    margin-top: 1.25rem;
    padding-top: 1rem;
}

.form-container .form-navigation .btn {
    border-radius: 10px;
    font-weight: 600;
    min-width: 170px;
    padding: 0.7rem 1.1rem;
}

.form-container .has-error .form-control,
.form-container .has-error .form-select,
.form-container .has-error textarea,
.form-container .has-error .form-check {
    background-color: #fff9f9;
    border-color: #d85a60;
}

.form-container .error.form-text {
    background: #fff3f3;
    border: 1px solid #f0bfc1;
    border-radius: 8px;
    color: #8f1118;
    display: block;
    font-weight: 500;
    margin-top: 0.45rem;
    padding: 0.55rem 0.7rem;
}

.frame-type-felogin_login .alert {
    border-radius: 10px;
    margin-bottom: 1rem;
}

.frame-type-felogin_login form {
    background: linear-gradient(180deg, #ffffff 0%, #f6f9fc 100%);
    border: 1px solid #e6ebf2;
    border-radius: 14px;
    box-shadow: 0 10px 24px rgba(22, 35, 56, 0.08);
    margin-top: 1rem;
    padding: 1.2rem;
}

.frame-type-felogin_login legend {
    color: #203040;
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
}

.frame-type-felogin_login .col-form-label,
.frame-type-felogin_login label {
    color: #203040;
    font-weight: 600;
}

.frame-type-felogin_login .form-control {
    border: 1px solid #ccd6e2;
    border-radius: 10px;
    min-height: 46px;
    padding: 0.6rem 0.8rem;
}

.frame-type-felogin_login .form-control:focus {
    border-color: #0f5ea6;
    box-shadow: 0 0 0 4px rgba(15, 94, 166, 0.15);
}

.frame-type-felogin_login .custom-control,
.frame-type-felogin_login .form-check {
    background: #fff;
    border: 1px solid #ccd6e2;
    border-radius: 10px;
    padding: 0.75rem 0.9rem 0.75rem 2.1rem;
}

.frame-type-felogin_login .form-check-input {
    margin-left: -1.35rem;
    margin-top: 0.25rem;
}

.frame-type-felogin_login .btn-primary {
    border-radius: 10px;
    font-weight: 600;
    min-width: 180px;
    padding: 0.7rem 1.15rem;
}

.frame-type-felogin_login > a.mt-5 {
    display: inline-block;
    font-weight: 600;
    margin-top: 1rem !important;
    text-decoration: underline;
    text-underline-offset: 2px;
}

@media (max-width: 767.98px) {
    .form-container {
        border-radius: 12px;
        margin-top: 0.85rem;
        padding: 0.9rem;
    }

    .form-container .form-group {
        margin-bottom: 0.85rem;
    }

    .form-container .form-control,
    .form-container .form-select,
    .form-container textarea,
    .form-container select {
        min-height: 44px;
        padding: 0.58rem 0.72rem;
    }

    .form-container textarea.form-control,
    .form-container textarea {
        min-height: 120px;
    }

    .form-container .form-check {
        margin-top: 0.55rem;
        padding: 0.7rem 0.7rem 0.7rem 1.95rem;
    }

    .form-container .form-check-input {
        margin-left: -1.22rem;
    }

    .form-container .form-actions {
        margin-top: 1rem;
        padding-top: 0.85rem;
    }

    .form-container .form-navigation .btn {
        min-width: 100%;
        width: 100%;
    }

    .form-container .error.form-text {
        font-size: 0.95rem;
        line-height: 1.35;
        padding: 0.5rem 0.62rem;
    }

    .frame-type-felogin_login form {
        padding: 0.95rem;
    }

    .frame-type-felogin_login legend {
        font-size: 1.05rem;
        margin-bottom: 0.65rem;
    }

    .frame-type-felogin_login .row.mb-3 {
        margin-bottom: 0.75rem !important;
    }

    .frame-type-felogin_login .col-form-label {
        margin-bottom: 0.35rem;
        padding-bottom: 0;
        padding-top: 0;
    }

    .frame-type-felogin_login .btn-primary {
        min-width: 100%;
        width: 100%;
    }
}


.frame-type-felogin_login .alert {
    border-radius: 10px;
    margin-bottom: 1rem;
}

.frame-type-felogin_login form {
    background: linear-gradient(180deg, #ffffff 0%, #f6f9fc 100%);
    border: 1px solid #e6ebf2;
    border-radius: 14px;
    box-shadow: 0 10px 24px rgba(22, 35, 56, 0.08);
    margin-top: 1rem;
    padding: 1.2rem;
}

.frame-type-felogin_login legend {
    color: #203040;
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
}

.frame-type-felogin_login .col-form-label,
.frame-type-felogin_login label {
    color: #203040;
    font-weight: 600;
}

.frame-type-felogin_login .form-control {
    border: 1px solid #ccd6e2;
    border-radius: 10px;
    min-height: 46px;
    padding: 0.6rem 0.8rem;
}

.frame-type-felogin_login .form-control:focus {
    border-color: #0f5ea6;
    box-shadow: 0 0 0 4px rgba(15, 94, 166, 0.15);
}

.frame-type-felogin_login .custom-control,
.frame-type-felogin_login .form-check {
    background: #fff;
    border: 1px solid #ccd6e2;
    border-radius: 10px;
    padding: 0.75rem 0.9rem 0.75rem 2.1rem;
}

.frame-type-felogin_login .form-check-input {
    margin-left: -1.35rem;
    margin-top: 0.25rem;
}

.frame-type-felogin_login .btn-primary {
    border-radius: 10px;
    font-weight: 600;
    min-width: 180px;
    padding: 0.7rem 1.15rem;
}

.frame-type-felogin_login > a.mt-5 {
    display: inline-block;
    font-weight: 600;
    margin-top: 1rem !important;
    text-decoration: underline;
    text-underline-offset: 2px;
}

@media (max-width: 767.98px) {
    .form-container {
        border-radius: 12px;
        margin-top: 0.85rem;
        padding: 0.9rem;
    }

    .form-container .form-group {
        margin-bottom: 0.85rem;
    }

    .form-container .form-control,
    .form-container .form-select,
    .form-container textarea,
    .form-container select {
        min-height: 44px;
        padding: 0.58rem 0.72rem;
    }

    .form-container textarea.form-control,
    .form-container textarea {
        min-height: 120px;
    }

    .form-container .form-check {
        margin-top: 0.55rem;
        padding: 0.7rem 0.7rem 0.7rem 1.95rem;
    }

    .form-container .form-check-input {
        margin-left: -1.22rem;
    }

    .form-container .form-actions {
        margin-top: 1rem;
        padding-top: 0.85rem;
    }

    .form-container .form-navigation .btn {
        min-width: 100%;
        width: 100%;
    }

    .form-container .error.form-text {
        font-size: 0.95rem;
        line-height: 1.35;
        padding: 0.5rem 0.62rem;
    }

    .frame-type-felogin_login form {
        padding: 0.95rem;
    }

    .frame-type-felogin_login legend {
        font-size: 1.05rem;
        margin-bottom: 0.65rem;
    }

    .frame-type-felogin_login .row.mb-3 {
        margin-bottom: 0.75rem !important;
    }

    .frame-type-felogin_login .col-form-label {
        margin-bottom: 0.35rem;
        padding-bottom: 0;
        padding-top: 0;
    }

    .frame-type-felogin_login .btn-primary {
        min-width: 100%;
        width: 100%;
    }
}


.frame-type-felogin_login .alert {
    border-radius: 10px;
    margin-bottom: 1rem;
}

.frame-type-felogin_login form {
    background: linear-gradient(180deg, #ffffff 0%, #f6f9fc 100%);
    border: 1px solid #e6ebf2;
    border-radius: 14px;
    box-shadow: 0 10px 24px rgba(22, 35, 56, 0.08);
    margin-top: 1rem;
    padding: 1.2rem;
}

.frame-type-felogin_login legend {
    color: #203040;
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
}

.frame-type-felogin_login .col-form-label,
.frame-type-felogin_login label {
    color: #203040;
    font-weight: 600;
}

.frame-type-felogin_login .form-control {
    border: 1px solid #ccd6e2;
    border-radius: 10px;
    min-height: 46px;
    padding: 0.6rem 0.8rem;
}

.frame-type-felogin_login .form-control:focus {
    border-color: #0f5ea6;
    box-shadow: 0 0 0 4px rgba(15, 94, 166, 0.15);
}

.frame-type-felogin_login .custom-control,
.frame-type-felogin_login .form-check {
    background: #fff;
    border: 1px solid #ccd6e2;
    border-radius: 10px;
    padding: 0.75rem 0.9rem 0.75rem 2.1rem;
}

.frame-type-felogin_login .form-check-input {
    margin-left: -1.35rem;
    margin-top: 0.25rem;
}

.frame-type-felogin_login .btn-primary {
    border-radius: 10px;
    font-weight: 600;
    min-width: 180px;
    padding: 0.7rem 1.15rem;
}

.frame-type-felogin_login > a.mt-5 {
    display: inline-block;
    font-weight: 600;
    margin-top: 1rem !important;
    text-decoration: underline;
    text-underline-offset: 2px;
}

@media (max-width: 767.98px) {
    .form-container {
        border-radius: 12px;
        margin-top: 0.85rem;
        padding: 0.9rem;
    }

    .form-container .form-group {
        margin-bottom: 0.85rem;
    }

    .form-container .form-control,
    .form-container .form-select,
    .form-container textarea,
    .form-container select {
        min-height: 44px;
        padding: 0.58rem 0.72rem;
    }

    .form-container textarea.form-control,
    .form-container textarea {
        min-height: 120px;
    }

    .form-container .form-check {
        margin-top: 0.55rem;
        padding: 0.7rem 0.7rem 0.7rem 1.95rem;
    }

    .form-container .form-check-input {
        margin-left: -1.22rem;
    }

    .form-container .form-actions {
        margin-top: 1rem;
        padding-top: 0.85rem;
    }

    .form-container .form-navigation .btn {
        min-width: 100%;
        width: 100%;
    }

    .form-container .error.form-text {
        font-size: 0.95rem;
        line-height: 1.35;
        padding: 0.5rem 0.62rem;
    }

    .frame-type-felogin_login form {
        padding: 0.95rem;
    }

    .frame-type-felogin_login legend {
        font-size: 1.05rem;
        margin-bottom: 0.65rem;
    }

    .frame-type-felogin_login .row.mb-3 {
        margin-bottom: 0.75rem !important;
    }

    .frame-type-felogin_login .col-form-label {
        margin-bottom: 0.35rem;
        padding-bottom: 0;
        padding-top: 0;
    }

    .frame-type-felogin_login .btn-primary {
        min-width: 100%;
        width: 100%;
    }
}


/* --- DOI Dankes-Texte: per GET-Parameter eingeblendet (/doi-pending, /doi-confirmed) ---
   Im Backend Inhaltselement → Erscheinungsbild → CSS-Klasse setzen:
   "doi-pending"   → sichtbar wenn rueckruf=pending (Formular abgesendet, noch nicht bestätigt)
   "doi-confirmed" → sichtbar wenn rueckruf=true    (DOI-Link geklickt, bestätigt)
*/
.doi-pending,
.doi-confirmed {
    display: none;
}

/* CLS prevention: reserve full viewport height before Swiper JS initialises.
   Inline CSS in Swiper.html sets height:100vh after JS runs — match that here
   so there is zero shift between the first paint and Swiper init. */
.header.slider-fade .swiper.netthinks-fade-slider {
    min-height: 100vh;
}

/* CLS prevention: logos have intrinsic SVG dimensions set via width/height attrs;
   constrain them to their container so the aspect-ratio space is reserved correctly. */
.logo img,
nav .logo img,
.footer-logo img {
    height: auto;
    max-width: 100%;
}

/* EN language overlays produce <a id="c{uid}"> anchors (TYPO3 deeplinks) directly
   inside .frame-type-ws_slider. The global `a { display: inline-block }` rule gives
   them an implicit line-height, which creates an anonymous block box that pushes the
   slider header ~24px down — visible as a white bar on EN but not on DE (where the
   slider CE has no overlay anchor). Collapsing them to zero-height fixes the gap. */
.frame-type-ws_slider > a[id] {
    display: block;
    height: 0;
    overflow: hidden;
}

/* Dropdown overflow fix: allow long translated nav items to wrap.
   Bootstrap sets white-space:nowrap on .dropdown-item, which causes
   translated labels to push the dropdown off-screen in DOM-overlay languages. */
.navbar-nav .dropdown-menu {
    max-width: 22rem;
}
.navbar-nav .dropdown-menu .dropdown-item {
    white-space: normal;
    word-break: break-word;
}
