/* Add here all your CSS customizations */

/*
* Demo Colors
*/
.custom-color-1 {
    color: #aeb4ba !important;
}

/*
* Demo Fonts
*/
.custom-font-secondary {
    font-family: "Roboto", sans-serif;
}

/*
* RTL
*/
/*
* Custom Animations
*/
@-webkit-keyframes icons {
    0% {
        stroke-dasharray: 1000;
        stroke: #262262;
        fill: rgba(244, 100, 90, 0);
    }
    90% {
        stroke: #262262;
        fill: rgba(244, 100, 90, 0);
    }
    100% {
        stroke-dasharray: 490;
        stroke: rgba(244, 100, 90, 0);
        fill: #262262;
    }
}

@keyframes icons {
    0% {
        stroke-dasharray: 1000;
        stroke: #262262;
        fill: rgba(244, 100, 90, 0);
    }
    90% {
        stroke: #262262;
        fill: rgba(244, 100, 90, 0);
    }
    100% {
        stroke-dasharray: 490;
        stroke: rgba(244, 100, 90, 0);
        fill: #262262;
    }
}

@-webkit-keyframes iconsCircle {
    from {
        stroke-dasharray: 1000;
    }
    to {
        stroke-dasharray: 1160;
    }
}

@keyframes iconsCircle {
    from {
        stroke-dasharray: 1000;
    }
    to {
        stroke-dasharray: 1160;
    }
}

@-webkit-keyframes lineDashed {
    from {
        stroke-dasharray: 1000;
    }
    to {
        stroke-dasharray: 1100;
    }
}

@keyframes lineDashed {
    from {
        stroke-dasharray: 1000;
    }
    to {
        stroke-dasharray: 1100;
    }
}

@-webkit-keyframes lineCircle {
    from {
        stroke-dasharray: 1000;
    }
    to {
        stroke-dasharray: 1030;
    }
}

@keyframes lineCircle {
    from {
        stroke-dasharray: 1000;
    }
    to {
        stroke-dasharray: 1030;
    }
}

.icons-anim {
    -webkit-animation-name: icons;
    animation-name: icons;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
}

.icons-circle-anim {
    -webkit-animation-name: iconsCircle;
    animation-name: iconsCircle;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
}

.line-anim {
    -webkit-animation-name: lineDashed;
    animation-name: lineDashed;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
}

.line-circle-anim {
    -webkit-animation-name: lineCircle;
    animation-name: lineCircle;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
}

/*
* General Elements
*/
section.section {
    position: relative;
    padding: 70px 0px;
    border: none !important;
}

svg path.line {
    fill: none;
    stroke: #c6c6c6;
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
}

svg path.icon, svg path.plus {
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
}

svg circle.circle {
    fill: none;
    stroke: #c6c6c6;
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
}

svg circle.icons-circle {
    fill: none;
    stroke: #262262;
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
}

/*
* Headings
*/
h1, h2, h3, h4, h5, h6 {
    font-family: "Roboto", sans-serif;
    margin: 0;
}

h1 {
    font-size: 5.6em;
    font-weight: 600;
    line-height: 1;
    margin-left: -5px;
    letter-spacing: -3px;
}

@media (max-width: 991px) {
    h1 {
        font-size: 4.6em;
    }
}

h2 {
    font-size: 1.9em;
    font-weight: 600;
    margin-bottom: 20px;
}

h2.custom-bar {
    position: relative;
}

h2.custom-bar:after {
    content: '';
    display: block;
    position: absolute;
    bottom: 0;
    width: 17px;
    border-bottom: 2px solid #262262;
}

h2.custom-bar._left:after {
    left: 1px;
}

h2.custom-bar._center {
    text-align: center;
}

h2.custom-bar._center:after {
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}

h2.custom-bar._right:after {
    left: initial;
    right: 1px;
}

h2.custom-bar._color-light:after {
    border-color: #FFF !important;
}

h3 {
    font-size: 1.5em;
}

h4 {
    font-size: 1.1em;
    font-weight: 600;
}

h5 {
    font-size: 1em;
}

h6 {
    font-size: 0.9em;
}

/*
* Custom Classes
*/
.custom-background-color-1 {
    /*background-color: #e64337 !important;*/
}

.custom-background-style-1 {
    padding-top: 140px !important;
    padding-bottom: 0 !important;
    overflow: hidden;
    /*height: calc(100vh - 85px);*/
    /*height: calc(100vh - 0px);*/
}

@media (max-width: 1199px) {
    .custom-background-style-1 {
        min-height: 820px;
    }
}

@media (max-width: 991px) {
    .custom-background-style-1 {
        padding-top: 120px !important;
        min-height: 580px;
    }

    #header .header-nav-main nav > ul > li > a.active {
        background: #fff;
    }
}

.custom-background-style-1:after {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /*background: url('/UI/img/sg-bg.jpeg');*/
    /*background-size: cover;*/
    /*background: url('https://fortax.com.pl/img/baner1.jpg');*/
    background-size: cover;
    background-position: center;
    opacity: 1;
    z-index: 0;
    /*background-position: 0px -78px;*/
    /*background: #7fb8d9;*/
    /*background-color: #3c6497;*/
}

.custom-background-style-1 > div {
    position: relative;
    z-index: 1;
}

.custom-text-align-right {
    text-align: right;
}

@media (max-width: 767px) {
    .custom-xs-image-center {
        margin: 0 auto;
        margin-bottom: 25px;
    }
}

.custom-icon-fix-pos {
    margin-left: 3px;
}

.custom-btn-style-1, .custom-btn-style-1:active {
    background: #262262;
    background: -webkit-gradient(linear, left top, right top, from(#262262), to(#0f75bc));
    background: linear-gradient(to right, #262262 0%, #0f75bc 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#262262', endColorstr='#0f75bc', GradientType=1);
    border: none;
    border-radius: 50px !important;
    padding: 13px 30px;
    font-size: 12px;
    font-weight: 600;
    -webkit-transition: ease all 300ms;
    transition: ease all 300ms;
}

.custom-btn-style-1:hover {
    opacity: 0.9;
}

.custom-btn-style-1._borders {
    background: transparent;
    border: 1px solid #262262;
}

.custom-btn-style-1._borders:hover, .custom-btn-style-1._borders:active, .custom-btn-style-1._borders:focus {
    border-color: #262262;
    background: -webkit-gradient(linear, left top, right top, from(#262262), to(#0f75bc));
    background: linear-gradient(to right, #262262 0%, #0f75bc 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#262262', endColorstr='#0f75bc', GradientType=1);
}

.custom-btn-style-1._size-1 {
    padding: 13px 42px !important;
    font-size: 12px !important;
    letter-spacing: 0.5px !important;
}

.custom-btn-style-2 {
    border-radius: 50px;
    border-width: 2px;
    font-weight: 600;
    font-size: 12px;
    letter-spacing: 0.5px;
    padding: 8px 24px;
    background: transparent !important;
    border-color: #262262 !important;
}

.custom-btn-style-2:hover, .custom-btn-style-2:hover:active, .custom-btn-style-2.active, .custom-btn-style-2:focus {
    border-color: #262262 !important;
}

.custom-product-image-pos-1._absolute {
    position: absolute;
    top: 0;
    left: 0;
}

.custom-product-image-pos-1._relative {
    position: relative;
    top: 60px;
    padding-bottom: 60px;
}

.custom-product-image-pos-2 {
    position: absolute;
    top: -80px;
    left: 61vw;
    width: auto;
    height: 170%;
    z-index: 2;
}

@media (max-width: 991px) {
    .custom-product-image-pos-2 {
        left: 74vw;
    }
}

@media (max-width: 767px) {
    .custom-product-image-pos-2 {
        display: none;
    }
}

.custom-product-image-pos-2._litle-small {
    top: -65px;
    left: 67vw;
    z-index: 1;
    height: 155%;
}

@media (max-width: 991px) {
    .custom-product-image-pos-2._litle-small {
        left: 86vw;
    }
}

.custom-tall {
    margin: 60px 0 80px;
    background: #efecec !important;
}

.custom-shadow-on-hover {
    -webkit-box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.5);
    box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.5);
    -webkit-transition: easne box-shadow 300ms;
    transition: easne box-shadow 300ms;
}

.custom-shadow-on-hover:hover {
    -webkit-box-shadow: 0px 10px 48px -7px rgba(0, 0, 0, 0.2);
    box-shadow: 0px 10px 48px -7px rgba(0, 0, 0, 0.2);
}

/*
* Social Icons Styles
*/
.social-icons.custom-social-icons-style-1 li {
    -webkit-box-shadow: none;
    box-shadow: none;
    margin: 3px;
}

.social-icons.custom-social-icons-style-1 li:hover a {
    opacity: 0.7;
}

.social-icons.custom-social-icons-style-1 li a {
    background: transparent !important;
    height: auto;
    width: auto;
    line-height: 1;
    font-size: 18px;
    -webkit-transition: nease opacity 300ms;
    transition: nease opacity 300ms;
}

.social-icons.custom-social-icons-style-1._white li a {
    color: #00517e !important;
}

.social-icons.custom-social-icons-style-1._colored li.social-icons-facebook a {
    color: #3b5a9a !important;
}

.social-icons.custom-social-icons-style-1._colored li.social-icons-twitter a {
    color: #1aa9e1 !important;
}

.social-icons.custom-social-icons-style-1._colored li.social-icons-linkedin a {
    color: #0073b2 !important;
}

/*
* Owl Carousel
*/
.owl-carousel.custom-background-1 {
    bottom: -15px;
    padding: 31.8% 6.8% 0;
    background-color: none;
}

.owl-carousel.custom-background-1:before {
    content: '';
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    /*background: url("/LPUI/img/demos/app-landing/smartphone.png");*/
    background-size: 100%;
    background-repeat: no-repeat;
}

.owl-carousel.custom-background-1 .owl-stage {
    overflow: hidden;
    max-height: 365px;
}

@media (max-width: 767px) {
    .owl-carousel.custom-left-pos-1 {
        margin-top: 50px !important;
    }
}

@media (min-width: 768px) {
    .owl-carousel.custom-left-pos-1 {
        left: -50px;
        margin-top: 70px !important;
    }
}

@media (min-width: 992px) {
    .owl-carousel.custom-left-pos-1 {
        left: -85px;
        margin-top: -50px !important;
    }
}

.owl-carousel.custom-arrows-style-1 .owl-nav {
    left: 0;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.owl-carousel.custom-arrows-style-1 .owl-nav button.owl-prev, .owl-carousel.custom-arrows-style-1 .owl-nav button.owl-next {
    background: transparent !important;
}

.owl-carousel.custom-arrows-style-1 .owl-nav button.owl-prev:before, .owl-carousel.custom-arrows-style-1 .owl-nav button.owl-next:before {
    content: '';
    display: block;
    position: absolute;
    width: 30px;
    height: 30px;
    border-top: 1px solid #FFF;
    border-right: 1px solid #FFF;
    -webkit-transform: rotate(-135deg);
    transform: rotate(-135deg);
}

.owl-carousel.custom-arrows-style-1 .owl-nav button.owl-prev:after, .owl-carousel.custom-arrows-style-1 .owl-nav button.owl-next:after {
    content: "";
    display: block;
    height: 60px;
    left: -28px;
    position: absolute;
    top: -13px;
    width: 74px;
    z-index: 0;
}

.owl-carousel.custom-arrows-style-1 .owl-nav button.owl-prev {
    left: -60px;
}

.owl-carousel.custom-arrows-style-1 .owl-nav button.owl-next {
    left: initial;
    right: -60px;
}

.owl-carousel.custom-arrows-style-1 .owl-nav button.owl-next:before {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

.owl-carousel.custom-arrows-style-1 .owl-nav button.owl-next:after {
    left: -20px;
}

.owl-carousel.custom-arrows-style-1 .owl-nav button[class*="owl-"]:hover:active:before, .owl-carousel.custom-arrows-style-1 .owl-nav button[class*="owl-"]:focus:before {
    border-color: #00517e;
}

@media (max-width: 767px) {
    .owl-carousel.custom-arrows-style-1._custom-nav-bottom {
        margin-bottom: 60px;
    }

    .owl-carousel.custom-arrows-style-1._custom-nav-bottom .owl-nav {
        width: 0%;
        top: auto;
        bottom: -10px;
        left: 50%;
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%);
    }
}

/*
* Header
*/
#header.custom-header-style .header-body:before {
    background: #fff !important;
    opacity: 1 !important;
}

#header.custom-header-style .header-body:after {
    content: '';
    display: block;
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 100%;
    /*border-bottom: 1px solid rgba(255, 255, 255, 0.25);*/
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}

@media (min-width: 768px) {
    #header.custom-header-style .header-body:after {
        max-width: 750px;
    }
}

@media (min-width: 992px) {
    #header.custom-header-style .header-body:after {
        max-width: 970px;
    }
}

@media (min-width: 1200px) {
    #header.custom-header-style .header-body:after {
        max-width: 1170px;
    }
}

#header.custom-header-style .header-nav-main {
    margin-top: 0;
}

#header.custom-header-style .header-nav-main nav > ul > li > a {
    border-radius: 0;
    font-weight: 600;
    padding: 10px 21px;
    letter-spacing: 0.5px;
    -webkit-transition: nease opacity 300ms;
    transition: nease opacity 300ms;
}

@media (min-width: 992px) {
    #header.custom-header-style .header-nav-main nav > ul > li > a {
        background: transparent !important;
    }
}

#header.custom-header-style .header-nav-main nav > ul > li > a:not(.active) {
    background: transparent;
}

@media (min-width: 992px) {
    #header.custom-header-style .header-nav-main nav > ul > li:hover > a {
        opacity: 0.7;
    }
}

#header .header-btn-collapse-nav:focus {
    -webkit-box-shadow: none;
    box-shadow: none;
}

@media (min-width: 992px) {
    html #header.header-semi-transparent .header-nav-main nav > ul > li:not(.active) > a.active {
        color: #000 !important;
        /*opacity: 0.7;*/
        font-weight: 600;
    }
}

@media (max-width: 991px) {

    html.sticky-header-active #header.header-semi-transparent .header-nav-main:after {
        background: #242b32;
        opacity: 1;
    }
}

html.sticky-header-active #header .header-body:after {
    content: none;
}

/*
* Overview
*/
.custom-top-title-box:after {
    content: '';
    display: block;
    clear: both;
}

.custom-top-title-box span:not(.custom-as-seen) {
    display: block;
}

.custom-top-title-box span.custom-as-seen {
    position: relative;
    padding-top: 15px;
    float: left;
    clear: left;
}

.custom-top-title-box span.custom-as-seen:before {
    content: '';
    display: block;
    position: absolute;
    top: 8px;
    left: 0;
    width: 10px;
    border-top: 2px solid #FFF;
}

.custom-top-title-box a {
    float: left;
}

.custom-top-title-box img {
    margin-left: 35px;
}

/*
* Home Intro
*/
.custom-home-intro {
    padding: 20px 0;
}

.custom-home-intro p {
    font-size: 1.15em;
    font-weight: 400;
    font-family: "Roboto", sans-serif;
}

.custom-home-intro p span {
    padding-top: 0;
    color: #FFF;
}

/*
* How it Works
*/
.custom-wrap-icons .custom-box-icon {
    position: relative;
    float: left;
    text-align: center;
    margin-left: 75px;
}

.custom-wrap-icons .custom-box-icon:nth-child(1) {
    margin-left: 0;
}

@media (max-width: 575px) {
    .custom-wrap-icons .custom-box-icon {
        width: 100%;
        margin-left: auto !important;
        margin-right: auto !important;
        margin-bottom: 40px;
    }

    .custom-wrap-icons .custom-box-icon:nth-child(3) {
        margin-bottom: 0;
    }
}

.custom-wrap-icons .custom-box-icon span {
    display: block;
    color: #2e353e;
    font-weight: 600;
    margin-top: 20px;
}

.custom-wrap-icons .custom-box-icon .wrap-dashed-lines svg.dashed-line {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

@media (max-width: 475px) {
    .custom-wrap-icons .custom-box-icon .wrap-dashed-lines svg.dashed-line {
        display: none;
    }
}

.custom-wrap-icons .custom-box-icon .wrap-dashed-lines svg.dashed-line._left {
    left: -70px;
    top: 15%;
}

.custom-wrap-icons .custom-box-icon .wrap-dashed-lines svg.dashed-line._right {
    right: -70px;
    top: 50%;
}

.custom-wrap-icons:nth-child(1) {
    margin-left: 0;
}

/*
* Counters
*/
@media (max-width: 767px) {
    .custom-counters-style-1 > div {
        margin-bottom: 30px;
    }

    .custom-counters-style-1 > div:nth-child(3) {
        margin-bottom: 0;
    }
}

.custom-counters-style-1 .counter i {
    font-size: 1.8em;
    margin-bottom: 15px;
}

.custom-counters-style-1 .counter span {
    font-family: "Roboto", sans-serif;
}

.custom-counters-style-1 .counter span.counter-value {
    display: block;
    font-size: 1.7em;
    font-weight: 600;
}

.custom-counters-style-1 .counter span.counter-title {
    font-weight: 500;
}

/*
* Key Features
*/
.custom-feature-box-style-1 .feature-box-icon {
    font-size: 22px;
    width: 50px;
    height: 50px;
    line-height: 47px !important;
    border-color: #dcdcdc !important;
    margin-right: 16px;
    margin-right: 1rem;
}

@media (max-width: 1200px) {
    .custom-feature-box-style-1 .feature-box-icon {
        margin-right: 25px;
    }
}

@media (max-width: 991px) {
    .custom-feature-box-style-1 .feature-box-icon {
        margin-right: 0;
        margin-left: 0;
    }
}

.custom-feature-box-style-1.reverse .feature-box-icon {
    margin-right: 0;
    margin-left: 16px;
    margin-left: 1rem;
}

@media (max-width: 1199px) {
    .custom-feature-box-style-1.reverse .feature-box-icon {
        margin-left: 0.7rem;
    }
}

@media (max-width: 991px) {
    .custom-feature-box-style-1.reverse .feature-box-icon {
        margin-left: 0;
    }

}

/*
* Reviews
*/
.custom-review h4 {
    font-weight: 500;
}

.custom-review .stars {
    margin-left: 20px;
    font-size: 0.9em;
}

/*
* FAQ'S
*/
.custom-accordion-style-1 .card {
    border-bottom: 0;
}

.custom-accordion-style-1 .card:last-child {
    border-bottom: 1px solid #ddd;
}

.custom-accordion-style-1 .card + .card {
    margin-top: 0;
}

.custom-accordion-style-1 .card-header {
    background: transparent;
}

.custom-accordion-style-1 .card-header .card-title {
    font-size: 13px;
    font-weight: 600;
}

.custom-accordion-style-1 .card-header .card-title a {
    position: relative;
    padding: 15px 50px 15px 35px;
    border-left: 2px solid transparent;
    -webkit-transition: ease color 300ms, easne background 300ms;
    transition: ease color 300ms, easne background 300ms;
}

.custom-accordion-style-1 .card-header .card-title a:not(.collapsed) {
    color: #262262 !important;
    border-left: 2px solid #262262;
    border-bottom: 1px solid #ddd;
    background: #fff3f2;
}

.custom-accordion-style-1 .card-header .card-title a:not(.collapsed):after {
    border-color: #262262 transparent transparent transparent;
    -webkit-transform: translateY(-50%) rotate(0deg);
    transform: translateY(-50%) rotate(0deg);
}

.custom-accordion-style-1 .card-header .card-title a:after {
    content: '';
    display: block;
    position: absolute;
    top: 50%;
    right: 35px;
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 6px solid #2e353e;
    -webkit-transform: translateY(-50%) rotate(-90deg);
    transform: translateY(-50%) rotate(-90deg);
    -webkit-transition: eanse transform 300ms;
    transition: eanse transform 300ms;
}

.custom-accordion-style-1 .card-body {
    padding: 25px 35px;
}

#footer {
    margin: 0;
    border: none;
    padding: 100px 0 10px;
}

@media (max-width: 767px) {

    .custom-background-style-1:after {
        background-position: center center;
    }

    #footer {
        padding: 60px 0 10px;
    }
}

#footer h4 {
    font-size: 1.5em;
    font-weight: 400;
}

#footer .newsletter.custom-newsletter-style-1 form {
    position: relative;
    max-width: 100%;
    z-index: 5;
}

#footer .newsletter.custom-newsletter-style-1 form input.form-control {
    height: 43px;
    border-radius: 50px 0 0 50px;
    border-right: none;
    right: -44.8px;
    right: -2.8rem;
    margin-left: -44.8px;
    margin-left: -2.8rem;
    padding: 0 65px 0 27px;
    z-index: 0;
}

@media (max-width: 390px) {
    #footer .newsletter.custom-newsletter-style-1 form input.form-control {
        padding: 0 25px 0 27px;
    }
}

#footer .newsletter.custom-newsletter-style-1 form .input-group-btn {
    z-index: 1;
}

#footer .footer-copyright {
    position: relative;
    padding: 15px 0 0;
    margin: 0;
    border: 0;
}

#footer .footer-copyright:before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 50%;
    width: 100%;
    border-top: 1px solid #ededed;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}

@media (min-width: 768px) {
    #footer .footer-copyright:before {
        max-width: 750px;
    }
}

@media (min-width: 992px) {
    #footer .footer-copyright:before {
        max-width: 970px;
    }
}

@media (min-width: 1200px) {
    #footer .footer-copyright:before {
        max-width: 1170px;
    }
}

#footer .footer-copyright .copyright-text ul {
    position: relative;
    display: inline-block;
    top: 1px;
}

#footer .footer-copyright nav ul li {
    border: none;
}

@media (max-width: 410px) {
    #footer .footer-copyright nav ul li {
        padding: 0;
    }
}

#footer .footer-copyright nav ul li a {
    font-weight: 700;
    letter-spacing: 0.5px;
    font-size: 12px;
    -webkit-transition: ease color 300ms;
    transition: ease color 300ms;
}

#footer .footer-copyright nav ul li:hover a {
    color: #fff !important;
}

#header .header-nav-main nav > ul > li:hover > a, #header .header-nav-main nav > ul > li:active > a, #header .header-nav-main nav > ul > li > a.active {
    color: #fff;
}

.hidden-xs {
    display: block;
}

@media (max-width: 767px) {
    #footer .footer-copyright nav {
        float: none;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }

    .hidden-xs {
        display: none;
    }
}


a.logo {
    text-decoration: none;
}

a.logo span {
    vertical-align: middle;
    font-size: 22px;
    color: #00517e;
    /*color: #fff;*/
    /*text-shadow: 2px 2px 2px #ccc;*/
    font-weight: 400;
    text-transform: uppercase;
}

#header .header-logo img {
    height: 48px;
}


html #header.header-semi-transparent .header-nav-main nav > ul > li > a {
    color: #000;
}

h1.text-shadow, h2.text-shadow, h3.text-shadow, h4.text-shadow, h5.text-shadow, h6.text-shadow {
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

body {
    color: #222222;
}

p {
    color: #222;
}

.btn-success {
    background-color: #BBD346;
    border-color: #BBD346 #BBD346 #a0b532;
    color: #FFF;
}

.btn-success:hover, .btn-success:active {
    color: #fff;
    background-color: #a0b532;
    border-color: #a0b532;
}

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

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

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

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

.pricing-table.princig-table-flat .plan h3 span {
    background: #BBD346;
}

.pricing-table.princig-table-flat .plan h3 {
    background-color: #BBD346;
}

.pricing-table .most-popular {
    border-color: #BBD346;
}

.text-success {
    color: #BBD346 !important;
}

section.page-header h1 {
    border-bottom-color: #BBD346;
}

.page-header h1 {
    color: #000;
    letter-spacing: normal;
    font-weight: 400;
}